/* ========================================
   DOLMBI LTD — Landing Page Stylesheet
   ======================================== */

/* 1. Variables */
:root {
  --navy:       #0B1D35;
  --blue-700:   #155DA0;
  --blue-600:   #1E6FBD;
  --blue-500:   #3A8FD9;
  --blue-300:   #7EC0ED;
  --blue-200:   #AADAF5;
  --blue-100:   #D8EEF9;
  --blue-50:    #EEF7FD;
  --sky:        #F4FAFF;
  --white:      #FFFFFF;
  --text:       #0F1C2E;
  --text-sec:   #4A6878;
  --border:     #C2DDED;
  --success:    #22C55E;
  --shadow-sm:  0 1px 4px rgba(11,29,53,0.08);
  --shadow-md:  0 4px 18px rgba(11,29,53,0.12);
  --shadow-lg:  0 10px 40px rgba(11,29,53,0.18);
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --r-full:     9999px;
  --ease:       0.3s ease;
}

/* 2. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* 3. Typography */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--navy); }
h1 { font-size: clamp(1.9rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.125rem; font-weight: 600; }
p  { line-height: 1.72; }

/* 4. Layout */
.container  { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section--sky   { background: var(--sky); }
.section--navy  { background: var(--navy); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { color: var(--navy); margin-bottom: 14px; }
.section--navy .section-header h2 { color: var(--white); }
.section-header p {
  font-size: 1.0625rem;
  color: var(--text-sec);
  max-width: 560px;
  margin: 0 auto;
}
.section--navy .section-header p { color: var(--blue-200); }
.divider {
  width: 48px; height: 3px;
  background: var(--blue-600);
  border-radius: var(--r-full);
  margin: 16px auto 0;
}

/* 5. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--r-full);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--ease), box-shadow var(--ease),
              background var(--ease), color var(--ease),
              border-color var(--ease);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(30,111,189,0.38);
}
.btn--primary:hover {
  background: var(--blue-700);
  box-shadow: 0 6px 22px rgba(30,111,189,0.5);
}
.btn--outline {
  background: transparent;
  color: var(--blue-600);
  border-color: var(--blue-600);
}
.btn--outline:hover { background: var(--blue-50); }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.9);
}
.btn--lg { padding: 16px 38px; font-size: 1rem; }

/* 6. Badge */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-100);
  padding: 4px 13px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}

/* ── HEADER ─────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--ease), box-shadow var(--ease);
}
.header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo__icon {
  width: 38px; height: 38px;
  background: var(--blue-600);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo__icon svg { width: 22px; height: 22px; color: var(--white); }
.logo__name {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.4px;
}
.logo__tag {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--blue-600);
  border: 1.5px solid var(--blue-200);
  padding: 2px 6px;
  border-radius: 5px;
  letter-spacing: 1.2px;
  align-self: flex-end;
  margin-bottom: 3px;
}
.header--light .logo__name { color: var(--white); }
.header--light .logo__tag  { color: var(--blue-200); border-color: rgba(170,218,245,0.4); }

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-sec);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--ease), background var(--ease);
}
.nav__link:hover { color: var(--navy); background: var(--blue-50); }
.header--light .nav__link { color: rgba(255,255,255,0.72); }
.header--light .nav__link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav__cta { margin-left: 10px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.header--light .hamburger span { background: var(--white); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav__link {
  color: var(--text);
  padding: 12px 16px;
  font-size: 1rem;
}
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ── HERO ────────────────────────────────── */
.hero {
  background: linear-gradient(140deg, #071729 0%, #0D2642 55%, #143660 100%);
  padding: 140px 0 96px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 72% 40%, rgba(30,111,189,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}
.hero__super {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,111,189,0.18);
  border: 1px solid rgba(30,111,189,0.4);
  color: var(--blue-200);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 22px;
}
.hero__super svg { width: 14px; height: 14px; }
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 span { color: var(--blue-300); }
.hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.68);
  margin-bottom: 40px;
  max-width: 490px;
  line-height: 1.72;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat__num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.48);
  margin-top: 5px;
}
.hero__image { position: relative; }
.hero__image-bg {
  width: 100%;
  aspect-ratio: 8 / 5;
  border-radius: var(--radius-xl);
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  animation: floatImg 7s ease-in-out infinite;
}
@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ── SERVICES ────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card__icon {
  width: 50px; height: 50px;
  background: var(--blue-50);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue-600);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.0625rem; }
.service-card p  {
  font-size: 0.9rem;
  color: var(--text-sec);
  margin-bottom: 22px;
  line-height: 1.65;
}
.service-card__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-600);
}
.price-meta {
  font-size: 0.8125rem;
  color: var(--text-sec);
}
.services__note {
  text-align: center;
  margin-top: 44px;
  font-size: 0.9375rem;
  color: var(--text-sec);
}
.services__note a { color: var(--blue-600); font-weight: 600; }

/* ── ABOUT ───────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.about__media { position: relative; }
.about__media-bg {
  width: 100%;
  aspect-ratio: 7 / 5;
  border-radius: var(--radius-lg);
  background-image: url('../img/about.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-lg);
}
.about__card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
}
.about__card p {
  font-size: 0.8rem;
  color: var(--text-sec);
  line-height: 1.75;
}
.about__card strong { color: var(--navy); }
.about__content > p {
  font-size: 1.0rem;
  color: var(--text-sec);
  margin-bottom: 14px;
}
.about__points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about__point { display: flex; gap: 14px; align-items: flex-start; }
.about__point-icon {
  width: 38px; height: 38px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-600);
}
.about__point-icon svg { width: 18px; height: 18px; }
.about__point-body strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 3px; }
.about__point-body span  { font-size: 0.875rem; color: var(--text-sec); }

/* ── HOW IT WORKS ────────────────────────── */
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.how__connector {
  position: absolute;
  top: 36px;
  left: calc(50% / 3 + 36px);
  right: calc(50% / 3 + 36px);
  height: 2px;
  background: linear-gradient(to right, var(--blue-200), var(--blue-500), var(--blue-200));
  z-index: 0;
}
.how-step { text-align: center; position: relative; z-index: 1; }
.how-step__circle {
  width: 72px; height: 72px;
  background: var(--blue-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 24px;
  box-shadow: 0 8px 28px rgba(30,111,189,0.38);
  transition: transform var(--ease), box-shadow var(--ease);
}
.how-step:hover .how-step__circle {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(30,111,189,0.5);
}
.how-step h3 { margin-bottom: 12px; }
.how-step p  { font-size: 0.9375rem; color: var(--text-sec); max-width: 240px; margin: 0 auto; }

/* ── WHY US ──────────────────────────────── */
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: background var(--ease), border-color var(--ease);
}
.why-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
}
.why-card__icon {
  width: 52px; height: 52px;
  background: rgba(30,111,189,0.22);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue-200);
}
.why-card__icon svg { width: 26px; height: 26px; }
.why-card h3 { color: var(--white); margin-bottom: 10px; }
.why-card p  { font-size: 0.9rem; color: rgba(255,255,255,0.58); line-height: 1.68; }

/* ── CONTACT ─────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact__info h2 { color: var(--navy); margin-bottom: 14px; }
.contact__info > p { color: var(--text-sec); margin-bottom: 36px; }
.contact__details { display: flex; flex-direction: column; gap: 18px; }
.contact__item { display: flex; gap: 14px; align-items: flex-start; }
.contact__item-icon {
  width: 42px; height: 42px;
  background: var(--blue-50);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-600);
}
.contact__item-icon svg { width: 20px; height: 20px; }
.contact__item-body label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-sec);
  margin-bottom: 2px;
}
.contact__item-body a,
.contact__item-body p {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--ease);
}
.contact__item-body a:hover { color: var(--blue-600); }

/* Form */
.contact__form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--sky);
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(30,111,189,0.14);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A6878' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__submit-btn { width: 100%; justify-content: center; margin-top: 4px; }
.form__success {
  display: none;
  text-align: center;
  padding: 40px 24px;
}
.form__success .success-icon {
  width: 64px; height: 64px;
  background: rgba(34,197,94,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--success);
}
.form__success .success-icon svg { width: 32px; height: 32px; }
.form__success h3 { color: var(--navy); margin-bottom: 10px; }
.form__success p  { color: var(--text-sec); font-size: 0.9375rem; line-height: 1.7; }

/* ── FOOTER ──────────────────────────────── */
.footer { background: #060F1C; padding: 64px 0 32px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand .logo__name { color: var(--white); }
.footer__brand .logo__tag  { color: var(--blue-300); border-color: rgba(58,143,217,0.35); }
.footer__brand > p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 18px;
  line-height: 1.72;
  max-width: 300px;
}
.footer__reg {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 18px;
  line-height: 1.85;
}
.footer__col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--ease);
}
.footer__col ul li a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.38);
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--ease);
}
.footer__legal a:hover { color: var(--white); }

/* ── COOKIE BANNER ───────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.cookie-banner p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  flex: 1;
}
.cookie-banner a { color: var(--blue-200); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 8px 22px;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.cookie-btn--accept  { background: var(--blue-600); color: var(--white); border-color: var(--blue-600); }
.cookie-btn--accept:hover { background: var(--blue-700); }
.cookie-btn--decline { background: transparent; color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.25); }
.cookie-btn--decline:hover { color: var(--white); border-color: rgba(255,255,255,0.55); }

/* ── LEGAL PAGES ─────────────────────────── */
.legal-hero {
  background: var(--navy);
  padding: 120px 0 64px;
  text-align: center;
}
.legal-hero h1 { color: var(--white); font-size: 2.25rem; margin-bottom: 12px; }
.legal-hero p  { color: rgba(255,255,255,0.55); font-size: 0.9375rem; }
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}
.legal-content h2 {
  font-size: 1.25rem;
  color: var(--navy);
  margin: 40px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  font-size: 0.9375rem;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 10px;
}
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 12px; }
.legal-content a { color: var(--blue-600); text-decoration: underline; }
.legal-content .updated {
  font-size: 0.85rem;
  color: var(--text-sec);
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* ── ANIMATIONS ──────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .about__card { display: none; }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__image { order: -1; max-width: 480px; margin: 0 auto; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .how__connector { display: none; }
  .why__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero { padding: 120px 0 72px; min-height: unset; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .services__grid { grid-template-columns: 1fr; }
  .how__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 24px 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__btns { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
