/* ===========================================
   BERAT USTA - KOMBİ & KLİMA SERVİSİ
   Turkuaz Gradyan Modern Tasarım
   =========================================== */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Turkuaz gradyan paleti */
    --color-primary: #00bfa5;
    --color-primary-light: #1de9b6;
    --color-primary-dark: #00897b;
    --color-accent: #00acc1;
    --color-deep: #004d40;
    --color-deeper: #003a36;
    --color-cyan-soft: #e0f7fa;
    --color-cyan-mid: #b2ebf2;
    --color-cyan-deep: #0097a7;

    /* Nötrler */
    --color-text: #0a1f24;
    --color-text-soft: #4a5b62;
    --color-muted: #8a9aa0;
    --color-border: #e3eced;
    --color-bg: #ffffff;
    --color-bg-soft: #f4fafb;
    --color-bg-alt: #003a36;

    /* Gradyanlar */
    --grad-primary: linear-gradient(135deg, #00bfa5 0%, #00acc1 50%, #1de9b6 100%);
    --grad-primary-soft: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    --grad-deep: linear-gradient(135deg, #004d40 0%, #00695c 50%, #00838f 100%);
    --grad-hero: linear-gradient(135deg, #003a36 0%, #00695c 45%, #00bfa5 100%);
    --grad-text: linear-gradient(135deg, #00bfa5 0%, #00acc1 100%);

    /* Tipografi */
    --font-display: 'Poppins', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Radiuslar */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 32px;
    --r-pill: 999px;

    /* Gölgeler */
    --sh-sm: 0 2px 8px rgba(0, 121, 107, 0.08);
    --sh-md: 0 8px 24px rgba(0, 121, 107, 0.10);
    --sh-lg: 0 20px 50px rgba(0, 121, 107, 0.18);
    --sh-glow: 0 12px 40px rgba(0, 191, 165, 0.35);

    /* Geçişler */
    --t-fast: 0.18s ease;
    --t-mid: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

input, select, textarea {
    font-family: inherit;
    font-size: 1rem;
}

/* ---------- Yardımcı Sınıflar ---------- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--color-cyan-soft);
    color: var(--color-deep);
    border-radius: var(--r-pill);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.eyebrow--light {
    background: rgba(255, 255, 255, 0.12);
    color: #b2dfdb;
    backdrop-filter: blur(8px);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn--primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: var(--sh-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(0, 191, 165, 0.45);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
}

.btn--whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn--lg {
    padding: 15px 28px;
    font-size: 1rem;
}

.btn--sm {
    padding: 9px 16px;
    font-size: 0.88rem;
}

.btn--block {
    width: 100%;
}

/* ---------- Header / Nav ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 0;
    transition: all var(--t-mid);
    background: transparent;
}

.admin-bar .header {
    top: 32px;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 2px 20px rgba(0, 77, 64, 0.08);
    padding: 10px 0;
}

body:not(.home) .header {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 2px 20px rgba(0, 77, 64, 0.08);
}

body:not(.home) .logo__text strong,
body:not(.home) .header.scrolled .logo__text strong {
    color: var(--color-deep);
}

body:not(.home) .logo__text small,
body:not(.home) .header.scrolled .logo__text small {
    color: var(--color-text-soft);
}

body:not(.home) .nav__link {
    color: var(--color-text-soft);
}

body:not(.home) .nav__link:hover,
body:not(.home) .nav__link.is-active {
    color: var(--color-deep);
    background: var(--color-cyan-soft);
}

body:not(.home) .header__actions .btn--ghost {
    color: var(--color-deep);
    border-color: var(--color-border);
    background: var(--color-cyan-soft);
}

body:not(.home) .hamburger {
    background: var(--color-cyan-soft);
}

body:not(.home) .hamburger span {
    background: var(--color-deep);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo--image {
    width: var(--logo-width);
    height: var(--logo-height);
    max-width: min(var(--logo-width), 42vw);
}

.logo--image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--grad-primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    box-shadow: 0 6px 16px rgba(0, 191, 165, 0.4);
    transition: transform var(--t-mid);
}

.logo:hover .logo__icon {
    transform: rotate(-6deg) scale(1.05);
}

.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo__text strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0;
    transition: color var(--t-mid);
}

.logo__text small {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    transition: color var(--t-mid);
}

.header.scrolled .logo__text strong {
    color: var(--color-deep);
}

.header.scrolled .logo__text small {
    color: var(--color-text-soft);
}

.nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav li {
    list-style: none;
}

.nav__link {
    padding: 8px 14px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.93rem;
    font-weight: 500;
    border-radius: var(--r-pill);
    transition: all var(--t-fast);
    position: relative;
}

.nav__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .nav__link {
    color: var(--color-text-soft);
}

.header.scrolled .nav__link:hover {
    color: var(--color-deep);
    background: var(--color-cyan-soft);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__actions .btn--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.header.scrolled .header__actions .btn--ghost {
    color: var(--color-deep);
    border-color: var(--color-border);
    background: var(--color-cyan-soft);
}

.header.scrolled .header__actions .btn--ghost:hover {
    background: var(--color-cyan-mid);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    transition: background var(--t-fast);
}

.header.scrolled .hamburger {
    background: var(--color-cyan-soft);
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--t-fast);
}

.header.scrolled .hamburger span {
    background: var(--color-deep);
}

.hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--grad-hero);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 14s ease-in-out infinite;
}

.hero__shape--1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, #1de9b6, transparent 70%);
    top: -120px;
    right: -120px;
}

.hero__shape--2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #00acc1, transparent 70%);
    bottom: -80px;
    left: -80px;
    animation-delay: -5s;
}

.hero__shape--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #00bfa5, transparent 70%);
    top: 50%;
    left: 40%;
    opacity: 0.3;
    animation-delay: -9s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--r-pill);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: #e0f7fa;
}

.badge__dot {
    width: 8px;
    height: 8px;
    background: #1de9b6;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(29, 233, 182, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(29, 233, 182, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(29, 233, 182, 0); }
    100% { box-shadow: 0 0 0 0 rgba(29, 233, 182, 0); }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 22px;
    color: #fff;
}

.hero__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero__features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero__features i {
    color: #1de9b6;
    font-size: 0.95rem;
}

.hero__visual {
    position: relative;
}

.hero__image-wrap {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.15);
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 14px 18px;
    border-radius: var(--r-md);
    box-shadow: var(--sh-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text);
    animation: floatCard 5s ease-in-out infinite;
    max-width: calc(100% - 48px);
}

.hero__card--top {
    top: 24px;
    left: 24px;
}

.hero__card--bottom {
    bottom: 24px;
    right: 24px;
    animation-delay: -2.5s;
}

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

.hero__card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--grad-primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.hero__card-icon--accent {
    background: linear-gradient(135deg, #ff7043, #ff5722);
}

.hero__card div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.hero__card strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-deep);
}

.hero__card span {
    font-size: 0.78rem;
    color: var(--color-text-soft);
    white-space: normal;
    overflow-wrap: anywhere;
}

/* ---------- Stats ---------- */
.stats {
    background: #fff;
    padding: 28px 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat__num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.65rem);
    font-weight: 800;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat__plus {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    font-weight: 800;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-top: 2px;
}

.stat__label {
    font-size: 0.95rem;
    color: var(--color-text-soft);
    margin-top: 4px;
    font-weight: 500;
}

/* ---------- Section base ---------- */
.section {
    padding: 100px 0;
    position: relative;
}

.section--sm {
    padding: 70px 0;
}

.section--alt {
    background: var(--grad-deep);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section--alt::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(29, 233, 182, 0.15), transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 172, 193, 0.18), transparent 50%);
    pointer-events: none;
}

.section--gradient {
    background: var(--color-bg-soft);
    position: relative;
}

.section--gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-cyan-mid), transparent);
}

.section__head {
    max-width: 720px;
    margin-bottom: 60px;
}

.section__head--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 0;
    color: var(--color-text);
    margin-bottom: 16px;
}

.section__title--sm {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.section--alt .section__title {
    color: #fff;
}

.section__desc {
    font-size: 1.05rem;
    color: var(--color-text-soft);
    line-height: 1.7;
}

.page-hero {
    padding: 118px 0 34px;
    background: linear-gradient(135deg, var(--color-bg-soft), #fff);
    border-bottom: 1px solid var(--color-border);
}

.page-hero .page-title {
    max-width: 860px;
    margin-bottom: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    color: var(--color-text-soft);
    font-size: 0.92rem;
}

.breadcrumb a {
    color: var(--color-primary-dark);
    font-weight: 600;
}

.breadcrumb span[aria-hidden="true"] {
    color: var(--color-muted);
}

.page-content {
    padding-top: 70px;
    min-height: 60vh;
}

.page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    align-items: start;
}

.content-entry--card,
.sidebar-widget {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-md);
}

.content-entry--card {
    padding: clamp(26px, 4vw, 44px);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 24px;
}

.entry-content {
    color: var(--color-text-soft);
    font-size: 1.04rem;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
    margin-bottom: 1.2em;
}

.entry-content a {
    color: var(--color-primary-dark);
    font-weight: 600;
}

.page-layout__sidebar {
    position: sticky;
    top: 112px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sidebar-widget {
    padding: 24px;
}

.sidebar-widget__title {
    font-family: var(--font-display);
    color: var(--color-text);
    font-size: 1.18rem;
    margin-bottom: 14px;
}

.sidebar-widget p,
.sidebar-widget li {
    color: var(--color-text-soft);
}

.sidebar-widget ul,
.sidebar-widget ol {
    margin-left: 18px;
}

.sidebar-widget--contact {
    background: linear-gradient(135deg, #fff, var(--color-bg-soft));
}

.sidebar-widget--contact .btn + .btn {
    margin-top: 10px;
}

.sidebar-links {
    list-style: none;
    margin: 0;
}

.sidebar-links li + li {
    margin-top: 8px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 10px;
    background: var(--color-bg-soft);
    color: var(--color-text);
    font-weight: 700;
}

.sidebar-links a:hover {
    background: var(--color-cyan-soft);
    color: var(--color-deep);
}

.section--alt .section__desc {
    color: rgba(255, 255, 255, 0.8);
}

/* ---------- Services ---------- */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    transition: all var(--t-mid);
    overflow: hidden;
    isolation: isolate;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-mid);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card--featured {
    background: linear-gradient(135deg, #f0fbf9 0%, #e0f7fa 100%);
    border-color: var(--color-cyan-mid);
}

.service-card--featured::before {
    transform: scaleX(1);
}

.service-card__tag {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--grad-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--r-pill);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--grad-primary-soft);
    color: var(--color-deep);
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
    transition: all var(--t-mid);
}

.service-card:hover .service-card__icon {
    background: var(--grad-primary);
    color: #fff;
    transform: scale(1.08) rotate(-6deg);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
    letter-spacing: 0;
}

.service-card p {
    color: var(--color-text-soft);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__list {
    margin-bottom: 24px;
}

.service-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.92rem;
    color: var(--color-text-soft);
}

.service-card__list i {
    color: var(--color-primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-deep);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap var(--t-fast), color var(--t-fast);
}

.service-card__link:hover {
    color: var(--color-primary-dark);
    gap: 14px;
}

/* ---------- Spotlight (2.El Kombi) ---------- */
.spotlight {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.spotlight__media {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    aspect-ratio: 4/3;
}

.spotlight__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.spotlight__media:hover img {
    transform: scale(1.05);
}

.spotlight__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--grad-primary);
    color: #fff;
    padding: 12px 18px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--sh-md);
}

.spotlight__badge i {
    font-size: 1.4rem;
}

.spotlight__badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
}

.spotlight__badge span {
    display: block;
    font-size: 0.78rem;
    margin-top: 4px;
    opacity: 0.9;
}

.spotlight h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin: 14px 0 20px;
    letter-spacing: 0;
}

.spotlight p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.spotlight__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.spotlight__feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-md);
    transition: all var(--t-mid);
}

.spotlight__feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.spotlight__feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--grad-primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.spotlight__feature h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 4px;
    font-weight: 700;
}

.spotlight__feature p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.5;
}

.spotlight__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---------- About ---------- */
.about {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about__img-stack {
    position: relative;
    aspect-ratio: 1/1;
}

.about__img {
    position: absolute;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    object-fit: cover;
}

.about__img--1 {
    width: 70%;
    height: 75%;
    top: 0;
    left: 0;
    z-index: 2;
}

.about__img--2 {
    width: 60%;
    height: 60%;
    bottom: 0;
    right: 0;
    border: 8px solid #fff;
    z-index: 3;
}

.about__chip {
    position: absolute;
    bottom: 18%;
    left: -10px;
    background: var(--grad-primary);
    color: #fff;
    padding: 14px 22px;
    border-radius: var(--r-pill);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--sh-glow);
    z-index: 4;
    animation: floatCard 5s ease-in-out infinite;
}

.about__chip i {
    font-size: 1.2rem;
}

.about h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 12px 0 22px;
    letter-spacing: 0;
}

.about > .about__content p {
    color: var(--color-text-soft);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.about__points {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}

.about__point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about__point i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-cyan-soft);
    color: var(--color-deep);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about__point strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--color-text);
    margin-bottom: 4px;
    font-weight: 700;
}

.about__point p {
    font-size: 0.92rem;
    color: var(--color-text-soft);
    margin: 0;
    line-height: 1.5;
}

/* ---------- Process ---------- */
.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-cyan-mid), var(--color-cyan-mid), transparent);
    z-index: 0;
}

.process__step {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--r-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all var(--t-mid);
}

.process__step:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--color-cyan-mid);
}

.process__num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-cyan-mid);
    opacity: 0.8;
}

.process__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    margin: 0 auto 22px;
    box-shadow: 0 8px 24px rgba(0, 191, 165, 0.3);
    transition: transform var(--t-mid);
}

.process__step:hover .process__icon {
    transform: scale(1.08) rotate(-6deg);
}

.process__step h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--color-text);
    margin-bottom: 10px;
    font-weight: 700;
}

.process__step p {
    color: var(--color-text-soft);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* ---------- Brands ---------- */
.brands {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.brand {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--r-md);
    padding: 22px 12px;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-text-soft);
    transition: all var(--t-mid);
    cursor: default;
}

.brand:hover {
    color: var(--color-deep);
    border-color: var(--color-primary);
    background: var(--color-cyan-soft);
    transform: translateY(-3px);
    box-shadow: var(--sh-sm);
}

.section--links {
    background: var(--color-bg-soft);
    padding-top: 70px;
    padding-bottom: 80px;
}

.seo-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.seo-link {
    min-height: 68px;
    display: grid;
    grid-template-columns: 34px 1fr 24px;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: var(--r-md);
    background: #fff;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-weight: 700;
    box-shadow: var(--sh-sm);
    transition: all var(--t-mid);
}

.seo-link i:first-child {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--color-cyan-soft);
    color: var(--color-deep);
}

.seo-link i:last-child {
    color: var(--color-primary);
}

.seo-link:hover {
    transform: translateY(-3px);
    border-color: var(--color-primary);
    box-shadow: var(--sh-md);
}

/* ---------- Testimonials ---------- */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    position: relative;
    z-index: 1;
}

.testimonial {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    color: #fff;
    transition: all var(--t-mid);
}

.testimonial:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.testimonial__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.testimonial__stars i {
    color: #ffd54f;
    font-size: 0.95rem;
}

.testimonial p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    font-size: 0.98rem;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial__person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.testimonial__person strong {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 0.98rem;
}

.testimonial__person span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

/* ---------- FAQ ---------- */
.faq {
    max-width: 820px;
    margin: 0 auto;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq__item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: all var(--t-fast);
}

.faq__item[open] {
    border-color: var(--color-cyan-mid);
    box-shadow: var(--sh-sm);
}

.faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--color-text);
    transition: color var(--t-fast);
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__item summary:hover {
    color: var(--color-deep);
}

.faq__item summary i {
    color: var(--color-primary);
    transition: transform var(--t-fast);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq__item[open] summary i {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 26px 22px;
    color: var(--color-text-soft);
    line-height: 1.7;
    font-size: 0.96rem;
    border-top: 1px solid var(--color-border);
    padding-top: 18px;
    margin-top: -8px;
}

/* ---------- Contact ---------- */
.contact {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact__title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text);
    margin: 12px 0 18px;
    letter-spacing: 0;
}

.contact__info > p {
    color: var(--color-text-soft);
    margin-bottom: 32px;
    font-size: 1.02rem;
}

.contact__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact__list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border-radius: var(--r-md);
    border: 1px solid var(--color-border);
    transition: all var(--t-mid);
}

.contact__list li:hover {
    border-color: var(--color-primary);
    transform: translateX(4px);
    box-shadow: var(--sh-sm);
}

.contact__icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--grad-primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0, 191, 165, 0.3);
}

.contact__icon--wa {
    background: #25d366;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.contact__list strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-soft);
    font-weight: 500;
    margin-bottom: 2px;
}

.contact__list a,
.contact__list span {
    color: var(--color-text);
    font-weight: 600;
    font-size: 1rem;
}

.contact__list a:hover {
    color: var(--color-primary-dark);
}

.contact__form {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 40px;
    box-shadow: var(--sh-md);
    border: 1px solid var(--color-border);
}

.contact__form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 6px;
    font-weight: 700;
}

.contact__form-desc {
    color: var(--color-text-soft);
    font-size: 0.95rem;
    margin-bottom: 26px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-row label,
.form-full {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-full {
    margin-bottom: 20px;
}

.contact__form label span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
}

.contact__form input,
.contact__form select,
.contact__form textarea {
    padding: 13px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--r-sm);
    background: var(--color-bg-soft);
    color: var(--color-text);
    transition: all var(--t-fast);
    outline: none;
    width: 100%;
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 191, 165, 0.12);
}

.contact__form textarea {
    resize: vertical;
    min-height: 110px;
    font-family: inherit;
}

.form-note {
    margin-top: 14px;
    font-size: 0.9rem;
    text-align: center;
    color: var(--color-text-soft);
    min-height: 1.2em;
}

.form-note.success {
    color: var(--color-primary-dark);
    font-weight: 600;
}

.form-note.error {
    color: #d84315;
    font-weight: 600;
}

.contact__map {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    overflow: hidden;
}

.contact__map-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--color-border);
    background: linear-gradient(135deg, #fff, var(--color-bg-soft));
}

.contact__map-head strong {
    display: block;
    font-family: var(--font-display);
    color: var(--color-text);
    font-size: 1.1rem;
}

.contact__map-head span {
    display: block;
    color: var(--color-text-soft);
    font-size: 0.92rem;
}

.contact__map-frame {
    position: relative;
    min-height: 430px;
    background: var(--color-bg-soft);
}

.contact__map-frame iframe {
    display: block;
    width: 100% !important;
    height: 430px !important;
    border: 0;
}

.contact__map-placeholder {
    min-height: 430px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    text-align: center;
    color: var(--color-text-soft);
    padding: 30px;
}

.contact__map-placeholder i {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--grad-primary);
    color: #fff;
    font-size: 1.4rem;
    box-shadow: var(--sh-glow);
}

.contact__map-placeholder strong {
    font-family: var(--font-display);
    color: var(--color-text);
    font-size: 1.2rem;
}

/* ---------- Footer ---------- */
.footer {
    background: #00251f;
    color: rgba(255, 255, 255, 0.8);
    padding-top: 70px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1.25fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer__col h4 {
    font-family: var(--font-display);
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer__col h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--grad-primary);
    border-radius: 2px;
}

.footer__col--brand p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.93rem;
    line-height: 1.7;
    margin: 18px 0 24px;
    max-width: 360px;
}

.logo--light .logo__text strong {
    color: #fff;
}

.logo--light .logo__text small {
    color: rgba(255, 255, 255, 0.6);
}

.footer__socials {
    display: flex;
    gap: 10px;
}

.footer__socials a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    display: grid;
    place-items: center;
    transition: all var(--t-mid);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__socials a:hover {
    background: var(--grad-primary);
    transform: translateY(-3px);
    border-color: transparent;
}

.footer__col ul li {
    margin-bottom: 10px;
}

.footer__col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    transition: all var(--t-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer__col ul a:hover {
    color: #1de9b6;
    padding-left: 4px;
}

.footer__contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

.footer__contact i {
    color: #1de9b6;
    width: 18px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
}

.footer__bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
}

.footer__credit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.62) !important;
    font-weight: 500;
}

.footer__credit a {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-primary-light);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 800;
    transition: all var(--t-fast);
}

.footer__credit a:hover {
    background: var(--grad-primary);
    color: #fff;
    transform: translateY(-1px);
}

/* ---------- Floating WhatsApp ---------- */
.float-wa {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    z-index: 99;
    transition: transform var(--t-mid);
}

.float-call {
    position: fixed;
    bottom: 100px;
    right: 26px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.45rem;
    box-shadow: var(--sh-glow);
    z-index: 99;
    transition: transform var(--t-mid);
}

.float-wa:hover,
.float-call:hover {
    transform: scale(1.1);
}

.float-wa__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    animation: pulseWa 2s infinite;
    z-index: -1;
}

.float-call__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--color-primary);
    animation: pulseWa 2s infinite;
    z-index: -1;
}

@keyframes pulseWa {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- Scroll-to-top ---------- */
.scroll-top {
    position: fixed;
    bottom: 174px;
    right: 33px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 0.95rem;
    box-shadow: var(--sh-md);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all var(--t-mid);
}

.scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-glow);
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero__visual {
        max-width: 540px;
        margin: 0 auto;
    }
    .hero__card--top { left: 16px; }
    .hero__card--bottom { right: 16px; }
    .nav { display: none; }
    .hamburger { display: flex; }
    .header__actions .btn--ghost { display: none; }
    .nav.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 18px;
        margin: 0 24px;
        border-radius: var(--r-md);
        box-shadow: var(--sh-lg);
        gap: 4px;
    }
    .nav.is-open .nav__link {
        color: var(--color-text);
        padding: 12px 18px;
        text-align: left;
        width: 100%;
    }
    .nav.is-open .nav__link:hover,
    .nav.is-open .nav__link.is-active {
        background: var(--color-cyan-soft);
        color: var(--color-deep);
    }
    .spotlight, .about, .contact { grid-template-columns: 1fr; gap: 50px; }
    .page-layout { grid-template-columns: 1fr; }
    .page-layout__sidebar { position: static; }
    .process { grid-template-columns: repeat(2, 1fr); }
    .process::before { display: none; }
    .brands { grid-template-columns: repeat(4, 1fr); }
    .seo-links { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .stats__grid { gap: 20px; }
}

@media (max-width: 720px) {
    .section { padding: 70px 0; }
    .container { padding: 0 18px; }
    .hero { padding: 110px 0 60px; }
    .page-hero { padding: 104px 0 30px; }
    .page-content { padding-top: 48px; }
    .hero__title { font-size: 2.2rem; }
    .hero__cta { flex-direction: column; align-items: stretch; }
    .hero__cta .btn { width: 100%; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .services { grid-template-columns: 1fr; }
    .process { grid-template-columns: 1fr; }
    .brands { grid-template-columns: repeat(3, 1fr); }
    .seo-links { grid-template-columns: 1fr; }
    .testimonials { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .contact__form { padding: 28px 22px; }
    .contact__map-frame,
    .contact__map-placeholder { min-height: 340px; }
    .contact__map-frame iframe { height: 340px !important; }
    .about__img--1 { width: 80%; height: 65%; }
    .about__img--2 { width: 65%; height: 50%; }
    .nav.is-open { margin: 0 18px; }
    body { padding-bottom: 84px; }
    body::after {
        content: "";
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        height: 66px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid rgba(227, 236, 237, 0.9);
        box-shadow: 0 14px 34px rgba(0, 77, 64, 0.16);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        z-index: 98;
        pointer-events: none;
    }
    .float-wa,
    .float-call,
    .scroll-top {
        bottom: 18px;
        height: 50px;
        border-radius: 15px;
        box-shadow: none;
        z-index: 99;
    }
    .float-wa {
        left: 18px;
        right: auto;
        width: calc((100% - 72px) / 3);
        font-size: 1.35rem;
        background: #25d366;
        color: #fff;
    }
    .float-call {
        left: calc(36px + ((100% - 72px) / 3));
        right: auto;
        width: calc((100% - 72px) / 3);
        font-size: 1.15rem;
        background: var(--grad-primary);
        color: #fff;
    }
    .scroll-top {
        left: calc(54px + (((100% - 72px) / 3) * 2));
        right: auto;
        width: calc((100% - 72px) / 3);
        font-size: 0.9rem;
        background: var(--color-bg-soft);
        color: var(--color-deep);
        border: 1px solid var(--color-border);
    }
    .float-wa__pulse,
    .float-call__pulse { display: none; }
    .footer__bottom .container { justify-content: center; text-align: center; }
    .section__head { margin-bottom: 40px; }
    .stat__num { font-size: 2.2rem; }
    .spotlight__feature { flex-direction: column; }
}

@media (max-width: 782px) {
    .admin-bar .header {
        top: 46px;
    }
}

@media (max-width: 420px) {
    .brands { grid-template-columns: repeat(2, 1fr); }
    .hero__title { font-size: 1.9rem; }
    .hero__card { padding: 10px 14px; }
    .hero__card--top { left: 10px; top: 12px; }
    .hero__card--bottom { right: 10px; bottom: 12px; }
    .hero__card-icon { width: 36px; height: 36px; }
    .hero__card strong { font-size: 0.95rem; }
    .hero__card span { font-size: 0.7rem; }
    .about__chip { font-size: 0.85rem; padding: 10px 16px; }
    .stat__num { font-size: 1.9rem; }
    .stat__plus { font-size: 1.4rem; }
    .stat__label { font-size: 0.85rem; }
}
