/* =========================================================
   FerryBytes — Design System
   ========================================================= */

:root {
  --ink: #0f1222;
  --ink-soft: #454a5e;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --bg-dark: #0b0e1a;
  --border: #e7e8f0;
  --primary: #4f46e5;
  --primary-dark: #3730a3;
  --accent: #06b6d4;
  --gradient: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  --gradient-soft: linear-gradient(135deg, rgba(79,70,229,.10), rgba(6,182,212,.10));
  --success: #16a34a;
  --success-bg: #eafaf0;
  --danger: #dc2626;
  --danger-bg: #fdecec;
  --whatsapp: #25d366;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 16px -6px rgba(15, 18, 34, .12);
  --shadow: 0 20px 60px -20px rgba(15, 18, 34, .25);
  --shadow-lg: 0 30px 80px -24px rgba(15, 18, 34, .35);
  --container: 1180px;
  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; line-height: 1.15; letter-spacing: -0.01em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 108px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin: 0 0 48px; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--gradient-soft);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gradient);
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
}
.section-head p {
  margin-top: 14px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(79, 70, 229, .55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(79, 70, 229, .65); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-light {
  background: #fff;
  color: var(--primary-dark);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .7; cursor: not-allowed; transform: none !important; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 6px 24px -18px rgba(15, 18, 34, .3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon { width: 42px; height: 42px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--ink); }
.brand-name span { color: var(--primary); }
.brand-tag { font-size: 10px; font-weight: 600; letter-spacing: .09em; color: var(--muted); text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px; width: 0;
  background: var(--gradient);
  transition: width .2s ease;
}
.nav-links a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}
.header-phone svg { color: var(--primary); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.nav-toggle:hover { background: var(--bg-soft); }
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute; left: 0;
  width: 20px; height: 2px;
  background: var(--ink);
  transition: transform .2s ease, top .2s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 88px 0 120px;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .35;
  z-index: 0;
}
.hero-blob.one { width: 480px; height: 480px; background: #4f46e5; top: -180px; right: -120px; }
.hero-blob.two { width: 380px; height: 380px; background: #06b6d4; bottom: -160px; left: -140px; opacity: .28; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-lead {
  margin-top: 22px;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 540px;
}
.hero-tagline {
  margin-top: 16px;
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
}
.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.hero-badge {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* Hero visual mock */
.hero-visual { position: relative; height: 460px; }
.mock-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.mock-phone {
  width: 168px;
  height: 220px;
  bottom: 0; right: 10px;
  z-index: 2;
}
.phone-screen { position: relative; width: 100%; height: 100%; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }
.phone-screen-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 10px;
  background: linear-gradient(to top, rgba(15,18,34,.78), rgba(15,18,34,0));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.phone-site-name { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 13px; }
.phone-site-cta {
  background: var(--gradient);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.hero-photo {
  position: absolute;
  top: 10px; left: 0;
  width: 100%; max-width: 420px;
  height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.float-chip {
  position: absolute;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700;
  animation: floaty 5s ease-in-out infinite;
}
.float-chip.a { top: 20px; right: 30px; animation-delay: 0s; }
.float-chip.b { bottom: 120px; left: -10px; animation-delay: 1.2s; }
.float-chip.c { bottom: 235px; right: 150px; animation-delay: 2s; }
.float-chip .dot { width: 22px; height: 22px; border-radius: 7px; background: var(--gradient); display: flex; align-items: center; justify-content: center; color: #fff; }
.float-chip .dot svg { width: 13px; height: 13px; }

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

/* ---------- Logo strip ---------- */
.logo-strip { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logo-strip p { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.logo-strip-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 42px; color: var(--ink-soft); font-weight: 700; font-family: var(--font-head); font-size: 17px; opacity: .6; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 22px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.service-card .service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: 14px; font-weight: 600; color: var(--primary);
}
.service-card.cta-card {
  background: var(--gradient);
  color: #fff;
  display: flex; flex-direction: column; justify-content: center;
}
.service-card.cta-card h3 { color: #fff; }
.service-card.cta-card p { color: rgba(255,255,255,.85); }
.service-card.cta-card .service-link { color: #fff; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: none;
  background: var(--bg-dark);
  color: #fff;
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
  position: relative;
}
.price-card.featured::before {
  content: "MOST POPULAR";
  position: absolute; top: 22px; right: 24px;
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  background: var(--gradient); color: #fff;
  padding: 5px 10px; border-radius: 999px;
}
.price-card h3 { font-size: 18px; font-weight: 700; }
.price-card .price-desc { margin-top: 8px; font-size: 14px; color: var(--muted); }
.price-card.featured .price-desc { color: rgba(255,255,255,.65); }
.price-amount { margin-top: 24px; display: flex; align-items: baseline; gap: 6px; }
.price-amount .from { font-size: 14px; color: var(--muted); font-weight: 600; }
.price-card.featured .price-amount .from { color: rgba(255,255,255,.6); }
.price-amount .num { font-family: var(--font-head); font-size: 42px; font-weight: 700; }
.price-features { margin: 28px 0 32px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.price-card.featured .price-features li { color: rgba(255,255,255,.85); }
.price-features li svg { flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.price-card.featured .price-features li svg { color: var(--accent); }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-step { position: relative; padding: 8px; }
.process-num {
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: .5;
}
.process-step h3 { font-size: 18px; font-weight: 700; margin: 10px 0 10px; }
.process-step p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ---------- Why us ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-item {
  display: flex; gap: 16px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--gradient-soft);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feature-item p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ---------- About / photo split ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-photos { position: relative; padding: 0 30px 30px 0; }
.about-photo-main { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); display: block; }
.about-photo-accent {
  position: absolute;
  width: 55%; height: 190px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 5px solid #fff;
  bottom: 0; right: 0;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none; border: none;
  text-align: left;
  font-family: var(--font-head);
  font-size: 16.5px; font-weight: 600;
  color: var(--ink);
}
.faq-q .plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform .25s ease, border-color .25s ease;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--ink-soft);
}
.faq-q .plus::before { width: 10px; height: 1.6px; }
.faq-q .plus::after { width: 1.6px; height: 10px; transition: transform .25s ease; }
.faq-item.open .faq-q .plus { border-color: var(--primary); transform: rotate(180deg); }
.faq-item.open .faq-q .plus::after { transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a p { padding: 0 26px 24px; color: var(--muted); font-size: 14.5px; line-height: 1.65; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(79,70,229,.5), transparent 45%),
              radial-gradient(circle at 80% 80%, rgba(6,182,212,.4), transparent 45%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 700; }
.cta-banner p { margin-top: 14px; color: rgba(255,255,255,.75); font-size: 16px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner .hero-cta { justify-content: center; margin-top: 32px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.75); padding: 76px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tag { color: rgba(255,255,255,.55); }
.footer-blurb { margin-top: 18px; font-size: 14px; line-height: 1.7; max-width: 300px; color: rgba(255,255,255,.6); }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: transform .2s ease, background .2s ease;
}
.social-btn:hover { transform: translateY(-3px); background: var(--gradient); }
.social-btn svg { width: 18px; height: 18px; }

.footer-col h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s ease; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.5; }
.footer-contact svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* =========================================================
   Contact page
   ========================================================= */
.page-hero {
  padding: 64px 0 40px;
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(32px, 4.4vw, 46px); font-weight: 700; }
.page-hero p { margin-top: 14px; color: var(--muted); font-size: 16.5px; max-width: 560px; margin-left: auto; margin-right: auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: start;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-sm);
}
.contact-card h2 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.contact-card > p { color: var(--muted); font-size: 14.5px; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 8px; color: var(--ink-soft); }
.form-field label .required { color: var(--danger); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--bg-soft);
  transition: border-color .2s ease, background .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.form-field textarea { resize: vertical; min-height: 130px; }

.info-box, .error-box {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 20px;
  display: none;
}
.info-box { background: var(--success-bg); color: var(--success); }
.error-box { background: var(--danger-bg); color: var(--danger); }

.spinner {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  border-top-color: #fff;
  display: inline-block;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.side-info-card {
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 38px;
  margin-bottom: 24px;
}
.side-info-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 22px; }
.side-info-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.side-info-row:last-child { border-bottom: none; }
.side-info-row .icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.side-info-row .icon svg { width: 18px; height: 18px; }
.side-info-row .label { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 3px; text-transform: uppercase; letter-spacing: .06em; }
.side-info-row .value { font-size: 14.5px; font-weight: 600; }
.side-info-row .value a { color: #fff; }
.side-info-row .value a:hover { color: var(--accent); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 280px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.contact-note {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photos { padding: 0 24px 24px 0; }
}

@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .header-phone { display: none; }
  .header-actions .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .services-grid, .pricing-grid, .feature-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-banner { padding: 52px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-card { padding: 28px; }

  .mobile-nav {
    position: fixed;
    inset: 84px 0 0 0;
    background: #fff;
    z-index: 199;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav a {
    padding: 16px 4px;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
  }
  .mobile-nav .btn { margin-top: 20px; }
}

@media (min-width: 761px) {
  .mobile-nav { display: none; }
}
