/* ============================================
   SeeShop — Design System
   Aesthetic: bold, warm, playful-premium
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand palette — warm coral/amber on deep ink */
  --ink: #16131f;
  --ink-2: #211c30;
  --ink-soft: #2c2640;
  --paper: #fbf7f2;
  --paper-2: #ffffff;

  --coral: #ff5722;
  --coral-deep: #e8430f;
  --amber: #ff9100;
  --amber-soft: #ffb84d;
  --grape: #6c5ce7;
  --mint: #00d4a0;
  --sky: #2e9bff;

  --txt: #16131f;
  --txt-soft: #5a5468;
  --txt-faint: #918aa3;
  --line: #ece4da;

  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 34px;

  --shadow-sm: 0 2px 8px rgba(22,19,31,.06);
  --shadow: 0 12px 40px rgba(22,19,31,.10);
  --shadow-lg: 0 30px 80px rgba(22,19,31,.18);
  --shadow-coral: 0 18px 44px rgba(255,87,34,.32);

  --grad-warm: linear-gradient(135deg, #ff5722 0%, #ff9100 100%);
  --grad-grape: linear-gradient(135deg, #6c5ce7 0%, #a55eea 100%);
  --grad-mint: linear-gradient(135deg, #00d4a0 0%, #2e9bff 100%);
  --grad-ink: linear-gradient(160deg, #211c30 0%, #16131f 100%);

  --display: 'Unbounded', system-ui, sans-serif;
  --body: 'Manrope', system-ui, sans-serif;

  --maxw: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--txt);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

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

/* ---- Grain / texture overlay ---- */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(251,247,242,.82);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: -.5px; }
.brand .logo {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--grad-warm); display: grid; place-items: center;
  color: #fff; font-weight: 900; font-size: 22px; box-shadow: var(--shadow-coral);
  transform: rotate(-4deg); transition: transform .35s cubic-bezier(.2,.9,.3,1.4);
}
.brand:hover .logo { transform: rotate(4deg) scale(1.06); }
.brand b { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }

.menu { display: flex; align-items: center; gap: 4px; }
.menu > li { position: relative; }
.menu > li > a {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px; border-radius: 12px; font-weight: 600; font-size: 15.5px;
  color: var(--txt-soft); transition: all .2s;
}
.menu > li > a:hover, .menu > li.active > a { color: var(--coral); background: rgba(255,87,34,.07); }
.menu > li > a .chev { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .25s; }
.menu > li:hover > a .chev { transform: rotate(-135deg) translateY(-1px); }

/* Dropdown (deep-dive like the screenshot) */
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 320px; background: var(--paper-2);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 12px; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .28s cubic-bezier(.2,.8,.2,1); z-index: 50;
}
.menu > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 14px; border-radius: 14px; transition: all .2s; color: var(--txt);
}
.dropdown a:hover { background: var(--paper); transform: translateX(4px); }
.dropdown a .di {
  flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,87,34,.1); color: var(--coral); font-size: 20px;
}
.dropdown a:nth-child(2) .di { background: rgba(108,92,231,.12); color: var(--grape); }
.dropdown a:nth-child(3) .di { background: rgba(0,212,160,.12); color: var(--mint); }
.dropdown a:nth-child(4) .di { background: rgba(46,155,255,.12); color: var(--sky); }
.dropdown a:nth-child(5) .di { background: rgba(255,145,0,.14); color: var(--amber); }
.dropdown a b { display: block; font-weight: 700; font-size: 15px; }
.dropdown a span { font-size: 12.5px; color: var(--txt-faint); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: 14px; font-weight: 700; font-size: 15px;
  transition: all .25s cubic-bezier(.2,.8,.3,1.2); white-space: nowrap;
}
.btn-primary { background: var(--grad-warm); color: #fff; box-shadow: var(--shadow-coral); }
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 24px 52px rgba(255,87,34,.42); }
.btn-ghost { color: var(--txt); border: 1.5px solid var(--line); background: var(--paper-2); }
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: var(--ink-2); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ============ HERO ============ */
.hero { position: relative; padding: 90px 0 70px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 60% at 12% 8%, rgba(255,145,0,.18), transparent 60%),
    radial-gradient(50% 50% at 92% 18%, rgba(108,92,231,.16), transparent 60%),
    radial-gradient(70% 60% at 80% 100%, rgba(0,212,160,.12), transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 100px; background: var(--paper-2);
  border: 1px solid var(--line); font-weight: 700; font-size: 13.5px; color: var(--coral);
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(0,212,160,.2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 4px rgba(0,212,160,.2)} 50%{box-shadow:0 0 0 8px rgba(0,212,160,.05)} }

h1.hero-title {
  font-family: var(--display); font-weight: 800; letter-spacing: -1.5px;
  font-size: clamp(38px, 5.4vw, 68px); line-height: 1.02; margin-bottom: 22px;
}
h1.hero-title em { font-style: normal; background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; position: relative; }
.hero-lead { font-size: 19px; color: var(--txt-soft); max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats .s b { font-family: var(--display); font-size: 30px; font-weight: 800; display: block; line-height: 1; }
.hero-stats .s span { font-size: 13.5px; color: var(--txt-faint); font-weight: 600; }

/* Hero visual: floating cards */
.hero-visual { position: relative; min-height: 460px; }
.float-card {
  position: absolute; background: var(--paper-2); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line); padding: 22px;
  animation: float 6s ease-in-out infinite;
}
.float-card.fc1 { top: 0; left: 0; width: 260px; z-index: 3; }
.float-card.fc2 { top: 130px; right: 0; width: 240px; z-index: 4; animation-delay: -2s; }
.float-card.fc3 { bottom: 0; left: 40px; width: 280px; z-index: 5; animation-delay: -4s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.fc-head { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.fc-ico { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; font-size: 19px; flex: none; }
.fc1 .fc-ico { background: var(--grad-warm); color: #fff; }
.fc2 .fc-ico { background: var(--grad-grape); color: #fff; }
.fc3 .fc-ico { background: var(--grad-mint); color: #fff; }
.fc-head b { font-family: var(--display); font-weight: 700; font-size: 15px; }
.fc-body { font-size: 13.5px; color: var(--txt-soft); }
.fc-rating { display: flex; gap: 3px; color: var(--amber); font-size: 16px; margin-top: 8px; }

/* ============ SECTION ============ */
section { position: relative; }
.section-pad { padding: 84px 0; }
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.tag {
  display: inline-block; font-weight: 800; font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--coral); margin-bottom: 14px;
}
h2.section-title {
  font-family: var(--display); font-weight: 800; letter-spacing: -1px;
  font-size: clamp(28px, 4vw, 46px); line-height: 1.08; margin-bottom: 16px;
}
.section-head p { font-size: 18px; color: var(--txt-soft); }

/* ============ PROBLEM CARDS ============ */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pcard {
  background: var(--paper-2); border-radius: var(--radius); padding: 34px 30px;
  border: 1px solid var(--line); transition: all .35s cubic-bezier(.2,.8,.2,1);
  position: relative; overflow: hidden;
}
.pcard::after { content:""; position:absolute; inset:0; background: var(--grad-warm); opacity:0; transition:.35s; z-index:0; }
.pcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pcard > * { position: relative; z-index: 1; }
.pcard .pico {
  width: 60px; height: 60px; border-radius: 17px; display: grid; place-items: center;
  font-size: 28px; margin-bottom: 20px; background: rgba(255,87,34,.1); color: var(--coral);
}
.pcard:nth-child(2) .pico { background: rgba(108,92,231,.12); color: var(--grape); }
.pcard:nth-child(3) .pico { background: rgba(0,212,160,.12); color: var(--mint); }
.pcard h3 { font-family: var(--display); font-weight: 700; font-size: 20px; margin-bottom: 12px; letter-spacing: -.3px; }
.pcard p { color: var(--txt-soft); font-size: 15.5px; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: var(--grad-ink); border-radius: var(--radius-lg); padding: 60px 56px;
  position: relative; overflow: hidden; color: #fff; text-align: center;
}
.cta-banner::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(50% 80% at 20% 0%, rgba(255,87,34,.4), transparent 60%),
              radial-gradient(50% 80% at 90% 100%, rgba(108,92,231,.35), transparent 60%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { font-family: var(--display); font-weight: 800; font-size: clamp(26px,3.6vw,40px); margin-bottom: 16px; letter-spacing: -.5px; }
.cta-banner p { font-size: 18px; opacity: .85; max-width: 560px; margin: 0 auto 30px; }
.cta-banner .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ TEAM ============ */
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.tcard {
  display: flex; gap: 22px; padding: 32px; border-radius: var(--radius);
  background: var(--paper-2); border: 1px solid var(--line); transition: all .35s;
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tnum {
  font-family: var(--display); font-weight: 800; font-size: 40px; flex: none;
  background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; opacity: .85;
}
.tcard h3 { font-family: var(--display); font-weight: 700; font-size: 20px; margin-bottom: 8px; letter-spacing: -.3px; }
.tcard p { color: var(--txt-soft); font-size: 15px; }

/* ============ MARKETPLACES ============ */
.mp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.mpcard {
  background: var(--paper-2); border-radius: var(--radius); padding: 30px 26px;
  border: 1px solid var(--line); transition: all .35s; position: relative; overflow: hidden;
}
.mpcard:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-lg); }
.mp-badge {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; color: #fff; font-size: 22px; margin-bottom: 18px;
}
.mp-wb { background: linear-gradient(135deg,#a73afd,#7a1fd6); }
.mp-oz { background: linear-gradient(135deg,#005bff,#0040c1); }
.mp-sb { background: linear-gradient(135deg,#21a038,#157a28); }
.mp-ya { background: linear-gradient(135deg,#ffcc00,#ff9100); color: #16131f; }
.mpcard h3 { font-family: var(--display); font-weight: 700; font-size: 19px; margin-bottom: 10px; }
.mpcard p { color: var(--txt-soft); font-size: 14.5px; margin-bottom: 18px; }
.mp-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--coral); font-size: 14.5px; }
.mp-link .arr { transition: transform .25s; }
.mpcard:hover .mp-link .arr { transform: translateX(5px); }

/* ============ FOOTER ============ */
.site-footer { background: var(--grad-ink); color: #fff; padding: 70px 0 30px; margin-top: 40px; position: relative; overflow: hidden; }
.site-footer::before { content:""; position:absolute; top:0; left:0; right:0; height:1px; background: linear-gradient(90deg,transparent,var(--coral),transparent); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 800; font-size: 22px; margin-bottom: 18px; }
.footer-brand .logo { width: 42px; height: 42px; border-radius: 12px; background: var(--grad-warm); display: grid; place-items: center; font-weight: 900; }
.site-footer p { color: rgba(255,255,255,.6); font-size: 14.5px; }
.fcol h4 { font-family: var(--display); font-weight: 700; font-size: 15px; margin-bottom: 18px; }
.fcol a, .fcol li { color: rgba(255,255,255,.62); font-size: 14.5px; padding: 6px 0; display: block; transition: .2s; }
.fcol a:hover { color: var(--amber); padding-left: 5px; }
.f-contact { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; color:#fff !important; font-weight: 600; }
.f-contact .fi { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; font-size: 17px; flex:none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; color: rgba(255,255,255,.5); font-size: 13.5px; }

/* ============ REVEAL ANIM ============ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ============ PAGE HEADER (inner pages) ============ */
.page-hero { padding: 70px 0 56px; position: relative; overflow: hidden; }
.page-hero .hero-bg { background: radial-gradient(60% 70% at 80% 0%, rgba(255,87,34,.14), transparent 60%), radial-gradient(50% 60% at 10% 100%, rgba(108,92,231,.12), transparent 60%); }
.breadcrumb { display: flex; gap: 8px; font-size: 14px; color: var(--txt-faint); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--coral); }
h1.page-title { font-family: var(--display); font-weight: 800; font-size: clamp(32px,5vw,56px); letter-spacing: -1px; line-height: 1.04; margin-bottom: 18px; max-width: 800px; }
.page-hero .lead { font-size: 19px; color: var(--txt-soft); max-width: 640px; }

/* prose */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: var(--display); font-weight: 700; font-size: 28px; margin: 40px 0 16px; letter-spacing: -.5px; }
.prose h3 { font-family: var(--display); font-weight: 700; font-size: 21px; margin: 28px 0 12px; }
.prose p { margin-bottom: 16px; color: var(--txt-soft); font-size: 17px; }
.prose ul.bullets { margin: 0 0 20px; }
.prose ul.bullets li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--txt-soft); }
.prose ul.bullets li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--mint); font-weight: 800; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; transition: .3s; }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; padding: 24px 28px; font-family: var(--display); font-weight: 600; font-size: 18px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .ic { flex: none; width: 30px; height: 30px; border-radius: 9px; background: rgba(255,87,34,.1); color: var(--coral); display: grid; place-items: center; font-size: 20px; transition: .3s; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--coral); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a div { padding: 0 28px 24px; color: var(--txt-soft); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step { text-align: center; padding: 36px 28px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); position: relative; transition: .35s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-n { width: 54px; height: 54px; border-radius: 16px; background: var(--grad-warm); color: #fff; font-family: var(--display); font-weight: 800; font-size: 22px; display: grid; place-items: center; margin: 0 auto 18px; box-shadow: var(--shadow-coral); }
.step:nth-child(2) .step-n { background: var(--grad-grape); box-shadow: 0 16px 40px rgba(108,92,231,.3); }
.step:nth-child(3) .step-n { background: var(--grad-mint); box-shadow: 0 16px 40px rgba(0,212,160,.3); }
.step h3 { font-family: var(--display); font-weight: 700; font-size: 19px; margin-bottom: 10px; }
.step p { color: var(--txt-soft); font-size: 15px; }

/* contest stats */
.contest-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 48px; }
.cstat { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; text-align: center; }
.cstat .ring { position: relative; width: 130px; height: 130px; margin: 0 auto 18px; }
.cstat .pct { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 26px; }
.cstat h4 { font-family: var(--display); font-weight: 700; font-size: 17px; }

/* contact block */
.contact-card { background: var(--grad-ink); color: #fff; border-radius: var(--radius-lg); padding: 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; position: relative; overflow: hidden; }
.contact-card::before { content:""; position:absolute; inset:0; background: radial-gradient(50% 80% at 90% 10%, rgba(255,87,34,.35), transparent 60%); }
.contact-card > * { position: relative; }
.contact-card h2 { font-family: var(--display); font-weight: 800; font-size: 34px; margin-bottom: 14px; letter-spacing: -.5px; }
.contact-card p { color: rgba(255,255,255,.75); margin-bottom: 26px; }
.contact-methods .cm { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); padding: 18px 20px; margin-bottom: 14px; transition: .25s; }
.contact-methods .cm:hover { background: rgba(255,255,255,.12); transform: translateX(4px); }
.contact-methods .cm .cmi { width: 48px; height: 48px; border-radius: 13px; background: var(--grad-warm); display: grid; place-items: center; font-size: 22px; flex: none; }
.contact-methods .cm b { display: block; font-size: 12px; color: rgba(255,255,255,.55); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.contact-methods .cm span { font-size: 18px; font-weight: 700; }

/* responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 380px; }
  .cards-3, .steps, .contest-stats { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .mp-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-card { grid-template-columns: 1fr; padding: 36px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .menu, .nav-cta .btn-ghost { display: none; }
  .burger { display: flex; }
  .menu.mobile-open { display: flex; position: fixed; top: 78px; left: 0; right: 0; flex-direction: column; background: var(--paper-2); padding: 16px; box-shadow: var(--shadow-lg); gap: 4px; max-height: calc(100vh - 78px); overflow-y: auto; }
  .menu.mobile-open > li { width: 100%; }
  .menu.mobile-open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; min-width: 0; padding: 4px 0 4px 16px; }
  .mp-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 56px 0; }
  .cta-banner, .contact-card { padding: 32px 22px; }
}
