/* ============================================================
   QuickFix — Premium Industrial Design System
   Warm, bold, memorable — NOT generic SaaS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    /* === Brand palette — warm industrial === */
    --cream: #FAF6F0;
    --cream-dark: #F0E9DC;
    --ink: #1A1512;
    --ink-soft: #2D2420;
    --copper: #D97706;
    --copper-dark: #B45309;
    --copper-light: #FDE68A;
    --amber-glow: #FCD34D;
    --steel: #44403C;
    --rust: #9A3412;
    --whatsapp: #25D366;
    --success: #15803D;
    
    /* === Typography === */
    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* === Shadows — warm depth === */
    --shadow-sm: 0 1px 2px rgba(26, 21, 18, 0.08);
    --shadow: 0 4px 12px rgba(26, 21, 18, 0.08), 0 2px 4px rgba(26, 21, 18, 0.04);
    --shadow-lg: 0 20px 40px rgba(26, 21, 18, 0.12), 0 8px 16px rgba(26, 21, 18, 0.06);
    --shadow-copper: 0 10px 30px rgba(217, 119, 6, 0.25);
    
    /* === Radii === */
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
}

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

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

body {
    font-family: var(--font-display);
    font-optical-sizing: auto;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Grain overlay for texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ============================================================
   Typography classes
   ============================================================ */
.eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--copper-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--copper);
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.02;
    color: var(--ink);
}

.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* ============================================================
   Navigation
   ============================================================ */
.navbar {
    position: sticky;
    top: 0;
    padding: 16px 0;
    background: rgba(250, 246, 240, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(26, 21, 18, 0.08);
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--copper) 0%, var(--copper-dark) 100%);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--cream);
    font-size: 18px;
    box-shadow: var(--shadow-copper);
    transform: rotate(-4deg);
    transition: transform 0.3s;
}

.logo:hover .logo-mark { transform: rotate(4deg) scale(1.05); }

.nav-links {
    display: none;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    position: relative;
    transition: color 0.2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--copper);
    transition: width 0.3s;
}

.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); }

.nav-cta {
    background: var(--ink) !important;
    color: var(--cream) !important;
    padding: 10px 18px !important;
    border-radius: 100px;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,21,18,0.25); }
.nav-cta::after { display: none; }

.menu-toggle {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--cream-dark);
    font-size: 20px;
    color: var(--ink);
}

/* ============================================================
   HERO — Asymmetric, bold, editorial
   ============================================================ */
.hero {
    padding: 48px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Decorative background blob */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--copper-light) 0%, transparent 70%);
    opacity: 0.6;
    z-index: 0;
    filter: blur(40px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text { animation: fadeUp 0.8s ease-out; }

.hero h1 {
    font-size: clamp(44px, 10vw, 72px);
    margin: 20px 0 24px;
    font-weight: 800;
}

.hero h1 .accent {
    color: var(--copper);
    display: inline-block;
    position: relative;
}

.hero h1 .accent::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--amber-glow);
    z-index: -1;
    transform: skewX(-5deg);
    opacity: 0.7;
}

.hero p {
    font-size: 18px;
    color: var(--ink-soft);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.55;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}

/* Hero visual — appliance icons in glass card */
.hero-visual {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 480px;
    margin: 0 auto;
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.appliance-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(253,230,138,0.4), rgba(217,119,6,0.15));
    border-radius: var(--r-xl);
    padding: 32px;
    overflow: hidden;
    border: 1px solid rgba(217,119,6,0.2);
    box-shadow: var(--shadow-lg);
}

.appliance-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.4), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(252, 211, 77, 0.3), transparent 50%);
    pointer-events: none;
}

.appliance-item {
    position: absolute;
    background: var(--cream);
    border-radius: var(--r-md);
    display: grid;
    place-items: center;
    font-size: 40px;
    box-shadow: var(--shadow);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.appliance-item:hover { transform: translateY(-8px) rotate(5deg) scale(1.1); }

.appliance-1 { top: 8%; left: 10%; width: 30%; height: 30%; animation: float 4s ease-in-out infinite; }
.appliance-2 { top: 10%; right: 8%; width: 24%; height: 24%; animation: float 5s ease-in-out infinite 1s; }
.appliance-3 { bottom: 20%; left: 15%; width: 28%; height: 28%; animation: float 4.5s ease-in-out infinite 0.5s; }
.appliance-4 { bottom: 10%; right: 12%; width: 32%; height: 32%; animation: float 5.5s ease-in-out infinite 1.5s; }

/* Center badge in visual */
.showcase-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--ink);
    color: var(--cream);
    padding: 10px 16px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.showcase-badge .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ADE80;
    margin-right: 6px;
    animation: pulse-dot 2s infinite;
}

/* Hero stats strip */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
    padding: 24px 0;
    border-top: 1px solid rgba(26,21,18,0.1);
    border-bottom: 1px solid rgba(26,21,18,0.1);
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1;
}

.hero-stat-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* ============================================================
   BUTTONS — premium, magnetic
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--ink);
    color: var(--cream);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(26,21,18,0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--copper), var(--rust));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.btn-primary:hover::before { opacity: 1; }

.btn-copper {
    background: linear-gradient(135deg, var(--copper) 0%, var(--copper-dark) 100%);
    color: white;
    box-shadow: var(--shadow-copper);
}

.btn-copper:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(217,119,6,0.4);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    background: #20BA5A;
    box-shadow: 0 12px 24px rgba(37,211,102,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
}

.btn-outline:hover {
    background: var(--ink);
    color: var(--cream);
}

.btn-arrow {
    transition: transform 0.3s;
    display: inline-block;
}

.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   MARQUEE — "as seen in" ticker
   ============================================================ */
.marquee {
    background: var(--ink);
    color: var(--cream);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 64px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.marquee-item::before {
    content: '✦';
    color: var(--copper);
    font-size: 16px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 80px 0;
    position: relative;
}

.section-dark {
    background: var(--ink);
    color: var(--cream);
}

.section-dark h2, .section-dark h3 { color: var(--cream); }

.section-header {
    max-width: 640px;
    margin-bottom: 48px;
}

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

.section-title {
    font-size: clamp(36px, 6vw, 56px);
    margin: 16px 0;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.section-sub {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 560px;
}

.section-dark .section-sub { color: rgba(250,246,240,0.7); }

/* ============================================================
   SERVICES — Brutalist card grid
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.service-card {
    position: relative;
    padding: 32px 28px;
    background: var(--cream);
    border: 1.5px solid var(--ink);
    border-radius: var(--r-md);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--copper-light) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.service-card:hover {
    transform: translate(-6px, -6px);
    box-shadow: 12px 12px 0 var(--ink);
}

.service-card:hover::before { opacity: 0.6; }

.service-card > * { position: relative; z-index: 1; }

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--ink);
    color: var(--copper-light);
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 26px;
    margin-bottom: 24px;
    transition: transform 0.4s;
}

.service-card:hover .service-icon {
    transform: rotate(-5deg) scale(1.08);
    background: var(--copper);
    color: var(--cream);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-card p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px dashed rgba(26,21,18,0.2);
}

.service-price {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--copper-dark);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.service-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--cream);
    display: grid;
    place-items: center;
    font-size: 12px;
    transition: transform 0.3s, background 0.3s;
}

.service-card:hover .service-arrow {
    background: var(--copper);
    transform: rotate(-45deg);
}

/* ============================================================
   HOW IT WORKS — numbered steps
   ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    counter-reset: step;
}

.step-card {
    position: relative;
    padding: 32px;
    background: rgba(250, 246, 240, 0.06);
    border: 1px solid rgba(250, 246, 240, 0.15);
    border-radius: var(--r-md);
    backdrop-filter: blur(10px);
    counter-increment: step;
    transition: transform 0.3s, border-color 0.3s;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--copper);
}

.step-card::before {
    content: "0" counter(step);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 56px;
    color: var(--copper);
    line-height: 1;
    display: block;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--cream);
}

.step-card p {
    color: rgba(250,246,240,0.7);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================================
   BOOKING FORM — premium
   ============================================================ */
.booking-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

.booking-info h2 { margin-bottom: 16px; }

.booking-info-items {
    list-style: none;
    padding: 0;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.booking-info-items li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--ink-soft);
}

.booking-info-items li::before {
    content: '✓';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--copper);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
}

.booking-form {
    background: var(--cream);
    border: 1.5px solid var(--ink);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    box-shadow: 8px 8px 0 var(--ink);
}

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

.form-group { position: relative; }

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-display);
    font-size: 15px;
    background: transparent;
    border: 1.5px solid rgba(26,21,18,0.2);
    border-radius: var(--r-sm);
    color: var(--ink);
    transition: border-color 0.2s, background 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--copper);
    background: rgba(252, 211, 77, 0.05);
}

.form-control::placeholder { color: rgba(26,21,18,0.35); }

textarea.form-control { min-height: 100px; resize: vertical; font-family: var(--font-display); }

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231A1512'%3E%3Cpath d='M5 8l5 5 5-5H5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form-footer {
    margin-top: 24px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-soft);
    text-align: center;
    letter-spacing: 0.05em;
}

/* ============================================================
   TESTIMONIALS — editorial style
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.testimonial {
    background: var(--cream);
    border: 1px solid rgba(26,21,18,0.08);
    border-radius: var(--r-md);
    padding: 28px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 24px;
    font-family: var(--font-serif);
    font-size: 100px;
    line-height: 1;
    color: var(--copper);
    opacity: 0.2;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 20px;
    line-height: 1.4;
    color: var(--ink);
    margin: 16px 0 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--copper), var(--rust));
    color: white;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 700;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.author-role {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-stars {
    color: var(--copper);
    font-size: 13px;
    letter-spacing: 2px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
    background: linear-gradient(135deg, var(--copper) 0%, var(--rust) 100%);
    color: white;
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '🔧';
    position: absolute;
    top: -40px;
    right: -20px;
    font-size: 280px;
    opacity: 0.08;
    transform: rotate(-15deg);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-band h2 {
    color: white;
    font-size: clamp(32px, 6vw, 48px);
    margin-bottom: 12px;
}

.cta-band p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 320px;
    margin: 0 auto;
}

.btn-on-copper {
    background: var(--ink);
    color: var(--cream);
}
.btn-on-copper:hover { background: white; color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--ink);
    color: rgba(250,246,240,0.6);
    padding: 64px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-mark { background: var(--cream); color: var(--ink); }
.footer-brand .logo { color: var(--cream); }

.footer-brand p {
    margin-top: 16px;
    max-width: 320px;
    font-size: 14px;
    line-height: 1.6;
}

.footer h4 {
    color: var(--cream);
    font-size: 13px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer ul { list-style: none; padding: 0; }

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

.footer ul a {
    font-size: 14px;
    color: rgba(250,246,240,0.7);
    transition: color 0.2s;
}

.footer ul a:hover { color: var(--copper); }

.footer-bottom {
    border-top: 1px solid rgba(250,246,240,0.1);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
    font-family: var(--font-mono);
    text-align: center;
    letter-spacing: 0.05em;
}

/* ============================================================
   STICKY ACTIONS (floating)
   ============================================================ */
.sticky-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 99;
}

.sticky-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.sticky-btn:hover { transform: translateY(-4px) scale(1.05); }

.sticky-btn.call {
    background: var(--ink);
}

.sticky-btn.call::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--copper);
    opacity: 0;
    animation: ringPulse 2s infinite;
}

.sticky-btn.whatsapp {
    background: var(--whatsapp);
}

.sticky-btn.whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--whatsapp);
    opacity: 0;
    animation: ringPulse 2s infinite 1s;
}

/* ============================================================
   Mobile menu overlay
   ============================================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 16px;
    right: 16px;
    background: var(--cream);
    border: 1.5px solid var(--ink);
    border-radius: var(--r-lg);
    padding: 24px;
    box-shadow: 8px 8px 0 var(--ink);
    z-index: 99;
}

.mobile-menu.open { display: block; animation: fadeDown 0.3s ease-out; }

.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid rgba(26,21,18,0.08);
}

.mobile-menu a:last-child { border-bottom: none; }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: var(--ink);
    color: var(--cream);
    padding: 14px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    max-width: 90%;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast.success { background: var(--success); }
.toast.error { background: var(--rust); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

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

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

@keyframes ringPulse {
    0%   { opacity: 0.8; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.8); }
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Scroll reveal utility */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 640px) {
    .hero-ctas { flex-direction: row; }
    .cta-buttons { flex-direction: row; max-width: none; justify-content: center; }
    .form-row.two-col { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
    .hero { padding: 72px 0 100px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: flex; }
    .menu-toggle { display: none; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

@media (min-width: 1024px) {
    .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 64px; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { grid-template-columns: repeat(4, 1fr); }
    .booking-wrap { grid-template-columns: 1fr 1.2fr; gap: 64px; }
    .section { padding: 120px 0; }
}
