/* ---------- HERO WRAPPER ---------- */
.hero {
    position: relative;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: var(--hero-padding-desktop);
    overflow: hidden;
    font-family: var(--hero-font);
    box-sizing: border-box;

    /* Remove background:red */
    background: #050816;
}

/* ---------- Background Image ---------- */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: url("../assets/background/background.svg") center center / cover no-repeat;

    opacity: 0.35;
    filter: blur(6px);
    transform: scale(1.05);

    z-index: 0;
    pointer-events: none;
}


/* ---------- HERO CONTENT ---------- */
.hero-content {
    position: relative;
    z-index: 2;

    max-width: var(--hero-max-width);
    width: 100%;

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

    text-align: center;
    gap: 24px;
}
/* ---------- LOGO ---------- */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    width: 100%;
}

.logo-main {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(59, 130, 246, 0.20));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ---------- TAGLINE (Blue Gradient) ---------- */
.hero-tagline {
    font-size: clamp(1.6rem, 5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hero-text);
    margin: 0;
    line-height: 1.2;
    background: linear-gradient(135deg,
            #ffffff 35%,
            #60a5fa 100%);
    /* White to bright blue */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(59, 130, 246, 0.15);
    word-break: break-word;
}

/* ---------- SUBTITLE / DESCRIPTION ---------- */
.hero-subtitle {
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.80);
    max-width: 780px;
    margin: 4px auto 0;
    letter-spacing: 0.01em;
    padding: 0 4px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.40);
}
/* ===========================
   CTA BUTTON
=========================== */
.hero-buttons-above {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;

    padding: 14px 32px;
    min-width: 180px;

    font-family: var(--hero-font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;

    color: #fff;
    background: transparent;

    border: 1px solid rgb(61, 106, 255);
    border-radius: 7px;

    overflow: hidden;
    cursor: pointer;

    box-shadow: 0 0 0 0 transparent;

    transition: all 0.2s ease-in;
}

.btn-primary:hover {
    background: rgb(61, 106, 255);
    box-shadow: 0 0 30px 5px rgba(0, 142, 236, 0.815);
    transition: all 0.2s ease-out;
    color: #fff;
}

.btn-primary::before {
    content: "";
    position: absolute;
    display: block;

    width: 0;
    height: 86%;

    top: 7%;
    left: 0;

    opacity: 0;
    background: #fff;
    box-shadow: 0 0 50px 30px #fff;

    transform: skewX(-20deg);
}

.btn-primary:hover::before {
    animation: sh02 0.5s linear;
}

@keyframes sh02 {
    from {
        opacity: 0;
        left: 0%;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0;
        left: 100%;
    }
}

.btn-primary:active {
    box-shadow: 0 0 0 0 transparent;
    transition: box-shadow 0.2s ease-in;
}

/* ===========================
   TABLET
=========================== */

@media (max-width:1023px){

    .hero-buttons-above{
        gap:14px;
    }

    .btn-primary{
        padding:13px 30px;
        min-width:170px;
        font-size:.95rem;
    }

}

/* ===========================
   MOBILE
=========================== */

@media (max-width:767px){

    .hero-buttons-above{
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:12px;
        width:100%;
    }

    .btn-primary{
        width:100%;
        max-width:320px;
        min-width:unset;

        padding:14px 24px;
        font-size:.9rem;

        border-radius:5px;
    }

}

/* ===========================
   SMALL MOBILE
=========================== */

@media (max-width:400px){

    .btn-primary{
        max-width:280px;
        padding:12px 20px;
        font-size:.85rem;
    }

}

/* ===========================
   LARGE DESKTOP
=========================== */

@media (min-width:1400px){

    .btn-primary{
        padding:16px 38px;
        min-width:200px;
        font-size:1.05rem;
    }

}

/* ===========================
   REDUCED MOTION
=========================== */

@media (prefers-reduced-motion: reduce){

    .btn-primary{
        transition:none;
    }

    .btn-primary:hover{
        transform:none;
    }

}
/* ---------- ANIMATIONS ---------- */
@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger children for a polished reveal */
.hero-content>* {
    opacity: 0;
    animation: heroFadeIn 0.7s ease forwards;
}

.hero-content .logo-container {
    animation-delay: 0.05s;
}
.hero-content .hero-tagline {
    animation-delay: 0.20s;
}
.hero-content .hero-subtitle {
    animation-delay: 0.40s;
}
.hero-content .hero-buttons-above {
    animation-delay: 0.60s;
}

/* ---------- RESPONSIVE: TABLET (768px - 1023px) ---------- */
@media (max-width: 1023px) {
    .hero {
        padding: var(--hero-padding-tablet);
        min-height: 90vh;
        min-height: 90dvh;
    }

    .hero-content {
        gap: 20px;
    }

    .logo-main {
        max-width: 220px;
    }

    .hero-tagline {
        letter-spacing: 0.14em;
    }

    .hero-subtitle {
        max-width: 620px;
        font-size: clamp(0.95rem, 1.6vw, 1.1rem);
        line-height: 1.65;
    }
}

/* ---------- RESPONSIVE: MOBILE (up to 767px) ---------- */
@media (max-width: 767px) {
    .hero {
        padding: var(--hero-padding-mobile);
        min-height: 92vh;
        min-height: 92dvh;
        align-items: center;
    }

    .hero-content {
        gap: 16px;
        padding: 0 4px;
    }

    .logo-container {
        margin-bottom: 2px;
    }

    .logo-main {
        max-width: 170px;
    }

    .hero-tagline {
        font-size: clamp(1.4rem, 7vw, 2.2rem);
        letter-spacing: 0.10em;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 2.6vw, 1rem);
        line-height: 1.6;
        padding: 0 2px;
        max-width: 100%;
        letter-spacing: 0.005em;
    }

    .hero-buttons-above {
        margin-top: 6px;
        gap: 12px;
        flex-direction: column;
        width: 100%;
    }


    .btn-primary:hover {
        transform: translateY(-2px) scale(1.01);
    }
}

/* ---------- RESPONSIVE: SMALL MOBILE (up to 400px) ---------- */
@media (max-width: 400px) {
    .hero {
        padding: 32px 16px;
        min-height: 94vh;
        min-height: 94dvh;
    }

    .hero-content {
        gap: 12px;
    }

    .logo-main {
        max-width: 140px;
    }

    .hero-tagline {
        font-size: clamp(1.1rem, 6.5vw, 1.6rem);
        letter-spacing: 0.08em;
    }

    .hero-subtitle {
        font-size: clamp(0.8rem, 2.8vw, 0.9rem);
        line-height: 1.55;
    }

}

/* ---------- RESPONSIVE: LARGE DESKTOP (1400px+) ---------- */
@media (min-width: 1400px) {
    .hero {
        padding: 100px 60px;
    }

    .hero-content {
        gap: 30px;
    }

    .logo-main {
        max-width: 340px;
    }

    .hero-tagline {
        font-size: clamp(3.2rem, 4.2vw, 4.8rem);
        letter-spacing: 0.20em;
    }

    .hero-subtitle {
        font-size: clamp(1.15rem, 1.3vw, 1.4rem);
        max-width: 860px;
        line-height: 1.8;
    }

  
}

/* ---------- REDUCED MOTION PREFERENCE ---------- */
@media (prefers-reduced-motion: reduce) {
    .hero-content>* {
        animation: none;
        opacity: 1;
    }

    .hero-content .logo-container,
    .hero-content .hero-tagline,
    .hero-content .hero-subtitle,
    .hero-content .hero-buttons-above {
        animation-delay: 0s;
    }

    .logo-main,
    .btn-primary {
        transition: none;
    }

    .btn-primary:hover {
        transform: none;
    }

    .logo-main:hover {
        transform: none;
    }
}
/* ==========================
   HERO KEYWORDS
========================== */

.hero-keywords {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 30px;

    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-keywords span {
    color: #ffffff;
    transition: color 0.3s ease;
}

.hero-keywords span:hover {
    color: #dbeafe;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-keywords {
        gap: 8px;
        font-size: 0.8rem;
        letter-spacing: 0.05em;
        margin-top: 20px;
    }
}
/* ============================================
   SECTION 2: SERVICES — SQUARE CARDS (BIGGER + TIGHTER)
   ============================================ */

/* ----- Base Section Styles ----- */
.services-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ----- Section Header ----- */
.section-header {
    text-align: center;
    margin-bottom: 44px;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a1a2e;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
    margin: 0;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4361ee, #7209b7);
    border-radius: 4px;
}

/* ----- Services Grid — 6 CARDS IN ONE ROW (DESKTOP) ----- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);  /* 6 columns for 6 cards */
    gap: 16px;
    justify-items: center;
}

/* ----- Service Card — 3D raised card with tilt-on-hover ----- */
.service-card {
    width: 100%;
    max-width: 100%;          /* Full width of grid cell */
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(26, 26, 46, 0.08);
    box-shadow:
        0 1px 1px rgba(26, 26, 46, 0.04),
        0 2px 4px rgba(26, 26, 46, 0.06),
        0 6px 12px rgba(26, 26, 46, 0.08),
        0 12px 24px rgba(67, 97, 238, 0.06);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s ease;
    transform-style: preserve-3d;
    position: relative;
    text-align: center;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
}

.service-card:hover {
    transform: perspective(600px) rotateX(6deg) translateY(-6px);
    box-shadow:
        0 2px 2px rgba(26, 26, 46, 0.05),
        0 6px 10px rgba(26, 26, 46, 0.08),
        0 14px 26px rgba(26, 26, 46, 0.12),
        0 24px 40px rgba(67, 97, 238, 0.14);
}

/* ----- Service Link ----- */
.service-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

/* ----- Service Header ----- */
.service-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

/* ----- Service Icon — BIGGER (54px) ----- */
.service-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.08), rgba(114, 9, 183, 0.06));
    border-radius: 10px;
    transition: background 0.35s ease, transform 0.35s ease;
    flex-shrink: 0;
}

.service-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.15), rgba(114, 9, 183, 0.10));
    transform: scale(1.05);
}

.service-card:hover .service-icon img {
    transform: scale(1.10) rotate(-2deg);
}

/* ----- Service Title ----- */
.service-header h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.service-card:hover .service-header h3 {
    color: #4361ee;
}

/* Decorative dot */
.service-header h3::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4361ee;
    margin-right: 8px;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
    vertical-align: middle;
}

.service-card:hover .service-header h3::before {
    opacity: 1;
    transform: scale(1);
}

/* ----- Reveal Animation ----- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1).reveal.visible { transition-delay: 0.05s; }
.service-card:nth-child(2).reveal.visible { transition-delay: 0.12s; }
.service-card:nth-child(3).reveal.visible { transition-delay: 0.19s; }
.service-card:nth-child(4).reveal.visible { transition-delay: 0.26s; }
.service-card:nth-child(5).reveal.visible { transition-delay: 0.33s; }
.service-card:nth-child(6).reveal.visible { transition-delay: 0.40s; }

/* ===========================
   SERVICES BUTTON
=========================== */

.services-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
}

/* ===========================
   BTN-17
=========================== */

.btn-17,
.btn-17 *,
.btn-17::before,
.btn-17::after {
    box-sizing: border-box;
}

.btn-17 {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    white-space: nowrap;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;

    color: #fff;

    /* Compact Size */
    padding: 11px 24px;

    background: linear-gradient(135deg, #0f172a, #2563eb);

    border: 2px solid #3b82f6;
    border-radius: 5px;

    transition: all .35s ease;

    box-shadow: 0 10px 25px rgba(37, 99, 235, .25);
}

.btn-17:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 15px 35px rgba(37, 99, 235, .4);
}

.btn-17:active {
    transform: scale(.96);
}

/* Text */

.text-container {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.text {
    display: block;
    color: #fff;
    transition: transform .3s ease;
}

.btn-17:hover .text {
    animation: move-up-alternate .3s forwards;
}

/* Text Animation */

@keyframes move-up-alternate {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(90%);
    }

    51% {
        transform: translateY(-90%);
    }

    100% {
        transform: translateY(0);
    }

}

/* Animated Overlay */

.btn-17::before,
.btn-17::after {

    content: "";

    position: absolute;

    width: 120%;
    height: 120%;

    background: rgba(255,255,255,.10);

    transform: skewX(-30deg);

    transition: transform .35s ease;

    z-index: 1;
}

.btn-17::before {
    top: -120%;
    left: -60%;
}

.btn-17::after {
    bottom: -120%;
    right: -60%;
}

.btn-17:hover::before {
    transform: translateY(190%) skewX(-30deg);
}

.btn-17:hover::after {
    transform: translateY(-190%) skewX(-30deg);
}

/* ===========================
   MOBILE
=========================== */

@media (max-width:768px){

    .services-btn{
        margin-top:2rem;
    }

    .btn-17{
        width:auto;
        max-width:none;

        padding:9px 18px;
        font-size:13px;

        border-radius:5px;
    }

}

/* Small Mobile */

@media (max-width:480px){

    .btn-17{
        padding:8px 16px;
        font-size:12px;
    }

}


/* ============================================
   RESPONSIVE — 2‑column grid on smaller screens
   ============================================ */

/* Tablets & smaller laptops */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;            /* keep reduced gap */
    }

    .service-card {
        max-width: 200px;     /* slightly bigger than before (was 180px) */
        padding: 16px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
    }

    .service-icon img {
        width: 24px;
        height: 24px;
    }

    .service-header h3 {
        font-size: 0.95rem;
    }

    .service-header {
        gap: 8px;
    }

    .services-section {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }
}

/* Mobile devices — still 2 columns */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;            /* tighter gap on mobile */
    }

    .service-card {
        max-width: 160px;     /* bigger than before (was 140px) */
        padding: 14px;
    }

    .service-icon {
        width: 42px;
        height: 42px;
    }

    .service-icon img {
        width: 22px;
        height: 22px;
    }

    .service-header h3 {
        font-size: 0.85rem;
    }

    .service-header {
        gap: 6px;
    }

    .services-section {
        padding: 36px 0;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-header h2 {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
        padding-bottom: 10px;
    }

    .section-header h2::after {
        width: 40px;
        height: 3px;
    }

    /* Touch-friendly press effect */
    .service-card:hover {
        transform: none;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    }

    .service-card:active {
        transform: scale(0.95);
        box-shadow: 0 4px 16px rgba(67, 97, 238, 0.10);
    }
}

/* Very small phones (≤400px) — keep 2 columns, shrink gracefully */
@media (max-width: 400px) {
    .services-section .container {
        padding: 0 10px;
    }

    .services-grid {
        gap: 10px;
    }

    .service-card {
        max-width: 130px;     /* bigger than before (was 110px) */
        padding: 10px;
    }

    .service-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .service-icon img {
        width: 18px;
        height: 18px;
    }

    .service-header h3 {
        font-size: 0.75rem;
        letter-spacing: 0.2px;
    }

    .service-header {
        gap: 4px;
    }

    .service-header h3::before {
        display: none;        /* hide dot on tiny screens to save space */
    }
}

/* ============================================
   ACCESSIBILITY: Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .service-card,
    .service-card *,
    .reveal {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .service-card:hover {
        transform: none !important;
    }

    .service-card:active {
        transform: scale(0.98) !important;
    }

    .service-card::after {
        display: none !important;
    }
}
/* ============================================
   SECTION 3: VENTURES (KWANG ECOSYSTEM) — FEATURED + 3 SMALL
   Fully responsive — Compact version
   ============================================ */

.products-section {
    padding: 60px 0;
    background: #fbfbfd;
}

.products-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-section .section-header {
    text-align: center;
    margin-bottom: 36px;
}

.products-section .section-title {
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a2e;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin: 0;
}

.products-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4361ee, #7209b7);
    border-radius: 4px;
}

/* ----- Products Grid ----- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

/* ----- Base Product Card (smaller) ----- */
.product-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border: 1px solid rgba(26, 26, 46, 0.08);
    border-radius: 12px;
    padding: 18px 18px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    border-color: rgba(67, 97, 238, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(26, 26, 46, 0.06);
}

/* ----- Featured card (first child) compact ----- */
.product-card:first-child {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2b2650 100%);
    color: #ffffff;
    border: none;
}

.product-card:first-child::before {
    content: 'Flagship venture';
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c9c3f5;
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 999px;
}

.product-card:first-child .product-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.product-card:first-child .product-icon img {
    width: 34px;
    height: 34px;
}

.product-card:first-child .product-title {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.product-card:first-child .product-desc {
    color: #c7c5db;
    font-size: 0.85rem;
    max-width: 420px;
    margin-bottom: 12px;
    display: block;
    overflow: visible;
    white-space: normal;
}

.product-card:first-child .product-explore {
    color: #ffffff;
    font-size: 0.7rem;
}

.product-card:first-child .product-explore::after {
    background: #ffffff;
}

.product-card:first-child:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(26, 26, 46, 0.25);
    border-color: transparent;
}

/* ----- Icon (small cards) smaller ----- */
.product-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.08), rgba(114, 9, 183, 0.06));
    border-radius: 8px;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.product-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.product-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #1a1a2e;
    margin: 0 0 6px;
}

.product-desc {
    font-size: 0.78rem;
    line-height: 1.5;
    color: #5a5a7a;
    margin: 0 0 10px;
    display: -webkit-box;
     line-clamp: 2;          
    -webkit-line-clamp: 2;  

    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card:first-child .product-desc {
    color: #c7c5db;
    font-size: 0.85rem;
    max-width: 420px;
    margin-bottom: 12px;
    display: block;
    overflow: visible;
    white-space: normal;

    line-clamp: unset;
    -webkit-line-clamp: unset;
}
.product-explore {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #4361ee;
    position: relative;
    padding-bottom: 2px;
    margin-top: auto;
}

.product-explore::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1.5px;
    background: #4361ee;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.product-card:hover .product-explore::after {
    transform: scaleX(1);
}

/* ============================================
   RESPONSIVE (compact adjustments)
   ============================================ */

/* Tablets: 3 small cards → 2 columns */
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card:first-child {
        padding: 24px 26px;
        gap: 20px;
    }

    .product-card:first-child .product-icon {
        width: 56px;
        height: 56px;
    }

    .product-card:first-child .product-icon img {
        width: 30px;
        height: 30px;
    }

    .product-card:first-child .product-title {
        font-size: 1.05rem;
    }

    .product-card:first-child .product-desc {
        font-size: 0.8rem;
    }
}

/* Small tablets / large phones: featured card stacks */
@media (max-width: 700px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-card:first-child {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 20px;
        gap: 0;
    }

    .product-card:first-child .product-icon {
        margin-bottom: 12px;
    }

    .product-card:first-child .product-desc {
        max-width: none;
    }

    .product-card:first-child::before {
        top: 12px;
        right: 14px;
        font-size: 0.5rem;
        padding: 3px 8px;
    }
}

/* Phones: tighter */
@media (max-width: 480px) {
    .products-section {
        padding: 40px 0;
    }

    .products-section .section-header {
        margin-bottom: 24px;
    }

    .products-section .section-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        letter-spacing: 1px;
        padding-bottom: 8px;
    }

    .products-section .section-title::after {
        width: 40px;
        height: 2.5px;
    }

    .product-card {
        padding: 14px 14px;
        border-radius: 10px;
    }

    .product-card:first-child {
        padding: 18px 16px;
        border-radius: 12px;
    }

    .product-card:first-child::before {
        top: 10px;
        right: 12px;
        font-size: 0.45rem;
        padding: 2px 8px;
    }

    .product-card:first-child .product-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .product-card:first-child .product-icon img {
        width: 26px;
        height: 26px;
    }

    .product-card:first-child .product-title {
        font-size: 0.95rem;
    }

    .product-card:first-child .product-desc {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }

    .product-card:first-child .product-explore {
        font-size: 0.65rem;
    }

    .product-icon {
        width: 32px;
        height: 32px;
        border-radius: 6px;
        margin-bottom: 8px;
    }

    .product-icon img {
        width: 16px;
        height: 16px;
    }

    .product-title {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }

 .product-desc {
    font-size: 0.7rem;
    margin-bottom: 6px;

    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;

    line-clamp: 2;
    -webkit-line-clamp: 2;
}
    .product-explore {
        font-size: 0.6rem;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .product-card:first-child {
        padding: 14px 12px;
    }

    .product-card:first-child .product-icon {
        width: 40px;
        height: 40px;
    }

    .product-card:first-child .product-icon img {
        width: 22px;
        height: 22px;
    }

    .product-card:first-child .product-title {
        font-size: 0.85rem;
    }

    .product-card {
        padding: 12px 12px;
    }

    .product-title {
        font-size: 0.75rem;
    }

    .product-desc {
        font-size: 0.65rem;
    }
}

/* ============================================
   ACCESSIBILITY: Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .product-card,
    .product-card *,
    .product-explore::after {
        transition: none !important;
        transform: none !important;
    }
}
/* ============================================
   SECTION 4: WHY CHOOSE US — NEW CARD DESIGN
   ============================================ */

/* ----- Section (full-width gradient background) ----- */
.why-container {
    padding: 60px 20px;
    width: 100%;
    background: linear-gradient(135deg, #f8faff 0%, #eef2ff 30%, #e8eaff 60%, #f5f0ff 100%);
}

/* Inner wrapper */
.why-container .section-header,
.why-container .modern-grid {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* ----- Section Header (unchanged) ----- */
.why-container .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4361ee, #7209b7);
    color: #ffffff;
    padding: 6px 24px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(67, 97, 238, 0.30);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #374151;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* ----- Grid (4 columns) ----- */
.modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    justify-items: center;
}

/* ============================================
   🎨 NEW CARD DESIGN — glass‑morphism + color accents
   ============================================ */
.modern-card {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    border-radius: 20px;               /* ✨ larger radius */
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    /* Glass effect */
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);

    /* Soft shadow */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);

    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease,
                background 0.3s ease;
    position: relative;
    cursor: default;
    overflow: hidden;
}

/* ----- Per‑card gradient accent (via pseudo‑element) ----- */
.modern-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.3), rgba(114, 9, 183, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Individual card colour accents (override on hover) */
.modern-card:nth-child(1)::after {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 107, 107, 0.05));
}
.modern-card:nth-child(2)::after {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.15), rgba(78, 205, 196, 0.05));
}
.modern-card:nth-child(3)::after {
    background: linear-gradient(135deg, rgba(255, 159, 67, 0.15), rgba(255, 159, 67, 0.05));
}
.modern-card:nth-child(4)::after {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15), rgba(155, 89, 182, 0.05));
}

/* Hover state */
.modern-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 24px 56px rgba(67, 97, 238, 0.18);
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(67, 97, 238, 0.15);
}

.modern-card:hover::before {
    opacity: 1;
}

/* ----- Icon – bigger, circular, colourful ----- */
.card-icon-wrap {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;               /* circle */
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.12), rgba(114, 9, 183, 0.08));
    transition: background 0.35s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    margin-bottom: 14px;
}

.card-icon-wrap i {
    font-size: 28px;
    color: #4361ee;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                color 0.3s ease;
}

/* Individual icon colours (optional) */
.modern-card:nth-child(1) .card-icon-wrap i { color: #ff6b6b; }
.modern-card:nth-child(2) .card-icon-wrap i { color: #4ecdc4; }
.modern-card:nth-child(3) .card-icon-wrap i { color: #ff9f43; }
.modern-card:nth-child(4) .card-icon-wrap i { color: #9b59b6; }

.modern-card:hover .card-icon-wrap {
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.20), rgba(114, 9, 183, 0.14));
    transform: scale(1.08) rotate(-4deg);
}

.modern-card:hover .card-icon-wrap i {
    transform: scale(1.12) rotate(4deg);
    color: #3a56d4;  /* fallback – individual colours stay on hover if you prefer */
}
/* Keep individual colours on hover (override) */
.modern-card:nth-child(1):hover .card-icon-wrap i { color: #ff6b6b; }
.modern-card:nth-child(2):hover .card-icon-wrap i { color: #4ecdc4; }
.modern-card:nth-child(3):hover .card-icon-wrap i { color: #ff9f43; }
.modern-card:nth-child(4):hover .card-icon-wrap i { color: #9b59b6; }

/* ----- Titles & descriptions (slightly larger) ----- */
.card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px 0;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.modern-card:hover .card-title {
    color: #2d3b8f;
}

.card-desc {
    font-size: 0.7rem;
    line-height: 1.5;
    color: #6b7280;
    margin: 0;
    max-width: 90%;
    transition: color 0.3s ease;
}

.modern-card:hover .card-desc {
    color: #374151;
}

/* ============================================
   REVEAL ANIMATION (unchanged)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.modern-card:nth-child(1).reveal.visible { transition-delay: 0.05s; }
.modern-card:nth-child(2).reveal.visible { transition-delay: 0.12s; }
.modern-card:nth-child(3).reveal.visible { transition-delay: 0.19s; }
.modern-card:nth-child(4).reveal.visible { transition-delay: 0.26s; }

/* ============================================
   RESPONSIVE (same grid breaks)
   ============================================ */

@media (max-width: 992px) {
    .modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .modern-card {
        max-width: 180px;
        padding: 16px;
        border-radius: 16px;
    }
    .card-icon-wrap {
        width: 50px;
        height: 50px;
    }
    .card-icon-wrap i {
        font-size: 22px;
    }
    .card-title {
        font-size: 0.8rem;
    }
    .card-desc {
        font-size: 0.6rem;
    }
    .why-container {
        padding: 48px 18px;
    }
    .why-container .section-header {
        margin-bottom: 36px;
    }
}

@media (max-width: 600px) {
    .modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .modern-card {
        max-width: 140px;
        padding: 12px;
        border-radius: 14px;
    }
    .card-icon-wrap {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    .card-icon-wrap i {
        font-size: 18px;
    }
    .card-title {
        font-size: 0.7rem;
    }
    .card-desc {
        font-size: 0.55rem;
        max-width: 95%;
    }
    .section-badge {
        font-size: 0.7rem;
        padding: 4px 18px;
    }
    .section-subtitle {
        font-size: 0.95rem;
    }
    .why-container {
        padding: 36px 14px;
    }
    .why-container .section-header {
        margin-bottom: 28px;
    }
    /* Touch feedback */
    .modern-card:hover {
        transform: none;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
    }
    .modern-card:active {
        transform: scale(0.95);
        box-shadow: 0 4px 16px rgba(67, 97, 238, 0.10);
    }
}

@media (max-width: 400px) {
    .modern-grid {
        gap: 10px;
    }
    .modern-card {
        max-width: 110px;
        padding: 8px;
        border-radius: 12px;
    }
    .card-icon-wrap {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        margin-bottom: 6px;
    }
    .card-icon-wrap i {
        font-size: 14px;
    }
    .card-title {
        font-size: 0.6rem;
        letter-spacing: 0.2px;
        margin-bottom: 2px;
    }
    .card-desc {
        font-size: 0.5rem;
        line-height: 1.3;
        max-width: 100%;
    }
    .section-subtitle {
        font-size: 0.85rem;
    }
    .why-container {
        padding: 28px 10px;
    }
}

/* ============================================
   ACCESSIBILITY: Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .modern-card,
    .modern-card *,
    .reveal {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
    .modern-card:hover {
        transform: none !important;
    }
    .modern-card:active {
        transform: scale(0.98) !important;
    }
    .modern-card::before {
        display: none !important;
    }
}
/* ============================================
   ABOUT SECTION — Compact Version
============================================ */

.about-section {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    overflow: hidden;
    background: linear-gradient(rgba(6, 12, 24, .88), rgba(6, 12, 24, .88)), center center/cover no-repeat;
    isolation: isolate;
}

/* Blue Glow - Smaller */
.about-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    top: -120px;
    left: -120px;
    border-radius: 50%;
    background: #4361ee;
    opacity: .15;
    filter: blur(120px);
    pointer-events: none;
}

/* Grid Overlay - Subtle */
.about-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: .30;
    pointer-events: none;
}

.about-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

/* ============================================
   LOGO — Smaller
============================================ */

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
}

.about-image img {
    width: 180px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    animation: fadeInOut 2s ease-in-out infinite;
    transition: .35s;
}

.about-image img:hover {
    transform: scale(1.05);
}

@keyframes fadeInOut {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: .35;
    }
}

/* ============================================
   TITLE — Smaller
============================================ */

.about-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 18px;
    color: #fff;
}

.about-title span {
    background: linear-gradient(135deg, #4D8FFF, #7C4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   TEXT — Tighter
============================================ */

.about-text {
    max-width: 700px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .85);
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* ============================================
   HIGHLIGHTS — Smaller cards
============================================ */

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 850px;
    margin: 40px auto 0;
}

.highlight {
    padding: 20px 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .06);
    backdrop-filter: blur(14px);
    border-radius: 14px;
    transition: .35s ease;
}

.highlight:hover {
    transform: translateY(-5px);
    border-color: #4D8FFF;
    box-shadow: 0 12px 32px rgba(67, 97, 238, .20);
}

.highlight h3 {
    color: #4D8FFF;
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.highlight span {
    color: rgba(255, 255, 255, .8);
    font-size: 0.9rem;
}

/* ============================================
   TABLET
============================================ */

@media (max-width: 992px) {
    .about-section {
        padding: 50px 20px;
    }

    .about-image img {
        width: 150px;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .highlight {
        padding: 18px 16px;
    }

    .highlight h3 {
        font-size: 1.4rem;
    }
}

/* ============================================
   MOBILE
============================================ */

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

    .about-image {
        margin-bottom: 18px;
    }

    .about-image img {
        width: 130px;
    }

    .about-title {
        font-size: 1.8rem;
        margin-bottom: 14px;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 32px;
    }

    .highlight {
        padding: 16px 14px;
        border-radius: 12px;
    }

    .highlight h3 {
        font-size: 1.3rem;
    }

    .highlight span {
        font-size: 0.85rem;
    }
}

/* ============================================
   SMALL MOBILE
============================================ */

@media (max-width: 480px) {
    .about-section {
        padding: 40px 12px;
    }

    .about-image img {
        width: 110px;
    }

    .about-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .about-text p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .highlight {
        padding: 14px 12px;
    }

    .highlight h3 {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .highlight span {
        font-size: 0.8rem;
    }

    .about-highlights {
        margin-top: 28px;
        gap: 12px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .about-section {
        padding: 32px 10px;
    }

    .about-image img {
        width: 90px;
    }

    .about-title {
        font-size: 1.3rem;
    }

    .about-text p {
        font-size: 0.8rem;
    }

    .highlight {
        padding: 12px 10px;
    }

    .highlight h3 {
        font-size: 1rem;
    }

    .highlight span {
        font-size: 0.75rem;
    }
}

/* ============================================
   ACCESSIBILITY: Reduced Motion
============================================ */
@media (prefers-reduced-motion: reduce) {
    .about-image img {
        animation: none !important;
    }

    .highlight {
        transition: none !important;
    }

    .highlight:hover {
        transform: none !important;
    }
}
/* ============================================
   SECTION: PROCESS — FULL-WIDTH GRADIENT
   ============================================ */

.process-section {
    padding: 80px 20px;
    width: 100%;
    background: linear-gradient(135deg, #f8faff 0%, #eef2ff 30%, #e8eaff 60%, #f5f0ff 100%);
}

.process-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ----- Process Header ----- */
.process-header {
    text-align: center;
    margin-bottom: 52px;
}

.process-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4361ee, #7209b7);
    color: #ffffff;
    padding: 6px 24px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(67, 97, 238, 0.25);
}

.process-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.process-title span {
    background: linear-gradient(135deg, #4361ee, #7209b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: #4b5563;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ----- Process Grid (4 columns desktop) ----- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    justify-items: center;
}

/* ----- Process Card (small, square, 5px radius) ----- */
.process-card {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border-radius: 5px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s ease,
                background 0.3s ease;
    position: relative;
    cursor: default;
}

.process-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 48px rgba(67, 97, 238, 0.14);
    background: #ffffff;
    border-color: rgba(67, 97, 238, 0.08);
}

/* Subtle glow border */
.process-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 5px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.20), rgba(114, 9, 183, 0.10));
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.process-card:hover::after {
    opacity: 1;
}

/* ----- Step Number ----- */
.step-number {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4361ee, #7209b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    transition: transform 0.35s ease;
}

.process-card:hover .step-number {
    transform: scale(1.08);
}

/* ----- Card Title ----- */
.process-card h3 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px 0;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.process-card:hover h3 {
    color: #4361ee;
}

/* ----- Card Description ----- */
.process-card p {
    font-size: 0.6rem;
    line-height: 1.4;
    color: #6b7280;
    margin: 0;
    max-width: 90%;
    transition: color 0.3s ease;
}

.process-card:hover p {
    color: #4b5563;
}

/* ============================================
   RESPONSIVE — 2x2 GRID ON SMALL SCREENS
   ============================================ */

/* Tablets & small laptops (≤992px) */
@media (max-width: 992px) {
    .about-highlights {
        gap: 14px;
        max-width: 450px;
    }
    .highlight {
        padding: 14px 12px;
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .process-card {
        max-width: 180px;
        padding: 16px 14px;
    }
    .about-section {
        padding: 60px 18px;
    }
    .process-section {
        padding: 60px 18px;
    }
    .process-header {
        margin-bottom: 40px;
    }
}

/* Mobile devices (≤600px) — 2 columns */
@media (max-width: 600px) {
    .about-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        max-width: 100%;
    }
    .highlight {
        padding: 12px 8px;
        min-width: auto;
    }
    .highlight h3 {
        font-size: 1.2rem;
    }
    .highlight span {
        font-size: 0.65rem;
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .process-card {
        max-width: 140px;
        padding: 14px 12px;
    }
    .step-number {
        font-size: 1.8rem;
        margin-bottom: 4px;
    }
    .process-card h3 {
        font-size: 0.7rem;
    }
    .process-card p {
        font-size: 0.55rem;
        max-width: 95%;
    }
    .about-section {
        padding: 44px 14px;
    }
    .process-section {
        padding: 44px 14px;
    }
    .process-header {
        margin-bottom: 28px;
    }
    .process-badge,
    .about-badge {
        font-size: 0.65rem;
        padding: 4px 16px;
    }
    .process-subtitle {
        font-size: 0.9rem;
    }

    /* Touch-friendly */
    .highlight:hover {
        transform: none;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    }
    .process-card:hover {
        transform: none;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
    }
    .process-card:active {
        transform: scale(0.95);
        box-shadow: 0 4px 16px rgba(67, 97, 238, 0.10);
    }
}

/* Very small phones (≤400px) */
@media (max-width: 400px) {
    .about-highlights {
        gap: 8px;
    }
    .highlight {
        padding: 10px 6px;
    }
    .highlight h3 {
        font-size: 1rem;
    }
    .highlight span {
        font-size: 0.55rem;
    }
    .process-grid {
        gap: 10px;
    }
    .process-card {
        max-width: 110px;
        padding: 10px 8px;
    }
    .step-number {
        font-size: 1.4rem;
        margin-bottom: 2px;
    }
    .process-card h3 {
        font-size: 0.6rem;
    }
    .process-card p {
        font-size: 0.5rem;
        line-height: 1.3;
        max-width: 100%;
    }
    .about-section {
        padding: 32px 10px;
    }
    .process-section {
        padding: 32px 10px;
    }
    .about-title {
        font-size: 1.5rem;
    }
    .process-title {
        font-size: 1.5rem;
    }
    .about-text {
        font-size: 0.9rem;
    }
}

/* ============================================
   ACCESSIBILITY: Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .highlight,
    .process-card,
    .process-card *,
    .reveal {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
    .highlight:hover {
        transform: none !important;
    }
    .process-card:hover {
        transform: none !important;
    }
    .process-card::after {
        display: none !important;
    }
}




/* ===== CLIENT STORIES — COMING SOON ===== */

.coming-soon-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    color: #ffffff;
    background: linear-gradient(135deg, #4D8FFF, #6C4BFF);
    box-shadow: 0 10px 30px rgba(108, 75, 255, 0.35);
}

.coming-soon-badge {
    display: table;
    margin: 0 auto 18px;
    padding: 7px 16px;
    border: 1px solid rgba(108, 75, 255, 0.5);
    border-radius: 50px;
    color: #8d73ff;
    background: rgba(108, 75, 255, 0.1);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.coming-soon-title {
    margin-bottom: 15px;
    color: #005c4e;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
}

.testimonial-card .testimonial-text {
    max-width: 650px;
    margin: 0 auto 25px;
    text-align: center;
    line-height: 1.8;
}

.testimonial-card .testimonial-author {
    justify-content: center;
    text-align: center;
}

.testimonial-card .author-info h4 {
    margin-bottom: 6px;
}

/* ===== COMING SOON ANIMATIONS ===== */

/* Card Fade-Up Animation */
.testimonial-card.active {
    animation: cardFadeUp 0.9s ease-out both;
}

@keyframes cardFadeUp {
    0% {
        opacity: 0;
        transform: translateY(35px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Rocket Floating Animation */
.coming-soon-icon {
    animation: rocketFloat 3s ease-in-out infinite;
}

@keyframes rocketFloat {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 10px 30px rgba(108, 75, 255, 0.35);
    }

    50% {
        transform: translateY(-10px);
        box-shadow: 0 18px 40px rgba(108, 75, 255, 0.55);
    }
}


/* Rocket Icon Movement */
.coming-soon-icon i {
    animation: rocketMove 2.5s ease-in-out infinite;
}

@keyframes rocketMove {
    0%,
    100% {
        transform: translate(0, 0) rotate(-5deg);
    }

    50% {
        transform: translate(3px, -4px) rotate(5deg);
    }
}


/* Coming Soon Badge Glow */
.coming-soon-badge {
    position: relative;
    overflow: hidden;
    animation: badgeGlow 2.5s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%,
    100% {
        border-color: rgba(108, 75, 255, 0.4);
        box-shadow: 0 0 5px rgba(108, 75, 255, 0.15);
    }

    50% {
        border-color: rgba(77, 143, 255, 0.9);
        box-shadow:
            0 0 12px rgba(77, 143, 255, 0.4),
            0 0 25px rgba(108, 75, 255, 0.2);
    }
}


/* Badge Shine Effect */
.coming-soon-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transform: skewX(-20deg);
    animation: badgeShine 3.5s ease-in-out infinite;
}

@keyframes badgeShine {
    0% {
        left: -120%;
    }

    45%,
    100% {
        left: 150%;
    }
}


/* Title Soft Glow */
.coming-soon-title {
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%,
    100% {
        text-shadow: 0 0 0 rgba(108, 75, 255, 0);
    }

    50% {
        text-shadow: 0 0 18px rgba(108, 75, 255, 0.45);
    }
}


/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

    .testimonial-card.active,
    .coming-soon-icon,
    .coming-soon-icon i,
    .coming-soon-badge,
    .coming-soon-badge::before,
    .coming-soon-title {
        animation: none;
    }
}
/* ============================================
   SECTION: TESTIMONIALS — PREMIUM GRADIENT
   ============================================ */

.testimonials-section {
    padding: 80px 20px;
    width: 100%;
   background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
    overflow: hidden;
    position: relative;
}

/* Subtle decorative circle */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ----- Section Header ----- */
.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-section .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4361ee, #7209b7);
    color: #ffffff;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(67, 97, 238, 0.25);
}

.testimonials-section .section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.testimonials-section .gradient-text {
    background: linear-gradient(135deg, #4361ee, #7209b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-section .section-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: #4b5563;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ----- Testimonial Slider ----- */
.testimonial-slider {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    overflow: hidden;
}

/* ----- Slider Container ----- */
.slider-container {
    position: relative;
    min-height: 340px;
}

/* ----- Testimonial Card ----- */
.testimonial-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border-radius: 5px;
    padding: 40px 44px 36px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: scale(0.92) translateY(20px);
    pointer-events: none;
    visibility: hidden;
}

/* Active slide */
.testimonial-card.active {
    position: relative;
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
    visibility: visible;
}

/* Hover effect */
.testimonial-card:hover {
    box-shadow: 0 16px 48px rgba(67, 97, 238, 0.10);
    border-color: rgba(67, 97, 238, 0.06);
}

/* ----- Testimonial Rating ----- */
.testimonial-rating {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-rating i {
    color: #f59e0b;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-rating i {
    transform: scale(1.1);
}

.testimonial-rating i:last-child {
    color: #fbbf24;
}

/* ----- Testimonial Text ----- */
.testimonial-text {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.8;
    color: #374151;
    margin: 0 0 28px 0;
    font-style: italic;
    quotes: "“" "”" "'" "'";
    position: relative;
}

.testimonial-text::before {
    content: "“";
    font-size: 2.4rem;
    color: #4361ee;
    opacity: 0.3;
    margin-right: 4px;
    font-style: normal;
    display: inline-block;
}

.testimonial-text::after {
    content: "”";
    font-size: 2.4rem;
    color: #4361ee;
    opacity: 0.3;
    margin-left: 4px;
    font-style: normal;
    display: inline-block;
}

/* ----- Testimonial Author ----- */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

/* Author Avatar */
.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(67, 97, 238, 0.15);
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    border-color: #4361ee;
    transform: scale(1.05);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Author Info */
.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 2px 0;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.testimonial-card:hover .author-info h4 {
    color: #4361ee;
}

.author-info p {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
}

/* ----- Slider Dots ----- */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    padding: 0;
    outline: none;
    position: relative;
}

.dot:hover {
    background: #9ca3af;
    transform: scale(1.15);
}

.dot.active {
    background: linear-gradient(135deg, #4361ee, #7209b7);
    width: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.30);
}

/* Smooth transition for dots */
.dot.active:hover {
    background: linear-gradient(135deg, #4361ee, #7209b7);
    transform: none;
}

/* ----- Reveal Animation ----- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for header elements */
.testimonials-section .section-badge.reveal.visible {
    transition-delay: 0.05s;
}
.testimonials-section .section-title.reveal.visible {
    transition-delay: 0.12s;
}
.testimonials-section .section-subtitle.reveal.visible {
    transition-delay: 0.19s;
}

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

/* Tablets & small laptops (≤992px) */
@media (max-width: 992px) {
    .testimonials-section {
        padding: 60px 18px;
    }
    .testimonials-section .section-header {
        margin-bottom: 38px;
    }
    .testimonial-card {
        padding: 32px 32px 28px;
    }
    .slider-container {
        min-height: 320px;
    }
    .testimonial-text {
        font-size: 1rem;
    }
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 2rem;
    }
    .author-avatar {
        width: 50px;
        height: 50px;
    }
}

/* Mobile devices (≤600px) */
@media (max-width: 600px) {
    .testimonials-section {
        padding: 44px 14px;
    }
    .testimonials-section .section-header {
        margin-bottom: 28px;
    }
    .testimonials-section .section-badge {
        font-size: 0.65rem;
        padding: 4px 16px;
    }
    .testimonials-section .section-subtitle {
        font-size: 0.9rem;
    }

    .testimonial-card {
        padding: 24px 18px 22px;
    }
    .slider-container {
        min-height: 300px;
    }

    .testimonial-rating {
        margin-bottom: 14px;
        gap: 3px;
    }
    .testimonial-rating i {
        font-size: 0.85rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 1.6rem;
    }

    .testimonial-author {
        gap: 12px;
    }
    .author-avatar {
        width: 44px;
        height: 44px;
        border-width: 2px;
    }
    .author-info h4 {
        font-size: 0.85rem;
    }
    .author-info p {
        font-size: 0.7rem;
    }

    .slider-dots {
        gap: 8px;
        margin-top: 24px;
    }
    .dot {
        width: 8px;
        height: 8px;
    }
    .dot.active {
        width: 24px;
    }

    /* Touch-friendly hover alternative */
    .testimonial-card:hover {
        transform: none !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    }
    .testimonial-card:active {
        transform: scale(0.99) !important;
    }
    .author-avatar:active {
        transform: scale(0.95);
    }
}

/* Very small phones (≤400px) */
@media (max-width: 400px) {
    .testimonials-section {
        padding: 32px 10px;
    }
    .testimonial-card {
        padding: 18px 14px 18px;
    }
    .slider-container {
        min-height: 280px;
    }
    .testimonial-rating i {
        font-size: 0.75rem;
    }
    .testimonial-text {
        font-size: 0.8rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 1.3rem;
    }
    .author-avatar {
        width: 38px;
        height: 38px;
    }
    .author-info h4 {
        font-size: 0.75rem;
    }
    .author-info p {
        font-size: 0.6rem;
    }
    .slider-dots {
        gap: 6px;
        margin-top: 18px;
    }
    .dot {
        width: 7px;
        height: 7px;
    }
    .dot.active {
        width: 20px;
    }
}

/* ============================================
   ACCESSIBILITY: Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .testimonial-card {
        transition: none !important;
    }
    .testimonial-card.active {
        transition: none !important;
    }
    .dot {
        transition: none !important;
    }
    .reveal {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .testimonial-rating i {
        transition: none !important;
    }
    .testimonial-card:hover .testimonial-rating i {
        transform: none !important;
    }
    .author-avatar {
        transition: none !important;
    }
    .testimonial-card:hover .author-avatar {
        transform: none !important;
    }
    .testimonials-section::before {
        display: none;
    }
}

/* ============================================
   SMOOTH SLIDE TRANSITIONS (optional enhancement)
   ============================================ */
.testimonial-card {
    transition: opacity 0.5s ease,
                transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0.5s ease;
}

/* For slide-in-from-right effect (active gets this via class) */
.testimonial-card.slide-in {
    animation: slideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.testimonial-card.slide-out {
    animation: slideOut 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideOut {
    0% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(-40px) scale(0.95);
    }
}
/* ============================================
   CTA SECTION – PREMIUM BLUE GRADIENT
   ============================================ */

.cta-section {
    padding: 80px 20px;
    width: 100%;
   background-image: linear-gradient(to top, #a7a6cb 0%, #8989ba 52%, #8989ba 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle decorative glow circles */
.cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-container {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ----- CTA Title ----- */
.cta-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cta-title span {
    background-image: linear-gradient(to top, #09203f 0%, #537895 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----- CTA Text ----- */
.cta-text {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 36px 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ----- CTA Buttons ----- */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 5px;        /* 5px radius */
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    cursor: pointer;
}

/* ----- Primary Button ----- */
.cta-btn.primary {
    background: #ffffff;
    color: #1a56db;
    border-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-btn.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    background: #f0f7ff;
    border-color: #f0f7ff;
}

.cta-btn.primary:active {
    transform: scale(0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ----- Secondary Button ----- */
.cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-btn.secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.cta-btn.secondary:active {
    transform: scale(0.98);
}

/* ============================================
   REVEAL ANIMATION (for Intersection Observer)
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for inner elements (optional) */
.cta-container .cta-title.reveal.visible {
    transition-delay: 0.05s;
}
.cta-container .cta-text.reveal.visible {
    transition-delay: 0.12s;
}
.cta-container .cta-buttons.reveal.visible {
    transition-delay: 0.19s;
}

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

/* Tablets (≤992px) */
@media (max-width: 992px) {
    .cta-section {
        padding: 64px 18px;
    }
    .cta-title {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
    }
    .cta-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .cta-btn {
        padding: 12px 32px;
        font-size: 0.95rem;
    }
    .cta-buttons {
        gap: 16px;
    }
}

/* Mobile devices (≤600px) */
@media (max-width: 600px) {
    .cta-section {
        padding: 48px 16px;
    }
    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    .cta-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 24px;
        max-width: 100%;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    .cta-btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 20px;
        font-size: 0.95rem;
        text-align: center;
    }
    .cta-btn.primary {
        order: 1;
    }
    .cta-btn.secondary {
        order: 2;
    }

    /* Touch‑friendly: disable hover lift, use active press */
    .cta-btn.primary:hover {
        transform: none;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }
    .cta-btn.secondary:hover {
        transform: none;
        background: transparent;
        border-color: rgba(255, 255, 255, 0.4);
    }
    .cta-btn:active {
        transform: scale(0.97) !important;
    }
}

/* Very small phones (≤400px) */
@media (max-width: 400px) {
    .cta-section {
        padding: 36px 12px;
    }
    .cta-title {
        font-size: 1.5rem;
    }
    .cta-text {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    .cta-btn {
        font-size: 0.85rem;
        padding: 12px 16px;
        max-width: 260px;
    }
    .cta-buttons {
        gap: 12px;
    }
}

/* ============================================
   ACCESSIBILITY: Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .cta-btn {
        transition: none !important;
    }
    .reveal {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .cta-btn:hover {
        transform: none !important;
    }
    .cta-section::before,
    .cta-section::after {
        display: none;
    }
}