/* ===========================
   RESACA WASH CO. — STYLESHEET
   BLACK · WHITE · BLUE
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --black:     #0d0d0d;
  --black-mid: #1a1a1a;
  --black-soft:#2a2a2a;
  --blue:      #1e5fa8;
  --blue-mid:  #2d6ab8;
  --blue-light:#5b9fd4;
  --blue-pale: #e8f1fb;
  --white:     #ffffff;
  --off:       #f4f6f9;
  --text:      #1a1a1a;
  --muted:     #5a6070;
  --border:    #dde3ec;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }

/* ===== NAV ===== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 68px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: var(--white); flex-shrink: 0; }
.nav-logo span { color: var(--blue-light); }
.nav-logo em { font-style: normal; color: rgba(255,255,255,0.4); font-size: 16px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.btn-call { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.7); padding: 7px 14px; border: 1px solid rgba(255,255,255,0.15); border-radius: 4px; transition: all 0.2s; white-space: nowrap; }
.btn-call:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-quote { font-size: 12px; font-weight: 500; color: var(--white); background: var(--blue-mid); padding: 8px 18px; border-radius: 4px; transition: opacity 0.2s, transform 0.15s; white-space: nowrap; }
.btn-quote:hover { opacity: 0.88; transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }
.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--black); z-index: 999; flex-direction: column; padding: 1.5rem 2rem; gap: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a { font-size: 15px; color: rgba(255,255,255,0.75); padding: 0.25rem 0; }
.mobile-call { color: rgba(255,255,255,0.9) !important; font-weight: 500 !important; }
.mobile-quote { background: var(--blue-mid); color: var(--white) !important; padding: 10px 18px !important; border-radius: 4px; text-align: center; font-weight: 500 !important; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; background: var(--black);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding: 8rem 3rem 5rem; position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grain {
  position: absolute; 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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.glow-1 { width: 600px; height: 600px; background: rgba(30,95,168,0.25); right: -150px; top: -150px; }
.glow-2 { width: 300px; height: 300px; background: rgba(45,106,184,0.15); left: 5%; bottom: 10%; }
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(45,106,184,0.15); border: 1px solid rgba(45,106,184,0.35);
  border-radius: 20px; padding: 6px 14px;
  font-size: 11px; font-weight: 500; color: var(--blue-light);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.75rem;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-light); }
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(58px,8vw,96px); line-height: 0.92; color: var(--white); letter-spacing: 1px; margin-bottom: 1.5rem; }
.title-accent { color: var(--blue-light); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 440px; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2rem; }
.cta-primary { background: var(--blue-mid); color: var(--white); padding: 14px 28px; border-radius: 4px; font-size: 14px; font-weight: 500; letter-spacing: 0.02em; transition: transform 0.15s, opacity 0.15s; display: inline-block; }
.cta-primary:hover { transform: translateY(-2px); opacity: 0.9; }
.cta-secondary { border: 1px solid rgba(255,255,255,0.2); color: var(--white); padding: 14px 28px; border-radius: 4px; font-size: 14px; font-weight: 400; transition: border-color 0.2s, background 0.2s; display: inline-block; }
.cta-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.hero-trust { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-pill { font-size: 12px; color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 5px 12px; border-radius: 20px; }
.hero-visual { position: relative; z-index: 1; }
.hero-card { background: linear-gradient(135deg, #1a2a3a 0%, #0d0d0d 100%); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 2rem; box-shadow: 0 40px 80px rgba(0,0,0,0.5); }
.hero-card-header { margin-bottom: 1.5rem; }
.card-badge { display: inline-block; background: rgba(45,106,184,0.2); border: 1px solid rgba(45,106,184,0.35); color: var(--blue-light); font-size: 12px; font-weight: 500; padding: 5px 12px; border-radius: 20px; letter-spacing: 0.05em; }
.method-split { display: grid; grid-template-columns: 1fr 2px 1fr; gap: 1.25rem; margin-bottom: 1.5rem; }
.method-divider { background: rgba(255,255,255,0.08); border-radius: 2px; }
.method-item { padding: 0.5rem 0; }
.method-icon { font-size: 24px; margin-bottom: 0.5rem; }
.method-name { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 0.25rem; }
.method-desc { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem; line-height: 1.5; }
.method-list { list-style: none; }
.method-list li { font-size: 12px; color: rgba(255,255,255,0.6); padding: 3px 0; }
.method-list li::before { content: '✓ '; color: var(--blue-light); }
.card-footer { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.25rem; }
.card-cta { font-size: 13px; font-weight: 500; color: var(--blue-light); transition: opacity 0.2s; }
.card-cta:hover { opacity: 0.8; }

/* ===== MARQUEE ===== */
.marquee-wrap { background: var(--blue-mid); padding: 12px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-block; animation: marquee 30s linear infinite; }
.marquee-track span { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.08em; padding: 0 1rem; }
.marquee-track .sep { color: rgba(255,255,255,0.3); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom: 3rem; }
.section-eyebrow { font-size: 11px; font-weight: 500; color: var(--blue-mid); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.75rem; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px,5vw,58px); line-height: 0.95; letter-spacing: 0.5px; color: var(--black); margin-bottom: 1rem; }
.section-sub { font-size: 15px; color: var(--muted); line-height: 1.75; max-width: 540px; }

/* ===== METHOD SECTION ===== */
.method-section { padding: 6rem 0; background: var(--off); }
.method-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.mcard { border-radius: 12px; padding: 2rem; }
.mcard-dark { background: var(--black); border: 1px solid rgba(255,255,255,0.06); }
.mcard-blue { background: var(--blue-mid); border: 1px solid rgba(255,255,255,0.1); }
.mcard-tag { display: inline-block; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 10px; border-radius: 3px; margin-bottom: 1rem; }
.mcard-dark .mcard-tag { background: rgba(91,159,212,0.2); color: var(--blue-light); }
.mcard-blue .mcard-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.95); }
.mcard h3 { font-size: 20px; font-weight: 500; color: var(--white); margin-bottom: 0.75rem; }
.mcard p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 1.25rem; }
.mcard-uses-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-bottom: 0.5rem; }
.mcard-use { font-size: 13px; color: rgba(255,255,255,0.75); padding: 4px 0; }
.method-note { display: flex; gap: 1rem; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 1.25rem 1.5rem; }
.method-note-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.method-note-text { font-size: 13px; color: var(--muted); line-height: 1.7; }
.method-note-text strong { color: var(--black); }

/* ===== SERVICES PREVIEW ===== */
.services-preview { padding: 6rem 0; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.scard { border: 1px solid var(--border); border-radius: 10px; padding: 1.75rem; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.scard:hover { border-color: var(--blue-mid); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(45,106,184,0.1); }
.scard-tag { display: inline-block; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; padding: 3px 8px; border-radius: 3px; margin-bottom: 0.875rem; }
.soft-tag { background: rgba(30,95,168,0.1); color: var(--blue-mid); }
.pressure-tag { background: rgba(13,13,13,0.08); color: var(--black-soft); }
.mold-tag { background: rgba(29,158,117,0.1); color: #0f6e56; }
.yard-tag { background: rgba(100,160,80,0.1); color: #3a7020; }
.scard-icon { font-size: 28px; margin-bottom: 0.875rem; }
.scard h3 { font-size: 15px; font-weight: 500; color: var(--black); margin-bottom: 0.5rem; }
.scard p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.scard-price { margin-top: 1rem; font-size: 12px; font-weight: 500; color: var(--blue-mid); }
.scard-cta { background: var(--off); display: flex; align-items: center; justify-content: center; }
.scard-cta-inner { text-align: center; }
.scard-cta-inner h3 { font-size: 15px; font-weight: 500; color: var(--black); margin: 0.5rem 0; }
.scard-cta-inner p { font-size: 12px; color: var(--muted); margin-bottom: 1rem; }
.scard-link { font-size: 13px; font-weight: 500; color: var(--blue-mid); }

/* ===== PROCESS ===== */
.process-section { background: var(--black); padding: 6rem 0; }
.steps { display: flex; align-items: flex-start; gap: 1rem; margin-top: 3rem; }
.step { flex: 1; text-align: center; }
.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: rgba(255,255,255,0.12); line-height: 1; margin-bottom: 1rem; }
.step-num.accent { color: var(--blue-light); }
.step h4 { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 0.5rem; }
.step p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.65; }
.step-arrow { font-size: 20px; color: rgba(255,255,255,0.12); margin-top: 1rem; flex-shrink: 0; }

/* ===== AREAS ===== */
.areas-section { padding: 5rem 0; background: var(--off); }
.areas-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2rem; }
.area-pill { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 7px 16px; font-size: 13px; color: var(--muted); }
.area-pill.primary { background: var(--black); border-color: var(--black); color: var(--white); font-weight: 500; }
.areas-note { font-size: 13px; color: var(--muted); margin-top: 1.5rem; }
.areas-note a { color: var(--blue-mid); font-weight: 500; }

/* ===== CTA BAND ===== */
.cta-section { background: var(--blue-mid); padding: 5rem 2rem; text-align: center; }
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px,6vw,68px); color: var(--white); letter-spacing: 0.5px; margin-bottom: 0.75rem; line-height: 0.95; }
.cta-section h2 span { color: rgba(255,255,255,0.7); }
.cta-section p { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-primary.dark { background: var(--black); color: var(--white); }
.cta-primary.dark:hover { opacity: 0.88; }
.cta-secondary.dark { border: 1.5px solid rgba(255,255,255,0.4); color: var(--white); }
.cta-secondary.dark:hover { background: rgba(255,255,255,0.1); }

/* ===== FOOTER ===== */
footer { background: var(--black); padding: 4rem 3rem 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 1.5rem; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: var(--white); margin-bottom: 0.875rem; }
.footer-logo span { color: var(--blue-light); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.6; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border-radius: 6px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.45); transition: all 0.2s; }
.footer-social a:hover { background: var(--blue-mid); color: var(--white); border-color: var(--blue-mid); }
.footer-col-title { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-bottom: 1rem; }
.footer-links-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-col a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.2); }

/* ===== PAGE HERO ===== */
.page-hero, .contact-hero { background: var(--black); padding: 10rem 3rem 5rem; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(30,95,168,0.3) 0%, transparent 70%); }
.page-hero-content { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; }
.page-hero-content h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px,7vw,80px); color: var(--white); line-height: 0.95; letter-spacing: 1px; margin: 0.5rem 0 1rem; }
.page-hero-content p { font-size: 16px; color: rgba(255,255,255,0.5); }

/* ===== SERVICES FULL ===== */
.services-full { padding: 5rem 0; }
.service-category { margin-bottom: 3.5rem; }
.cat-label { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; padding: 5px 14px; border-radius: 4px; display: inline-block; margin-bottom: 1.5rem; }
.soft-label { background: rgba(30,95,168,0.1); color: var(--blue-mid); }
.pressure-label { background: rgba(13,13,13,0.08); color: var(--black-soft); }
.yard-label { background: rgba(100,160,80,0.1); color: #3a7020; }
.services-detail-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 1.25rem; }
.sd-card { border: 1px solid var(--border); border-radius: 10px; padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; transition: border-color 0.2s, box-shadow 0.2s; }
.sd-card:hover { border-color: var(--blue-mid); box-shadow: 0 8px 24px rgba(45,106,184,0.08); }
.sd-header { display: flex; gap: 1rem; align-items: flex-start; }
.sd-icon { font-size: 28px; flex-shrink: 0; }
.sd-tag { display: inline-block; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; padding: 3px 8px; border-radius: 3px; margin-bottom: 0.25rem; }
.sd-header h3 { font-size: 16px; font-weight: 500; color: var(--black); }
.sd-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.sd-details { display: flex; flex-direction: column; gap: 5px; }
.sd-detail { font-size: 12px; color: var(--muted); }
.sd-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border); }
.sd-price { font-size: 13px; font-weight: 500; color: var(--blue-mid); }
.sd-cta { font-size: 12px; font-weight: 500; background: var(--black); color: var(--white); padding: 7px 14px; border-radius: 4px; transition: opacity 0.2s; }
.sd-cta:hover { opacity: 0.8; }
.bundle-banner { background: linear-gradient(135deg, var(--black) 0%, #1a2a3a 100%); border-radius: 12px; padding: 2rem 2.5rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; margin-top: 1rem; }
.bundle-title { font-size: 18px; font-weight: 500; color: var(--blue-light); margin-bottom: 0.5rem; }
.bundle-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.bundle-cta { background: var(--blue-mid); color: var(--white); padding: 12px 22px; border-radius: 4px; font-size: 13px; font-weight: 500; white-space: nowrap; transition: opacity 0.2s; flex-shrink: 0; }
.bundle-cta:hover { opacity: 0.9; }

/* ===== ABOUT ===== */
.about-section { padding: 5rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.about-text .section-title { font-size: clamp(32px,4vw,48px); margin-bottom: 1.5rem; }
.about-text p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.about-values { display: flex; flex-direction: column; gap: 1rem; }
.value-card { display: flex; gap: 1rem; padding: 1.25rem; border: 1px solid var(--border); border-radius: 10px; align-items: flex-start; transition: border-color 0.2s; }
.value-card:hover { border-color: var(--blue-mid); }
.value-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.value-title { font-size: 14px; font-weight: 500; color: var(--black); margin-bottom: 4px; }
.value-desc { font-size: 12px; color: var(--muted); line-height: 1.6; }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.stat-box { text-align: center; padding: 2rem 1rem; border: 1px solid var(--border); border-radius: 10px; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--blue-mid); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ===== FAQ ===== */
.faq-section { padding: 5rem 0; background: var(--off); }
.faq-list { max-width: 700px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; cursor: pointer; }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 14px; font-weight: 500; color: var(--black); }
.faq-icon { font-size: 20px; color: var(--blue-mid); flex-shrink: 0; }
.faq-a { display: none; font-size: 13px; color: var(--muted); line-height: 1.75; padding-top: 0.875rem; }
.faq-a.open { display: block; }

/* ===== CONTACT ===== */
.contact-section { padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start; }
.contact-form-wrap h2 { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--black); margin-bottom: 0.5rem; }
.form-sub { font-size: 13px; color: var(--muted); margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 12px; font-weight: 500; color: var(--black); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group textarea { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; outline: none; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(45,106,184,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #aaa; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px; border: 1.5px solid var(--border); border-radius: 6px; background: var(--off); }
.check-label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); cursor: pointer; }
.check-label input { accent-color: var(--blue-mid); }
.form-submit { background: var(--black); color: var(--white); border: none; padding: 14px 28px; border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; cursor: pointer; transition: opacity 0.2s, transform 0.15s; align-self: flex-start; }
.form-submit:hover { opacity: 0.85; transform: translateY(-1px); }
.form-note { font-size: 12px; color: var(--muted); line-height: 1.6; }
.form-note a { color: var(--blue-mid); font-weight: 500; }
.form-success { text-align: center; padding: 3rem 2rem; }
.success-icon { width: 56px; height: 56px; background: var(--blue-pale); color: var(--blue-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 500; margin: 0 auto 1rem; }
.form-success h3 { font-size: 22px; color: var(--black); margin-bottom: 0.5rem; }
.form-success p { font-size: 14px; color: var(--muted); }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem; }
.contact-card h3 { font-size: 15px; font-weight: 500; color: var(--black); margin-bottom: 1.25rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1rem; }
.contact-item:last-child { margin-bottom: 0; }
.ci-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.ci-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 3px; }
.ci-value { font-size: 14px; font-weight: 500; color: var(--black); }
a.ci-value:hover { color: var(--blue-mid); }
.social-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.social-link { padding: 9px 14px; border-radius: 6px; font-size: 13px; font-weight: 500; text-align: center; transition: opacity 0.2s; }
.social-link:hover { opacity: 0.88; }
.fb { background: #1877f2; color: white; }
.ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; }
.yt { background: #ff0000; color: white; }
.tk { background: #000; color: white; border: 1px solid #333; }
.areas-pills-small { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 0.5rem; }
.areas-pills-small span { background: var(--off); border: 1px solid var(--border); border-radius: 20px; padding: 4px 12px; font-size: 12px; color: var(--muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 7rem 2rem 4rem; gap: 2.5rem; }
  .hero-visual { display: none; }
  .method-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; align-items: center; gap: 1.5rem; }
  .step-arrow { transform: rotate(90deg); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .bundle-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  #nav { padding: 0 1.25rem; }
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu.open { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .hero { padding: 6rem 1.5rem 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .method-split { grid-template-columns: 1fr; }
  .method-divider { display: none; }
  .container { padding: 0 1.25rem; }
}

/* ===== TWO SERVICE LAYOUT ===== */
.two-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }

.service-big-card { border: 1px solid var(--border); border-radius: 12px; padding: 2rem; transition: border-color 0.2s, box-shadow 0.2s; }
.service-big-card:hover { border-color: var(--blue-mid); box-shadow: 0 8px 32px rgba(45,106,184,0.1); }

.sbc-icon { font-size: 36px; margin-bottom: 0.75rem; }
.sbc-tag { display: inline-block; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 4px; margin-bottom: 0.5rem; }
.window-tag { background: rgba(13,13,13,0.07); color: var(--black-soft); }

.service-big-card h3 { font-size: 18px; font-weight: 500; color: var(--black); margin-bottom: 0.875rem; }
.service-big-card p { font-size: 13px; color: var(--muted); line-height: 1.75; }

.sbc-includes { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin: 1.25rem 0; }
.sbc-include { font-size: 12px; color: var(--muted); padding: 2px 0; }
.sbc-include::before { content: ''; }

.sbc-pricing { border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 1rem; }
.sbc-price-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 0.5px solid var(--border); font-size: 13px; }
.sbc-price-row:last-child { border-bottom: none; }
.sbc-price-row span:first-child { color: var(--muted); }
.sbc-price-row span:last-child { font-weight: 500; color: var(--blue-mid); }
.sbc-from { font-size: 12px; font-weight: 500; color: var(--blue-mid); margin-top: 0.75rem; }

.sbc-cta { display: inline-block; background: var(--black); color: var(--white); padding: 11px 22px; border-radius: 4px; font-size: 13px; font-weight: 500; transition: opacity 0.2s; margin-top: 1.25rem; }
.sbc-cta:hover { opacity: 0.85; }

.bundle-strip { background: linear-gradient(135deg, var(--black) 0%, #1a2a3a 100%); border-radius: 12px; padding: 1.75rem 2rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.bundle-strip-title { font-size: 18px; font-weight: 500; color: var(--blue-light); margin-bottom: 0.4rem; }
.bundle-strip-sub { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.bundle-strip-cta { background: var(--blue-mid); color: var(--white); padding: 12px 22px; border-radius: 4px; font-size: 13px; font-weight: 500; white-space: nowrap; flex-shrink: 0; transition: opacity 0.2s; }
.bundle-strip-cta:hover { opacity: 0.9; }

/* Hero service split card */
.service-split { display: grid; grid-template-columns: 1fr 2px 1fr; gap: 1.25rem; margin-bottom: 1.5rem; }
.service-divider { background: rgba(255,255,255,0.08); border-radius: 2px; }
.service-item { padding: 0.5rem 0; }
.service-icon-lg { font-size: 28px; margin-bottom: 0.5rem; }
.service-name { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 0.25rem; }
.service-desc { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.55; margin-bottom: 0.5rem; }
.service-from { font-size: 11px; font-weight: 500; color: var(--blue-light); }

/* Why section */
.why-section { padding: 6rem 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 0; }
.why-card { border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem; text-align: center; transition: border-color 0.2s; }
.why-card:hover { border-color: var(--blue-mid); }
.why-icon { font-size: 28px; margin-bottom: 0.75rem; }
.why-title { font-size: 14px; font-weight: 500; color: var(--black); margin-bottom: 0.5rem; }
.why-desc { font-size: 12px; color: var(--muted); line-height: 1.65; }

@media (max-width: 900px) {
  .two-services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .bundle-strip { flex-direction: column; text-align: center; }
  .service-split { grid-template-columns: 1fr; }
  .service-divider { display: none; }
}
@media (max-width: 640px) {
  .sbc-includes { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
