/* ========================================
   KARMAVYAA — Homepage CSS
   Hero, About, Services, Why, Brands, Values,
   Testimonials, FAQ, Contact + all responsive
   ======================================== */

/* ========================================
   PARALLAX BACKGROUND
   ======================================== */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 120%;
    top: -10%;
}

.parallax-gradient {
    background: linear-gradient(180deg,
        #ffffff 0%,
        #fff5f7 15%,
        #fff0f5 35%,
        #fff5f7 50%,
        #ffffff 75%,
        #ffffff 100%);
}

.parallax-shapes { opacity: 0.4; }

.parallax-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: parallaxFloat 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px; height: 400px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.3), rgba(59, 130, 246, 0.2));
    top: 10%; left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px; height: 300px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25), rgba(139, 92, 246, 0.2));
    top: 30%; right: 5%;
    animation-delay: -5s;
}

.shape-3 {
    width: 250px; height: 250px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.15));
    top: 60%; left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 350px; height: 350px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(245, 158, 11, 0.1));
    top: 5%; right: 25%;
    animation-delay: -15s;
}

@keyframes parallaxFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

/* Wrapper: shared gradient from hero through about */
.hero-about-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,
        rgba(248, 250, 252, 0.98) 0%,
        rgba(245, 248, 255, 0.9) 35%,
        rgba(243, 246, 255, 0.65) 72%,
        rgb(255, 255, 255) 100%);
}

.hero-about-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 58% 34%,
            rgba(99, 102, 241, 0.14) 0%,
            rgba(99, 102, 241, 0.08) 26%,
            rgba(236, 72, 153, 0.06) 44%,
            rgba(255, 255, 255, 0) 76%);
}

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

.hero {
    padding-top: clamp(88px, 10vh, 120px);
    padding-bottom: clamp(44px, 6vh, 76px);
    min-height: 100dvh;
    height: auto;
    max-height: none;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: transparent;
    box-sizing: border-box;
}

.hero-geo-shapes {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 420px;
    height: 420px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    transition: opacity 0.4s ease;
}
.hero-geo-shapes .geo-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    background: transparent;
}
.hero-geo-shapes .geo-ring--large {
    width: 300px;
    height: 300px;
    left: -60px;
    bottom: -80px;
    border-color: rgba(79, 70, 229, 0.2);
}
.hero-geo-shapes .geo-ring--medium {
    width: 180px;
    height: 180px;
    left: 80px;
    bottom: 40px;
    border-color: rgba(99, 102, 241, 0.18);
}
.hero-geo-shapes .geo-ring--small {
    width: 80px;
    height: 80px;
    left: 180px;
    bottom: 120px;
    border-color: rgba(79, 70, 229, 0.15);
}

.hero-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 60px);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.hero-content {
    max-width: 760px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 100px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: clamp(16px, 2vh, 28px);
    animation: slideIn 0.8s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: clamp(2.9rem, 4.9vw, 5.3rem);
    font-weight: 700;
    line-height: 1.07;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: clamp(16px, 2vh, 28px);
    animation: blurReveal 1s ease-out 0.2s both;
    will-change: filter, opacity, transform;
}

@keyframes blurReveal {
    from { opacity: 0; filter: blur(12px); transform: translateY(0); }
    to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

.title-highlight {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, var(--primary) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
.title-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 0.4em;
    background: rgba(253, 224, 71, 0.4);
    border-radius: 3px;
    z-index: -1;
    transform-origin: left;
    animation: markerSweep 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.2s both;
}
@keyframes markerSweep {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.hero-description {
    font-size: clamp(1.04rem, 1.35vw, 1.28rem);
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: clamp(8px, 1vh, 14px);
    max-width: 680px;
    animation: slideIn 0.8s ease-out 0.4s both;
}
.hero-subtext {
    font-size: clamp(1rem, 1.1vw, 1.14rem);
    line-height: 1.75;
    color: var(--gray-500);
    margin-bottom: clamp(20px, 3vh, 32px);
    max-width: 640px;
    animation: slideIn 0.8s ease-out 0.45s both;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    animation: slideIn 0.8s ease-out 0.6s both;
}

.hero-tagline {
    margin-top: clamp(16px, 2vh, 24px);
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.2vw, 18px);
    font-size: clamp(0.92rem, 0.9vw, 1.02rem);
    font-weight: 600;
    color: var(--gray-500);
    animation: slideIn 0.8s ease-out 0.8s both;
}
.hero-tagline .tagline-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #6366f1);
    flex-shrink: 0;
}
.hero-tagline .tagline-text {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-primary,
a.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--blue) 100%);
    color: var(--white);
    border: none;
    padding: var(--space-2) var(--space-4);
    min-height: 44px;
    border-radius: 8px;
    font-weight: 600;
    font-size: var(--text-md);
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.24),
                0 1px 3px rgba(79, 70, 229, 0.12);
    text-decoration: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.32),
                0 3px 6px rgba(79, 70, 229, 0.16);
}
.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(79, 70, 229, 0.24);
}

.btn-whatsapp,
a.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    color: var(--dark);
    border: 1.5px solid var(--gray-300);
    padding: var(--space-2) var(--space-4);
    min-height: 44px;
    border-radius: 8px;
    font-weight: 600;
    font-size: var(--text-md);
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: inherit;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.btn-whatsapp svg { color: var(--whatsapp); }
.btn-whatsapp i { color: var(--whatsapp); }
.btn-whatsapp:hover {
    border-color: var(--whatsapp);
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.16),
                0 2px 4px rgba(37, 211, 102, 0.08);
}
.btn-whatsapp:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(37, 211, 102, 0.12);
}

/* ========================================
   HERO GALLERY with OUTWARD STICKERS
   ======================================== */

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 580px;
    perspective: 1000px;
    position: relative;
    padding: 0 50px;
    overflow-x: visible;
    overflow-y: clip;
}

.gallery-wrapper {
    display: flex;
    gap: var(--space-3);
    height: 100%;
    transform: none;
    transform-style: preserve-3d;
}

.gallery-column {
    width: 280px;
    height: 100%;
    overflow: visible;
    border-radius: 16px;
    box-sizing: border-box;
}

.gallery-column.col-1 {
    mask-image: linear-gradient(to bottom, transparent 0%, transparent 5%, black 30%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 5%, black 30%, black 88%, transparent 100%);
}

.gallery-column.col-2 {
    mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 70%, transparent 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 70%, transparent 95%, transparent 100%);
}

.gallery-track {
    display: flex;
    flex-direction: column;
    gap: 0;
    animation: scrollUp 35s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.col-1 .gallery-track { align-items: flex-end; }
.col-2 .gallery-track { align-items: center; }

.track-reverse { animation: scrollDown 35s linear infinite; }

@keyframes scrollUp {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(0, -50%, 0); }
}

@keyframes scrollDown {
    0% { transform: translate3d(0, -50%, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

@keyframes scrollLeft {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes scrollRight {
    0% { transform: translate3d(-50%, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

.gallery-wrapper:hover .gallery-track { animation-play-state: paused; }

.gallery-item {
    flex-shrink: 0;
    width: 200px;
    height: 260px;
    position: relative;
    overflow: visible;
    border-radius: 14px;
    margin-bottom: 20px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sticker-card {
    position: absolute;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255,255,255,1);
    z-index: 10;
    min-width: 150px;
    white-space: nowrap;
}

.col-1 .sticker-card { left: -40px; }
.col-2 .sticker-card {
    right: -40px;
    flex-direction: row-reverse;
    text-align: right;
}
.col-2 .sticker-text { align-items: flex-end; }

.sticker-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--text-md);
}

.sticker-text { display: flex; flex-direction: column; }
.sticker-title { font-size: var(--text-sm); font-weight: 700; color: var(--dark); line-height: 1.2; }
.sticker-subtitle { font-size: var(--text-xs); color: var(--gray-500); font-weight: 500; }

.st-pink { background: linear-gradient(135deg, #FF4D8D, #ec4899); }
.st-blue { background: linear-gradient(135deg, #3B82F6, #6366F1); }
.st-green { background: linear-gradient(135deg, #10B981, #34D399); }
.st-orange { background: linear-gradient(135deg, #F59E0B, #FBBF24); }

.col-1 { margin-top: -50px; }
.col-2 { margin-top: 50px; }

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    padding: 120px 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 0;
    padding-bottom: 0;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

.section-tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 100px;
    margin-bottom: var(--space-4);
}

.section-tag-dark {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    margin-bottom: var(--space-4);
}

.about-title {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-4);
    letter-spacing: -1px;
    line-height: 1.1;
}

.title-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(90deg, var(--primary) 0%, #818cf8 40%, #c4b5fd 50%, #818cf8 60%, var(--primary) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.about-description {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 28px;
}

.btn-learn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 10px 24px;
    min-height: 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: var(--text-base);
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: inherit;
}
.btn-learn:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--blue) 100%);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.24),
                0 2px 4px rgba(79, 70, 229, 0.12);
}
.btn-learn:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(79, 70, 229, 0.16);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(79, 70, 229, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}
.about-card.animated { opacity: 1; transform: translateY(0); }
.about-card:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.4);
}

.card-accent { display: none; }

.about-card-media {
    width: 100%;
    aspect-ratio: 5 / 4;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0;
    border: 0;
    background: transparent;
}
.about-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}
.about-card:hover .about-card-media img { transform: scale(1.04); }

.about-card-body { padding: 24px; }
.card-adjective { font-size: var(--text-xl); font-weight: 700; color: var(--dark); margin-bottom: var(--space-3); }
.card-text { font-size: var(--text-md); line-height: 1.8; color: var(--dark); }

/* ========================================
   OUR SERVICES - 3 CARDS with BG DESIGN
   ======================================== */

.services {
    padding: 140px 0;
    background: var(--services-bg);
    position: relative;
    overflow: hidden;
}
.services::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15), transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.15), transparent 40%);
    z-index: 0;
    pointer-events: none;
}

.services-bg-wave {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
    z-index: 1;
}

.services-header { text-align: left; margin-bottom: 80px; max-width: 600px; }
.services-title { font-size: var(--text-4xl); font-weight: 500; color: var(--white); margin-bottom: var(--space-4); letter-spacing: -1.5px; line-height: 1.1; }
.services-title-gradient { background: linear-gradient(135deg, var(--blue-light) 0%, var(--purple) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.services-subtitle { font-size: var(--text-md); color: var(--gray-400); line-height: 1.7; max-width: 500px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}
.service-card.animated { opacity: 1; transform: translateY(0); }
.service-card:hover { transform: translateY(-12px); background: rgba(255, 255, 255, 0.05); }

.theme-blue:hover { border-color: rgba(6, 182, 212, 0.3); }
.theme-blue .service-icon { background: linear-gradient(135deg, #06B6D4, #3B82F6); box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3); }
.theme-blue .service-glow { background: radial-gradient(circle, rgba(6,182,212,0.4) 0%, transparent 70%); }

.theme-purple:hover { border-color: rgba(139, 92, 246, 0.3); }
.theme-purple .service-icon { background: linear-gradient(135deg, #8B5CF6, #EC4899); box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3); }
.theme-purple .service-glow { background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%); }

.theme-orange:hover { border-color: rgba(245, 158, 11, 0.3); }
.theme-orange .service-icon { background: linear-gradient(135deg, #F59E0B, #F97316); box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3); }
.theme-orange .service-glow { background: radial-gradient(circle, rgba(245, 158, 11, 0.4) 0%, transparent 70%); }

.service-glow {
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.service-card:hover .service-glow { opacity: 0.6; }

.service-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px;
    color: white;
    font-size: var(--text-xl);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.service-card:hover .service-icon { transform: translateY(-2px) scale(1.1); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); }
.service-icon i { font-weight: 300; transition: transform 0.3s ease; }
.service-card:hover .service-icon i { transform: scale(1.08); }

.service-icon .icon-fallback { display: none; width: 24px; height: 24px; stroke: currentColor; }
.service-icon i:empty + .icon-fallback,
.service-icon i.fa-laptop-code:not(.fa)::before + .icon-fallback { display: block; }
.service-icon i.fas, .service-icon i.fa-solid {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'FontAwesome';
    font-weight: 900;
}

.service-icon-wrapper {
    position: relative;
    width: 140px; height: 140px;
    margin-bottom: 24px;
    display: flex; align-items: center; justify-content: center;
}

.icon-orbit {
    position: absolute;
    width: 100px; height: 100px;
    border-radius: 50%;
    opacity: 0.6;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: orbitSpin 8s linear infinite;
}
.service-card.in-view .icon-orbit { width: 130px; height: 130px; opacity: 1; }
.service-card:hover .icon-orbit { width: 140px; height: 140px; opacity: 1; }

.orbit-dot {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 15px currentColor;
    transition: all 0.4s ease;
}
.orbit-dot:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-dot:nth-child(2) { bottom: 10%; left: 10%; }
.orbit-dot:nth-child(3) { bottom: 10%; right: 10%; }

.service-card.in-view .orbit-dot { width: 12px; height: 12px; }
.service-card:hover .orbit-dot { width: 14px; height: 14px; }

.theme-blue .orbit-dot { background: #06B6D4; box-shadow: 0 0 20px rgba(6, 182, 212, 0.9), 0 0 40px rgba(6, 182, 212, 0.5); }
.theme-purple .orbit-dot { background: #8B5CF6; box-shadow: 0 0 20px rgba(139, 92, 246, 0.9), 0 0 40px rgba(139, 92, 246, 0.5); }
.theme-orange .orbit-dot { background: #F59E0B; box-shadow: 0 0 20px rgba(245, 158, 11, 0.9), 0 0 40px rgba(245, 158, 11, 0.5); }

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

.service-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 68px; height: 68px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon-wrapper::before { width: 72px; height: 72px; }
.theme-blue .service-icon-wrapper::before { border-color: rgba(6, 182, 212, 0.3); }
.theme-purple .service-icon-wrapper::before { border-color: rgba(139, 92, 246, 0.3); }
.theme-orange .service-icon-wrapper::before { border-color: rgba(245, 158, 11, 0.3); }

.service-card h3 { font-size: var(--text-xl); font-weight: 700; color: var(--white); margin-bottom: 16px; position: relative; z-index: 2; }
.service-card p { font-size: var(--text-md); line-height: 1.7; color: var(--gray-400); margin-bottom: 32px; flex-grow: 1; position: relative; z-index: 2; font-weight: 300; }

.service-footer {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: auto; padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative; z-index: 2;
}
.service-label { font-size: var(--text-sm); font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255, 255, 255, 0.5); transition: color 0.3s; }
.service-card:hover .service-label { color: var(--white); }

.service-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}
.service-arrow svg { width: 20px; height: 20px; color: #60A5FA; transform: rotate(-45deg); transition: transform 0.3s; }
.service-arrow i { transform: rotate(-45deg); transition: transform 0.3s ease, color 0.3s ease; }

.theme-blue .service-arrow svg { color: #67E8F9; }
.theme-purple .service-arrow svg { color: #C4B5FD; }
.theme-orange .service-arrow svg { color: #FCD34D; }

.theme-blue .service-arrow { background: linear-gradient(135deg, rgba(6, 182, 212, 0.3) 0%, rgba(59, 130, 246, 0.2) 100%); border-color: rgba(6, 182, 212, 0.4); }
.theme-purple .service-arrow { background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(236, 72, 153, 0.2) 100%); border-color: rgba(139, 92, 246, 0.4); }
.theme-orange .service-arrow { background: linear-gradient(135deg, rgba(245, 158, 11, 0.3) 0%, rgba(249, 115, 22, 0.2) 100%); border-color: rgba(245, 158, 11, 0.4); }

.service-card:hover .service-arrow { background: var(--white); border-color: var(--white); }
.service-card:hover .service-arrow svg { color: var(--services-bg); transform: rotate(0deg); }
.service-card:hover .service-arrow i { color: var(--services-bg); transform: rotate(0deg); }

.service-cta {
    display: flex; align-items: center; gap: var(--space-3);
    cursor: pointer; position: relative;
    text-decoration: none;
}
.service-tooltip {
    position: absolute;
    right: 54px; top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: var(--white); color: var(--services-bg);
    padding: 10px 18px; border-radius: 30px;
    font-size: var(--text-sm); font-weight: 600;
    letter-spacing: 0.5px; white-space: nowrap;
    opacity: 0; visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}
.service-tooltip::after {
    content: '';
    position: absolute; right: -6px; top: 50%;
    transform: translateY(-50%);
    border-width: 6px; border-style: solid;
    border-color: transparent transparent transparent var(--white);
}
.service-cta:hover .service-tooltip { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }
.service-cta:hover .service-arrow { background: var(--white); transform: scale(1.1); }
.service-cta:hover .service-arrow i { color: var(--services-bg); transform: rotate(0deg); }

.theme-blue .service-tooltip { background: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%); color: var(--white); }
.theme-blue .service-tooltip::after { border-color: transparent transparent transparent #06B6D4; }
.theme-purple .service-tooltip { background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%); color: var(--white); }
.theme-purple .service-tooltip::after { border-color: transparent transparent transparent #EC4899; }
.theme-orange .service-tooltip { background: linear-gradient(135deg, #F97316 0%, #F59E0B 100%); color: var(--white); }
.theme-orange .service-tooltip::after { border-color: transparent transparent transparent #F59E0B; }

/* ========================================
   WHY SECTION - STICKY SCROLL
   ======================================== */
.why-karma { background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%); }
.why-scroll-container { position: relative; height: 400vh; }
.why-sticky-stage { position: sticky; top: 80px; height: calc(100vh - 80px); width: 100%; overflow: hidden; display: flex; align-items: center; }
.why-inner { max-width: 1280px; margin: 0 auto; padding-left: 40px; padding-right: 40px; width: 100%; display: flex; align-items: center; }
.why-nav-column { width: 35%; padding-right: 60px; display: flex; flex-direction: column; justify-content: center; }
.why-nav-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: var(--text-3xl); font-weight: 800; letter-spacing: -1.5px;
    color: var(--dark); margin-bottom: 48px; line-height: 1.1;
}
.why-nav-heading span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--blue) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.why-nav-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: var(--text-xl); font-weight: 500; color: var(--gray-400);
    margin-bottom: var(--space-4); cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative; padding: 12px 0 12px 24px;
    border-left: 3px solid transparent;
}
.why-nav-item:hover { color: var(--dark); }
.why-nav-item.active {
    color: var(--dark); font-weight: 700;
    border-left-color: var(--primary); padding-left: 24px;
    background: linear-gradient(90deg, rgba(79, 70, 229, 0.08) 0%, transparent 100%);
}
.why-divider { width: 1px; height: 60vh; background: var(--gray-200); flex-shrink: 0; }
.why-content-column { width: 65%; height: 100%; position: relative; display: flex; align-items: center; justify-content: center; padding-left: 60px; }

.why-panel {
    position: absolute; width: 100%;
    display: flex; align-items: center; gap: 40px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.why-panel.active { opacity: 1; visibility: visible; pointer-events: auto; }
.why-text-area { width: 55%; position: relative; z-index: 10; }
.why-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: var(--text-3xl); font-weight: 700; line-height: 1.1;
    margin-bottom: var(--space-4); letter-spacing: -1px;
}

.why-panel[data-theme="holistic"] .why-headline { background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.why-panel[data-theme="timely"] .why-headline { background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.why-panel[data-theme="expert"] .why-headline { background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.why-panel[data-theme="results"] .why-headline { background: linear-gradient(135deg, #10b981 0%, #34d399 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.why-description { font-size: 18px; color: var(--dark); line-height: 1.7; }
.why-description strong { color: var(--dark); font-weight: 600; }
.why-graphic-area { width: 45%; height: 350px; display: flex; justify-content: center; align-items: center; position: relative; }

.svg-container { position: relative; display: flex; justify-content: center; align-items: center; }
.svg-glow { position: absolute; width: 180px; height: 180px; border-radius: 50%; filter: blur(50px); opacity: 0; z-index: 0; }
.why-panel.active .svg-glow { animation: glowFadeIn 0.8s ease-out 0.3s forwards; }
@keyframes glowFadeIn { 0% { opacity: 0; transform: scale(0.8); } 100% { opacity: 0.4; transform: scale(1); } }
.why-panel.active.settled .svg-glow { opacity: 0.4; transform: scale(1); animation: glowPulse 4s ease-in-out infinite; }
@keyframes glowPulse { 0%, 100% { transform: scale(1); opacity: 0.35; } 50% { transform: scale(1.1); opacity: 0.45; } }

.why-panel[data-theme="holistic"] .svg-glow { background: radial-gradient(circle, #ec4899 0%, #a855f7 70%, transparent 100%); }
.why-panel[data-theme="timely"] .svg-glow { background: radial-gradient(circle, #0ea5e9 0%, #06b6d4 70%, transparent 100%); }
.why-panel[data-theme="expert"] .svg-glow { background: radial-gradient(circle, #8b5cf6 0%, #a855f7 70%, transparent 100%); }
.why-panel[data-theme="results"] .svg-glow { background: radial-gradient(circle, #10b981 0%, #34d399 70%, transparent 100%); }
.svg-container svg { position: relative; z-index: 2; }

.why-panel .why-text-area { opacity: 0; transform: translateX(-30px); }
.why-panel.active .why-text-area { opacity: 1; transform: translateX(0); animation: textFadeIn 0.7s ease-out 0.15s forwards; }
@keyframes textFadeIn { 0% { opacity: 0; transform: translateX(-30px); } 100% { opacity: 1; transform: translateX(0); } }

/* Panel 1: Holistic */
.why-panel[data-theme="holistic"] .svg-container svg { filter: blur(8px); opacity: 0; transform: scale(0.9); }
.why-panel[data-theme="holistic"].active .svg-container svg { filter: blur(0); opacity: 1; transform: scale(1); animation: holisticAppear 0.9s ease-out forwards; }
@keyframes holisticAppear { 0% { filter: blur(8px); opacity: 0; transform: scale(0.9) rotate(-10deg); } 60% { filter: blur(2px); opacity: 0.9; transform: scale(1.02) rotate(3deg); } 100% { filter: blur(0); opacity: 1; transform: scale(1) rotate(0deg); } }
.why-panel[data-theme="holistic"].active.settled .svg-container svg { filter: blur(0); opacity: 1; transform: scale(1) rotate(0deg); animation: gentleRotate 20s linear infinite; }
@keyframes gentleRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.why-panel[data-theme="holistic"] svg .connection { stroke-dasharray: 150; stroke-dashoffset: 150; }
.why-panel[data-theme="holistic"].active svg .connection { stroke-dashoffset: 0; }
.why-panel[data-theme="holistic"].active svg .conn-1 { animation: drawLine 0.6s ease-out 0.3s forwards; }
.why-panel[data-theme="holistic"].active svg .conn-2 { animation: drawLine 0.6s ease-out 0.4s forwards; }
.why-panel[data-theme="holistic"].active svg .conn-3 { animation: drawLine 0.6s ease-out 0.5s forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }

.why-panel[data-theme="holistic"] svg .node { transform-origin: center; transform: scale(0); opacity: 0; }
.why-panel[data-theme="holistic"].active svg .node { transform: scale(1); opacity: 1; }
.why-panel[data-theme="holistic"].active svg .node-1 { animation: nodePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards; }
.why-panel[data-theme="holistic"].active svg .node-2 { animation: nodePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards; }
.why-panel[data-theme="holistic"].active svg .node-3 { animation: nodePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s forwards; }
.why-panel[data-theme="holistic"].active svg .node-center { animation: nodePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards; }
@keyframes nodePop { 0% { transform: scale(0); opacity: 0; } 70% { transform: scale(1.15); opacity: 1; } 100% { transform: scale(1); opacity: 1; } }

/* Panel 2: Timely */
.why-panel[data-theme="timely"] .svg-container svg { filter: blur(8px); opacity: 0; transform: scale(0.8); }
.why-panel[data-theme="timely"].active .svg-container svg { filter: blur(0); opacity: 1; transform: scale(1); animation: watchAppear 0.8s cubic-bezier(0.34, 1.2, 0.64, 1) forwards; }
@keyframes watchAppear { 0% { filter: blur(12px); opacity: 0; transform: scale(0.6) rotate(-10deg); } 50% { filter: blur(2px); opacity: 0.9; transform: scale(1.05) rotate(3deg); } 100% { filter: blur(0); opacity: 1; transform: scale(1) rotate(0deg); } }
.why-panel[data-theme="timely"].active.settled .svg-container svg { filter: blur(0); opacity: 1; transform: scale(1) rotate(0deg); animation: none; }

.why-panel[data-theme="timely"] svg .watch-face { transform-origin: center; transform: scale(0); opacity: 0; }
.why-panel[data-theme="timely"].active svg .watch-face { transform: scale(1); opacity: 1; animation: watchFaceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards; }
@keyframes watchFaceIn { 0% { transform: scale(0); opacity: 0; } 70% { transform: scale(1.05); opacity: 1; } 100% { transform: scale(1); opacity: 1; } }

.why-panel[data-theme="timely"] svg .hour-hand { transform-origin: 200px 150px; transform: rotate(-180deg); opacity: 0; }
.why-panel[data-theme="timely"].active svg .hour-hand { transform: rotate(60deg); opacity: 1; animation: hourHandWind 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards; }
@keyframes hourHandWind { 0% { transform: rotate(-180deg); opacity: 0; } 20% { opacity: 1; } 100% { transform: rotate(60deg); opacity: 1; } }
.why-panel[data-theme="timely"].active.settled svg .hour-hand { transform: rotate(60deg); opacity: 1; animation: none; }

.why-panel[data-theme="timely"] svg .minute-hand { transform-origin: 200px 150px; transform: rotate(-360deg); opacity: 0; }
.why-panel[data-theme="timely"].active svg .minute-hand { transform: rotate(0deg); opacity: 1; animation: minuteHandWind 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards; }
@keyframes minuteHandWind { 0% { transform: rotate(-360deg); opacity: 0; } 15% { opacity: 1; } 100% { transform: rotate(0deg); opacity: 1; } }
.why-panel[data-theme="timely"].active.settled svg .minute-hand { opacity: 1; animation: secondTick 10s linear infinite; }
@keyframes secondTick { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.why-panel[data-theme="timely"] svg .center-dot { transform-origin: center; transform: scale(0); opacity: 0; }
.why-panel[data-theme="timely"].active svg .center-dot { transform: scale(1); opacity: 1; animation: dotPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards; }
@keyframes dotPop { 0% { transform: scale(0); opacity: 0; } 70% { transform: scale(1.3); opacity: 1; } 100% { transform: scale(1); opacity: 1; } }

.why-panel[data-theme="timely"] svg .tick-mark { opacity: 0; }
.why-panel[data-theme="timely"].active svg .tick-mark { opacity: 1; animation: tickFade 0.3s ease-out forwards; }
.why-panel[data-theme="timely"].active svg .tick-mark:nth-of-type(1) { animation-delay: 0.5s; }
.why-panel[data-theme="timely"].active svg .tick-mark:nth-of-type(2) { animation-delay: 0.55s; }
.why-panel[data-theme="timely"].active svg .tick-mark:nth-of-type(3) { animation-delay: 0.6s; }
.why-panel[data-theme="timely"].active svg .tick-mark:nth-of-type(4) { animation-delay: 0.65s; }
@keyframes tickFade { to { opacity: 1; } }

/* Panel 3: Expert */
.why-panel[data-theme="expert"] .svg-container svg { filter: blur(8px); opacity: 0; }
.why-panel[data-theme="expert"].active .svg-container svg { filter: blur(0); opacity: 1; animation: expertFadeIn 0.6s ease-out forwards; }
@keyframes expertFadeIn { 0% { filter: blur(8px); opacity: 0; } 100% { filter: blur(0); opacity: 1; } }
.why-panel[data-theme="expert"].active.settled .svg-container svg { filter: blur(0); opacity: 1; animation: none; }

.why-panel[data-theme="expert"] svg .circle-left { opacity: 0; transform: translateX(-60px); }
.why-panel[data-theme="expert"].active svg .circle-left { opacity: 1; transform: translateX(0); animation: circleFromLeft 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards; }
@keyframes circleFromLeft { 0% { opacity: 0; transform: translateX(-60px); } 100% { opacity: 1; transform: translateX(0); } }
.why-panel[data-theme="expert"].active.settled svg .circle-left { opacity: 1; transform: translateX(0); animation: breatheLeftSmooth 5s ease-in-out infinite; }
@keyframes breatheLeftSmooth { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-5px); } }

.why-panel[data-theme="expert"] svg .circle-right { opacity: 0; transform: translateX(60px); }
.why-panel[data-theme="expert"].active svg .circle-right { opacity: 1; transform: translateX(0); animation: circleFromRight 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s forwards; }
@keyframes circleFromRight { 0% { opacity: 0; transform: translateX(60px); } 100% { opacity: 1; transform: translateX(0); } }
.why-panel[data-theme="expert"].active.settled svg .circle-right { opacity: 1; transform: translateX(0); animation: breatheRightSmooth 5s ease-in-out infinite 0.5s; }
@keyframes breatheRightSmooth { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } }

/* Panel 4: Results */
.why-panel[data-theme="results"] .svg-container svg { filter: blur(8px); opacity: 0; }
.why-panel[data-theme="results"].active .svg-container svg { filter: blur(0); opacity: 1; animation: resultsFadeIn 0.5s ease-out forwards; }
@keyframes resultsFadeIn { 0% { filter: blur(8px); opacity: 0; } 100% { filter: blur(0); opacity: 1; } }
.why-panel[data-theme="results"].active.settled .svg-container svg { filter: blur(0); opacity: 1; animation: none; }

.why-panel[data-theme="results"] svg .bar { transform-origin: bottom center; transform: scaleY(0); }
.why-panel[data-theme="results"].active svg .bar { transform: scaleY(1); }
.why-panel[data-theme="results"].active svg .bar-1 { animation: barBounce1 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards; }
@keyframes barBounce1 { 0% { transform: scaleY(0); } 50% { transform: scaleY(1.15); } 70% { transform: scaleY(0.95); } 85% { transform: scaleY(1.05); } 100% { transform: scaleY(1); } }
.why-panel[data-theme="results"].active svg .bar-2 { animation: barBounce2 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.45s forwards; }
@keyframes barBounce2 { 0% { transform: scaleY(0); } 45% { transform: scaleY(1.2); } 65% { transform: scaleY(0.92); } 80% { transform: scaleY(1.08); } 100% { transform: scaleY(1); } }
.why-panel[data-theme="results"].active svg .bar-3 { animation: barBounce3 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards; }
@keyframes barBounce3 { 0% { transform: scaleY(0); } 40% { transform: scaleY(1.25); } 55% { transform: scaleY(0.9); } 70% { transform: scaleY(1.12); } 85% { transform: scaleY(0.97); } 100% { transform: scaleY(1); } }
.why-panel[data-theme="results"].active.settled svg .bar-3 { transform: scaleY(1); animation: winnerPulse 3s ease-in-out infinite; }
@keyframes winnerPulse { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(1.03); } }

.why-panel[data-theme="results"] svg .growth-line { stroke-dasharray: 300; stroke-dashoffset: 300; }
.why-panel[data-theme="results"].active svg .growth-line { stroke-dashoffset: 0; animation: drawGrowth 1.2s ease-out 0.8s forwards; }
@keyframes drawGrowth { to { stroke-dashoffset: 0; } }

/* Why Section Responsive */
@media (max-width: 1024px) {
    .why-inner { flex-direction: column; padding: 40px 30px; overflow-x: hidden; }
    .why-nav-column { width: 100%; max-width: 100%; padding: 0; margin-bottom: 40px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: var(--space-2); }
    .why-nav-heading { width: 100%; margin-bottom: 24px; text-align: center; }
    .why-nav-column .why-nav-item { display: inline-flex; padding: 10px 16px; margin: 0; border-left: none; border-radius: 30px; background: var(--gray-100); white-space: nowrap; flex-shrink: 0; }
    .why-nav-item.active { background: var(--primary); color: white; padding: 10px 18px; }
    .why-divider { display: none; }
    .why-content-column { width: 100%; padding-left: 0; min-height: 500px; display: flex; align-items: center; justify-content: center; }
    .why-panel { flex-direction: column-reverse; gap: 30px; text-align: center; }
    .why-text-area, .why-graphic-area { width: 100%; }
    .why-graphic-area { height: 280px; }
    .svg-container svg { width: 260px; height: 220px; }
}
@media (max-width: 640px) {
    .why-inner { padding: var(--space-5) var(--space-3); overflow-x: hidden; }
    .why-nav-column { gap: 8px; }
    .why-nav-heading { margin-bottom: 16px; }
    .why-nav-column .why-nav-item { padding: 8px 12px; }
    .why-nav-item.active { padding: 8px 14px; }
    .why-description { padding: 0 10px; }
    .why-graphic-area { height: 180px; }
    .svg-container svg { width: 180px; height: 140px; }
    .why-content-column { min-height: 350px; }
}

/* ========================================
   BRANDS SECTION
   ======================================== */
.brands { padding: 140px 0; background: var(--brands-bg); overflow: hidden; position: relative; }
.brands::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%); pointer-events: none; }
.brands-container { max-width: 1280px; margin: 0 auto; padding-left: 40px; padding-right: 40px; position: relative; z-index: 1; }
.brands-header { margin-bottom: 80px; }
.brands-title { font-size: var(--text-4xl); font-weight: 700; color: #ffffff; letter-spacing: -1px; line-height: 1.1; margin-bottom: 8px; }
.brands-title-gradient { font-weight: 300; display: block; background: linear-gradient(135deg, #60A5FA 0%, #8B5CF6 50%, #F97316 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.brands-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.brand-card { position: relative; min-height: 450px; border-radius: 20px; background: var(--dark-card); border: 1px solid rgba(255, 255, 255, 0.05); display: flex; flex-direction: column; overflow: hidden; cursor: pointer; transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; transform: translateY(50px); }
.brand-card.animated { opacity: 1; transform: translateY(0); }
.brand-card:nth-child(1) { transition-delay: 0s; }
.brand-card:nth-child(2) { transition-delay: 0.1s; }
.brand-card:nth-child(3) { transition-delay: 0.2s; }
.brand-card:nth-child(4) { transition-delay: 0.3s; }
.brand-card:hover { border-color: rgba(255, 255, 255, 0.1); transform: translateY(-8px); }
.brand-card:nth-child(1):hover { background: #1D4ED8; }
.brand-card:nth-child(2):hover { background: #047857; }
.brand-card:nth-child(3):hover { background: #7C3AED; }
.brand-card:nth-child(4):hover { background: #C2410C; }
.brand-content { padding: 32px; position: relative; z-index: 2; }
.brand-number { display: inline-block; padding: var(--space-2) var(--space-3); margin-bottom: 32px; font-size: var(--text-xs); font-weight: 500; letter-spacing: 2px; color: var(--gray-500); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 100px; text-transform: uppercase; transition: all 0.5s; }
.brand-card:hover .brand-number { color: rgba(255, 255, 255, 0.7); border-color: rgba(255, 255, 255, 0.3); }
.brand-card h4 { font-size: var(--text-xl); font-weight: 600; color: var(--white); margin-bottom: var(--space-3); letter-spacing: 0.5px; transition: transform 0.5s; }
.brand-card:hover h4 { transform: translateX(4px); }
.brand-card p { font-size: var(--text-base); color: var(--gray-400); font-weight: 300; line-height: 1.6; transition: color 0.5s; }
.brand-card:hover p { color: rgba(255, 255, 255, 0.9); }
.brand-image { position: relative; height: 200px; width: 100%; overflow: hidden; margin-top: auto; flex-shrink: 0; }
.brand-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); opacity: 0.6; transition: all 0.7s ease-out; }
.brand-card:hover .brand-image img { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }
.brand-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--dark-card), transparent); transition: opacity 0.5s; }
.brand-card:hover .brand-image-overlay { opacity: 0; }

/* ========================================
   VALUES SECTION
   ======================================== */
.values { position: relative; min-height: 900px; display: flex; align-items: center; justify-content: center; overflow-x: hidden; padding: 120px 0; background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%); z-index: 10; }
.values-bg-gradient { position: absolute; inset: 0; pointer-events: none; }
.values-bg-blob { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.15)); border-radius: 50%; filter: blur(120px); }
.values-mobile-header { display: none; text-align: center; margin-bottom: 40px; }
.values-central-hub { position: relative; z-index: 30; text-align: center; display: flex; flex-direction: column; align-items: center; transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1); }
.values-central-hub.visible { opacity: 1; transform: scale(1); }
.values-central-hub.hidden { opacity: 0; transform: scale(0.9); }
.values-title-wrapper { margin-bottom: 32px; }
.values-title { font-size: var(--text-2xl); font-weight: 700; color: var(--dark); margin-bottom: 8px; letter-spacing: -0.5px; }
.values-subtitle { color: var(--dark); font-weight: 500; }
.values-image-hub { position: relative; display: inline-block; }
.values-image-container { width: 128px; height: 128px; border-radius: 50%; padding: 8px; background: var(--white); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 0 4px rgba(236, 72, 153, 0.1); border: 2px solid rgba(59, 130, 246, 0.2); margin-bottom: 24px; position: relative; z-index: 10; overflow: hidden; }
.values-image-container img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.values-pulse { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(236, 72, 153, 0.05)); border-radius: 50%; animation: valuesPulse 2s cubic-bezier(0, 0, 0.2, 1) infinite; }
@keyframes valuesPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0; transform: scale(1.5); } }

.values-rays-svg { position: absolute; inset: 0; pointer-events: none; width: 100%; height: 100%; transition: opacity 1s ease 0.3s; }
.values-rays-svg.visible { opacity: 1; }
.values-rays-svg.hidden { opacity: 0; }

.values-cards-layer { position: absolute; inset: 0; max-width: 1200px; margin: 0 auto; z-index: 20; pointer-events: none; }

.elegant-value-card { position: absolute; pointer-events: auto; width: 260px; background: var(--white); border: 2px solid #8b5cf6; border-radius: 16px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); overflow: hidden; transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1); display: flex; flex-direction: column; }
.elegant-value-card:hover { box-shadow: 0 20px 50px rgba(139, 92, 246, 0.25); transform: translateY(-8px); border-color: #7c3aed; }

.elegant-value-card.hidden { opacity: 0; left: 50% !important; right: auto !important; top: 50% !important; bottom: auto !important; transform: translate(-50%, -50%) scale(0); }

.elegant-value-card.visible.top-left { left: 5%; top: 15%; opacity: 1; transform: translate(0, 0) scale(1); }
.elegant-value-card.visible.top-right { right: 5%; left: auto; top: 15%; opacity: 1; transform: translate(0, 0) scale(1); }
.elegant-value-card.visible.bottom-left { left: 5%; bottom: 15%; top: auto; opacity: 1; transform: translate(0, 0) scale(1); }
.elegant-value-card.visible.bottom-right { right: 5%; left: auto; bottom: 15%; top: auto; opacity: 1; transform: translate(0, 0) scale(1); }

.elegant-value-card-image { height: 128px; width: 100%; overflow: hidden; position: relative; border-bottom: 1px solid var(--gray-100); }
.elegant-value-card-image::after { content: ''; position: absolute; inset: 0; background: rgba(59, 130, 246, 0.05); mix-blend-mode: overlay; z-index: 10; }
.elegant-value-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.elegant-value-card:hover .elegant-value-card-image img { transform: scale(1.05); }

.elegant-value-card-content { padding: 20px; }
.elegant-value-card-content h4 { font-weight: 700; color: var(--dark); margin-bottom: 8px; font-size: var(--text-lg); }
.elegant-value-card-content p { font-size: var(--text-base); color: var(--dark); line-height: 1.6; }

/* Values Mobile Redesign */
@media (max-width: 1024px) {
    .values { min-height: auto; padding: 80px 40px; display: block; background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%); }
    .values-mobile-header { display: block; text-align: center; margin-bottom: 48px; padding-bottom: 24px; border-bottom: 2px solid rgba(139, 92, 246, 0.12); }
    .values-mobile-header .values-title { font-size: var(--text-3xl); font-weight: 700; color: var(--dark); margin-bottom: 12px; letter-spacing: -0.5px; }
    .values-mobile-header .values-subtitle { font-size: var(--text-md); color: var(--gray-500); line-height: 1.6; }
    .values-central-hub { display: none !important; }
    .values-bg-gradient { display: none; }
    .values-rays-svg { display: none; }

    .values-cards-layer {
        position: relative; display: flex; flex-direction: column; align-items: center;
        max-width: 420px; width: 100%; margin: 0 auto; padding: 20px 0; pointer-events: auto;
        --thread-focus-y: 50%; --thread-glow-opacity: 0;
        --thread-start-offset: 14px; --thread-end-offset: 22px; --thread-glow-half: 90px;
    }
    .values-cards-layer::before {
        content: ''; position: absolute; left: 50%; transform: translateX(-50%);
        top: var(--thread-start-offset); bottom: var(--thread-end-offset);
        width: 3px;
        background: linear-gradient(180deg, rgba(59, 130, 246, 0.32) 0%, rgba(129, 140, 248, 0.24) 50%, rgba(236, 72, 153, 0.32) 100%);
        border-radius: 4px; z-index: 0;
    }
    .values-cards-layer.thread-active::before { box-shadow: 0 0 6px rgba(244, 114, 182, 0.2); }
    .values-cards-layer::after {
        content: ''; position: absolute; left: 50%; top: var(--thread-focus-y);
        transform: translate(-50%, -50%); width: 4px; height: 180px; z-index: 1; pointer-events: none;
        opacity: var(--thread-glow-opacity);
        background: linear-gradient(180deg, rgba(59, 130, 246, 0) 0%, rgba(59, 130, 246, 0.34) 24%, rgba(244, 114, 182, 0.74) 50%, rgba(59, 130, 246, 0.34) 76%, rgba(236, 72, 153, 0) 100%);
        box-shadow: 0 0 6px rgba(168, 85, 247, 0.28);
        transition: top 0.24s linear, opacity 0.32s ease;
    }

    .elegant-value-card {
        position: relative !important; width: 100% !important; max-width: 380px;
        left: auto !important; right: auto !important; top: auto !important; bottom: auto !important;
        transform: none !important; margin: 0 auto 52px !important; opacity: 1 !important; z-index: 2;
        background: var(--white); border: 2px solid rgba(139, 92, 246, 0.15); border-radius: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
        transition: transform 0.28s ease, opacity 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
    }
    .elegant-value-card:last-child { margin-bottom: 0 !important; }
    .elegant-value-card.hidden, .elegant-value-card.visible { opacity: 1 !important; transform: none !important; }
    .elegant-value-card::before {
        content: ''; position: absolute; left: 50%; top: -12px; transform: translateX(-50%);
        width: 14px; height: 14px;
        background: linear-gradient(135deg, #8b5cf6, #3b82f6);
        border: 3px solid var(--white); border-radius: 50%; z-index: 3;
        box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
    }
    .elegant-value-card.lit { opacity: 1 !important; transform: scale(1.02) translateY(-2px) !important; z-index: 4; border-color: rgba(236, 72, 153, 0.36) !important; box-shadow: 0 10px 24px rgba(244, 114, 182, 0.12), 0 4px 10px rgba(59, 130, 246, 0.08) !important; }
    .elegant-value-card.dimmed { opacity: 0.9 !important; transform: scale(0.95) !important; border-color: rgba(139, 92, 246, 0.12) !important; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important; }
    .elegant-value-card.lit::before { box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.16), 0 0 10px rgba(99, 102, 241, 0.24); }
    .elegant-value-card:hover { transform: none !important; }
    .elegant-value-card-image { height: 160px; border-radius: 18px 18px 0 0; overflow: hidden; }
    .elegant-value-card-image img { width: 100%; height: 100%; object-fit: cover; transition: none; }
    .elegant-value-card-content { padding: 24px; text-align: center; }
    .elegant-value-card-content h4 { font-size: var(--text-xl); margin-bottom: 10px; font-weight: 700; color: var(--dark); }
    .elegant-value-card-content p { font-size: var(--text-md); line-height: 1.7; color: var(--dark); }
}

@media (max-width: 768px) {
    .values { padding: 60px 24px; }
    .values-mobile-header { margin-bottom: 40px; padding-bottom: 20px; }
    .values-mobile-header .values-title { font-size: var(--text-2xl); }
    .values-cards-layer { max-width: 360px; padding: 16px 0; --thread-start-offset: -40px; --thread-end-offset: 26px; }
    .elegant-value-card { max-width: 340px; margin-bottom: 48px !important; }
    .elegant-value-card-image { height: 150px; }
    .elegant-value-card-content { padding: 20px; }
    .elegant-value-card-content h4 { margin-bottom: 8px; }
}

@media (max-width: 480px) {
    .values { padding: 50px 20px; }
    .values-mobile-header { margin-bottom: 36px; padding-bottom: 16px; }
    .values-mobile-header .values-title { font-size: var(--text-xl); margin-bottom: 8px; }
    .values-mobile-header .values-subtitle { font-size: var(--text-base); }
    .values-cards-layer { max-width: 100%; padding: 12px 0; --thread-start-offset: -36px; --thread-end-offset: 24px; }
    .elegant-value-card { max-width: 100%; margin-bottom: 42px !important; }
    .elegant-value-card::before { width: 12px; height: 12px; top: -10px; }
    .elegant-value-card-image { height: 140px; }
    .elegant-value-card-content { padding: 18px; }
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials { padding: 100px 0; background: #000000; position: relative; }
.testimonials::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(79, 70, 229, 0.15) 0%, transparent 60%); }
.testimonials-container { max-width: 1280px; margin: 0 auto; padding-left: 40px; padding-right: 40px; text-align: center; position: relative; z-index: 1; }
.testimonials-title { font-size: var(--text-2xl); font-weight: 700; color: var(--white); margin-bottom: var(--space-3); }
.testimonials-subtitle { font-size: var(--text-md); color: var(--gray-400); margin-bottom: 32px; }
.coming-soon-badge { display: inline-flex; align-items: center; gap: var(--space-3); padding: 20px 40px; background: rgba(99, 102, 241, 0.15); border: 1px solid rgba(99, 102, 241, 0.3); border-radius: 100px; }
.coming-soon-badge span { font-size: var(--text-lg); font-weight: 600; color: #818cf8; letter-spacing: 2px; }
.coming-soon-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary) 0%, var(--blue) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); animation: comingSoonFloat 3s ease-in-out infinite; }
@keyframes comingSoonFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.4);
}
.testimonial-text {
    font-size: var(--text-md);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: var(--text-base);
    font-weight: 600;
}
.testimonial-author span {
    display: block;
    color: var(--gray-400);
    font-size: var(--text-sm);
}

/* ========================================
   FAQ
   ======================================== */
.faq { padding: 100px 0; background: transparent; }
.faq-container { max-width: 1280px; margin: 0 auto; padding-left: 40px; padding-right: 40px; display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; }
.faq-header { position: sticky; top: 120px; }
.faq-title { font-size: var(--text-2xl); font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.faq-subtitle { font-size: var(--text-md); color: var(--dark); line-height: 1.7; margin-bottom: 28px; }
.faq-contact-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 600; font-size: var(--text-md); text-decoration: none; transition: gap 0.2s; }
.faq-contact-link:hover { gap: var(--space-3); }
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; overflow: hidden; transition: all 0.3s ease; }
.faq-item:hover { border-color: rgba(79, 70, 229, 0.3); box-shadow: 0 10px 30px rgba(79, 70, 229, 0.08); }
.faq-item.active { border-color: var(--primary); box-shadow: 0 15px 40px rgba(79, 70, 229, 0.12); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: transparent; border: none; cursor: pointer; text-align: left; font-family: inherit; transition: background 0.2s ease; }
.faq-question:hover { background: rgba(79, 70, 229, 0.02); }
.faq-question h3 { font-size: var(--text-md); font-weight: 600; color: var(--dark); line-height: 1.4; padding-right: 16px; }
.faq-icon { width: 36px; height: 36px; background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06); }
.faq-item.active .faq-icon { background: linear-gradient(135deg, var(--primary) 0%, var(--blue) 100%); color: var(--white); transform: rotate(180deg); box-shadow: 0 2px 6px rgba(79, 70, 229, 0.24); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; background: var(--gray-50); border-radius: 0 0 16px 16px; }
.faq-item.active .faq-answer { max-height: 2000px; opacity: 1; transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease 0.1s; }
.faq-answer p { padding: 0 28px 24px; font-size: var(--text-md); line-height: 1.7; color: var(--dark); }
.faq-link { color: var(--primary); text-decoration: none; font-weight: 600; background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%); padding: 2px 8px; border-radius: 4px; transition: all 0.3s ease; }
.faq-link:hover { background: linear-gradient(135deg, var(--primary) 0%, var(--blue) 100%); color: white; }

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section { background: var(--gray-50); padding-top: 80px; padding-bottom: 0; margin-bottom: -105px; }
.contact-hero { text-align: center; padding-bottom: 160px; background: linear-gradient(135deg, var(--gray-50), #f1f5f9); }
.contact-hero-container { max-width: 1280px; margin: 0 auto; padding-left: 40px; padding-right: 40px; }
.contact-hero h1 { font-size: var(--text-3xl); font-weight: 300; color: var(--dark); margin-bottom: 16px; }
.contact-hero h1 span { color: var(--primary); font-weight: 500; }
.contact-hero p { font-size: var(--text-md); color: var(--dark); max-width: 500px; margin: 0 auto; }
.contact-card-wrapper { max-width: 1280px; margin: -120px auto 0; padding-left: 40px; padding-right: 40px; position: relative; z-index: 10; }
.contact-card { background: var(--white); border-radius: 24px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); overflow: hidden; display: flex; min-height: 500px; }
.contact-info-side { width: 42%; background: var(--primary); position: relative; padding: 48px; display: flex; flex-direction: column; justify-content: space-between; color: var(--white); }
.contact-info-side::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1516387938699-a93567ec168e?w=800&fit=crop') no-repeat center; background-size: cover; opacity: 0.3; mix-blend-mode: multiply; }
.contact-info-content { position: relative; z-index: 1; }
.contact-info-side h3 { font-size: var(--text-xl); font-weight: 300; margin-bottom: 8px; }
.contact-info-side .info-subtitle { font-size: var(--text-base); opacity: 0.8; font-weight: 300; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail-item { display: flex; align-items: center; gap: 16px; }
.contact-detail-icon { width: 44px; height: 44px; background: rgba(255, 255, 255, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-item span { font-size: var(--text-md); font-weight: 300; }
.contact-info-side h3, .contact-info-side .info-subtitle, .contact-info-side .contact-detail-item span { font-family: "Times New Roman", Times, serif; font-weight: 600; }
.contact-info-side .contact-detail-item span.contact-phone { font-family: inherit; font-weight: 600; }
.contact-socials { display: flex; gap: var(--space-3); margin-top: 40px; position: relative; z-index: 1; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); text-decoration: none; transition: all 0.3s; }
.social-link:hover { background: var(--white); color: var(--primary); }
.contact-form-side { width: 58%; padding: 48px; }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: var(--text-base); font-weight: 300; color: var(--dark); }
.form-group input, .form-group textarea { padding: 14px 18px; border: 1px solid var(--gray-200); border-radius: 10px; font-size: var(--text-md); font-family: inherit; transition: all 0.3s; font-weight: 300; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { min-height: 120px; resize: none; }

.contact-form-side, .contact-form-side .contact-form, .contact-form-side .form-group label,
.contact-form-side .form-group input, .contact-form-side .form-group textarea,
.contact-form-side .checkbox-label, .contact-form-side .form-submit {
    font-family: "Times New Roman", Times, serif; font-weight: 600;
}
.contact-form-side .form-group input::placeholder, .contact-form-side .form-group textarea::placeholder {
    font-family: "Times New Roman", Times, serif; font-weight: 600;
}

.form-group label .required { color: #EF4444; font-weight: 600; }
.form-group label .optional { color: var(--gray-400); font-size: var(--text-xs); font-weight: 600; }

.service-checkboxes { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
.checkbox-label {
    --accent-rgb: 79, 70, 229;
    position: relative; display: flex; align-items: center; cursor: pointer;
    font-size: var(--text-base); font-weight: 500; color: var(--dark);
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--gray-50) 0%, #f8fafc 100%);
    border-radius: 12px; border: 1px solid var(--gray-200);
    transition: all 0.25s ease; user-select: none;
}
.checkbox-label:hover { border-color: var(--gray-300); background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); transform: translateY(-1px); }
.checkbox-label input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.checkbox-label:has(input[type="checkbox"]:checked) { border-color: #ffbf00; background: #ffbf00; box-shadow: 0 8px 20px rgba(255, 191, 0, 0.28); color: #4a3600; }
.checkbox-label:has(input[type="checkbox"]:focus-visible) { outline: 2px solid rgba(255, 191, 0, 0.55); outline-offset: 2px; }

.service-opt--marketing { --accent-rgb: 14, 165, 233; }
.service-opt--learning { --accent-rgb: 16, 185, 129; }
.service-opt--product { --accent-rgb: 249, 115, 22; }
.service-opt--other { --accent-rgb: 139, 92, 246; }

.form-submit {
    width: 100%; padding: 16px 28px; min-height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--blue) 100%);
    color: var(--white); border: none; border-radius: 10px;
    font-size: var(--text-md); font-weight: 600; letter-spacing: 0.5px;
    cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 12px;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35), 0 2px 6px rgba(79, 70, 229, 0.2);
    position: relative; overflow: hidden;
}
.form-submit::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255, 255, 255, 0.3); border-radius: 50%; transform: translate(-50%, -50%); transition: width 0.5s ease, height 0.5s ease; }
.form-submit:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 25px rgba(79, 70, 229, 0.45), 0 4px 10px rgba(79, 70, 229, 0.25); background: linear-gradient(135deg, #5B54E8 0%, #4F9CF9 100%); }
.form-submit:active { transform: translateY(-1px) scale(0.98); box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3); }
.form-submit:active::before { width: 300px; height: 300px; }
.form-submit.success { background: linear-gradient(135deg, #10B981 0%, #34D399 100%) !important; box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4); }
.form-submit.success:hover { box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5); }

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

@media (max-width: 1200px) {
    .hero-container { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(36px, 3.5vw, 56px); padding: 0 clamp(16px, 3vw, 60px); }
    .hero-content { max-width: 700px; }
    .about-container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .about-header { text-align: center; }
    .about-cards { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .values { min-height: 750px; padding: 80px 20px; }
    .elegant-value-card { width: 220px; }
    .elegant-value-card.visible.top-left { left: 2%; top: 12%; }
    .elegant-value-card.visible.top-right { right: 2%; top: 12%; }
    .elegant-value-card.visible.bottom-left { left: 2%; bottom: 12%; }
    .elegant-value-card.visible.bottom-right { right: 2%; bottom: 12%; }
    .about-description { margin: 0 auto 28px; max-width: 600px; }
    .btn-learn { margin: 0 auto; padding: 10px 22px; min-height: 40px; }
}

@media (max-width: 1024px) {
    .hero { min-height: 100dvh; height: auto; max-height: none; padding-top: clamp(92px, 11vh, 124px); padding-bottom: clamp(34px, 5vh, 60px); align-items: center; overflow: hidden; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: clamp(28px, 3vh, 40px); padding: 0 40px; }
    .hero-content { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
    .hero-title { text-align: center; font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1.1; }
    .hero-description { margin: 0 auto; margin-bottom: clamp(8px, 1vh, 14px); text-align: center; font-size: clamp(1.05rem, 2.1vw, 1.2rem); max-width: 90%; }
    .hero-subtext { margin-left: auto; margin-right: auto; text-align: center; margin-bottom: clamp(18px, 2.4vh, 30px); font-size: clamp(1rem, 1.9vw, 1.1rem); max-width: 88%; }
    .hero-buttons { justify-content: center; }
    .hero-badge { margin: 0 auto clamp(12px, 1.5vh, 20px); display: inline-flex; }
    .hero-visual { height: clamp(200px, 28vh, 300px); }
    .gallery-column { width: 180px; }
    .gallery-item { width: 150px; height: 200px; }
    .sticker-card { padding: 8px 10px; min-width: 120px; }
    .sticker-icon-box { width: 28px; height: 28px; }
    .sticker-subtitle { font-size: 9px; }
    .col-1 .sticker-card { left: -25px; }
    .col-2 .sticker-card { right: -25px; }

    .about-container { padding: 0 40px; }
    .about-cards { grid-template-columns: repeat(2, 1fr); }

    .services { padding: 80px 0; }
    .services-container { padding: 0 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin: 0 auto; gap: 28px; }
    .services-title { text-align: center; }
    .services-header { text-align: center; max-width: 100%; margin: 0 auto 48px; }
    .services-subtitle { margin: 0 auto; text-align: center; }
    .service-card { min-height: 360px; padding: 32px 24px; }
    .section-tag-dark { margin: 0 auto 20px; display: inline-block; }

    .brands { padding: 80px 0; }
    .brands-container { padding: 0 40px; }
    .brands-header { text-align: center; margin-bottom: 48px; }
    .brands-title { text-align: center; }
    .brands-grid { max-width: 700px; margin: 0 auto; gap: 28px; }
    .brand-card { min-height: auto; }
    .brand-content { padding: 28px; }
    .brand-number { margin-bottom: 20px; }
    .brand-image { height: 180px; }

    .contact-card { flex-direction: column; }
    .contact-info-side { width: 100%; min-height: 300px; }
    .contact-form-side { width: 100%; }
    .contact-card-wrapper { padding: 0 40px; }

    .faq-container { grid-template-columns: 1fr; gap: 48px; padding: 0 40px; }
    .faq-header { position: static; text-align: center; }

    .testimonials-container { padding: 0 40px; }

    .btn-learn { margin: 0 auto; padding: 9px 20px; min-height: 38px; }
}

@media (max-width: 768px) {
    .hero-geo-shapes { display: none; }
    .parallax-shapes { display: none; }
    .hero { min-height: 100dvh; height: auto; max-height: none; padding-top: clamp(88px, 11vh, 112px); padding-bottom: clamp(32px, 5vh, 56px); align-items: center; overflow: hidden; }
    .hero-container { padding: 0 24px; gap: clamp(24px, 3vh, 38px); }
    .hero-content { text-align: center; display: flex; flex-direction: column; align-items: center; max-width: 100%; }
    .hero-badge { margin-bottom: clamp(10px, 1.5vh, 18px); }
    .hero-title { font-size: clamp(2.1rem, 8.2vw, 2.9rem); letter-spacing: -0.8px; text-align: center; line-height: 1.12; margin-bottom: clamp(12px, 1.8vh, 22px); }
    .hero-description { font-size: clamp(1rem, 3.5vw, 1.16rem); line-height: 1.75; margin-bottom: clamp(8px, 1vh, 14px); text-align: center; max-width: min(100%, 52ch); }
    .hero-subtext { font-size: clamp(0.96rem, 3vw, 1.08rem); line-height: 1.72; margin-bottom: clamp(16px, 2.2vh, 26px); text-align: center; max-width: min(100%, 48ch); }
    .hero-buttons { flex-direction: column; align-items: center; gap: var(--space-3); }
    .btn-primary, .btn-whatsapp { width: 100%; max-width: 360px; justify-content: center; padding: 12px 24px; min-height: 44px; font-size: var(--text-base); }
    .hero-tagline { justify-content: center; flex-wrap: wrap; row-gap: 8px; }

    .hero-visual { height: auto; display: flex; width: 100%; overflow: hidden; padding: 16px 0; justify-content: flex-start; }
    .gallery-wrapper { flex-direction: row; height: auto; width: 100%; overflow: visible; }
    .gallery-column, .gallery-column.col-1, .gallery-column.col-2 { width: 100%; height: auto; overflow: visible; border-radius: 0; display: flex; mask-image: none; -webkit-mask-image: none; }
    .gallery-column.col-2 { display: none; }
    .gallery-track { flex-direction: row; animation: scrollLeft 22s linear infinite; gap: 12px; height: 190px; align-items: center; width: max-content; padding: 6px 0; }
    .track-reverse { animation: scrollLeft 22s linear infinite; }
    .gallery-item { width: 140px; height: 185px; flex-shrink: 0; }
    .sticker-card { display: flex; padding: 6px 8px; min-width: 0; width: calc(100% - 10px); gap: 6px; bottom: 8px; left: 5px; right: auto; flex-direction: row; text-align: left; }
    .sticker-icon-box { width: 22px; height: 22px; font-size: 9px; border-radius: 6px; flex-shrink: 0; }
    .sticker-title { font-size: 9px; }
    .sticker-subtitle { font-size: 7px; }
    .col-1 .sticker-card { left: 5px; }
    .col-1 { margin-top: 0; }
    .col-2 { margin-top: 0; }

    .about { padding: 50px 0; }
    .about-container { padding: 0 24px; gap: 40px; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .about-header { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .about-title { font-size: var(--text-2xl); text-align: center; line-height: 1.3; margin-bottom: 16px; }
    .about-description { font-size: var(--text-md); text-align: center; max-width: 100%; margin-bottom: 24px; line-height: 1.8; }
    .about-cards { grid-template-columns: repeat(3, 1fr); max-width: 100%; margin: 0 auto; gap: 10px; }
    .about-card { text-align: center; }
    .about-card-media { aspect-ratio: 1 / 1; }
    .about-card-body { padding: 12px 8px; }
    .card-adjective { font-size: var(--text-base); margin-bottom: 0; }
    .card-text { display: none; }
    .btn-learn { margin: 0 auto; padding: 9px 20px; min-height: 38px; }

    .services { padding: 50px 0; }
    .services-container { padding: 0 24px; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .services-header { margin-bottom: 36px; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .section-tag-dark { margin-bottom: 16px; }
    .services-title { font-size: var(--text-2xl); text-align: center; line-height: 1.3; margin-bottom: 16px; }
    .services-subtitle { font-size: var(--text-base); text-align: center; line-height: 1.6; }
    .services-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; gap: 24px; }
    .service-card { padding: 28px 24px; min-height: auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .service-icon-wrapper { margin: 0 auto 16px; }
    .service-icon { margin: 0 auto; }
    .service-card h3 { font-size: var(--text-xl); margin-bottom: 14px; text-align: center; }
    .service-card p { font-size: var(--text-base); line-height: 1.7; text-align: center; margin-bottom: 24px; }
    .service-footer { margin-top: auto; padding-top: 16px; }
    .service-cta { justify-content: center; gap: var(--space-2); }
    .service-arrow { width: 40px; height: 40px; }
    .service-arrow svg { width: 18px; height: 18px; }

    .service-tooltip { right: auto; left: 50%; top: auto; bottom: calc(100% + 10px); transform: translateX(-50%) translateY(10px); }
    .service-tooltip::after { right: auto; left: 50%; top: auto; bottom: -10px; transform: translateX(-50%); border-color: var(--white) transparent transparent transparent; }
    .service-cta:hover .service-tooltip { transform: translateX(-50%) translateY(0); }
    .theme-blue .service-tooltip::after { border-color: #06B6D4 transparent transparent transparent; }
    .theme-purple .service-tooltip::after { border-color: #EC4899 transparent transparent transparent; }
    .theme-orange .service-tooltip::after { border-color: #F59E0B transparent transparent transparent; }

    .why-inner { padding: 30px 20px; }
    .why-nav-column { margin-bottom: 30px; }
    .why-nav-heading { font-size: var(--text-2xl); margin-bottom: var(--space-4); }
    .why-nav-item { padding: 8px 14px; margin: 0 5px 8px 0; font-size: var(--text-xs); }
    .why-nav-item.active { padding: 8px 16px; }
    .why-content-column { min-height: 420px; }
    .why-panel { gap: 24px; }
    .why-headline { font-size: var(--text-2xl); margin-bottom: 16px; }
    .why-description { font-size: 18px; line-height: 1.7; }
    .why-graphic-area { height: 220px; }
    .svg-container svg { width: 240px; height: 200px; }

    .brands { padding: 50px 0; }
    .brands-container { padding: 0 24px; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .brands-header { text-align: center; margin-bottom: 36px; display: flex; flex-direction: column; align-items: center; }
    .brands-title { font-size: var(--text-2xl); text-align: center; line-height: 1.3; }
    .brands-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; gap: 24px; }
    .brand-card { min-height: auto; }
    .brand-content { padding: 24px; text-align: center; }
    .brand-number { margin-bottom: 16px; }
    .brand-image { height: 180px; }
    .brand-card h4 { font-size: var(--text-lg); text-align: center; }
    .brand-card p { text-align: center; font-size: var(--text-base); line-height: 1.6; }

    .testimonials { padding: 40px 0; }
    .testimonials-container { padding: 0 28px; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .testimonials-title { font-size: var(--text-xl); text-align: center; line-height: 1.4; margin-bottom: 16px; letter-spacing: -0.3px; }
    .testimonials-subtitle { font-size: var(--text-md); text-align: center; line-height: 1.7; margin-bottom: 28px; max-width: 400px; }
    .coming-soon-badge { padding: 16px 28px; }
    .coming-soon-badge span { font-size: var(--text-base); }

    .faq { padding: 40px 0; }
    .faq-container { padding: 0 24px; gap: 32px; display: flex; flex-direction: column; align-items: center; }
    .faq-header { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .faq-title { font-size: var(--text-xl); text-align: center; line-height: 1.3; margin-bottom: var(--space-3); }
    .faq-subtitle { font-size: var(--text-base); text-align: center; line-height: 1.6; margin-bottom: var(--space-4); }
    .faq-contact-link { justify-content: center; }
    .faq-list { max-width: 100%; margin: 0 auto; gap: var(--space-3); }
    .faq-question { padding: 18px 20px; }
    .faq-question h3 { font-size: var(--text-base); text-align: left; line-height: 1.4; }
    .faq-answer p { padding: 0 20px 18px; font-size: var(--text-sm); line-height: 1.6; }

    .contact-section { margin-bottom: -60px !important; }
    .contact-hero { padding-bottom: 80px; text-align: center; }
    .contact-hero-container { padding: 0 24px; display: flex; flex-direction: column; align-items: center; }
    .contact-hero h1 { font-size: var(--text-2xl); text-align: center; line-height: 1.3; margin-bottom: var(--space-3); }
    .contact-hero p { font-size: var(--text-base); text-align: center; margin: 0 auto; line-height: 1.6; }
    .contact-card-wrapper { padding: 0 24px; margin-top: -60px; }
    .contact-card { border-radius: 20px; flex-direction: column; }
    .contact-info-side { padding: 28px 24px; min-height: auto; text-align: center; width: 100%; }
    .contact-info-side h3 { font-size: var(--text-lg); margin-bottom: 6px; }
    .contact-info-side .info-subtitle { margin-bottom: 24px; }
    .contact-details { align-items: center; gap: 16px; }
    .contact-detail-item { justify-content: center; }
    .contact-detail-item span { font-size: var(--text-sm); }
    .contact-socials { justify-content: center; margin-top: 24px; }
    .contact-form-side { padding: 28px 24px; width: 100%; }
    .form-row { grid-template-columns: 1fr; gap: 16px; }
    .form-group { text-align: left; margin-bottom: 0; }
    .form-group label { font-size: var(--text-sm); margin-bottom: 6px; }
    .form-group input, .form-group textarea { padding: 14px 16px; font-size: var(--text-base); }
    .service-checkboxes { grid-template-columns: 1fr; gap: var(--space-2); }
    .checkbox-label { padding: 10px 14px; font-size: var(--text-sm); }
    .form-submit { padding: 14px 20px; min-height: 48px; font-size: var(--text-base); margin-top: 12px; }
}

@media (max-width: 480px) {
    .hero { min-height: 100dvh; height: auto; max-height: none; padding-top: clamp(82px, 11vh, 102px); padding-bottom: clamp(26px, 4vh, 36px); align-items: center; overflow: hidden; }
    .hero-container { padding: 0 20px; gap: clamp(20px, 2.8vh, 30px); }
    .hero-title { font-size: clamp(1.95rem, 9vw, 2.35rem); line-height: 1.14; }
    .hero-description { font-size: clamp(1rem, 4.2vw, 1.08rem); }
    .hero-subtext { font-size: clamp(0.95rem, 3.8vw, 1rem); }
    .hero-badge { padding: 6px 14px; }
    .hero-visual { height: auto; padding: 16px 0; }
    .gallery-track { height: 165px; padding: 6px 0; }
    .gallery-item { width: 122px; height: 162px; }
    .sticker-title { font-size: 8px; }
    .sticker-subtitle { font-size: 7px; }
    .sticker-icon-box { width: 20px; height: 20px; font-size: 8px; }
    .btn-primary, .btn-whatsapp { padding: 11px 22px; min-height: 42px; }

    .about { padding: 40px 0; }
    .about-container { padding: 0 20px; gap: 32px; }
    .about-cards { gap: 8px; }
    .about-card { text-align: center; }
    .about-card-media { aspect-ratio: 1 / 1; }
    .about-card-body { padding: 10px 6px; }

    .services { padding: 40px 0; }
    .services-container { padding: 0 20px; }
    .services-grid { gap: 20px; }
    .service-card { padding: 28px 20px 24px; display: flex; flex-direction: column; align-items: center; }
    .service-icon-wrapper { width: 110px; height: 110px; margin: 0 auto 14px; }
    .service-card h3 { margin-bottom: var(--space-3); }
    .service-card p { margin-bottom: 24px; }
    .service-footer { padding-top: 14px; }
    .service-arrow { width: 38px; height: 38px; }
    .service-arrow svg { width: 16px; height: 16px; }

    .brands { padding: 40px 0; }
    .brands-container { padding: 0 20px; }
    .brands-grid { gap: 20px; max-width: 100%; }
    .brand-card { min-height: auto; }
    .brand-content { padding: 20px; }
    .brand-number { margin-bottom: 14px; font-size: 10px; }
    .brand-image { height: 160px; }

    .faq { padding: 36px 0; }
    .faq-container { padding: 0 20px; }
    .faq-question { padding: 16px; }
    .faq-answer p { padding: 0 16px 16px; }
    .contact-card-wrapper { padding: 0 20px; }
    .contact-info-side { padding: 24px 20px; }
    .contact-form-side { padding: 24px 20px; }
}

@media (max-width: 375px) {
    .hero { min-height: 100dvh; height: auto; max-height: none; padding-top: clamp(78px, 10.5vh, 92px); padding-bottom: clamp(22px, 3.6vh, 30px); overflow: hidden; }
    .hero-container { padding: 0 16px; gap: clamp(16px, 2.1vh, 24px); }
    .hero-title { font-size: clamp(1.82rem, 9.2vw, 2.05rem); line-height: 1.14; }
    .gallery-track { height: 148px; }
    .gallery-item { width: 108px; height: 144px; }
    .btn-primary, .btn-whatsapp { padding: 10px 18px; min-height: 40px; max-width: 100%; }

    .about-container, .services-container, .brands-container,
    .faq-container, .contact-card-wrapper,
    .testimonials-container { padding: 0 16px; }

    .about { padding: 36px 0; }
    .services { padding: 36px 0; }
    .brands { padding: 36px 0; }
    .faq { padding: 32px 0; }
}

/* Landscape phones */
@media (orientation: landscape) and (max-height: 500px) {
    .hero { padding-top: clamp(58px, 14vh, 72px); padding-bottom: clamp(12px, 3vh, 20px); }
    .hero-badge { margin-bottom: clamp(6px, 1.5vh, 12px); }
    .hero-title { margin-bottom: clamp(6px, 1.5vh, 12px); }
    .hero-description { margin-bottom: clamp(4px, 1vh, 8px); }
    .hero-subtext { margin-bottom: clamp(8px, 2vh, 14px); }
    .hero-tagline { margin-top: clamp(6px, 1.5vh, 12px); }
    .hero-buttons { flex-direction: row; justify-content: center; gap: 12px; }
    .btn-primary, .btn-whatsapp { width: auto; max-width: 220px; padding: 10px 18px; min-height: 40px; font-size: var(--text-sm); }
    .hero-visual { padding: 16px 0; }
}
