/* ============================================
   GLOBELLO SERVICES — Stylesheet
   Same palette as main site — Black + Orange
   ============================================ */

:root {
    --orange: #F97316;
    --orange-2: #FB923C;
    --orange-dim: rgba(249, 115, 22, 0.12);
    --orange-border: rgba(249, 115, 22, 0.22);

    --bg: #0a0a0a;
    --bg-card: #111111;

    --glass: rgba(255, 255, 255, 0.03);
    --glass-2: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.07);
    --border-orange: rgba(249, 115, 22, 0.22);

    --text: #F5F0EB;
    --muted: rgba(245, 240, 235, 0.52);
    --muted-2: rgba(245, 240, 235, 0.28);

    --green: #22c55e;
    --green-dim: rgba(34, 197, 94, 0.12);
    --green-border: rgba(34, 197, 94, 0.25);
    --red: #ef4444;
    --red-dim: rgba(239, 68, 68, 0.12);
    --red-border: rgba(239, 68, 68, 0.25);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --radius: 14px;
    --radius-lg: 22px;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    font-weight: 300;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 999; opacity: 0.5;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-orange); border-radius: 2px; }
::selection { background: rgba(249, 115, 22, 0.2); color: var(--text); }

/* ---------- CURSOR ---------- */
#cursor {
    position: fixed; width: 10px; height: 10px;
    background: var(--orange); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .3s, height .3s; display: none;
}
#cursor-ring {
    position: fixed; width: 38px; height: 38px;
    border: 1px solid rgba(249,115,22,.4); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .3s, height .3s, opacity .3s; display: none;
}
#cursor.grow { width: 20px; height: 20px; }
#cursor-ring.grow { width: 58px; height: 58px; opacity: 0.5; }
@media (pointer: fine) { #cursor, #cursor-ring { display: block; } }

/* ---------- LAYOUT ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 8rem 0; position: relative; z-index: 2; }
.section-border { border-top: 1px solid var(--border); }

/* ---------- REVEAL ---------- */
.reveal {
    opacity: 0; transform: translateY(36px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
    transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ---------- TYPOGRAPHY ---------- */
.eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--orange); margin-bottom: 1rem;
}
.eyebrow::before {
    content: ''; display: block; width: 22px; height: 1px;
    background: var(--orange); flex-shrink: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 300; line-height: 1.1; color: var(--text);
}
.section-title em {
    font-style: italic;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.section-desc {
    font-size: 0.95rem; color: var(--muted);
    line-height: 1.82; max-width: 480px; margin-top: 0.75rem;
}
.section-header { margin-bottom: 4rem; }

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    color: #0a0a0a; font-size: 0.9rem; font-weight: 600;
    padding: 0.875rem 2rem; border-radius: 100px; border: none;
    transition: var(--transition);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(249,115,22,0.3); opacity: 0.92;
}

.btn-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: var(--muted); font-size: 0.9rem;
    padding: 0.875rem 2rem; border-radius: 100px;
    border: 1px solid var(--border); transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--border-orange); color: var(--orange); }

/* ---------- ORBS ---------- */
.orb {
    position: absolute; border-radius: 50%; filter: blur(110px);
    pointer-events: none; animation: drift 25s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle,rgba(249,115,22,.07),transparent 70%); top: -25%; right: -15%; animation-duration: 28s; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle,rgba(120,40,10,.1),transparent 70%); bottom: -20%; left: -10%; animation-duration: 32s; animation-delay: -12s; animation-direction: reverse; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle,rgba(249,115,22,.04),transparent 70%); top: 50%; left: 40%; animation-duration: 20s; animation-delay: -6s; }

@keyframes drift {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(40px,-25px) scale(1.04); }
    66% { transform: translate(-25px,35px) scale(.96); }
}

/* ---------- NAVBAR ---------- */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 500;
    padding: 1.5rem 2rem; border-bottom: 1px solid transparent;
    transition: var(--transition);
}
#navbar.scrolled {
    background: rgba(10,10,10,0.93); backdrop-filter: blur(20px);
    padding: 1rem 2rem; border-bottom-color: var(--border);
}

.nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: space-between; gap: 2rem;
}

.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 52px; width: auto; display: block; flex-shrink: 0; }
#navbar.scrolled .logo-img { height: 44px; transition: height 0.3s ease; }
.logo-text { font-family: var(--font-display); font-size: 1.95rem; font-weight: 600; color: white; letter-spacing: 0.01em; line-height: 1; }
.logo-text span { background: linear-gradient(90deg, var(--orange), var(--orange-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; margin-left: auto; margin-right: 1.5rem; }
.nav-links a { font-size: 0.95rem; color: var(--muted); transition: color 0.2s; font-weight: 400; text-decoration: none; }
.nav-links a:hover { color: var(--orange); }

.nav-cta { background: linear-gradient(90deg, var(--orange), var(--orange-2)); color: #0a0a0a !important; font-weight: 600 !important; padding: 0.55rem 1.5rem; border-radius: 100px; font-size: 0.92rem !important; }

.nav-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

/* ---------- HAMBURGER ---------- */
.hamburger {
    display: none; flex-direction: column; justify-content: center;
    gap: 5px; width: 36px; height: 36px; padding: 4px;
    background: none; border: none; z-index: 600; position: relative; flex-shrink: 0;
}
.hamburger span { display: block; height: 1.5px; background: white; border-radius: 2px; transition: all 0.35s cubic-bezier(0.16,1,0.3,1); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- DRAWER ---------- */
.drawer { position: fixed; inset: 0; z-index: 400; pointer-events: none; }
.drawer.open { pointer-events: all; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(10,10,10,.75); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.4s ease; }
.drawer.open .drawer-backdrop { opacity: 1; }
.drawer-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(320px,85vw); background: #0d0a08; border-left: 1px solid var(--border); padding: 6rem 2.5rem 3rem; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.45s cubic-bezier(0.16,1,0.3,1); }
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-links { flex: 1; display: flex; flex-direction: column; }
.drawer-links li { border-bottom: 1px solid var(--border); }
.drawer-link { display: block; padding: 1.1rem 0; font-size: 1.05rem; color: var(--muted); transition: color 0.2s; font-weight: 300; }
.drawer-link:hover { color: var(--orange); }
.drawer-cta { margin-top: 2.5rem; text-align: center; background: linear-gradient(90deg,var(--orange),var(--orange-2)); color: #0a0a0a !important; font-weight: 600 !important; font-size: 0.9rem; padding: 0.9rem 1.5rem; border-radius: 100px; display: block; }

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 0 2rem; position: relative; overflow: hidden; z-index: 2;
    background: linear-gradient(135deg,#0a0a0a 0%,#0f0a1a 50%,#0a0a0a 100%);
}
.hero-inner { max-width: 860px; width: 100%; margin: 0 auto; text-align: center; padding-top: 100px; padding-bottom: 3rem; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--glass); border: 1px solid var(--border-orange);
    color: var(--orange); padding: 0.45rem 1.1rem; border-radius: 100px;
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; margin-bottom: 2.5rem; backdrop-filter: blur(10px);
    opacity: 0; animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: blink 2s ease-in-out infinite; flex-shrink: 0; }
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.6)} }

.hero-title { font-family: var(--font-display); font-size: clamp(3rem,8vw,6.5rem); font-weight: 300; line-height: 1.04; letter-spacing: -.02em; margin-bottom: 2rem; }
.hero-line { display: block; color: white; opacity: 0; transform: translateY(55px); animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-line:nth-child(1) { animation-delay: 0.2s; }
.hero-line:nth-child(2) { animation-delay: 0.35s; }
.hero-line:nth-child(3) { animation-delay: 0.5s; }
.hero-line.accent { font-style: italic; background: linear-gradient(90deg,var(--orange),var(--orange-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.82; max-width: 600px; margin: 0 auto 2.5rem; font-weight: 300; opacity: 0; animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.65s forwards; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.8s forwards; }

/* ---------- STATS BAR ---------- */
.stats-bar { position: relative; z-index: 2; padding: 0 2rem; }
.stats-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: var(--radius); background: var(--glass); backdrop-filter: blur(20px); overflow: hidden; }
.stat-item { padding: 2.5rem 2rem; text-align: center; border-right: 1px solid var(--border); position: relative; overflow: hidden; transition: background 0.3s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--glass-2); }
.stat-item::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: linear-gradient(90deg,var(--orange),var(--orange-2)); transition: width 0.4s ease; }
.stat-item:hover::after { width: 60%; }
.stat-number { display: block; font-family: var(--font-display); font-size: clamp(2rem,3vw,3rem); font-weight: 600; background: linear-gradient(90deg,var(--orange),var(--orange-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.76rem; color: var(--muted); letter-spacing: 0.02em; }

/* ---------- SERVICES GRID ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.services-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--orange-dim), transparent 55%);
    opacity: 0; transition: opacity 0.4s;
}

.service-card:hover {
    border-color: var(--border-orange);
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
    position: relative;
    z-index: 1;
}

.service-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--orange);
    border: 1px solid var(--border-orange);
    padding: 0.2rem 0.65rem;
    border-radius: 100px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    position: relative;
    z-index: 1;
    width: fit-content;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.65rem;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    position: relative;
    z-index: 1;
    margin-bottom: 1.75rem;
    flex: 1;
}

.service-features li {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 300;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-size: 0.72rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: var(--orange);
    font-weight: 500;
    transition: gap 0.2s;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.service-link:hover { gap: 0.75rem; }

/* ---------- WHY SECTION ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start; }
.why-points { display: flex; flex-direction: column; }
.why-point { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.85rem 0; border-bottom: 1px solid var(--border); transition: padding-left 0.3s ease; }
.why-point:first-child { border-top: 1px solid var(--border); }
.why-point:hover { padding-left: 8px; }
.why-num { font-family: var(--font-display); font-size: 1.05rem; color: var(--orange); opacity: 0.4; flex-shrink: 0; margin-top: 2px; }
.why-point h4 { font-size: 0.95rem; font-weight: 500; color: white; margin-bottom: 0.35rem; }
.why-point p { font-size: 0.855rem; color: var(--muted); line-height: 1.72; font-weight: 300; }

/* ---------- CONTACT FORM ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}

.contact-left { position: sticky; top: 100px; }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted);
}

.contact-info-item span { font-size: 1rem; flex-shrink: 0; }
.contact-info-item a { color: var(--muted); transition: color 0.2s; }
.contact-info-item a:hover { color: var(--orange); }

.contact-form-wrap {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; font-weight: 500; color: var(--muted); letter-spacing: 0.02em; }
.req { color: var(--orange); }

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,.04); border: 1px solid var(--border);
    border-radius: 10px; padding: 0.8rem 1rem; color: var(--text);
    font-size: 0.9rem; font-weight: 300; outline: none;
    transition: border-color 0.2s; width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted-2); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--border-orange); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(245,240,235,0.4)' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; background-color: rgba(255,255,255,.04); }
.form-group select option, .form-group select optgroup { background: #1a1a1a; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.phone-wrap { display: flex; align-items: center; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: border-color 0.2s; }
.phone-wrap:focus-within { border-color: var(--border-orange); }
.phone-prefix { padding: 0.8rem 0.85rem; font-size: 0.85rem; color: var(--muted); border-right: 1px solid var(--border); white-space: nowrap; flex-shrink: 0; }
.phone-wrap input { border: none !important; border-radius: 0 !important; background: transparent !important; flex: 1; }

.form-error { background: var(--red-dim); border: 1px solid var(--red-border); color: var(--red); font-size: 0.82rem; padding: 0.75rem 1rem; border-radius: 10px; margin-bottom: 1rem; }

.form-note { font-size: 0.78rem; color: var(--muted-2); text-align: center; margin-top: 1rem; }

/* ---------- CTA GLOW ---------- */
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 700px; background: radial-gradient(circle,rgba(249,115,22,.05),transparent 65%); pointer-events: none; }

/* ---------- FOOTER ---------- */
footer { padding: 5rem 0 3rem; position: relative; z-index: 2; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand .logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; margin-bottom: 1rem; }
.footer-brand .logo-img { height: 42px; width: auto; display: block; flex-shrink: 0; }
.footer-brand .logo-text { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: white; line-height: 1; }
.footer-brand .logo-text span { background: linear-gradient(90deg,var(--orange),var(--orange-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-brand p { font-size: 0.875rem; color: var(--muted-2); line-height: 1.8; max-width: 260px; font-weight: 300; margin-top: 0.5rem; }
.footer-back { display: inline-block; margin-top: 1rem; font-size: 0.8rem; color: var(--orange); opacity: 0.7; transition: opacity 0.2s; }
.footer-back:hover { opacity: 1; }
.footer-col h6 { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 1.25rem; }
.footer-col a { display: block; font-size: 0.875rem; color: rgba(245,240,235,.4); margin-bottom: 0.7rem; font-weight: 300; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--border); font-size: 0.78rem; color: rgba(245,240,235,.4); }
.footer-bottom a { color: rgba(245,240,235,.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr; }
    .services-grid-3 { grid-template-columns: repeat(2,1fr); }
    .why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-left { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    #navbar { padding: 1rem 1.5rem; }
    #navbar.scrolled { padding: 0.75rem 1.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .section { padding: 5rem 0; }
    .container { padding: 0 1.5rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
    .services-grid-3 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}