:root {
    --primary: #0a1128;
    --primary-light: #162044;
    --secondary: #eef2ff;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --border: #e2e8f0;
    --background: #ffffff;
    --gradient-1: #ffedd5;
    --gradient-2: #fce7f3;
    --gradient-3: #e0e7ff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background-color: var(--background); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 4rem 0; position: relative; }

/* Typography */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--primary); }
h1 { font-size: clamp(calc(2rem - 5px), 4vw, calc(3rem - 5px)); margin-bottom: 1.25rem; letter-spacing: -0.02em; }
h2 { font-size: clamp(calc(1.75rem - 5px), 3vw, calc(2.25rem - 5px)); margin-bottom: 0.875rem; text-align: center; }
h3 { font-size: calc(1.5rem - 5px); }
h4 { font-size: calc(1.25rem - 5px); }
h5 { font-size: calc(1rem - 5px); }
.subtitle { text-align: center; color: var(--text-gray); max-width: 640px; margin: 0 auto 2.5rem; font-size: 1rem; }
p { color: var(--text-gray); margin-bottom: 1.5rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: 9999px; font-weight: 500; transition: all 0.3s; cursor: pointer; border: none; font-size: 1rem; }
.btn-primary { background-color: var(--primary); color: white; }
.btn-primary:hover { background-color: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); color: white; }
.btn-outline { background-color: transparent; border: 1.5px solid var(--border); color: var(--primary); }
.btn-outline:hover { border-color: var(--primary); background-color: var(--secondary); transform: translateY(-2px); }

/* Navbar */
.site-header { position: sticky; top: 0; background-color: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); z-index: 1000; border-bottom: 1px solid rgba(226, 232, 240, 0.5); }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: calc(0.4rem + 5px) 0; }
.logo { display: flex; align-items: center; gap: 0.6rem; font-size: 1.35rem; font-weight: 700; color: var(--primary); }
.logo-icon { display: flex; align-items: center; justify-content: center; background: none; }
.logo-icon img { height: 52px; width: auto; max-width: 560px; object-fit: contain; display: block; }
.logo-icon i { font-size: 1.6rem; color: var(--primary); }
.nav-links { display: flex; gap: 1.75rem; align-items: center; }
.nav-links a { font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: #3b82f6; }
.nav-auth { display: flex; align-items: center; gap: 0.75rem; }
.btn-nav-login { background: transparent; border: 1.5px solid var(--border); color: var(--primary); padding: 0.55rem 1.25rem; border-radius: 9999px; font-size: 0.9rem; font-weight: 500; transition: all 0.2s; }
.btn-nav-login:hover { border-color: var(--primary); background: var(--secondary); }
.btn-nav-admin { background: var(--primary); color: white; padding: 0.55rem 1.25rem; border-radius: 9999px; font-size: 0.9rem; font-weight: 500; transition: all 0.2s; }
.btn-nav-admin:hover { background: var(--primary-light); color: white; }
.mobile-menu-btn { display: none; font-size: 1.5rem; background: none; border: none; cursor: pointer; }

/* Hero — Premium colourful design */
.hero-premium {
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: visible;
    background: linear-gradient(160deg, #f8faff 0%, #fef7ff 35%, #fff8f3 70%, #f0fdfa 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-premium > .container.hero-grid {
    height: 100%;
    max-height: 100%;
    align-items: center;
    gap: clamp(1.75rem, 3.5vw, 3rem);
    padding-block: clamp(1rem, 2vh, 1.75rem);
    box-sizing: border-box;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
    animation: heroOrbFloat 14s ease-in-out infinite;
}

.hero-orb--1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, #22d3ee 0%, transparent 70%);
    top: -12%;
    right: -8%;
    animation-delay: 0s;
}

.hero-orb--2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #f472b6 0%, transparent 70%);
    bottom: -10%;
    left: -6%;
    animation-delay: -4s;
}

.hero-orb--3 {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, #a78bfa 0%, transparent 70%);
    top: 35%;
    left: 28%;
    animation-delay: -7s;
    opacity: 0.4;
}

.hero-orb--4 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
    top: 8%;
    left: 5%;
    animation-delay: -2s;
    opacity: 0.45;
}

@keyframes heroOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(24px, -18px) scale(1.06); }
    66% { transform: translate(-16px, 14px) scale(0.96); }
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(6, 182, 212, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(244, 63, 94, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 90% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 45%);
}

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15, 23, 42, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 20%, transparent 75%);
    opacity: 0.5;
}

.hero-premium .hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.22fr 0.78fr;
    gap: clamp(1.5rem, 2.5vw, 2.5rem);
    align-items: center;
}

.hero-premium .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 100%;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
}

.hero-premium .hero-visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-height: 100%;
    height: 100%;
    padding-left: 1.5rem;
}

.hero-animate {
    opacity: 0;
    transform: translateY(28px);
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-premium .hero-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    max-width: max-content;
    align-self: flex-start;
    white-space: nowrap;
    padding: 0.38rem 0.85rem 0.38rem 0.7rem;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 24px rgba(6, 182, 212, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.78rem;
    color: #0f172a;
    margin-bottom: clamp(0.85rem, 1.8vh, 1.25rem);
    position: relative;
}

.hero-premium .hero-top-badge::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6, #f43f5e, #fbbf24);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.65;
}

.hero-badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.5);
    animation: heroPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes heroPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.45); }
    50% { box-shadow: 0 0 0 8px rgba(6, 182, 212, 0); }
}

.hero-premium .hero-headline {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(2rem, 3.6vw, 3.35rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.06;
    margin-bottom: clamp(0.75rem, 1.5vh, 1.1rem);
    letter-spacing: -0.035em;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero-headline-line { display: block; }

.hero-premium .hero-headline-line:first-child {
    white-space: nowrap;
}

.hero-gradient-text {
    background: linear-gradient(135deg, #0891b2 0%, #7c3aed 45%, #e11d48 85%, #d97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: heroGradientShift 6s ease-in-out infinite alternate;
}

@keyframes heroGradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 100% center; }
}

.hero-premium .hero-lead {
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    color: #475569;
    max-width: 100%;
    margin-bottom: clamp(1rem, 2vh, 1.5rem);
    line-height: 1.65;
}

.hero-premium .hero-features {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: clamp(1rem, 2vh, 1.5rem);
}

.hero-premium .hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 600;
    font-size: 0.82rem;
    color: #334155;
    padding: 0.45rem 0.85rem 0.45rem 0.45rem;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    width: fit-content;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-premium .hero-feature:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

.hero-feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    flex-shrink: 0;
}

.hero-feature--cyan .hero-feature-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    box-shadow: 0 4px 14px rgba(6, 182, 212, 0.35);
}

.hero-feature--coral .hero-feature-icon {
    background: linear-gradient(135deg, #fb7185, #e11d48);
    color: white;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.3);
}

.hero-feature--violet .hero-feature-icon {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    color: white;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

.hero-premium .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0;
}

.hero-stats-overlay.hero-animate {
    opacity: 0;
    animation: heroStatsReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes heroStatsReveal {
    from {
        opacity: 0;
        transform: translate(-50%, calc(50% + 24px));
    }
    to {
        opacity: 1;
        transform: translate(-50%, 50%);
    }
}

.hero-stats-overlay {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    z-index: 30;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    pointer-events: none;
}

.hero-stats-overlay .hero-stats {
    pointer-events: auto;
}

.hero-premium .hero-stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    width: 100%;
    max-width: none;
}

.hero-stat-card {
    flex: 1;
    min-width: 0;
    padding: 1.1rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12), 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-after-hero {
    padding-top: calc(4rem + 3.5rem);
    position: relative;
    z-index: 1;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.6rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    background-size: 200% auto;
    border: none;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.4s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.3);
    background-position: right center;
    color: white;
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.6rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(15, 23, 42, 0.12);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    border-color: transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #06b6d4, #8b5cf6, #f43f5e) border-box;
    border: 1.5px solid transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
}

.hero-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.14), 0 10px 24px rgba(15, 23, 42, 0.08);
}

.hero-stat-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 800;
    margin-bottom: 0.1rem;
    background: linear-gradient(135deg, #0f172a, #334155);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stat-card--accent h4 {
    background: linear-gradient(135deg, #0891b2, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stat-card p {
    font-size: 0.65rem;
    color: #64748b;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

.hero-visual {
    position: relative;
}

.hero-image-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    max-height: min(82vh, 82dvh, 620px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transform: translateX(28px);
}

.hero-image-ring {
    position: absolute;
    inset: -10px;
    border-radius: 2rem;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6, #f43f5e, #fbbf24, #06b6d4);
    background-size: 300% 300%;
    animation: heroRingSpin 8s linear infinite;
    opacity: 0.85;
    z-index: -1;
}

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

.hero-image-glow {
    position: absolute;
    inset: -28px;
    background: radial-gradient(circle at 60% 50%, rgba(6, 182, 212, 0.25), transparent 55%),
                radial-gradient(circle at 30% 70%, rgba(244, 63, 94, 0.2), transparent 50%);
    filter: blur(40px);
    z-index: -2;
    pointer-events: none;
}

.hero-image-frame img,
.hero-image-frame .hero-image-placeholder {
    width: 100%;
    height: auto;
    max-height: min(82vh, 82dvh, 620px);
    aspect-ratio: 4 / 3.4;
    object-fit: cover;
    border-radius: 1.75rem;
    display: block;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 48px -16px rgba(15, 23, 42, 0.2);
}

.hero-image-placeholder {
    background: linear-gradient(135deg, #e0f2fe 0%, #ede9fe 50%, #ffe4e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder span { font-size: 4rem; opacity: 0.4; }

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.95rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    z-index: 10;
    animation: heroCardFloat 5s ease-in-out infinite;
}

.hero-float-card strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.hero-float-card span {
    font-size: 0.68rem;
    color: #64748b;
    font-weight: 500;
}

.hero-float-card--quality {
    bottom: 0.5rem;
    left: -1.25rem;
    animation-delay: 0s;
}

.hero-float-card--speed {
    top: 0.5rem;
    right: -1rem;
    animation-delay: -2.5s;
}

@keyframes heroCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-float-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.hero-float-icon--green {
    background: linear-gradient(135deg, #34d399, #059669);
    color: white;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

.hero-float-icon--amber {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: white;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}

.hero-orbit-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    animation: heroOrbitSpin 20s linear infinite;
    z-index: 5;
    pointer-events: none;
}

@keyframes heroOrbitSpin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-orb, .hero-gradient-text, .hero-image-ring, .hero-orbit-badge, .hero-float-card, .hero-badge-pulse, .hero-animate {
        animation: none !important;
    }
    .hero-animate { opacity: 1; transform: none; }
}

@media (min-width: 1025px) and (max-height: 780px) {
    .hero-premium .hero-headline {
        font-size: clamp(1.85rem, 3.2vw, 2.75rem);
        margin-bottom: 0.6rem;
    }
    .hero-premium .hero-lead { margin-bottom: 0.85rem; }
    .hero-premium .hero-features { margin-bottom: 0.85rem; }
    .hero-premium .hero-actions { margin-bottom: 0.85rem; }
    .hero-image-frame,
    .hero-image-frame img {
        max-height: min(72vh, 72dvh, 480px);
    }
    .hero-stat-card { padding: 0.55rem 0.75rem; }
}

/* Legacy hero aliases (other pages) */
.hero { min-height: 80vh; display: flex; align-items: center; padding-top: 3rem; padding-bottom: 3rem; position: relative; background: #fafbfc; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; align-items: center; }
.hero-top-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.3rem 0.875rem; background-color: #f1f3f5; color: var(--text-dark); border-radius: 9999px; font-weight: 500; font-size: 0.8rem; margin-bottom: 1.5rem; }
.hero-content h1 { font-size: clamp(calc(2.25rem - 5px), 3.5vw, calc(3.25rem - 5px)); font-weight: 800; color: #111827; line-height: 1.1; margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.hero-headline-line { display: block; }
.hero-content p { font-size: 1rem; color: #475569; max-width: 520px; margin-bottom: 1.75rem; line-height: 1.6; }
.hero-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.hero-feature { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; font-size: 0.95rem; color: #475569; }
.hero-actions { display: flex; gap: 0.875rem; margin-bottom: 2.5rem; }
.hero-actions .btn { padding: 0.75rem 1.75rem; font-size: 0.95rem; }
.hero-actions .btn-primary { background: #111827; color: white; }
.hero-actions .btn-primary:hover { background: #1f2937; }
.hero-actions .btn-outline { border: 1.5px solid #111827; color: #111827; background: transparent; }
.hero-actions .btn-outline:hover { background: #f8fafc; }
.hero-stats { display: flex; gap: 2.5rem; border-top: 1px solid #e2e8f0; padding-top: 1.5rem; width: max-content; }
.stat-item h4 { font-size: calc(1.5rem - 5px); font-weight: 800; color: #111827; margin-bottom: 0.2rem; }
.stat-item p { font-size: 0.75rem; color: #64748b; margin: 0; font-weight: 500; }
.hero-image-wrapper { position: relative; z-index: 1; }
.hero-image-wrapper::before { content: ""; position: absolute; inset: -30px -40px -90px -40px; background: radial-gradient(circle at 75% 75%, #ffb6c1, transparent 55%), radial-gradient(circle at 10% 20%, rgba(255,255,255,0), transparent 50%), radial-gradient(circle at 20% 80%, #ffdfd3, transparent 40%); filter: blur(50px); z-index: -1; opacity: 0.85; border-radius: 50%; pointer-events: none; }
.hero-image-wrapper img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 2rem; display: block; }
.quality-badge { position: absolute; bottom: -1rem; left: -2.5rem; background: white; padding: 1rem 2rem 1rem 1.25rem; border-radius: 1rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); display: flex; align-items: center; gap: 0.875rem; z-index: 10; animation: float 6s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }
.quality-badge h5 { font-size: calc(1rem - 5px); font-weight: 700; color: #111827; margin-bottom: 0.1rem; }
.quality-badge p { font-size: 0.75rem; margin: 0; color: #64748b; font-weight: 500; }
.quality-icon { width: 38px; height: 38px; background: #111827; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; margin-bottom: 3rem; }
.service-card { background: var(--background); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: all 0.3s; }
.service-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-5px); }
.service-icon { width: 48px; height: 48px; background: var(--primary); color: white; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem; }
.service-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.service-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-gray); }
.service-list i { color: #3b82f6; font-size: 0.5rem; }
.services-cta { text-align: center; }

/* About Section */
.about-section { background-color: #fafbfc; position: relative; overflow: hidden; padding-top: 4rem; padding-bottom: 4rem; }
.about-grid { display: grid; grid-template-columns: 0.75fr 1.35fr; gap: 5rem; align-items: center; }
.about-image { position: relative; z-index: 1; }
.about-image::before { content: ""; position: absolute; inset: -40px; background: radial-gradient(circle at 60% 0%, #ffb6c1, transparent 50%), radial-gradient(circle at 10% 80%, #ffdfd3, transparent 50%); filter: blur(40px); z-index: -1; opacity: 0.6; border-radius: 50%; pointer-events: none; }
.about-image img { width: 100%; height: auto; object-fit: cover; border-radius: 2rem; display: block; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); }
.about-image-placeholder { width: 100%; aspect-ratio: 3/4; border-radius: 2rem; background: linear-gradient(160deg, #e0e7ff 0%, #fce7f3 100%); display: flex; align-items: center; justify-content: center; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); }
.about-image-placeholder span { font-size: 5rem; opacity: 0.35; }
.exp-badge { position: absolute; top: -1.25rem; right: -1.5rem; background: white; padding: 1.25rem 1.75rem; border-radius: 1.25rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); text-align: left; z-index: 10; animation: float 7s ease-in-out infinite reverse; }
.exp-badge h3 { font-size: calc(2.25rem - 5px); font-weight: 800; margin-bottom: 0.2rem; color: #111827; letter-spacing: -0.02em; }
.exp-badge p { font-size: 0.82rem; font-weight: 500; color: #475569; margin: 0; }

.about-content .pre-title { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; color: #475569; text-transform: uppercase; margin-bottom: 1rem; display: block; }
.about-content h2 { font-size: clamp(calc(1.875rem - 5px), 3vw, calc(2.5rem - 5px)); font-weight: 800; color: #111827; text-align: left; margin-bottom: 1.25rem; line-height: 1.15; letter-spacing: -0.02em; }
.about-content p { font-size: 0.97rem; color: #475569; margin-bottom: 1.25rem; line-height: 1.6; }

.about-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; margin-bottom: 1rem; }
.about-service-card { background: white; padding: 1.35rem; border-radius: 1rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -4px rgba(0,0,0,0.05); }
.about-service-card .icon { width: 38px; height: 38px; background: #111827; color: white; border-radius: 0.625rem; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 1rem; }
.about-service-card h4 { font-size: calc(1.05rem - 5px); font-weight: 700; color: #111827; margin-bottom: 0.5rem; }
.about-service-card p { font-size: 0.82rem; color: #475569; margin: 0; line-height: 1.5; }

.about-certifications { background: white; padding: 1.35rem; border-radius: 1rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -4px rgba(0,0,0,0.05); }
.about-certifications h4 { font-size: calc(1.05rem - 5px); font-weight: 700; color: #111827; margin-bottom: 0.875rem; }
.cert-list { display: flex; flex-wrap: wrap; gap: 0.75rem; width: 100%; }
.cert-item { flex: 1; text-align: center; white-space: nowrap; background: #f1f5f9; color: #475569; padding: 0.6rem 0.5rem; border-radius: 9999px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; }

/* Why Choose Us — extends About section styles */
.why-choose-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0.5rem;
}

.about-service-card .icon i {
    font-size: 1rem;
    line-height: 1;
}

/* Industries Section */
.industries-section {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.industries-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
}

.industries-content .pre-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    display: block;
}

.industries-content h2 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color: #111827;
    text-align: left;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.industries-lead {
    font-size: 0.97rem;
    color: #475569;
    margin-bottom: 1.75rem;
    line-height: 1.65;
    max-width: 560px;
}

.industries-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.industries-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0.95rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.industries-item:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
}

.industries-item-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111827;
    color: #ffffff;
    border-radius: 0.55rem;
    font-size: 0.85rem;
}

.industries-item-label {
    font-size: 0.84rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
}

.industries-visual {
    position: relative;
    z-index: 3;
}

.industries-image-wrap {
    position: relative;
    border-radius: 1.25rem;
    overflow: visible;
    box-shadow: 0 28px 56px -20px rgba(15, 23, 42, 0.18);
    background: #f1f5f9;
}

.industries-image-wrap img {
    width: 100%;
    aspect-ratio: 4 / 4.5;
    object-fit: cover;
    display: block;
    border-radius: 1.25rem;
}

.industries-image-placeholder {
    aspect-ratio: 4 / 4.5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #e2e8f0 0%, #f1f5f9 100%);
    color: #94a3b8;
    font-size: 3rem;
    border-radius: 1.25rem;
}

.industries-image-accent {
    position: absolute;
    top: -12px;
    right: -12px;
    bottom: 12px;
    left: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 1.25rem;
    z-index: -1;
    pointer-events: none;
}

.industries-stat-badge {
    position: absolute;
    bottom: 1.5rem;
    left: -1.5rem;
    z-index: 50;
    background: #ffffff;
    color: #111827;
    padding: 1rem 1.35rem;
    border-radius: 0.85rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
    min-width: 130px;
    pointer-events: none;
}

.industries-stat-badge strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.2rem;
    letter-spacing: -0.02em;
    color: #111827;
}

.industries-stat-badge span {
    font-size: 0.72rem;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Process Section */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; position: relative; }
.process-line { position: absolute; top: 1.75rem; left: 5%; right: 5%; height: 4px; background-color: #111827; z-index: 0; }
.process-step { position: relative; z-index: 1; background: white; padding: 1.5rem; border-radius: var(--radius-lg); border: 1px solid var(--border); transition: all 0.3s; }
.process-step:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.step-number { width: 3.5rem; height: 3.5rem; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; margin: 0 auto 1.25rem; box-shadow: 0 0 0 7px white, inset 0 0 0 2px rgba(255,255,255,0.2); }
.process-step h4 { text-align: center; margin-bottom: 0.75rem; font-size: calc(1.05rem - 5px); }
.process-step p { text-align: center; font-size: 0.875rem; margin: 0; }
.process-step .icon { font-size: 1.35rem; margin-bottom: 0.875rem; color: var(--text-dark); text-align: center; display: block; }

/* Benefits Section */
.benefits-section {
    background: #fafbfc;
    padding: 4.5rem 0;
    border-top: 1px solid #e2e8f0;
}

.benefits-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.75rem;
}

.benefits-header .pre-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #475569;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    display: block;
}

.benefits-header h2 {
    font-size: clamp(calc(1.875rem - 5px), 3vw, calc(2.5rem - 5px));
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin-bottom: 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.benefits-panel {
    max-width: 920px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 2rem 2.25rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.benefits-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.benefits-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.95rem 1.1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.benefits-item:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
}

.benefits-item-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111827;
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.72rem;
}

.benefits-item-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}

.benefits-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.425rem);
    justify-self: center;
}

/* Testimonials Section */
.testimonials-section {
    background: #ffffff;
    padding: 4.5rem 0;
    border-top: 1px solid #e2e8f0;
}

.testimonials-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.75rem;
}

.testimonials-header .pre-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #475569;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    display: block;
}

.testimonials-header h2 {
    font-size: clamp(calc(1.875rem - 5px), 3vw, calc(2.5rem - 5px));
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin-bottom: 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.testimonial-card {
    margin: 0;
    padding: 2rem 2rem 1.75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    transform: translateY(-4px);
}

.testimonial-quote-mark {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111827;
    color: #ffffff;
    border-radius: 0.65rem;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.testimonial-text {
    font-size: 0.97rem;
    color: #334155;
    line-height: 1.75;
    margin: 0 0 1.5rem;
    flex: 1;
    font-style: normal;
}

.testimonial-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.testimonial-line {
    display: block;
    width: 40px;
    height: 3px;
    background: #111827;
    border-radius: 2px;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: #111827;
    font-style: normal;
    line-height: 1.4;
}

/* CTA Section */
.cta-section { padding: 3.5rem 0; }
.cta-content { background-color: #0b1120; background-image: radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.35) 0%, rgba(11, 17, 32, 0) 55%); border-radius: 2rem; padding: 5rem 3rem; text-align: center; color: white; }
.cta-content h2 { font-size: clamp(calc(2rem - 5px), 3.5vw, calc(2.75rem - 5px)); font-weight: 800; color: white; margin-bottom: 1.25rem; letter-spacing: -0.03em; line-height: 1.1; }
.cta-content p { color: #9ca3af; margin-bottom: 2.5rem; font-size: 0.97rem; max-width: 580px; margin-inline: auto; line-height: 1.7; }
.btn-white { display: inline-block; background: white; color: #0b1120; font-weight: 700; padding: 1rem 2.5rem; border-radius: 9999px; font-size: 0.95rem; border: none; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.btn-white:hover { background: #f8fafc; transform: translateY(-2px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2); }

/* Contact Section */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; }
.contact-info h3 { font-size: calc(2rem - 5px); margin-bottom: 0.5rem; }
.contact-info > p { margin-bottom: 2rem; }
.info-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.info-item { display: flex; gap: 1rem; }
.info-icon { width: 48px; height: 48px; background: var(--secondary); color: var(--primary); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.info-text h5 { font-size: calc(1rem - 5px); font-weight: 600; margin-bottom: 0.25rem; }
.info-text p { margin: 0; font-size: 0.95rem; }

.business-hours { background: var(--primary); color: white; padding: 2rem; border-radius: var(--radius-lg); }
.business-hours h4 { color: white; margin-bottom: 1.5rem; text-align: center; }
.hours-list { display: flex; flex-direction: column; gap: 1rem; }
.hours-item { display: flex; justify-content: space-between; padding-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.hours-item:last-child { border-bottom: none; padding-bottom: 0; }

.contact-form-wrapper { height: 100%; }
.contact-form { height: 100%; display: flex; flex-direction: column; padding: 3rem; background: white; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 1.5rem; margin-bottom: 2rem; flex-grow: 1; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: span 2; display: flex; flex-direction: column; }
.form-group label { font-size: 0.875rem; font-weight: 500; color: var(--text-dark); }
.form-control { width: 100%; padding: 0.875rem 1rem; border: 1px solid var(--border); border-radius: 0.5rem; font-family: inherit; font-size: 0.95rem; transition: border-color 0.2s; }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(10, 17, 40, 0.1); }
textarea.form-control { resize: vertical; min-height: 100px; height: 100px; max-height: 160px; }
.btn-submit { width: 100%; padding: 1rem; font-size: 1.05rem; margin-top: auto; }

/* Footer */
.footer { background: var(--primary); color: #cbd5e1; padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { color: white; font-size: 1.5rem; margin-bottom: 1.25rem; }
.footer-logo .logo-icon { opacity: 0.95; }
.footer-about p { margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 1rem; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.1); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.social-link:hover { background: white; color: var(--primary); }

.footer-col h4 { color: white; font-size: calc(1.125rem - 5px); margin-bottom: 1.5rem; }
.footer-links { display: flex; flex-direction: column; gap: 1rem; }
.footer-links a:hover { color: white; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 2rem 0; display: flex; justify-content: space-between; align-items: center; }
.newsletter { display: flex; gap: 0.5rem; max-width: 400px; }
.newsletter input { flex: 1; padding: 0.75rem 1rem; border: 1px solid rgba(255,255,255,0.2); background: transparent; border-radius: 9999px; color: white; }
.newsletter input::placeholder { color: #94a3b8; }
.newsletter input:focus { outline: none; border-color: white; }
.newsletter button { padding: 0.75rem 1.5rem; border-radius: 9999px; font-weight: 500; cursor: pointer; border: none; background: white; color: var(--primary); transition: all 0.2s; }
.newsletter button:hover { background: #e2e8f0; }

/* Bento Grid */
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(180px, auto); gap: 1.5rem; }
.bento-item { position: relative; border-radius: 1.25rem; overflow: hidden; background-size: cover; background-position: center; display: flex; align-items: flex-end; padding: 1.5rem; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); cursor: pointer; border: 1px solid rgba(255,255,255,0.05); }
.bento-item:hover { transform: translateY(-3px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2); }
.bento-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 12, 23, 0.4) 0%, rgba(8, 12, 23, 0.95) 100%); z-index: 1; transition: background 0.3s ease; }
.bento-item:hover .bento-overlay { background: linear-gradient(180deg, rgba(8, 12, 23, 0.3) 0%, rgba(8, 12, 23, 0.85) 100%); }
.bento-title { position: relative; z-index: 2; color: white; font-size: 1.05rem; font-weight: 600; margin: 0; }
.bento-arrow { position: absolute; top: 1.25rem; right: 1.25rem; width: 32px; height: 32px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; z-index: 2; backdrop-filter: blur(4px); transition: all 0.3s ease; font-size: 0.8rem; }
.bento-item:hover .bento-arrow { background: white; color: var(--primary); }
.tall { grid-row: span 2; }
.wide { grid-column: span 2; }

/* Accordion */
.accordion-container { border-top: 1px solid var(--border); max-width: 1000px; margin: 0 auto; }
.acc-item { border-bottom: 1px solid var(--border); transition: all 0.3s ease; padding: 1.5rem 0; cursor: pointer; }
.acc-item.active { padding: 2.5rem 2.5rem; background: #ffffff; border-radius: 1.5rem; border-bottom: none; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05); margin: 1rem 0; transform: scale(1.02); }
.acc-header { display: flex; justify-content: space-between; align-items: center; transition: all 0.3s ease; }
.acc-left { display: flex; align-items: center; gap: 2rem; }
.acc-num { font-size: 2rem; font-weight: 800; opacity: 0.5; transition: opacity 0.3s; }
.acc-item.active .acc-num { opacity: 1; color: var(--primary) !important; }
.acc-title { font-size: 1.4rem; font-weight: 700; color: var(--primary); margin: 0; }
.acc-icon-btn { width: 40px; height: 40px; border-radius: 50%; background: #f1f5f9; display: flex; align-items: center; justify-content: center; color: var(--text-dark); transition: all 0.3s ease; font-size: 1rem; }
.acc-icon-btn.active-state { background: var(--primary); color: white; }
.acc-content { display: none; margin-top: 2rem; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 2rem; }
.meth-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.meth-card { background: #fafbfc; border: 1px solid var(--border); padding: 2rem; border-radius: 1rem; }
.meth-card h5 { font-size: calc(1.1rem - 5px); font-weight: 700; margin-bottom: 0.5rem; color: var(--primary); }
.meth-card p { font-size: 0.9rem; color: var(--text-gray); margin: 0; line-height: 1.5; }

/* Scroll Entrance Animations */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform; }
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.split-text { opacity: 1; }
.split-text.split-ready { opacity: 1; }
.word-mask { display: inline-flex; overflow: hidden; vertical-align: bottom; padding-bottom: 0.1em; margin-bottom: -0.1em; }
.word-inner { display: inline-block; transform: translateY(110%) rotate(3deg); opacity: 0; transform-origin: top left; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease; will-change: transform, opacity; }
.in-view .word-inner { transform: translateY(0) rotate(0); opacity: 1; }

/* Pre-title */
.pre-title { font-size: 0.8rem; font-weight: 700; color: var(--text-gray); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; display: block; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-premium .hero-grid, .hero-grid, .about-grid { gap: 1.5rem; }
    .hero-premium .hero-grid { grid-template-columns: 1fr; }
    .hero-premium {
        height: auto;
        max-height: none;
        min-height: 100vh;
        min-height: 100dvh;
        padding-block: 2rem;
    }
    .hero-premium > .container.hero-grid {
        height: auto;
        max-height: none;
        padding-block: 1.5rem;
    }
    .hero-premium .hero-features { flex-direction: column; align-items: flex-start; }
    .hero-premium .hero-headline-line:first-child { white-space: normal; }
    .hero-premium .hero-visual { padding-left: 0; justify-content: center; }
    .hero-image-frame { transform: none; margin-left: 0; }
    .hero-image-frame,
    .hero-image-frame img {
        max-height: min(50vh, 420px);
    }
    .hero-float-card--quality { left: -0.5rem; }
    .hero-float-card--speed { right: 0; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-choose-cards-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .industries-visual { order: -1; max-width: 520px; margin-inline: auto; width: 100%; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: 1fr; }
    .benefits-item:last-child:nth-child(odd) { max-width: 100%; grid-column: auto; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .process-line { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .hero-premium .hero-stats, .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
    .hero-stats-overlay { padding: 0 1.5rem; }
    h1 { font-size: calc(2.5rem - 5px); }
    .quality-badge, .hero-float-card--quality { left: -1rem; bottom: 1rem; }
    .exp-badge { right: 0; top: 1rem; }
    .bento-grid { grid-template-columns: repeat(3, 1fr); }
    .cell-i.wide { grid-column: span 1; }
    .cell-d.tall { grid-row: span 1; grid-column: span 3; }
}
@media (max-width: 768px) {
    .nav-links, .nav-auth { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-premium .hero-grid, .hero-grid, .about-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-premium .hero-content { align-items: center; }
    .hero-premium .hero-top-badge { align-self: center; }
    .hero-premium .hero-lead { margin-inline: auto; }
    .hero-premium .hero-features { align-items: center; }
    .hero-premium .hero-feature { width: auto; max-width: 100%; }
    .hero-premium .hero-actions, .hero-actions { justify-content: center; }
    .hero-premium .hero-stats, .hero-stats { justify-content: center; margin-inline: auto; }
    .hero-features { align-items: center; }
    .services-grid { grid-template-columns: 1fr; }
    .why-choose-cards-grid { grid-template-columns: 1fr; }
    .industries-section { padding: 3.5rem 0; }
    .industries-grid { grid-template-columns: 1fr; }
    .industries-content h2 { text-align: center; }
    .industries-lead { text-align: center; margin-inline: auto; }
    .industries-list { grid-template-columns: 1fr; }
    .industries-visual { order: -1; max-width: 100%; }
    .industries-stat-badge { left: 1rem; bottom: 1rem; z-index: 50; }
    .process-steps { grid-template-columns: 1fr; }
    .benefits-section { padding: 3.5rem 0; }
    .benefits-panel { padding: 1.5rem 1.25rem; }
    .testimonials-section { padding: 3.5rem 0; }
    .testimonial-card { padding: 1.5rem 1.35rem; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    h1 { font-size: calc(2rem - 5px); }
    .hero-premium { padding: 2rem 0 3rem; min-height: 100vh; min-height: 100dvh; height: auto; max-height: none; }
    .hero-premium .hero-features { flex-direction: column; align-items: center; }
    .hero-premium .hero-stats { flex-wrap: wrap; }
    .hero-stats-overlay { padding: 0 1.25rem; }
    .section-after-hero { padding-top: calc(4rem + 4.5rem); }
    .hero { padding-top: 2rem; min-height: auto; }
    .hero-orbit-badge { display: none; }
    .hero-float-card { position: relative; bottom: auto !important; left: auto !important; right: auto !important; top: auto !important; margin-top: 1rem; animation: none; display: inline-flex; }
    .hero-image-frame { display: flex; flex-direction: column; align-items: center; }
    .quality-badge, .hero-float-card--quality { position: relative; bottom: 0; left: 0; margin-top: -2rem; display: inline-flex; margin-inline: auto; animation: none; }
    .hero-float-card--speed { margin-top: 0.75rem; }
    .exp-badge { position: relative; right: 0; top: 0; margin-top: -2rem; margin-inline: auto; width: 80%; animation: none; }
    .contact-form { padding: 1.5rem; }
    .bento-grid { grid-template-columns: 1fr; }
    .tall, .wide { grid-row: span 1; grid-column: span 1 !important; }
    .acc-left { gap: 1rem; flex-direction: column; align-items: flex-start; }
    .meth-grid { grid-template-columns: 1fr; }
    .acc-item.active { padding: 1.5rem; transform: none; }
}
