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

.hero {
    position: relative;
    min-height: calc(100vh - 96px);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;

    padding: 70px 80px 32px;

    background: #f8fafc url('/images/land.png') no-repeat right center;
    background-size: cover;
    background-position: center right;
}

/* LEFT SIDE */
.hero-left {
    flex: 1;
    max-width: 680px;
    width: 100%;
}

/* TITLE */
.hero-title {
    font-size: clamp(2.9rem, 5.5vw, 5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin: 0;
    color: var(--primary-dark);
}

.hero-title-brand {
    display: block;
    font-size: 1.05em;
    color: var(--text-dark);
    margin-bottom: 0.1em;
}

.hero-title-main {
    display: block;
    color: var(--primary);
}

/* TEXT */
.hero-text {
    margin-top: 26px;
    max-width: 560px;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #475569;
    text-align: justify;
    text-indent: 3rem;
}

/* BUTTON GROUP */
.hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
/* ================= TRUSTED SECTION ================= */
.trusted-section {
    background: #ffffff;
    overflow-x: hidden;
}

.trusted-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0;
}

.trusted-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.trusted-heading {
    display: inline-block;
    position: relative;
    text-align: center;
    letter-spacing: 0.26em;
    color: #475569;
    font-size: 0.85rem;
    margin: 50px auto 36px;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.trusted-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 4px;
    background: linear-gradient(90deg, #10bacb 0%, #6fe0e8 25%, var(--primary) 50%, var(--primary-dark) 75%, #10bacb 100%);
    background-size: 300% 100%;
    border-radius: 2px;
    box-shadow: 0 0 14px rgba(16, 186, 203, 0.28);
    animation: gradient-slide 2.5s linear infinite;
}

.trusted-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.trusted-card {
    text-align: center;
    min-width: 160px;
    animation: float-up 6s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trusted-card:hover {
    transform: translateY(-8px);
}

.trusted-card h2 {
    font-size: 3.25rem;
    color: var(--primary-dark);
    line-height: 1;
    animation: pop-in 1.2s ease forwards;
}

.trusted-card p {
    margin-top: 12px;
    color: #64748b;
    font-size: 0.95rem;
}

.trusted-slider {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 32px;
    animation: scroll 20s linear infinite;
    padding: 40px 0;
    border-top: 1px dashed #d8e1ec;
}

.brand {
    flex: 0 0 auto;
    padding: 26px 40px;
    border-radius: 16px;
    background: transparent;
    box-shadow: none;
}

.brand img {
    height: 40px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.brand img:hover {
    opacity: 1;
}

@keyframes gradient-slide {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@keyframes float-up {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes pop-in {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ================= STEPS SECTION ================= */
.steps-section {
    background: #ffffff url('/images/bg.png') no-repeat center top;
    background-size: 1920px auto;
    max-height: 1920px;
    padding: 80px 24px;
}

@media (max-width: 1500px) {
    .steps-section {
        background-size: cover;
    }
}

.steps-inner {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    min-height: 2500px;
}

/* HEADING */
.steps-heading-unit {
    position: absolute;
    width: min(400px, 42%);
}

.steps-heading {
    font-size: 2.5rem;
    font-weight: 1000;
    color: var(--primary-dark);
    margin: 0 0 16px;
}

.steps-heading::after {
    content: "";
    display: block;
    width: 350px;
    height: 4px;
    margin-top: 10px;
    margin-left: 4%;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark), var(--primary));
    background-size: 250% 100%;
    border-radius: 2px;
    animation: gradient-slide 3s linear infinite;
}

/* DESCRIPTION */
.steps-description-unit {
    position: absolute;
    width: min(420px, 42%);
}

.steps-description {
    color: #475467;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 420px;
    text-align: justify;
}

/* STEP GROUP */
.step-group {
    position: absolute;
    width: 320px; /* 🔥 FIXED WIDTH = PERFECT ALIGNMENT */
    text-align: center;
}

/* TITLE */
.step-group h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #10293d;
    margin: 0 0 10px;
}

/* DESCRIPTION */
.step-group p {
    color: #344054;
    line-height: 1.75;
    font-size: 0.95rem;
    margin: 0;
    text-align: justify;
}

/* ICON */
.step-group .step-icon {
    width: 64px;
    height: 64px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
    font-size: 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.18);
    animation: iconRotate 8s linear infinite;
    transition: all 0.3s ease;
}

.step-group .step-icon:hover {
    animation: iconRotate 0.5s linear infinite;
    transform: scale(1.2) rotate(15deg);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.2);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .steps-heading-unit,
    .steps-description-unit {
        position: static;
        width: auto;
        margin: 0 auto 24px;
        text-align: center;
    }

    .steps-inner {
        min-height: auto;
    }

    .step-group {
        position: relative;
        width: 100%;
        max-width: 420px;
        margin: 0 auto 32px;
    }
}

@media (max-width: 768px) {
    .steps-section {
        padding: 40px 16px;
    }

    .steps-heading {
        font-size: 2rem;
    }

    .steps-heading::after {
        width: 140px;
    }

    .step-group .step-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
}

.features-section {
    background: #ffffff;

    /* 🔥 MAKE SECTION TALL */
    min-height: 100vh;

    /* 🔥 ADD MORE BREATHING SPACE */
    padding: 120px 0 140px;

    display: flex;
    align-items: center;
}

.features-inner {
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
}

.features-header {
    margin-bottom: 60px;
    text-align: center;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0 0 12px;
    position: relative;
    padding-bottom: 16px;
    display: inline-block;
}

.features-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 5px;
    background: linear-gradient(90deg, #10bacb 0%, #6fe0e8 25%, var(--primary) 50%, var(--primary-dark) 75%, #10bacb 100%);
    background-size: 300% 100%;
    border-radius: 10px;
    box-shadow: 0 0 16px rgba(16, 186, 203, 0.24);
    animation: gradient-slide 2.5s linear infinite;
}

.features-subtitle {
    color: #475467;
    font-size: 1rem;
    line-height: 1.7;
    margin: 16px auto 0;
    max-width: 820px;
    text-align: justify;
}

/* GRID */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

/* CARDS */
.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #f8fafc;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 182, 202, 0.08), rgba(8, 145, 178, 0.08));
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
    pointer-events: none;
}

.feature-item:hover {
    background: #e8f4f8;
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(15, 182, 202, 0.15);
    transform: translateY(-4px);
}

.feature-item:hover::before {
    left: 0;
}

/* ICON WRAPPER */
.feature-icon {
    width: 56px;
    height: 56px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(15, 182, 202, 0.15);
    border: 2px solid var(--primary);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    border-color: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(15, 182, 202, 0.25);
    transform: scale(1.1) rotate(12deg);
}

/* CONTENT */
.feature-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.feature-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #10293d;
    margin: 0 0 8px;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-content h3 {
    color: var(--primary-dark);
}

.feature-content p {
    color: #475467;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    text-align: justify;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-content p {
    color: #344054;
}

@media (max-width: 768px) {
    .features-section {
        min-height: auto;
        padding: 80px 0 100px;
    }

    .features-inner {
        padding: 0 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .features-title {
        font-size: 2rem;
    }

    .features-title::after {
        width: 100px;
    }

    .features-subtitle {
        font-size: 0.95rem;
    }

    .feature-item {
        gap: 16px;
        padding: 20px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .feature-content h3 {
        font-size: 1.05rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }
}

/* ================= WORKFLOW SECTION ================= */
.workflow-section {
    background: #f5f7fa;
    padding: 80px 0;
}

.workflow-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: visible;
}

.workflow-header {
    text-align: center;
    margin-bottom: 80px;
}

.workflow-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0 0 12px;
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}

.workflow-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 550px;
    height: 5px;
    background: linear-gradient(90deg, #10bacb 0%, #6fe0e8 25%, var(--primary) 50%, var(--primary-dark) 75%, #10bacb 100%);
    background-size: 300% 100%;
    border-radius: 3px;
    box-shadow: 0 0 16px rgba(16, 186, 203, 0.24);
    animation: gradient-slide 2.5s linear infinite;
}

.workflow-subtitle {
    color: #475467;
    font-size: 1rem;
    line-height: 1.7;
    margin: 20px auto 0;
    max-width: 900px;
    text-align: center;
}

/* TIMELINE CONTAINER */
.workflow-timeline {
    position: relative;
    padding: 40px 0;
    overflow: visible;
}

.js-scroll-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: opacity, transform;
}

.js-scroll-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Central vertical line */
.workflow-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), rgba(15, 182, 202, 0.2));
}

/* Animation keyframes */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* SINGLE STEP - BASE */
.workflow-step {
    display: grid;
    grid-template-columns: minmax(300px, 1.4fr) auto minmax(300px, 1.4fr);
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.js-workflow-step {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.workflow-step--left.js-workflow-step {
    transform: translateX(-48px) translateY(24px);
}

.workflow-step--right.js-workflow-step {
    transform: translateX(48px) translateY(24px);
}

.js-workflow-step.is-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* LEFT VARIANT */
.workflow-step--left {
    grid-template-columns: 1fr auto 1fr;
}

.workflow-step--left .workflow-label-side,
.workflow-step--right .workflow-label-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.workflow-step--left .workflow-label-side {
    grid-column: 1;
    text-align: right;
    padding-right: 22px;
}

.workflow-step--left .workflow-marker {
    grid-column: 2;
    grid-row: 1 / 3;
}

.workflow-step--left .workflow-content-side {
    grid-column: 3;
    text-align: left;
    padding-left: 22px;
}

/* RIGHT VARIANT */
.workflow-step--right {
    grid-template-columns: 1fr auto 1fr;
}

.workflow-step--right .workflow-content-side {
    grid-column: 1;
    text-align: right;
    padding-right: 22px;
}

.workflow-step--right .workflow-marker {
    grid-column: 2;
    grid-row: 1 / 3;
}

.workflow-step--right .workflow-label-side {
    grid-column: 3;
    text-align: left;
    padding-left: 22px;
}

.workflow-step--left .workflow-content-side,
.workflow-step--right .workflow-content-side {
    display: flex;
    flex-direction: column;
   justify-content: flex-start;
}

/* HOVER EFFECT */
.workflow-step {
    transition: box-shadow 0.35s ease;
    cursor: pointer;
}

/* REMOVE OLD HOVER SCALE */
.workflow-step:hover {
    box-shadow: none;
}

/* CREATE WHITE CARD USING ::before */
.workflow-step {
    position: relative;
    overflow: visible;
}

/* 🔥 WHITE CARD BACKGROUND (EXPANDING) */
.workflow-step::before {
    content: "";
    position: absolute;
    top: -30px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scale(0.95);

    width: calc(100% + 120px); /* 🔥 EXPAND WIDTH */

    background: #ffffff;
    border-radius: 16px;

    opacity: 0;
    transition: all 0.35s ease;

    box-shadow: 0 24px 60px rgba(0,0,0,0.12);

    z-index: 0;
}

/* 🔥 HOVER EFFECT */
.workflow-step:hover::before {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* KEEP CONTENT ABOVE CARD */
.workflow-label-side,
.workflow-content-side,
.workflow-marker {
    position: relative;
    z-index: 2;
}

.workflow-step:hover .workflow-label-side,
.workflow-step:hover .workflow-content-side {
    transform: none;
}

/* OPTIONAL: SMALL LIFT LANG */
.workflow-step:hover {
    transform: translateY(-6px);
}

.workflow-label-side,
.workflow-content-side {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    transform: translateY(0) scale(1);
    will-change: transform;
}

.workflow-step:hover .workflow-marker::after {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(15, 182, 202, 0.22), 0 0 18px rgba(15, 182, 202, 0.18);
}

.workflow-step:hover .workflow-marker::before {
    animation-duration: 2s;
    opacity: 1;
}

/* LABEL SIDE */
.workflow-label-side {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* LABEL */
.step-label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--primary-dark);
    text-transform: uppercase;
    line-height: 1.4;
}

/* CONTENT SIDE */
.workflow-content-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 260px;
    width: 100%;
    max-width: 520px;
    word-break: break-word;
    white-space: normal;
}

.workflow-label-side {
    width: 100%;
}

/* TITLE */
.step-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0;
    transition: color 0.3s ease;
    line-height: 1.05;
}

.step-title--highlight {
    color: var(--primary);
    transition: color 0.3s ease;
}

.workflow-step:hover .step-title {
    color: var(--primary);
}

.workflow-step:hover .step-title--highlight {
    color: #145267;
}

/* CENTER MARKER */
.workflow-marker {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    padding-top: 0;
}

.workflow-marker::before {
    content: "";
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(15, 182, 202, 0.12);
    animation: markerPulse 2.8s ease-in-out infinite;
    opacity: 0.9;
}

.workflow-marker::after {
    content: "";
    width: 18px;
    height: 18px;
    background: #ffffff;
    border: 3px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(15, 182, 202, 0.08);
    transition: all 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

@keyframes markerPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.75;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.35;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.75;
    }
}

/* DESCRIPTION */
.step-description {
    color: #475467;
    font-size: 1rem;
    line-height: 1.9;
    margin: 0;
    text-align: justify;
    transition: color 0.3s ease;
    width: 100%;
    max-width: 520px;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

.workflow-step:hover .step-description {
    color: #344054;
    max-width: 520px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .workflow-inner {
        padding: 0 30px;
    }

    .workflow-step {
        gap: 40px;
        margin-bottom: 70px;
    }

    .workflow-step--left .workflow-label-side,
    .workflow-step--right .workflow-label-side {
        padding-right: 0;
        padding-left: 0;
    }

    .workflow-step--left .workflow-content-side,
    .workflow-step--right .workflow-content-side {
        padding-right: 0;
        padding-left: 0;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .step-description {
        font-size: 0.96rem;
    }
}

@media (max-width: 768px) {
    .workflow-section {
        padding: 60px 0;
    }

    .workflow-inner {
        padding: 0 20px;
    }

    .workflow-header {
        margin-bottom: 60px;
    }

    .workflow-title {
        font-size: 2rem;
    }

    .workflow-title::after {
        width: 200px;
    }

    .workflow-subtitle {
        font-size: 0.95rem;
    }

    /* Stack vertically on mobile */
    .workflow-timeline::before {
        left: 24px;
    }

    .workflow-step {
        grid-template-columns: 50px 1fr;
        gap: 24px;
        margin-bottom: 50px;
        align-items: flex-start;
    }

    /* Reset all steps to stack vertically */
    .workflow-step--left,
    .workflow-step--right {
        grid-template-columns: 50px 1fr;
    }

    .workflow-step--left .workflow-label-side,
    .workflow-step--left .workflow-content-side,
    .workflow-step--right .workflow-label-side,
    .workflow-step--right .workflow-content-side {
        grid-column: 2;
        text-align: left;
        padding-right: 0;
        padding-left: 0;
    }

    .workflow-step--left .workflow-marker,
    .workflow-step--right .workflow-marker {
        grid-column: 1;
        grid-row: 1 / 4;
        justify-content: flex-start;
        padding-top: 6px;
    }

    .workflow-label-side {
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(15, 182, 202, 0.1);
    }

    .step-label {
        font-size: 0.65rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .workflow-content-side {
        padding-top: 12px;
    }

    .step-description {
        font-size: 0.9rem;
    }

    /* Reset hover scale on mobile */
    .workflow-step:hover {
        transform: none;
    }
}

/* ================= WHY CHOOSE US SECTION ================= */
.why-section {
    background: #ffffff;
    padding: 84px 24px 100px;
}

.why-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.why-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 52px;
    padding: 0 20px;
}

.why-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 16px auto 24px;
    position: relative;
    display: block;
    white-space: nowrap;
    text-align: center;
    width: fit-content;
    max-width: 100%;
}

.why-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 2px;
    animation: gradient-slide 2.5s linear infinite;
}

.why-copy {
    color: #475467;
    font-size: 1rem;
    line-height: 1.7;
    margin: 32px 0 0;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.why-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 28px;
    min-height: 280px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: whyFadeUp 0.75s ease-out forwards;
}

.why-card:nth-child(1) {
    animation-delay: 0.08s;
}

.why-card:nth-child(2) {
    animation-delay: 0.16s;
}

.why-card:nth-child(3) {
    animation-delay: 0.24s;
}

.why-card:nth-child(4) {
    animation-delay: 0.32s;
}

.why-card:nth-child(5) {
    animation-delay: 0.40s;
}

.why-card:nth-child(6) {
    animation-delay: 0.48s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.14);
    border-color: rgba(15, 182, 202, 0.25);
}

.why-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.why-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 12px;
    line-height: 1.3;
}

.why-card-description {
    color: #475467;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    text-align: justify;
}

@keyframes whyFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-card {
        min-height: auto;
        padding: 28px 24px;
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 60px 16px 84px;
    }

    .why-card {
        padding: 26px 20px;
    }

    .why-title {
        font-size: 2.6rem;
        white-space: nowrap;
        display: block;
        text-align: center;
        margin: 16px auto 24px;
        width: fit-content;
        max-width: 100%;
    }

    .why-copy {
        font-size: 1rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ================= CONTACT SECTION ================= */
.contact-section {
    padding: 84px 24px 100px;
    background: #ffffff;
}

.contact-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(420px, 1.2fr);
    gap: 56px;
    align-items: stretch;
}

.contact-copy {
    max-width: 540px;
    animation: fadeUp 0.8s ease-out both;
}

.contact-brand {
    margin-bottom: 32px;
}

.contact-logo {
    width: 500px;
    max-width: 100%;
    height: auto;
    display: block;
}

.contact-copy h2 {
    font-size: clamp(2.8rem, 4vw, 3.6rem);
    line-height: 1.02;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0 0 22px;
    text-align: center;
}

.contact-copy p {
    font-size: 1.04rem;
    line-height: 1.9;
    color: #475467;
    margin: 0 0 34px;
    max-width: 580px;
    text-indent: 2em;
}

/* ================= CTA BUTTONS ================= */
.contact-cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-cta-buttons .btn {
    min-width: 140px;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.15);
}

/* ================= CLEAN CONTACT DETAILS ================= */

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    max-width: 520px;
    width: 100%;
}

.contact-detail-card {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 18px 20px;
    border-radius: 24px;

    background: rgba(248, 250, 252, 0.88);
    border: 1px solid rgba(15, 182, 202, 0.18);

    transition: all 0.3s ease;
    width: 100%;
    min-height: 110px;
}

/* HOVER */
.contact-detail-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(15, 182, 202, 0.15);
}

/* ICON BOX */
.contact-detail-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(15, 182, 202, 0.12);
    color: var(--primary);
    font-size: 18px;

    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* ICON HOVER */
.contact-detail-card:hover .contact-detail-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    transform: scale(1.1);
}

/* TEXT */
.contact-detail-content {
    display: flex;
    flex-direction: column;
}

.contact-detail-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
}

.contact-detail-value {
    font-size: 1rem;
    font-weight: 700;
    color: #10293d;
    text-decoration: none;
}

.contact-detail-value:hover {
    color: var(--primary);
}

.contact-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 44px;
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 182, 202, 0.14);
    animation: fadeUp 0.9s ease-out both;
    min-height: 620px;
}

.contact-form {
    display: grid;
    gap: 22px;
}

.contact-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-field {
    display: grid;
    gap: 10px;
}

.contact-field span,
.contact-row label span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #10293d;
}

.contact-field input,
.contact-field select,
.contact-field textarea,
.contact-row input,
.contact-row select {
    width: 100%;
    min-height: 54px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: #f8fafc;
    color: #10293d;
    padding: 16px 18px;
    font-size: 0.98rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-row input:focus,
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus,
.contact-row select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(15, 182, 202, 0.12);
}

.contact-field textarea {
    min-height: 170px;
    resize: vertical;
}

.contact-field select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%233f6f7f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px 9px;
}

.contact-form-action {
    margin-top: 8px;
}

.contact-form-action .btn {
    width: 100%;
    padding: 16px 24px;
}

@media (max-width: 1024px) {
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .contact-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 18px 80px;
    }

    .contact-card {
        padding: 28px;
    }

    .contact-copy h2 {
        font-size: 2.6rem;
    }

    .contact-cta-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }

    .contact-cta-buttons .btn {
        width: 100%;
        min-width: auto;
        padding: 16px 24px;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================= CTA SECTION ================= */
.cta-section {
    background: #ffffff;
    padding: 120px 24px;
}

/* CARD */
.cta-card {
    max-width: 1200px; /* 🔥 MAS WIDE */
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
    position: relative;

    /* IMAGE BACKGROUND */
    background: url('/images/cta.png') no-repeat center;
    background-size: cover;

    /* SHADOW */
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.18);
}

/* 🔥 IMAGE OPACITY CONTROL (30%) */
.cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/images/cta.png') no-repeat center;
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
}

/* 🔥 WHITE OVERLAY PARA READABILITY */
.cta-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 1;
}

/* CONTENT */
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;

    /* 🔥 LESS HEIGHT, MORE WIDTH FEEL */
    padding: 70px 80px; 
    max-width: 800px;
    margin: 0 auto;
}

/* TITLE */
.cta-title {
    font-size: clamp(2rem, 2vw, 2rem);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

/* TEXT */
.cta-text {
    color: #475467;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 36px;
}

/* BUTTONS */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* BUTTON STYLE */
.cta-actions .btn {
    padding: 14px 28px;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.cta-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(15, 182, 202, 0.25);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .cta-content {
        padding: 50px 20px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}