/* =========================================================
   GAKYIDTECH
   SISTEMA VISUAL
========================================================= */

:root {

    --gakyid-blue: #4169E1;
    --gakyid-blue-light: #EEF3FF;

    --gakyid-white: #FFFFFF;
    --gakyid-light: #F5F7FA;

    --gakyid-text: #202124;
    --gakyid-text-secondary: #5F6368;

    --gakyid-border: #E5E7EB;

    --gakyid-radius: 10px;

}


/* =========================================================
   GENERAL
========================================================= */

html {
    scroll-behavior: smooth;
}

body {

    font-family: "Inter", sans-serif;

    color: var(--gakyid-text);

    background-color: var(--gakyid-white);

    line-height: 1.7;

}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    background-color: var(--gakyid-blue);

    position: sticky;

    top: 0;

    z-index: 1000;

}

.navbar {

    min-height: 82px;

}

.logo {

    height: 62px;

    width: auto;

}

.navbar-nav {

    gap: 6px;

}

.nav-link {

    color: #EAEDED !important;

    font-size: 14px;

    font-weight: 500;

    padding: 10px 14px !important;

    transition: opacity 0.2s ease;

}

.nav-link:hover,
.nav-link.active {

    opacity: 0.75;

}


/* =========================================================
   BOTONES
========================================================= */

.btn {

    border-radius: 7px;

    font-weight: 600;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;

}

.btn:hover {

    transform: translateY(-1px);

}

.btn-primary-gakyid {

    background-color: var(--gakyid-blue);

    border: 1px solid var(--gakyid-blue);

    color: var(--gakyid-white);

}

.btn-primary-gakyid:hover {

    background-color: #3157CC;

    border-color: #3157CC;

    color: var(--gakyid-white);

}

.site-header .btn-primary-gakyid {

    background-color: var(--gakyid-white);

    border-color: var(--gakyid-white);

    color: var(--gakyid-blue);

}

.site-header .btn-primary-gakyid:hover {

    background-color: #EAEDED;

    border-color: #EAEDED;

    color: var(--gakyid-blue);

}

.btn-outline-gakyid {

    background-color: transparent;

    border: 1px solid var(--gakyid-blue);

    color: var(--gakyid-blue);

}

.btn-outline-gakyid:hover {

    background-color: var(--gakyid-blue);

    color: var(--gakyid-white);

}


/* =========================================================
   HERO
========================================================= */

.hero-section {

    padding: 100px 0;

    background-color: var(--gakyid-white);

}

.section-kicker {

    display: inline-block;

    margin-bottom: 14px;

    color: var(--gakyid-blue);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}

.section-kicker.light {

    color: #EAEDED;

}

.hero-title {

    max-width: 700px;

    font-size: clamp(42px, 5vw, 58px);

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -1.5px;

    margin-bottom: 24px;

}

.hero-title span {

    display: block;

    color: var(--gakyid-blue);

}

.hero-text {

    max-width: 620px;

    color: var(--gakyid-text-secondary);

    font-size: 18px;

    margin-bottom: 32px;

}

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}

.hero-image-wrapper {

    position: relative;

}

.hero-image {

    width: 100%;

    min-height: 400px;

    object-fit: cover;

    border-radius: 14px;

    box-shadow: 0 20px 50px rgba(32, 33, 36, 0.12);

}


/* =========================================================
   SECCIONES
========================================================= */

.section {

    padding: 100px 0;

}

.section-light {

    background-color: var(--gakyid-light);

}

.section-heading {

    max-width: 850px;

    margin: 0 auto;

}

.section-heading h2 {

    font-size: clamp(32px, 4vw, 42px);

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.8px;

    margin-bottom: 20px;

}

.section-heading p {

    max-width: 760px;

    margin: 0 auto;

    color: var(--gakyid-text-secondary);

    font-size: 17px;

}


/* =========================================================
   TARJETAS
========================================================= */

.info-card {

    height: 100%;

    padding: 30px;

    background-color: var(--gakyid-white);

    border: 1px solid var(--gakyid-border);

    border-radius: var(--gakyid-radius);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;

}

.info-card:hover {

    transform: translateY(-4px);

    box-shadow: 0 12px 30px rgba(32, 33, 36, 0.08);

}

.card-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    margin-bottom: 20px;

    border-radius: 8px;

    background-color: var(--gakyid-blue-light);

    color: var(--gakyid-blue);

    font-size: 22px;

}

.info-card h3 {

    font-size: 19px;

    font-weight: 600;

    margin-bottom: 10px;

}

.info-card p {

    margin: 0;

    color: var(--gakyid-text-secondary);

    font-size: 15px;

}

.highlight-message {

    color: var(--gakyid-blue);

    font-size: 20px;

}


/* =========================================================
   FLUJO DE PROCESO
========================================================= */

.process-flow {

    display: flex;

    align-items: stretch;

    justify-content: center;

}

.process-step {

    flex: 1;

    max-width: 230px;

    text-align: center;

}

.process-number {

    margin-bottom: 12px;

    color: var(--gakyid-blue);

    font-size: 13px;

    font-weight: 700;

}

.process-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 64px;

    height: 64px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background-color: var(--gakyid-blue-light);

    color: var(--gakyid-blue);

    font-size: 25px;

}

.process-step h3 {

    font-size: 19px;

    font-weight: 600;

}

.process-step p {

    color: var(--gakyid-text-secondary);

    font-size: 14px;

}

.process-line {

    width: 70px;

    height: 2px;

    margin-top: 45px;

    background-color: var(--gakyid-blue);

}


/* =========================================================
   SECOE / PRODUCTO
========================================================= */

.sub-heading {

    font-size: 22px;

    font-weight: 600;

    line-height: 1.35;

    margin-bottom: 20px;

}

.product-image-wrapper {

    padding: 15px;

    background-color: var(--gakyid-white);

    border: 1px solid var(--gakyid-border);

    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(32, 33, 36, 0.08);

}

.product-image {

    display: block;

    width: 100%;
	height: auto;
    border-radius: 8px;

}


/* =========================================================
   SOLUCIONES
========================================================= */

.solution-card {

    height: 100%;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    border: 1px solid var(--gakyid-border);

    border-radius: 12px;

    background-color: var(--gakyid-white);

}

.solution-content {

    padding: 34px;

    flex: 1;

}

.solution-label {

    color: var(--gakyid-blue);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.2px;

}

.solution-content h3 {

    margin: 12px 0;

    font-size: 24px;

    font-weight: 700;

}

.solution-content p {

    color: var(--gakyid-text-secondary);

}

.solution-image {

    width: 100%;

    height: 230px;

    object-fit: cover;

    border-top: 1px solid var(--gakyid-border);

}

.text-link {

    color: var(--gakyid-blue);

    font-weight: 600;

}

.text-link:hover {

    color: #3157CC;

}


/* =========================================================
   ENFOQUE
========================================================= */

.approach-card {

    height: 100%;

    padding: 30px;

    background-color: var(--gakyid-white);

    border: 1px solid var(--gakyid-border);

    border-radius: var(--gakyid-radius);

}

.approach-card > span {

    color: var(--gakyid-blue);

    font-size: 13px;

    font-weight: 700;

}

.approach-card h3 {

    margin: 15px 0 10px;

    font-size: 22px;

    font-weight: 600;

}

.approach-card p {

    margin: 0;

    color: var(--gakyid-text-secondary);

    font-size: 15px;

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    padding: 100px 0;

    background-color: var(--gakyid-blue);

    color: var(--gakyid-white);

}

.cta-content {

    max-width: 800px;

    margin: 0 auto;

}

.cta-content h2 {

    font-size: clamp(32px, 4vw, 44px);

    line-height: 1.2;

    font-weight: 700;

    margin-bottom: 20px;

}

.cta-content p {

    color: #EAEDED;

    font-size: 17px;

    margin-bottom: 30px;

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    padding: 60px 0 25px;

    background-color: var(--gakyid-blue);

    color: #EAEDED;

}

.footer-logo {

    height: 42px;

    width: auto;

    margin-bottom: 20px;

}

.footer-description {

    max-width: 360px;

    margin: 0;

    color: #EAEDED;

    font-size: 14px;

}

.footer-title {

    margin-bottom: 20px;

    color: var(--gakyid-white);

    font-size: 15px;

    font-weight: 600;

}

.footer-links,
.footer-contact {

    margin: 0;

    padding: 0;

    list-style: none;

}

.footer-links li {

    margin-bottom: 9px;

}

.footer-links a {

    color: #EAEDED;

    font-size: 14px;

}

.footer-links a:hover {

    opacity: 0.7;

}

.footer-contact li {

    display: flex;

    gap: 10px;

    margin-bottom: 12px;

    font-size: 14px;

}

.footer-contact i {

    font-size: 16px;

}

.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    margin-top: 50px;

    padding-top: 20px;

    border-top: 1px solid rgba(234, 237, 237, 0.25);

    color: #EAEDED;

    font-size: 12px;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .hero-section {

        padding: 80px 0;

    }

    .hero-image {

        min-height: 320px;

    }

    .process-flow {

        flex-direction: column;

        align-items: center;

    }

    .process-step {

        max-width: 420px;

    }

    .process-line {

        width: 2px;

        height: 45px;

        margin: 0;

    }

}


@media (max-width: 767.98px) {

    .section {

        padding: 70px 0;

    }

    .hero-section {

        padding: 70px 0;

    }

    .hero-title {

        font-size: 40px;

    }

    .hero-text {

        font-size: 16px;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }

    .hero-buttons .btn {

        width: 100%;

    }

    .hero-image {

        min-height: 260px;

    }

    .footer-bottom {

        flex-direction: column;

    }

}


@media (max-width: 575.98px) {

    .navbar {

        min-height: 68px;

    }

    .logo {

        height: 42px;

    }

    .section {

        padding: 60px 0;

    }

    .hero-section {

        padding: 60px 0;

    }

    .hero-title {

        font-size: 36px;

    }

    .section-heading h2 {

        font-size: 30px;

    }

}

/* =========================================================
   SECOE PAGE
========================================================= */

.secoe-hero {
    padding: 100px 0;
    background-color: var(--gakyid-white);
}

.secoe-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.secoe-flow-item {
    width: 122px;
    min-height: 128px;
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--gakyid-border);
    border-radius: var(--gakyid-radius);
    background-color: var(--gakyid-white);
    box-shadow: 0 8px 24px rgba(32, 33, 36, 0.05);
}

.secoe-flow-item span {
    margin-bottom: 8px;
    color: var(--gakyid-blue);
    font-size: 11px;
    font-weight: 700;
}

.secoe-flow-item i {
    margin-bottom: 9px;
    color: var(--gakyid-blue);
    font-size: 25px;
}

.secoe-flow-item strong {
    font-size: 13px;
    line-height: 1.25;
}

.secoe-flow-arrow {
    color: var(--gakyid-blue);
    font-size: 20px;
}

.feature-list {
    margin-top: 28px;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--gakyid-text-secondary);
}

.feature-list-item i {
    flex: 0 0 auto;
    margin-top: 4px;
    color: var(--gakyid-blue);
}

.feature-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 24px;
}

.feature-highlight > i {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: var(--gakyid-blue-light);
    color: var(--gakyid-blue);
    font-size: 20px;
}

.feature-highlight strong {
    display: block;
    margin-bottom: 3px;
    font-size: 16px;
}

.feature-highlight p {
    margin: 0;
    color: var(--gakyid-text-secondary);
    font-size: 14px;
}

.document-visual {
    min-height: 350px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #C9D2EA;
    border-radius: 14px;
    background-color: var(--gakyid-light);
}

.document-placeholder {
    width: 100%;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    background-color: var(--gakyid-white);
    color: var(--gakyid-blue);
}

.document-placeholder i {
    margin-bottom: 14px;
    font-size: 48px;
}

.document-placeholder span {
    color: var(--gakyid-text);
    font-size: 18px;
    font-weight: 600;
}

.document-placeholder small {
    margin-top: 8px;
    color: var(--gakyid-text-secondary);
    font-size: 12px;
}

.control-card,
.metric-card {
    height: 100%;
    padding: 30px;
    border: 1px solid var(--gakyid-border);
    border-radius: var(--gakyid-radius);
    background-color: var(--gakyid-white);
}

.control-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: var(--gakyid-blue-light);
    color: var(--gakyid-blue);
    font-size: 21px;
}

.control-card h3,
.metric-card h3 {
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: 600;
}

.control-card p,
.metric-card p {
    margin: 0;
    color: var(--gakyid-text-secondary);
    font-size: 15px;
}

.metric-card {
    text-align: center;
}

.metric-card > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 50%;
    background-color: var(--gakyid-blue-light);
    color: var(--gakyid-blue);
    font-size: 23px;
}

@media (max-width: 991.98px) {

    .secoe-hero {
        padding: 80px 0;
    }

    .secoe-flow {
        gap: 10px;
    }

    .secoe-flow-arrow {
        display: none;
    }

}

@media (max-width: 767.98px) {

    .secoe-hero {
        padding: 70px 0;
    }

    .secoe-flow-item {
        width: calc(50% - 8px);
    }

}

@media (max-width: 575.98px) {

    .secoe-flow-item {
        width: 100%;
        min-height: 105px;
    }

}

/* =========================================================
   SOLUCIONES PAGE - CORPORATIVO / MINIMALISTA
========================================================= */
.soluciones-hero { padding: 95px 0; }
.soluciones-hero-panel { padding: 28px; border: 1px solid var(--gakyid-border); border-radius: 14px; background: var(--gakyid-light); }
.soluciones-hero-line { display:flex; align-items:center; gap:14px; padding:18px 0; border-bottom:1px solid var(--gakyid-border); font-size:13px; letter-spacing:.5px; }
.soluciones-hero-line:last-child { border-bottom:0; }
.soluciones-hero-line span { color:var(--gakyid-text-secondary); flex:1; }
.soluciones-hero-line i { color:var(--gakyid-blue); }
.soluciones-hero-line strong { flex:1; color:var(--gakyid-text); }
.solution-card-featured { border-color:#D7E0F7; }
.solution-image-contain { height:auto; object-fit:contain; padding:14px; background:var(--gakyid-light); }
.mini-feature { height:100%; padding:18px; border:1px solid var(--gakyid-border); border-radius:10px; background:var(--gakyid-white); }
.mini-feature i { display:block; margin-bottom:12px; color:var(--gakyid-blue); font-size:22px; }
.mini-feature strong { display:block; margin-bottom:6px; font-size:15px; }
.mini-feature span { display:block; color:var(--gakyid-text-secondary); font-size:13px; line-height:1.45; }
.custom-solution-grid { display:grid; grid-template-columns:1fr; gap:14px; }
.custom-step { position:relative; padding:22px 24px 22px 68px; border:1px solid var(--gakyid-border); border-radius:10px; background:var(--gakyid-white); }
.custom-step > span { position:absolute; left:24px; top:23px; color:var(--gakyid-blue); font-size:12px; font-weight:700; }
.custom-step i { position:absolute; right:22px; top:22px; color:var(--gakyid-blue); font-size:20px; }
.custom-step h3 { margin:0 45px 7px 0; font-size:18px; font-weight:600; }
.custom-step p { margin:0; color:var(--gakyid-text-secondary); font-size:14px; }
.approach-flow { display:flex; align-items:center; justify-content:center; gap:22px; }
.approach-flow > div { min-width:170px; padding:25px 20px; text-align:center; border:1px solid var(--gakyid-border); border-radius:10px; background:var(--gakyid-white); }
.approach-flow span { display:block; margin-bottom:8px; color:var(--gakyid-blue); font-size:11px; font-weight:700; }
.approach-flow strong { font-size:16px; font-weight:600; }
.approach-flow > i { color:var(--gakyid-blue); }
@media (max-width: 991.98px) { .soluciones-hero { padding:75px 0; } .approach-flow { gap:12px; } .approach-flow > div { min-width:145px; } }
@media (max-width: 767.98px) { .approach-flow { flex-direction:column; } .approach-flow > div { width:100%; } .approach-flow > i { transform:rotate(90deg); } }

/* =========================================================
   GAKYIDTECH PAGE
========================================================= */
.company-hero {
    padding: 100px 0;
    background-color: var(--gakyid-white);
}
.company-hero-card {
    min-height: 390px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--gakyid-border);
    border-radius: 14px;
    background-color: var(--gakyid-light);
}
.company-hero-logo {
    width: 150px;
    height: auto;
    margin-bottom: 25px;
}
.company-hero-card p {
    margin: 0;
    color: var(--gakyid-text-secondary);
    font-size: 17px;
    line-height: 1.6;
}
.company-statement {
    padding: 20px 0;
}
.company-statement h2 {
    margin-bottom: 20px;
    font-size: clamp(34px, 4vw, 46px);
    font-weight: 700;
}
.company-statement p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--gakyid-text-secondary);
    font-size: 17px;
}
@media (max-width: 991.98px) {
    .company-hero { padding: 80px 0; }
}
@media (max-width: 767.98px) {
    .company-hero { padding: 70px 0; }
    .company-hero-card { min-height: 300px; }
    .company-hero-logo { width: 120px; }
}

/* =========================================================
   CONTACT PAGE
========================================================= */
.contact-hero {
    padding: 90px 0 70px;
    background-color: var(--gakyid-white);
}
.contact-hero h1 {
    font-size: clamp(38px, 5vw, 54px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.contact-intro { color: var(--gakyid-text-secondary); font-size: 16px; }
.contact-points { margin-top: 35px; }
.contact-point { display:flex; gap:15px; margin-bottom:24px; }
.contact-point > i { flex:0 0 auto; width:44px; height:44px; display:flex; align-items:center; justify-content:center; border-radius:8px; background:var(--gakyid-blue-light); color:var(--gakyid-blue); font-size:20px; }
.contact-point strong { display:block; margin-bottom:3px; font-size:16px; }
.contact-point p { margin:0; color:var(--gakyid-text-secondary); font-size:14px; }
.contact-form-card { padding:35px; border:1px solid var(--gakyid-border); border-radius:14px; background:var(--gakyid-white); box-shadow:0 15px 40px rgba(32,33,36,.06); }
.form-label { font-size:14px; font-weight:600; }
.form-control, .form-select { min-height:48px; border-color:#D9DEE8; border-radius:7px; }
textarea.form-control { min-height:auto; }
.form-control:focus, .form-select:focus { border-color:var(--gakyid-blue); box-shadow:0 0 0 .2rem rgba(65,105,225,.12); }
.form-check-label { color:var(--gakyid-text-secondary); font-size:13px; }
.form-message { display:none; margin-top:5px; padding:12px 15px; border-radius:7px; background:var(--gakyid-blue-light); color:var(--gakyid-text); font-size:13px; }
.form-message.is-visible { display:block; }
@media (max-width:767.98px) { .contact-hero { padding:70px 0 50px; } .contact-form-card { padding:25px 20px; } }
