:root {
  --black: #000000;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f7;
  --gray-200: #e8e8ed;
  --gray-400: #86868b;
  --gray-600: #6e6e73;
  --gray-800: #1d1d1f;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--gray-800); background: var(--black); overflow-x: hidden; }
.logo-svg { display: block; }
img { max-width: 100%; display: block; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 48px; height: 52px; display: flex; align-items: center; justify-content: space-between; background: rgba(0,0,0,0.82); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--white); }
.nav-logo svg { width: 28px; height: 28px; }
.nav-logo span { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: -0.02em; text-transform: uppercase; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--gray-200); text-decoration: none; font-size: 13px; font-weight: 400; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--white); color: var(--black); border: none; padding: 8px 20px; border-radius: 980px; font-size: 13px; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.nav-cta:hover { background: var(--gray-200); transform: scale(1.02); }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--white); cursor: pointer; padding: 8px; }
.nav-dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding-top: 12px; min-width: 240px; z-index: 1001; }
.dropdown-menu-inner { background: rgba(0,0,0,0.92); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 8px 0; }
.dropdown-menu a { display: block; padding: 10px 20px; font-size: 13px; color: var(--gray-200); text-decoration: none; transition: background 0.2s; }
.dropdown-menu a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.nav-dropdown:hover .dropdown-menu { display: block; }

/* HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--black); position: relative; overflow: hidden; padding: 120px 24px 80px; }
.hero::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 900px; height: 900px; background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%); pointer-events: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border: 1px solid rgba(255,255,255,0.12); border-radius: 980px; font-size: 13px; color: var(--gray-400); margin-bottom: 32px; opacity: 0; animation: fadeUp 1s 0.2s forwards; }
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #34c759; animation: pulse 2s infinite; }
.hero-logo-large { margin-bottom: 40px; opacity: 0; animation: fadeUp 1s 0.4s forwards; }
.hero-logo-large svg { width: 120px; height: 120px; }
.hero h1 { font-family: 'Outfit', sans-serif; font-size: clamp(48px, 8vw, 96px); font-weight: 800; line-height: 0.95; letter-spacing: -0.04em; color: var(--white); margin-bottom: 24px; opacity: 0; animation: fadeUp 1s 0.6s forwards; }
.hero h1 .thin { font-weight: 200; display: block; color: var(--gray-400); }
.hero > p { font-size: clamp(18px, 2.5vw, 24px); color: var(--gray-400); max-width: 580px; line-height: 1.5; font-weight: 300; margin-bottom: 48px; opacity: 0; animation: fadeUp 1s 0.8s forwards; }
.hero-ctas { display: flex; gap: 16px; opacity: 0; animation: fadeUp 1s 1s forwards; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); opacity: 0; animation: fadeUp 1s 1.2s forwards; }
.hero-scroll span { display: block; width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.2); border-radius: 12px; position: relative; }
.hero-scroll span::after { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 3px; height: 8px; background: rgba(255,255,255,0.4); border-radius: 2px; animation: scrollBounce 2s infinite; }

/* SERVICE HERO */
.service-hero { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--black); position: relative; overflow: hidden; padding: 120px 24px 80px; }
.service-hero::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%); pointer-events: none; }
.service-hero .hero-badge { opacity: 0; animation: fadeUp 1s 0.2s forwards; }
.service-hero h1 { font-family: 'Outfit', sans-serif; font-size: clamp(40px, 6vw, 76px); font-weight: 800; line-height: 1; letter-spacing: -0.04em; color: var(--white); margin-bottom: 24px; max-width: 800px; opacity: 0; animation: fadeUp 1s 0.4s forwards; }
.service-hero h1 .thin { font-weight: 200; display: block; color: var(--gray-400); }
.service-hero p { font-size: clamp(17px, 2vw, 21px); color: var(--gray-400); max-width: 600px; line-height: 1.5; font-weight: 300; margin-bottom: 40px; opacity: 0; animation: fadeUp 1s 0.6s forwards; }
.service-hero .hero-ctas { opacity: 0; animation: fadeUp 1s 0.8s forwards; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--black); padding: 16px 32px; border-radius: 980px; font-size: 17px; font-weight: 600; text-decoration: none; font-family: 'DM Sans', sans-serif; transition: all 0.3s; border: none; cursor: pointer; }
.btn-primary:hover { transform: scale(1.04); box-shadow: 0 0 40px rgba(255,255,255,0.15); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); padding: 16px 32px; border-radius: 980px; font-size: 17px; font-weight: 500; text-decoration: none; font-family: 'DM Sans', sans-serif; border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s; }
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.btn-dark { display: inline-flex; align-items: center; gap: 8px; background: var(--black); color: var(--white); padding: 16px 32px; border-radius: 980px; font-size: 17px; font-weight: 600; text-decoration: none; font-family: 'DM Sans', sans-serif; transition: all 0.3s; }
.btn-dark:hover { transform: scale(1.04); background: var(--gray-800); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--black); padding: 16px 32px; border-radius: 980px; font-size: 17px; font-weight: 500; text-decoration: none; font-family: 'DM Sans', sans-serif; border: 1px solid var(--gray-200); transition: all 0.3s; }
.btn-outline:hover { border-color: var(--black); }

/* STATS */
.stats { background: var(--gray-100); padding: 80px 24px; text-align: center; }
.stats-grid { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.stat-item { opacity: 0; transform: translateY(20px); }
.stat-item.visible { animation: fadeUp 0.6s forwards; }
.stat-number { font-family: 'Outfit', sans-serif; font-size: 56px; font-weight: 800; letter-spacing: -0.04em; color: var(--black); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 15px; color: var(--gray-600); font-weight: 400; }

/* SECTION TYPOGRAPHY */
.section-eyebrow { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-400); margin-bottom: 16px; }
.section-title { font-family: 'Outfit', sans-serif; font-size: clamp(36px, 5vw, 64px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 20px; }
.section-title.white { color: var(--white); }
.section-title.dark { color: var(--black); }
.section-subtitle { font-size: 19px; color: var(--gray-400); max-width: 600px; margin: 0 auto 80px; font-weight: 300; line-height: 1.5; }

/* GALLERY */
.gallery { background: var(--white); padding: 120px 24px 140px; text-align: center; overflow: hidden; }
.gallery-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.gallery-item { border-radius: 20px; overflow: hidden; position: relative; aspect-ratio: 3/4; opacity: 0; transform: translateY(30px); }
.gallery-item.visible { animation: fadeUp 0.7s forwards; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 24px 24px; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%); }
.gallery-caption h3 { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.gallery-caption p { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 300; }

/* SERVICE CARDS */
.services { background: var(--black); padding: 140px 24px; text-align: center; }
.services-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 24px; padding: 48px 36px; text-align: left; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); position: relative; overflow: hidden; text-decoration: none; display: block; opacity: 0; transform: translateY(30px); }
.service-card.visible { animation: fadeUp 0.6s forwards; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); opacity: 0; transition: opacity 0.4s; }
.service-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.service-icon svg { width: 24px; height: 24px; stroke: var(--white); fill: none; stroke-width: 1.5; }
.service-card h3 { font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 600; color: var(--white); margin-bottom: 12px; letter-spacing: -0.02em; }
.service-card p { font-size: 15px; color: var(--gray-400); line-height: 1.6; font-weight: 300; }
.service-card .card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--white); font-size: 14px; font-weight: 500; margin-top: 20px; transition: gap 0.2s; }
.service-card:hover .card-link { gap: 10px; }

/* WHY CHOOSE US (E-E-A-T) */
.why-choose { background: var(--black); padding: 120px 24px; text-align: center; border-top: 1px solid rgba(255,255,255,0.06); }
.why-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 24px; padding: 48px 40px; text-align: left; opacity: 0; transform: translateY(20px); }
.why-card.visible { animation: fadeUp 0.6s forwards; }
.why-number { font-family: 'Outfit', sans-serif; font-size: 32px; font-weight: 800; color: var(--white); margin-bottom: 12px; letter-spacing: -0.03em; }
.why-card h3 { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.why-card p { font-size: 15px; color: var(--gray-400); line-height: 1.7; font-weight: 300; }

/* PROCESS (E-E-A-T) */
.process { background: var(--white); padding: 120px 24px; text-align: center; }
.process-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: left; }
.process-step { opacity: 0; transform: translateY(20px); }
.process-step.visible { animation: fadeUp 0.6s forwards; }
.step-num { font-family: 'Outfit', sans-serif; font-size: 48px; font-weight: 800; color: var(--gray-200); margin-bottom: 16px; letter-spacing: -0.04em; line-height: 1; }
.process-step h3 { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 600; color: var(--black); margin-bottom: 12px; }
.process-step p { font-size: 15px; color: var(--gray-600); line-height: 1.6; font-weight: 300; }

/* REVIEWS (E-E-A-T) */
.reviews { background: var(--black); padding: 120px 24px; text-align: center; border-top: 1px solid rgba(255,255,255,0.06); }
.reviews-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 24px; padding: 40px 32px; text-align: left; opacity: 0; transform: translateY(20px); }
.review-card.visible { animation: fadeUp 0.6s forwards; }
.review-stars { color: #fbbf24; margin-bottom: 20px; display: flex; gap: 2px; }
.review-card blockquote { font-size: 16px; color: var(--gray-200); line-height: 1.6; font-weight: 300; font-style: normal; margin-bottom: 20px; }
.review-card cite { font-style: normal; font-size: 14px; color: var(--gray-400); font-weight: 500; }

/* TRUST STRIP (service pages E-E-A-T) */
.trust-strip { background: var(--black); padding: 60px 24px; }
.trust-strip-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-item { text-align: center; }
.trust-item strong { display: block; font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.trust-item span { font-size: 13px; color: var(--gray-400); font-weight: 400; }
.trust-item strong svg { display: inline; vertical-align: middle; }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* ABOUT */
.about { background: var(--white); padding: 140px 24px; }
.about-inner { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-visual-grid .about-img { border-radius: 20px; overflow: hidden; }
.about-visual-grid .about-img img { width: 100%; height: 220px; object-fit: cover; }
.about-visual-grid .about-img.tall { grid-column: 1 / -1; }
.about-visual-grid .about-img.tall img { height: 200px; }
.about-logo-card { background: var(--gray-100); border-radius: 20px; padding: 36px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.about-logo-card svg { width: 80px; height: 80px; }
.about-logo-card .license { margin-top: 12px; font-size: 12px; color: var(--gray-400); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.about-content .section-eyebrow { text-align: left; color: var(--gray-600); }
.about-content .section-title { text-align: left; margin-bottom: 24px; }
.about-content p { font-size: 17px; color: var(--gray-600); line-height: 1.7; font-weight: 300; margin-bottom: 16px; }
.about-feature-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-feature-list li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--gray-800); font-weight: 500; }
.about-feature-list li svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gray-800); }

/* AREAS */
.areas { background: var(--gray-100); padding: 120px 24px; text-align: center; }
.areas-pills { max-width: 700px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.area-pill { padding: 12px 28px; border-radius: 980px; font-size: 16px; font-weight: 500; background: var(--white); color: var(--gray-800); border: 1px solid var(--gray-200); transition: all 0.3s; }
.area-pill:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.area-pill.featured { background: var(--black); color: var(--white); border-color: var(--black); }

/* SERVICE PAGE CONTENT */
.service-content { background: var(--white); padding: 100px 24px; }
.service-content-inner { max-width: 780px; margin: 0 auto; }
.service-content h2 { font-family: 'Outfit', sans-serif; font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -0.03em; color: var(--black); margin-bottom: 24px; line-height: 1.1; }
.service-content p { font-size: 17px; color: var(--gray-600); line-height: 1.8; font-weight: 300; margin-bottom: 20px; }
.service-content ul { list-style: none; margin: 32px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.service-content ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--gray-800); font-weight: 400; line-height: 1.4; }
.service-content ul li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--gray-800); }
.service-photo-strip { background: var(--gray-100); padding: 80px 24px; }
.service-photo-strip-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.service-photo-strip-inner img { border-radius: 16px; width: 100%; height: 280px; object-fit: cover; }

/* FAQ */
.faq { background: var(--gray-100); padding: 100px 24px; }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--gray-200); padding: 24px 0; }
.faq summary { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 600; color: var(--black); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 24px; font-weight: 300; color: var(--gray-400); }
.faq details[open] summary::after { content: '\2212'; }
.faq details p { font-size: 16px; color: var(--gray-600); line-height: 1.7; font-weight: 300; padding-top: 16px; }

/* OTHER SERVICES */
.other-services { background: var(--black); padding: 100px 24px; text-align: center; }
.other-services-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.other-service-link { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 32px 24px; text-decoration: none; transition: all 0.3s; text-align: center; }
.other-service-link:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); transform: translateY(-2px); }
.other-service-link h3 { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.other-service-link p { font-size: 13px; color: var(--gray-400); font-weight: 300; display: inline-flex; align-items: center; gap: 4px; }

/* CTA */
.cta-section { background: var(--white); padding: 140px 24px; text-align: center; }
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-phone { font-family: 'Outfit', sans-serif; font-size: clamp(40px, 6vw, 72px); font-weight: 800; letter-spacing: -0.04em; color: var(--black); text-decoration: none; display: block; margin-bottom: 24px; transition: opacity 0.2s; }
.cta-phone:hover { opacity: 0.6; }
.cta-email { font-size: 19px; color: var(--gray-600); margin-bottom: 48px; }
.cta-email a { color: var(--black); text-decoration: none; border-bottom: 1px solid var(--gray-200); padding-bottom: 2px; transition: border-color 0.2s; }
.cta-email a:hover { border-color: var(--black); }
.cta-buttons { display: flex; justify-content: center; gap: 16px; }

/* FOOTER */
footer { background: var(--gray-800); padding: 72px 24px 32px; }
.footer-grid { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo svg { width: 32px; height: 32px; }
.footer-logo span { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 16px; color: var(--white); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 12px; }
.footer-license { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: 1060px; margin: 0 auto; padding-top: 24px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); text-align: center; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; } 50% { transform: translateX(-50%) translateY(6px); opacity: 0.3; } }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .services-grid { grid-template-columns: 1fr; max-width: 500px; }
  .gallery-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .other-services-grid { grid-template-columns: 1fr 1fr; }
  .service-photo-strip-inner { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .service-content ul { grid-template-columns: 1fr; }
  .trust-strip-inner { gap: 20px; }
  .trust-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-ctas, .cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-number { font-size: 40px; }
  .process-grid { grid-template-columns: 1fr; }
  .other-services-grid { grid-template-columns: 1fr; }
  .about-visual-grid { grid-template-columns: 1fr; }
  .about-visual-grid .about-img img { height: 180px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { gap: 16px; }
}
