/* ---------- 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;
    }
}

/* =====================================================
   WHY CHOOSE US - WITH LITTLE PLANETS
===================================================== */

:root {
    /* Theme Colors */
    --color-creative: #FF6B6B;
    --color-design: #4ECDC4;
    --color-technology: #45B7D1;
    --color-strategy: #C084FC;
    
    /* Dark Moon colors */
    --moon-base: #5A5A5A;
    --moon-light: #7A7A7A;
    --moon-shadow: #3A3A3A;
    --moon-dark: #2A2A2A;
    --moon-crater: #4A4A4A;
    --moon-glow: rgba(150, 150, 150, 0.08);
}

.why-container {
    width: 100%;
    padding: 60px 20px 40px;
    position: relative;
    overflow: hidden;
    background: #0a0a1a;
    color: #fff;
}

/* =====================================================
   SPACE BACKGROUND EFFECTS
===================================================== */

/* Star field - faster twinkle */
.why-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,0.5), transparent),
        radial-gradient(2px 2px at 30% 60%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 50% 10%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 70% 40%, rgba(255,255,255,0.5), transparent),
        radial-gradient(2px 2px at 90% 70%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 15% 80%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 45% 90%, rgba(255,255,255,0.4), transparent),
        radial-gradient(2px 2px at 65% 15%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 85% 50%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 5% 40%, rgba(255,255,255,0.4), transparent),
        radial-gradient(2px 2px at 25% 30%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 55% 55%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 75% 75%, rgba(255,255,255,0.5), transparent),
        radial-gradient(2px 2px at 95% 25%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 35% 45%, rgba(255,255,255,0.6), transparent);
    background-size: 200px 200px;
    pointer-events: none;
    animation: twinkle 2s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

/* Nebula effects */
.why-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(100, 149, 237, 0.04), transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(138, 43, 226, 0.04), transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(70, 130, 180, 0.03), transparent 40%);
    pointer-events: none;
    z-index: 0;
}


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

.why-container .section-header {
    max-width: 750px;
    margin: 0 auto 35px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    padding: 4px 14px;
    border: 1px solid rgba(150, 150, 150, 0.15);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #8A8A8A;
    background: rgba(150, 150, 150, 0.06);
    backdrop-filter: blur(10px);
}

.why-title {
    margin: 12px 0 10px;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -2px;
    color: #ffffff;
}

.why-title span {
    display: block;
    background: linear-gradient(
        135deg,
        #8A8A8A,
        #5A5A5A,
        #3A3A3A,
        #C084FC
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.section-subtitle {
    max-width: 620px;
    margin: auto;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.6;
}


/* =====================================================
   ORBIT AREA
===================================================== */

.why-orbit {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
    position: relative;
    z-index: 1;
}


/* Main orbit container */

.orbit-system {
    width: 420px;
    height: 420px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =====================================================
   LITTLE PLANETS - ORBITING SMALL BODIES
===================================================== */

/* Planet container that rotates */
.planet-orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
}

/* Planet 1 - Small red planet (like Mars) */
.planet-1 {
    width: 200px;
    height: 200px;
    animation: planetOrbit1 8s linear infinite;
}

.planet-1 .planet {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    background: 
        radial-gradient(circle at 35% 35%, #FF6B6B, #CC4444 50%, #992222 100%);
    box-shadow: 
        0 0 15px rgba(255, 107, 107, 0.2),
        0 0 30px rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
}

/* Planet 2 - Small blue planet (like Earth) */
.planet-2 {
    width: 250px;
    height: 250px;
    animation: planetOrbit2 10s linear infinite;
}

.planet-2 .planet {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin-left: -7px;
    margin-top: -7px;
    background: 
        radial-gradient(circle at 35% 35%, #4ECDC4, #2EA89E 50%, #1A7A72 100%);
    box-shadow: 
        0 0 15px rgba(78, 205, 196, 0.2),
        0 0 30px rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.2);
}

/* Planet 3 - Small purple planet */
.planet-3 {
    width: 180px;
    height: 180px;
    animation: planetOrbit3 7s linear infinite;
}

.planet-3 .planet {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin-left: -6px;
    margin-top: -6px;
    background: 
        radial-gradient(circle at 35% 35%, #C084FC, #8B5CF6 50%, #6D28D9 100%);
    box-shadow: 
        0 0 15px rgba(192, 132, 252, 0.2),
        0 0 30px rgba(192, 132, 252, 0.1);
    border: 1px solid rgba(192, 132, 252, 0.2);
}

/* Planet 4 - Small orange planet */
.planet-4 {
    width: 230px;
    height: 230px;
    animation: planetOrbit4 9s linear infinite;
}

.planet-4 .planet {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin-left: -7.5px;
    margin-top: -7.5px;
    background: 
        radial-gradient(circle at 35% 35%, #FFB347, #FF8C00 50%, #CC6600 100%);
    box-shadow: 
        0 0 15px rgba(255, 179, 71, 0.2),
        0 0 30px rgba(255, 179, 71, 0.1);
    border: 1px solid rgba(255, 179, 71, 0.2);
}

/* Planet 5 - Small teal planet */
.planet-5 {
    width: 280px;
    height: 280px;
    animation: planetOrbit5 11s linear infinite;
}

.planet-5 .planet {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin-left: -5px;
    margin-top: -5px;
    background: 
        radial-gradient(circle at 35% 35%, #45B7D1, #2E8B9E 50%, #1A5A6A 100%);
    box-shadow: 
        0 0 15px rgba(69, 183, 209, 0.2),
        0 0 30px rgba(69, 183, 209, 0.1);
    border: 1px solid rgba(69, 183, 209, 0.2);
}

/* Planet orbit animations */
@keyframes planetOrbit1 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes planetOrbit2 {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes planetOrbit3 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes planetOrbit4 {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes planetOrbit5 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Planet ring (Saturn-like ring for some planets) */
.planet-1 .planet-ring,
.planet-3 .planet-ring {
    position: absolute;
    width: 28px;
    height: 10px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin-left: -14px;
    margin-top: -5px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    transform: rotateX(70deg);
    pointer-events: none;
}

.planet-1 .planet-ring {
    border-color: rgba(255, 107, 107, 0.2);
}

.planet-3 .planet-ring {
    border-color: rgba(192, 132, 252, 0.2);
    width: 24px;
    height: 8px;
    margin-left: -12px;
    margin-top: -4px;
}


/* =====================================================
   ORBIT RINGS - FASTER ROTATION
===================================================== */

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ring-one {
    width: 250px;
    height: 250px;
    border: 1px solid rgba(150, 150, 150, 0.08);
    animation: ringRotateClockwise 12s linear infinite;
    box-shadow: 
        0 0 30px rgba(150, 150, 150, 0.03),
        inset 0 0 30px rgba(150, 150, 150, 0.02);
}

.ring-two {
    width: 340px;
    height: 340px;
    border: 1px solid rgba(150, 150, 150, 0.05);
    animation: ringRotateCounterClockwise 15s linear infinite;
    box-shadow: 
        0 0 50px rgba(150, 150, 150, 0.02),
        inset 0 0 50px rgba(150, 150, 150, 0.015);
}

/* Ring rotation animations */
@keyframes ringRotateClockwise {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes ringRotateCounterClockwise {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}


/* =====================================================
   CENTER - DARK MOON (SMALLER)
===================================================== */

.orbit-center {
    width: 70px;
    height: 70px;
    position: absolute;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    padding: 3px;
    
    /* Dark Moon surface */
    background: 
        radial-gradient(circle at 65% 30%, #6A6A6A, #4A4A4A 30%, #3A3A3A 50%, #2A2A2A 70%, #1A1A1A 100%);
    box-shadow: 
        0 0 20px rgba(100, 100, 100, 0.1),
        0 0 40px rgba(100, 100, 100, 0.05),
        0 0 60px rgba(100, 100, 100, 0.02),
        inset 0 -10px 30px rgba(0, 0, 0, 0.3),
        inset 0 10px 30px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(150, 150, 150, 0.08);
    animation: moonFloat 2s ease-in-out infinite;
}

/* Moon floating animation - faster */
@keyframes moonFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        box-shadow: 
            0 0 20px rgba(100, 100, 100, 0.1),
            0 0 40px rgba(100, 100, 100, 0.05),
            0 0 60px rgba(100, 100, 100, 0.02),
            inset 0 -10px 30px rgba(0, 0, 0, 0.3),
            inset 0 10px 30px rgba(255, 255, 255, 0.05);
    }
    50% {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 
            0 0 30px rgba(100, 100, 100, 0.15),
            0 0 50px rgba(100, 100, 100, 0.08),
            0 0 80px rgba(100, 100, 100, 0.03),
            inset 0 -10px 30px rgba(0, 0, 0, 0.35),
            inset 0 10px 30px rgba(255, 255, 255, 0.08);
    }
}

/* Dark Moon craters */
.orbit-center::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: 
        /* Large crater - top right */
        radial-gradient(circle at 70% 25%, rgba(80, 80, 80, 0.5), transparent 15%),
        radial-gradient(circle at 72% 27%, rgba(60, 60, 60, 0.4), transparent 8%),
        /* Medium crater - bottom left */
        radial-gradient(circle at 25% 65%, rgba(80, 80, 80, 0.45), transparent 12%),
        radial-gradient(circle at 27% 67%, rgba(60, 60, 60, 0.35), transparent 6%),
        /* Small crater - top left */
        radial-gradient(circle at 20% 30%, rgba(70, 70, 70, 0.4), transparent 8%),
        /* Small crater - bottom right */
        radial-gradient(circle at 75% 75%, rgba(70, 70, 70, 0.35), transparent 6%),
        /* Tiny crater cluster - center */
        radial-gradient(circle at 45% 50%, rgba(75, 75, 75, 0.3), transparent 4%),
        radial-gradient(circle at 50% 55%, rgba(75, 75, 75, 0.25), transparent 3%),
        /* Surface texture */
        radial-gradient(circle at 40% 40%, rgba(100, 100, 100, 0.08), transparent 30%),
        radial-gradient(circle at 60% 60%, rgba(80, 80, 80, 0.06), transparent 25%);
    pointer-events: none;
}

/* Moon glow ring - faster */
.orbit-center::after {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(150, 150, 150, 0.04), transparent 70%);
    pointer-events: none;
    animation: glowRing 2s ease-in-out infinite alternate;
}

@keyframes glowRing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Center Image - Moon surface overlay */
.center-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
    filter: brightness(0.5) contrast(1.2) saturate(0.2);
    opacity: 0.4;
    mix-blend-mode: overlay;
}

.orbit-center:hover {
    animation-play-state: paused;
    transform: scale(1.06);
    box-shadow: 
        0 0 30px rgba(100, 100, 100, 0.2),
        0 0 60px rgba(100, 100, 100, 0.1),
        0 0 100px rgba(100, 100, 100, 0.04);
}

.orbit-center:hover .center-image {
    transform: scale(1.1);
}


/* =====================================================
   ROTATING SYSTEM - FASTER
===================================================== */

.orbit-items {
    position: absolute;
    width: 340px;
    height: 340px;
    animation: orbitRotate 16s linear infinite;
    z-index: 10;
}

/* Main orbit rotation - faster */
@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* =====================================================
   ORBIT ITEMS - FASTER FLOATING
===================================================== */

.orbit-item {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}


/* =====================================================
   PILLAR POSITIONS - FASTER FLOATING
===================================================== */

.creative {
    transform: rotate(0deg) translateY(-170px);
    animation: itemFloat 2s ease-in-out infinite;
    animation-delay: 0s;
}

.design {
    transform: rotate(90deg) translateY(-170px);
    animation: itemFloat 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

.technology {
    transform: rotate(180deg) translateY(-170px);
    animation: itemFloat 2s ease-in-out infinite;
    animation-delay: 1s;
}

.strategy {
    transform: rotate(270deg) translateY(-170px);
    animation: itemFloat 2s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Item floating animation - faster */
@keyframes itemFloat {
    0%, 100% {
        transform: rotate(var(--rotation, 0deg)) translateY(-170px);
    }
    50% {
        transform: rotate(var(--rotation, 0deg)) translateY(-177px);
    }
}

/* Set rotation variables for each item */
.creative {
    --rotation: 0deg;
}
.design {
    --rotation: 90deg;
}
.technology {
    --rotation: 180deg;
}
.strategy {
    --rotation: 270deg;
}


/* =====================================================
   KEEP CARDS STRAIGHT
===================================================== */

.creative .pillar-card {
    transform: rotate(0deg);
}

.design .pillar-card {
    transform: rotate(-90deg);
}

.technology .pillar-card {
    transform: rotate(-180deg);
}

.strategy .pillar-card {
    transform: rotate(-270deg);
}


/* =====================================================
   PILLAR CARDS - SMALLER
===================================================== */

.pillar-card {
    width: 100px;
    height: 100px;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(10px);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}


/* =====================================================
   CREATIVE - RED
===================================================== */

.creative .pillar-card {
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 107, 107, 0.2), rgba(255, 107, 107, 0.05) 70%);
    border: 1px solid rgba(255, 107, 107, 0.2);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 107, 0.05);
}

.creative .pillar-card:hover {
    border-color: rgba(255, 107, 107, 0.5);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 107, 107, 0.15);
    transform: scale(1.06);
}

.creative .pillar-icon {
    background: rgba(255, 107, 107, 0.2);
    color: #FF6B6B;
    border-color: rgba(255, 107, 107, 0.15);
}

.creative .pillar-info span {
    color: #FF6B6B;
}

.creative .pillar-info h3 {
    color: #FF8A8A;
}


/* =====================================================
   DESIGN - TEAL
===================================================== */

.design .pillar-card {
    background:
        radial-gradient(circle at 30% 20%, rgba(78, 205, 196, 0.2), rgba(78, 205, 196, 0.05) 70%);
    border: 1px solid rgba(78, 205, 196, 0.2);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(78, 205, 196, 0.05);
}

.design .pillar-card:hover {
    border-color: rgba(78, 205, 196, 0.5);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(78, 205, 196, 0.15);
    transform: scale(1.06);
}

.design .pillar-icon {
    background: rgba(78, 205, 196, 0.2);
    color: #4ECDC4;
    border-color: rgba(78, 205, 196, 0.15);
}

.design .pillar-info span {
    color: #4ECDC4;
}

.design .pillar-info h3 {
    color: #6EDDD4;
}


/* =====================================================
   TECHNOLOGY - BLUE
===================================================== */

.technology .pillar-card {
    background:
        radial-gradient(circle at 30% 20%, rgba(69, 183, 209, 0.2), rgba(69, 183, 209, 0.05) 70%);
    border: 1px solid rgba(69, 183, 209, 0.2);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(69, 183, 209, 0.05);
}

.technology .pillar-card:hover {
    border-color: rgba(69, 183, 209, 0.5);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(69, 183, 209, 0.15);
    transform: scale(1.06);
}

.technology .pillar-icon {
    background: rgba(69, 183, 209, 0.2);
    color: #45B7D1;
    border-color: rgba(69, 183, 209, 0.15);
}

.technology .pillar-info span {
    color: #45B7D1;
}

.technology .pillar-info h3 {
    color: #65C7E1;
}


/* =====================================================
   STRATEGY - PURPLE
===================================================== */

.strategy .pillar-card {
    background:
        radial-gradient(circle at 30% 20%, rgba(192, 132, 252, 0.2), rgba(192, 132, 252, 0.05) 70%);
    border: 1px solid rgba(192, 132, 252, 0.2);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(192, 132, 252, 0.05);
}

.strategy .pillar-card:hover {
    border-color: rgba(192, 132, 252, 0.5);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(192, 132, 252, 0.15);
    transform: scale(1.06);
}

.strategy .pillar-icon {
    background: rgba(192, 132, 252, 0.2);
    color: #C084FC;
    border-color: rgba(192, 132, 252, 0.15);
}

.strategy .pillar-info span {
    color: #C084FC;
}

.strategy .pillar-info h3 {
    color: #D094FC;
}


/* =====================================================
   ICON
===================================================== */

.pillar-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.15) rotate(5deg);
}


/* =====================================================
   TEXT
===================================================== */

.pillar-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pillar-info span {
    font-size: 6px;
    letter-spacing: 2px;
    font-weight: 600;
}

.pillar-info h3 {
    margin: 2px 0 2px;
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 600;
}

.pillar-info p {
    margin: 0;
    color: rgba(255,255,255,0.4);
    font-size: 7px;
    line-height: 1.2;
}


/* =====================================================
   PAUSE ON HOVER (System)
===================================================== */

.orbit-system:hover .orbit-items {
    animation-play-state: paused;
}

.orbit-system:hover .ring-one {
    animation-play-state: paused;
}

.orbit-system:hover .ring-two {
    animation-play-state: paused;
}

.orbit-system:hover .orbit-center {
    animation-play-state: paused;
}

.orbit-system:hover .planet-orbit {
    animation-play-state: paused;
}


/* =====================================================
   RESPONSIVE - TABLET (768px - 1024px)
===================================================== */

@media (max-width: 1024px) {
    .why-container {
        padding: 50px 20px 35px;
    }

    .orbit-system {
        width: 380px;
        height: 380px;
    }

    .ring-one {
        width: 230px;
        height: 230px;
    }

    .ring-two {
        width: 310px;
        height: 310px;
    }

    .orbit-center {
        width: 65px;
        height: 65px;
        padding: 3px;
    }

    .orbit-items {
        width: 310px;
        height: 310px;
    }

    .orbit-item {
        width: 92px;
        height: 92px;
        margin-left: -46px;
        margin-top: -46px;
    }

    .creative,
    .design,
    .technology,
    .strategy {
        transform: rotate(var(--rotation, 0deg)) translateY(-155px);
    }

    @keyframes itemFloat {
        0%, 100% {
            transform: rotate(var(--rotation, 0deg)) translateY(-155px);
        }
        50% {
            transform: rotate(var(--rotation, 0deg)) translateY(-161px);
        }
    }

    .pillar-card {
        width: 92px;
        height: 92px;
        padding: 8px;
    }

    .pillar-icon {
        width: 28px;
        height: 28px;
        font-size: 11px;
        margin-bottom: 3px;
    }

    .pillar-info h3 {
        font-size: 11px;
    }

    .pillar-info p {
        font-size: 7px;
    }
    
    /* Adjust planets for tablet */
    .planet-1 { width: 180px; height: 180px; }
    .planet-2 { width: 220px; height: 220px; }
    .planet-3 { width: 160px; height: 160px; }
    .planet-4 { width: 200px; height: 200px; }
    .planet-5 { width: 250px; height: 250px; }
    
    .planet-1 .planet { width: 14px; height: 14px; margin-left: -7px; margin-top: -7px; }
    .planet-2 .planet { width: 12px; height: 12px; margin-left: -6px; margin-top: -6px; }
    .planet-3 .planet { width: 10px; height: 10px; margin-left: -5px; margin-top: -5px; }
    .planet-4 .planet { width: 13px; height: 13px; margin-left: -6.5px; margin-top: -6.5px; }
    .planet-5 .planet { width: 9px; height: 9px; margin-left: -4.5px; margin-top: -4.5px; }
}


/* =====================================================
   RESPONSIVE - MOBILE LARGE (600px - 768px)
===================================================== */

@media (max-width: 768px) {
    .why-container {
        padding: 40px 15px 30px;
    }

    .why-container .section-header {
        margin-bottom: 25px;
    }

    .why-title {
        font-size: clamp(24px, 4vw, 34px);
        letter-spacing: -1.5px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .why-orbit {
        min-height: 360px;
    }

    .orbit-system {
        width: 330px;
        height: 330px;
    }

    .ring-one {
        width: 200px;
        height: 200px;
        animation-duration: 10s;
    }

    .ring-two {
        width: 270px;
        height: 270px;
        animation-duration: 13s;
    }

    .orbit-center {
        width: 58px;
        height: 58px;
        padding: 3px;
    }

    .orbit-items {
        width: 270px;
        height: 270px;
        animation-duration: 14s;
    }

    .orbit-item {
        width: 82px;
        height: 82px;
        margin-left: -41px;
        margin-top: -41px;
    }

    .creative,
    .design,
    .technology,
    .strategy {
        transform: rotate(var(--rotation, 0deg)) translateY(-135px);
        animation-duration: 1.8s;
    }

    @keyframes itemFloat {
        0%, 100% {
            transform: rotate(var(--rotation, 0deg)) translateY(-135px);
        }
        50% {
            transform: rotate(var(--rotation, 0deg)) translateY(-140px);
        }
    }

    .pillar-card {
        width: 82px;
        height: 82px;
        padding: 7px;
    }

    .pillar-icon {
        width: 24px;
        height: 24px;
        font-size: 10px;
        margin-bottom: 3px;
    }

    .pillar-info span {
        font-size: 6px;
    }

    .pillar-info h3 {
        font-size: 10px;
        margin: 1px 0 1px;
    }

    .pillar-info p {
        font-size: 6px;
        line-height: 1.1;
    }
    
    /* Hide small planets on mobile for better performance */
    .planet-3, .planet-5 {
        display: none;
    }
    
    .planet-1 { width: 150px; height: 150px; }
    .planet-2 { width: 180px; height: 180px; }
    .planet-4 { width: 165px; height: 165px; }
    
    .planet-1 .planet { width: 12px; height: 12px; margin-left: -6px; margin-top: -6px; }
    .planet-2 .planet { width: 10px; height: 10px; margin-left: -5px; margin-top: -5px; }
    .planet-4 .planet { width: 11px; height: 11px; margin-left: -5.5px; margin-top: -5.5px; }
}


/* =====================================================
   RESPONSIVE - MOBILE (480px - 600px)
===================================================== */

@media (max-width: 600px) {
    .why-container {
        padding: 35px 12px 25px;
    }

    .why-orbit {
        min-height: 310px;
    }

    .orbit-system {
        width: 280px;
        height: 280px;
    }

    .ring-one {
        width: 175px;
        height: 175px;
        animation-duration: 9s;
    }

    .ring-two {
        width: 235px;
        height: 235px;
        animation-duration: 12s;
    }

    .orbit-center {
        width: 52px;
        height: 52px;
        padding: 2px;
    }

    .orbit-items {
        width: 235px;
        height: 235px;
        animation-duration: 12s;
    }

    .orbit-item {
        width: 72px;
        height: 72px;
        margin-left: -36px;
        margin-top: -36px;
    }

    .creative,
    .design,
    .technology,
    .strategy {
        transform: rotate(var(--rotation, 0deg)) translateY(-117px);
        animation-duration: 1.6s;
    }

    @keyframes itemFloat {
        0%, 100% {
            transform: rotate(var(--rotation, 0deg)) translateY(-117px);
        }
        50% {
            transform: rotate(var(--rotation, 0deg)) translateY(-122px);
        }
    }

    .pillar-card {
        width: 72px;
        height: 72px;
        padding: 6px;
    }

    .pillar-icon {
        width: 20px;
        height: 20px;
        font-size: 9px;
        margin-bottom: 2px;
    }

    .pillar-info span {
        font-size: 5px;
        letter-spacing: 1px;
    }

    .pillar-info h3 {
        font-size: 9px;
        margin: 1px 0 1px;
    }

    .pillar-info p {
        font-size: 6px;
        line-height: 1.1;
    }
    
    /* Hide more planets on small mobile */
    .planet-1, .planet-2, .planet-4 {
        display: none;
    }
}


/* =====================================================
   RESPONSIVE - MOBILE SMALL (320px - 480px)
===================================================== */

@media (max-width: 480px) {
    .why-container {
        padding: 30px 10px 20px;
    }

    .section-badge {
        font-size: 8px;
        padding: 3px 10px;
    }

    .why-title {
        font-size: clamp(20px, 5vw, 26px);
        letter-spacing: -1px;
        margin: 10px 0 8px;
    }

    .section-subtitle {
        font-size: 11px;
        line-height: 1.4;
    }

    .why-orbit {
        min-height: 270px;
    }

    .orbit-system {
        width: 240px;
        height: 240px;
    }

    .ring-one {
        width: 150px;
        height: 150px;
        animation-duration: 8s;
    }

    .ring-two {
        width: 200px;
        height: 200px;
        animation-duration: 10s;
    }

    .orbit-center {
        width: 46px;
        height: 46px;
        padding: 2px;
        border-width: 1px;
    }

    .orbit-items {
        width: 200px;
        height: 200px;
        animation-duration: 10s;
    }

    .orbit-item {
        width: 62px;
        height: 62px;
        margin-left: -31px;
        margin-top: -31px;
    }

    .creative,
    .design,
    .technology,
    .strategy {
        transform: rotate(var(--rotation, 0deg)) translateY(-100px);
        animation-duration: 1.5s;
    }

    @keyframes itemFloat {
        0%, 100% {
            transform: rotate(var(--rotation, 0deg)) translateY(-100px);
        }
        50% {
            transform: rotate(var(--rotation, 0deg)) translateY(-104px);
        }
    }

    .pillar-card {
        width: 62px;
        height: 62px;
        padding: 5px;
        border-width: 0.5px;
    }

    .pillar-card:hover {
        transform: scale(1.05);
    }

    .pillar-icon {
        width: 18px;
        height: 18px;
        font-size: 8px;
        margin-bottom: 2px;
    }

    .pillar-info span {
        font-size: 4px;
        letter-spacing: 0.5px;
    }

    .pillar-info h3 {
        font-size: 8px;
        margin: 1px 0 1px;
    }

    .pillar-info p {
        font-size: 5px;
        line-height: 1;
    }
}


/* =====================================================
   REDUCE MOTION ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {
    .why-container::before {
        animation: none;
    }
    
    .orbit-items {
        animation: none;
    }

    .ring-one,
    .ring-two {
        animation: none;
    }

    .orbit-center {
        animation: none;
    }

    .creative,
    .design,
    .technology,
    .strategy {
        animation: none;
    }
    
    .why-title span {
        animation: none;
        background-position: 0% 50%;
    }
    
    .orbit-center::after {
        animation: none;
    }
    
    .planet-orbit {
        animation: none !important;
    }

    .orbit-system:hover .orbit-items,
    .orbit-system:hover .ring-one,
    .orbit-system:hover .ring-two,
    .orbit-system:hover .orbit-center,
    .orbit-system:hover .planet-orbit {
        animation-play-state: running;
    }
}


/* =====================================================
   OPTIONAL: IMAGE LOADING FALLBACK STYLES
===================================================== */

.center-image {
    background: radial-gradient(circle, #5A5A5A, #2A2A2A);
    object-fit: cover;
}

.center-image {
    opacity: 0;
    animation: imageFadeIn 0.6s ease forwards;
}

@keyframes imageFadeIn {
    to {
        opacity: 1;
    }
}


/* =====================================================
   TOUCH DEVICE OPTIMIZATIONS
===================================================== */

@media (hover: none) and (pointer: coarse) {
    .pillar-card {
        cursor: default;
    }
    
    .pillar-card:active {
        transform: scale(0.95);
    }
    
    .orbit-system:hover .orbit-items,
    .orbit-system:hover .ring-one,
    .orbit-system:hover .ring-two,
    .orbit-system:hover .orbit-center,
    .orbit-system:hover .planet-orbit {
        animation-play-state: running;
    }
}
/* ============================================
   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 - COMPACT WITH REVEAL ANIMATION ===== */
.cta-section {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.cta-container {
  background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
  border-radius: 2rem;
  box-shadow: 0 12px 30px -10px rgba(0, 20, 40, 0.2);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  
  /* === REVEAL ANIMATION (on scroll) === */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* === REVEALED STATE === */
.cta-container.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ---- TITLE ---- */
.cta-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  color: #0b1a2e;
}

.cta-title span {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- TEXT ---- */
.cta-text {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 1.5rem auto;
  color: #1e2f44;
  opacity: 0.85;
}

/* ---- BUTTONS ---- */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 0.25rem;
}

.cta-btn {
  display: inline-block;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border: 2px solid transparent;
  cursor: pointer;
}

/* primary */
.cta-btn.primary {
  background: #0b1a2e;
  color: #fff;
  border-color: #0b1a2e;
  box-shadow: 0 6px 16px -6px rgba(11, 26, 46, 0.3);
}

.cta-btn.primary:hover {
  background: #1e3350;
  border-color: #1e3350;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(11, 26, 46, 0.4);
}

/* secondary */
.cta-btn.secondary {
  background: transparent;
  color: #0b1a2e;
  border-color: #d0dcec;
}

.cta-btn.secondary:hover {
  background: rgba(11, 26, 46, 0.06);
  border-color: #0b1a2e;
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .cta-section {
    padding: 1.5rem 1rem;
  }
  
  .cta-container {
    padding: 1.8rem 1.25rem;
    border-radius: 1.5rem;
  }

  .cta-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .cta-text {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .cta-buttons {
    gap: 0.75rem;
    flex-direction: column;
    width: 100%;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
  }
}

