/* ==========================================================================
   Hızlı Toptan – EFE Kurumsal | Stil Dosyası
   Renkler: Lacivert ana, beyaz ikinci, turuncu vurgu
   ========================================================================== */

:root {
    --navy: #0A1F44;
    --navy-2: #122E5C;
    --navy-3: #1B3A78;
    --navy-soft: #EEF1F8;
    --orange: #FF6A1A;
    --orange-2: #FF8A3D;
    --orange-soft: #FFF1E6;
    --white: #FFFFFF;
    --ink: #0B1426;
    --gray-50: #F7F8FB;
    --gray-100: #EEF1F6;
    --gray-200: #DDE3EE;
    --gray-300: #C2CADD;
    --gray-500: #7A879F;
    --gray-700: #2C3A5A;
    --green: #25D366;
    --green-d: #128C7E;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 22px;
    --shadow-sm: 0 2px 10px rgba(10, 31, 68, 0.06);
    --shadow: 0 18px 50px -18px rgba(10, 31, 68, 0.25);
    --shadow-lg: 0 40px 90px -30px rgba(10, 31, 68, 0.35);
    --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
    --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Hide React root */
#root { display: none; }

/* ========== Container ========== */
.wrap {
    width: min(1200px, 90%);
    margin-inline: auto;
}

/* ========== Top Info Bar ========== */
.topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    flex-wrap: wrap;
    gap: 10px;
}
.topbar a { transition: color 0.2s; }
.topbar a:hover { color: var(--orange-2); }
.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.topbar i { color: var(--orange); margin-right: 6px; }

/* ========== Navbar ========== */
.nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.brand-logo {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--navy);
    color: var(--white);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.5px;
    position: relative;
    box-shadow: 0 8px 22px -8px rgba(10, 31, 68, 0.4);
}
.brand-logo::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--orange);
    border-radius: 50%;
    bottom: -4px;
    right: -4px;
    border: 3px solid var(--white);
}
.brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--navy);
    letter-spacing: -0.5px;
    line-height: 1.1;
}
.brand-sub {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-menu a {
    font-weight: 500;
    font-size: 15px;
    color: var(--gray-700);
    transition: color 0.2s;
    position: relative;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--navy);
}
.nav-menu a.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    bottom: -22px;
    height: 3px;
    background: var(--orange);
    border-radius: 3px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: white;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(37, 211, 102, 0.6);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--navy);
    color: white;
    font-size: 20px;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.1px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    white-space: nowrap;
}
.btn-primary {
    background: var(--orange);
    color: white;
    box-shadow: 0 14px 30px -10px rgba(255, 106, 26, 0.55);
}
.btn-primary:hover {
    background: var(--orange-2);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -10px rgba(255, 106, 26, 0.7);
}
.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid var(--gray-200);
}
.btn-secondary:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}
.btn-dark {
    background: var(--navy);
    color: white;
}
.btn-dark:hover {
    background: var(--navy-3);
    transform: translateY(-2px);
}
.btn-ghost {
    color: var(--navy);
    border: 1.5px solid var(--gray-200);
    background: transparent;
}
.btn-ghost:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

/* ========== Hero ========== */
.hero {
    position: relative;
    background: var(--white);
    color: var(--ink);
    padding: 80px 0 140px;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 106, 26, 0.08), transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(10, 31, 68, 0.05), transparent 50%);
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(10, 31, 68, 0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(10, 31, 68, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: linear-gradient(180deg, black 30%, transparent);
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--orange-soft);
    border: 1px solid rgba(255, 106, 26, 0.25);
    border-radius: 999px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
}
.hero-tag .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 106, 26, 0.25);
}
.hero h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -1.2px;
    margin-bottom: 22px;
    color: var(--navy);
}
.hero h1 .accent {
    color: var(--orange);
    position: relative;
    display: inline-block;
}
.hero h1 .accent::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 6px;
    height: 12px;
    background: rgba(255, 106, 26, 0.18);
    z-index: -1;
    border-radius: 4px;
}
.hero p.lead {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 560px;
    margin-bottom: 36px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}
.hero-meta {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid var(--gray-100);
}
.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 600;
}
.hero-meta-item i {
    color: var(--orange);
    font-size: 18px;
}

/* Hero visual */
.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}
.hero-visual img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 1;
}
.hero-badge {
    position: absolute;
    background: white;
    color: var(--navy);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 14px;
}
.hero-badge-1 {
    top: 32px; left: -28px;
    animation: floaty 4s ease-in-out infinite;
}
.hero-badge-2 {
    bottom: 36px; right: -32px;
    animation: floaty 4s ease-in-out infinite 1.5s;
}
.hero-badge .b-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--orange-soft);
    color: var(--orange);
    display: grid; place-items: center;
    font-size: 20px;
}
.hero-badge .b-icon.green { background: rgba(37, 211, 102, 0.12); color: var(--green-d); }
.hero-badge .b-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    line-height: 1;
}
.hero-badge .b-lbl {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
}

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

/* ========== Stats overlap bar ========== */
.stats {
    margin-top: -80px;
    position: relative;
    z-index: 5;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.stat-item {
    text-align: left;
    padding: 0 4px;
    border-right: 1px solid var(--gray-100);
}
.stat-item:last-child { border-right: 0; }
.stat-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 42px;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -1px;
}
.stat-num .plus { color: var(--orange); }
.stat-lbl {
    color: var(--gray-500);
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
}

/* ========== Section base ========== */
section.block { padding: 100px 0; }
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.eyebrow i { font-size: 10px; }
.section-head h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 3.8vw, 3rem);
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
}
.section-head h2 .accent {
    color: var(--orange);
}
.section-head p {
    color: var(--gray-500);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}
.section-head.left p { margin-left: 0; }

/* ========== Categories ========== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.cat-card {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 0;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
}
.cat-img {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--gray-50);
}
.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.55s;
}
.cat-card:hover .cat-img img { transform: scale(1.08); }
.cat-body {
    padding: 30px 22px 24px;
    position: relative;
}
.cat-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.cat-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
    z-index: 3;
}
.cat-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--shadow);
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-icon {
    position: absolute;
    top: -28px;
    left: 22px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: white;
    color: var(--orange);
    display: grid;
    place-items: center;
    font-size: 22px;
    box-shadow: 0 10px 24px -8px rgba(10, 31, 68, 0.28);
    border: 4px solid white;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    z-index: 2;
}
.cat-card:hover .cat-icon {
    background: var(--orange);
    color: white;
    transform: rotate(-6deg);
}
.cat-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
}
.cat-card p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 18px;
    min-height: 42px;
}
.cat-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s, color 0.3s;
}
.cat-card:hover .cat-link {
    color: var(--orange);
    gap: 10px;
}

/* ========== Features (Why us) ========== */
.feat-wrap {
    background: var(--navy-soft);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.feat-img {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow);
    position: relative;
}
.feat-img img { width: 100%; height: 100%; object-fit: cover; }
.feat-list {
    display: grid;
    gap: 22px;
}
.feat-item {
    display: flex;
    gap: 20px;
    padding: 22px;
    background: white;
    border-radius: var(--radius);
    transition: transform 0.3s;
}
.feat-item:hover { transform: translateX(6px); }
.feat-num {
    width: 48px; height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--orange);
    color: white;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
}
.feat-item h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 6px;
}
.feat-item p {
    color: var(--gray-500);
    font-size: 14px;
}

/* ========== Brands strip ========== */
.brands {
    padding: 70px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}
.brands-head {
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 36px;
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px 24px;
    align-items: center;
}
.brand-item {
    height: 60px;
    display: grid;
    place-items: center;
    color: var(--gray-300);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.5px;
    transition: color 0.3s, transform 0.3s;
    filter: grayscale(1);
    opacity: 0.7;
}
.brand-item:hover {
    color: var(--gray-500);
    opacity: 1;
    transform: scale(1.05);
}
.brand-item i { font-size: 28px; margin-right: 8px; }

/* ========== Testimonials ========== */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testi {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 32px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.testi:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.testi-stars {
    color: var(--orange);
    margin-bottom: 16px;
    font-size: 15px;
}
.testi-text {
    color: var(--gray-700);
    font-size: 15px;
    margin-bottom: 24px;
}
.testi-user {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testi-ava {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
}
.testi-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 15px;
}
.testi-role {
    font-size: 13px;
    color: var(--gray-500);
}

/* ========== CTA Banner ========== */
.cta-banner {
    background: linear-gradient(115deg, var(--orange), #FF8246);
    color: white;
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.2), transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(0, 0, 0, 0.1), transparent 40%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
}
.cta-banner p { font-size: 17px; opacity: 0.95; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-banner .btn-secondary { background: var(--navy); color: white; border-color: var(--navy); }
.cta-banner .btn-secondary:hover { background: var(--ink); }
.cta-banner .btn-light { background: white; color: var(--orange); }

/* ========== Footer ========== */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(255, 106, 26, 0.08), transparent 40%);
}
.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-brand {
    color: white;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
}
.footer-desc {
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 320px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: grid; place-items: center;
    color: white;
    transition: background 0.3s, transform 0.3s;
}
.footer-social a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}
.footer-col h4 {
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
    font-size: 14px;
    transition: color 0.2s, padding-left 0.2s;
}
.footer-col a:hover { color: var(--orange-2); padding-left: 6px; }
.footer-info-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    align-items: flex-start;
}
.footer-info-row i {
    color: var(--orange);
    width: 18px;
    margin-top: 4px;
}
.footer-bottom {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
}
.footer-bottom strong { color: white; }
.footer-trust {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    padding: 8px 14px;
    border-radius: 999px;
}
.footer-trust i { color: var(--orange); }

/* ========== WhatsApp Float ========== */
.wa-float {
    position: fixed;
    bottom: 76px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--navy);
    padding: 10px 18px 10px 10px;
    border-radius: 999px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 22px 50px -14px rgba(10, 31, 68, 0.28);
    transition: transform 0.3s, box-shadow 0.3s;
}
.wa-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 60px -14px rgba(10, 31, 68, 0.38);
}
.wa-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}
.wa-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    background: var(--navy-soft);
}
.wa-avatar .online {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 14px;
    height: 14px;
    background: var(--green);
    border: 2.5px solid white;
    border-radius: 50%;
    animation: dot-pulse 2s infinite;
}
.wa-info {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.wa-info strong {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    font-size: 14px;
    letter-spacing: -0.2px;
}
.wa-info .status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green-d);
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
}
.wa-info .status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.22);
    animation: dot-pulse 2s infinite;
}
.wa-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: grid;
    place-items: center;
    font-size: 18px;
    margin-left: 4px;
    box-shadow: 0 8px 18px -6px rgba(37, 211, 102, 0.55);
    transition: transform 0.35s, background 0.3s;
}
.wa-float:hover .wa-icon-btn {
    background: var(--green-d);
    transform: rotate(20deg) scale(1.05);
}
@keyframes dot-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
}

/* ========== Page Hero (inner pages) ========== */
.page-hero {
    background: var(--navy);
    color: white;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 106, 26, 0.15), transparent 45%);
}
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(180deg, black, transparent);
}
.page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
}
.crumbs {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}
.crumbs a { transition: color 0.2s; }
.crumbs a:hover { color: var(--orange-2); }
.crumbs i { font-size: 10px; color: var(--orange); }
.page-hero h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -1.2px;
    margin-bottom: 16px;
}
.page-hero h1 .accent { color: var(--orange); }
.page-hero p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    max-width: 580px;
}

/* ========== About sections ========== */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}
.about-img {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--orange);
    color: white;
    padding: 20px 24px;
    border-radius: var(--radius);
    font-family: var(--font-display);
}
.about-img-badge .yrs {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}
.about-img-badge .lbl { font-size: 13px; opacity: 0.95; margin-top: 4px; }

.about-content h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 22px;
}
.about-content h2 .accent { color: var(--orange); }
.about-content p {
    color: var(--gray-500);
    font-size: 16px;
    margin-bottom: 16px;
}
.about-ticks {
    list-style: none;
    margin: 24px 0;
    display: grid;
    gap: 12px;
}
.about-ticks li {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--navy);
    font-weight: 600;
}
.about-ticks i {
    width: 26px; height: 26px;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 11px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.value-card {
    background: white;
    padding: 32px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--navy);
    color: white;
    display: grid; place-items: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.value-card:nth-child(2) .value-icon { background: var(--orange); }
.value-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 10px;
}
.value-card p { color: var(--gray-500); font-size: 14px; }

/* ========== Products page ========== */
.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
.filter-pill {
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--gray-50);
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s, color 0.3s;
    border: 1px solid var(--gray-100);
}
.filter-pill:hover, .filter-pill.active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.prod-card {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.prod-img {
    aspect-ratio: 4/3;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}
.prod-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s;
}
.prod-card:hover .prod-img img { transform: scale(1.08); }
.prod-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--orange);
    color: white;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.prod-body { padding: 22px; }
.prod-cat { font-size: 12px; color: var(--gray-500); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.prod-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    font-size: 17px;
    margin: 8px 0 14px;
    line-height: 1.3;
}
.prod-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--gray-100);
}
.prod-meta span {
    font-size: 13px;
    color: var(--gray-500);
}
.prod-wa {
    color: var(--green-d);
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ========== Hero Google Rating Badge ========== */
.hero-google {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.06);
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 22px;
    backdrop-filter: blur(8px);
}
.hero-google .g-logo {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.hg-stars {
    color: #FBBC04;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1;
}
.hg-stars strong {
    color: var(--navy);
    font-family: var(--font-display);
    margin-left: 8px;
    font-size: 16px;
    letter-spacing: 0;
}
.hg-sub {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
    line-height: 1;
}

/* ========== How We Work ========== */
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 30px;
}
.how-step {
    text-align: center;
    padding: 36px 22px 28px;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.how-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.how-num {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    border: 4px solid white;
    box-shadow: 0 10px 22px -6px rgba(255, 106, 26, 0.55);
    transition: transform 0.3s;
}
.how-step:hover .how-num { transform: translateX(-50%) rotate(-8deg) scale(1.05); }
.how-icon {
    width: 58px;
    height: 58px;
    margin: 10px auto 20px;
    background: var(--navy-soft);
    color: var(--navy);
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 24px;
    transition: background 0.3s, color 0.3s;
}
.how-step:hover .how-icon { background: var(--navy); color: white; }
.how-step h3 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    font-size: 17px;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.how-step p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.55;
}

/* ========== Who We Serve ========== */
.serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.serve-card {
    padding: 32px 28px;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    transition: all 0.3s;
}
.serve-card:hover {
    background: white;
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.serve-icon {
    width: 58px;
    height: 58px;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 22px;
    transition: background 0.3s, transform 0.3s;
}
.serve-card:hover .serve-icon {
    background: var(--orange);
    color: white;
    transform: rotate(-6deg);
}
.serve-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    font-size: 19px;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.serve-card p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.6;
}

/* ========== Google Review Style Testimonials ========== */
.testi-meta-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}
.testi-user-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-ava-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.testi-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    font-size: 15px;
    line-height: 1.1;
}
.testi-name-row .verified {
    color: #1a73e8;
    font-size: 13px;
}
.testi-sub {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 3px;
}
.testi-google-logo {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.testi-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.testi-rating-row .testi-stars {
    color: #FBBC04;
    font-size: 16px;
    letter-spacing: 1.5px;
    margin: 0;
}
.testi-time {
    font-size: 12px;
    color: var(--gray-500);
}
.testi-footer {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 500;
}
.testi-footer svg { width: 14px; height: 14px; }
.testi-summary {
    background: linear-gradient(135deg, var(--white), var(--navy-soft));
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 26px 28px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
}
.testi-summary-score {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testi-summary-score .score {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 38px;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -1px;
}
.testi-summary-score .stars {
    color: #FBBC04;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 4px;
}
.testi-summary-score .count {
    color: var(--gray-500);
    font-size: 13px;
}
.testi-summary-google {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 14px;
    background: white;
    border-radius: 999px;
    border: 1px solid var(--gray-200);
}
.testi-summary-google svg { width: 16px; height: 16px; }
.faq-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}
.faq-aside {
    position: sticky;
    top: 110px;
}
.faq-aside h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 18px;
}
.faq-aside h2 .accent { color: var(--orange); }
.faq-aside p {
    color: var(--gray-500);
    font-size: 16px;
    margin-bottom: 26px;
}
.faq-aside .btn { width: fit-content; }
.faq-list { display: grid; gap: 14px; }
.faq {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.faq[open] {
    border-color: transparent;
    box-shadow: var(--shadow);
}
.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
    transition: color 0.3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--orange); }
.faq summary::after {
    content: "\f067";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: 34px; height: 34px;
    border-radius: 10px;
    background: var(--orange-soft);
    color: var(--orange);
    display: grid;
    place-items: center;
    font-size: 12px;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.3s, color 0.3s;
}
.faq[open] summary::after {
    content: "\f068";
    background: var(--orange);
    color: white;
    transform: rotate(180deg);
}
.faq-body {
    padding: 0 26px 26px;
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.65;
}

/* ========== Contact page ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
}
.contact-info { display: grid; gap: 18px; }
.contact-card {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-card .ci-icon {
    width: 52px; height: 52px;
    background: var(--navy-soft);
    color: var(--navy);
    border-radius: 14px;
    display: grid; place-items: center;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-card:nth-child(2) .ci-icon { background: rgba(37, 211, 102, 0.12); color: var(--green-d); }
.contact-card:nth-child(3) .ci-icon { background: var(--orange-soft); color: var(--orange); }
.contact-card h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.contact-card p { color: var(--gray-500); font-size: 14px; }
.contact-card strong { color: var(--navy); }

.form-card {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-sm);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.field.full { grid-column: 1 / -1; }
.field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}
.field input, .field textarea, .field select {
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    background: var(--gray-50);
    transition: border-color 0.3s, background 0.3s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none;
    border-color: var(--orange);
    background: white;
}

.map {
    margin-top: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 21/8;
    border: 1px solid var(--gray-100);
}
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.1); }

/* ========== Banner Stack (Products page) ========== */
.banner-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}
.banner-item {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .35s ease, box-shadow .35s ease;
    background: var(--white);
    line-height: 0;
}
.banner-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.banner-item img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 720px) {
    .banner-stack { gap: 16px; }
    .banner-item { border-radius: var(--radius); }
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 480px; margin: 0 auto; aspect-ratio: 4/5; }
    .hero { padding-bottom: 110px; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: 0; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .feat-wrap { grid-template-columns: 1fr; padding: 40px; }
    .feat-img { max-width: 400px; }
    .testi-grid { grid-template-columns: 1fr; }
    .cta-banner { grid-template-columns: 1fr; padding: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-split { grid-template-columns: 1fr; gap: 40px; }
    .values-grid { grid-template-columns: 1fr; }
    .prod-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
    .faq-wrap { grid-template-columns: 1fr; gap: 30px; }
    .faq-aside { position: static; }
    .how-grid { grid-template-columns: repeat(2, 1fr); row-gap: 50px; }
    .serve-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .nav-menu { display: none; }
    .nav-toggle { display: grid; place-items: center; }
    .nav-cta span { display: none; }
    .topbar-left .hide-sm { display: none; }
    section.block { padding: 70px 0; }
    .hero { padding: 60px 0 110px; }
    .hero-badge { display: none; }
    .stats { grid-template-columns: 1fr 1fr; padding: 28px 22px; gap: 18px; }
    .stat-num { font-size: 32px; }
    .stat-item:nth-child(odd) { border-right: 1px solid var(--gray-100); }
    .stat-item:nth-child(even) { border-right: 0; }
    .cat-grid { grid-template-columns: 1fr; }
    .prod-grid { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-card { padding: 28px; }
    .form-grid { grid-template-columns: 1fr; }
    .wa-float { padding: 8px 12px 8px 8px; bottom: 84px; }
    .wa-info { display: none; }
    .how-grid { grid-template-columns: 1fr; row-gap: 50px; }
    .serve-grid { grid-template-columns: 1fr; }
    .testi-summary { flex-direction: column; gap: 14px; padding: 22px; }
    .hero-meta { gap: 16px; }
}

/* Mobile menu open state */
.nav-menu.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: white;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
}
.nav-menu.open a { width: 100%; padding: 8px 0; }
.nav-menu.open a.active::after { display: none; }

/* Emergent badge override - higher up to not collide with WA */
#emergent-badge { bottom: 24px !important; left: 24px !important; right: auto !important; }
