
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1E2A3A;
  --blue:    #4A6FA5;
  --teal:    #2E8B8B;
  --teal-lt: #E6F4F4;
  --bg:      #F5F6F8;
  --bg-alt:  #ECEEF2;
  --white:   #FFFFFF;
  --text:    #22303F;
  --muted:   #6B7A8D;
  --border:  #D5D9E0;

  --font-body: 'Inter', system-ui, sans-serif;
  --font-disp: 'Playfair Display', Georgia, serif;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(30,42,58,.08);
  --shadow:    0 4px 16px rgba(30,42,58,.10);
  --shadow-lg: 0 8px 32px rgba(30,42,58,.14);

  --transition: 0.22s ease;
  --max-w: 1200px;
  --header-h: 72px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal); }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-disp); line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.15rem; color: var(--muted); line-height: 1.8; }
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  background: var(--bg-alt);
}
.brand-logo-placeholder {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-logo-placeholder svg { width: 22px; height: 22px; color: var(--white); }
.brand-name {
  font-family: var(--font-disp);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand-name span { color: var(--teal); }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.site-nav a:hover, .site-nav a.active { background: var(--teal-lt); color: var(--teal); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  line-height: 0;
}
.nav-toggle:hover { background: var(--bg-alt); }
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  z-index: 800;
  padding: 24px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 14px 16px;
  border-radius: var(--radius);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover, .mobile-nav a.active { background: var(--teal-lt); color: var(--teal); }
.mobile-nav a:last-child { border-bottom: none; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { background: #236b6b; border-color: #236b6b; color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); color: var(--white); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: #152030; color: var(--white); }
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #2a3f5c 60%, #1a4a5a 100%);
  color: var(--white);
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&auto=format&fit=crop&q=60') center/cover no-repeat;
  opacity: 0.12;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(46,139,139,.15);
  border: 1px solid rgba(46,139,139,.3);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero .lead { color: rgba(255,255,255,.8); margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image-wrap {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  overflow: hidden;
  display: none;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: .25; }
.card-grid { display: grid; gap: 24px; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-icon {
  width: 52px; height: 52px;
  background: var(--teal-lt);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
}
.card-icon ph-icon, .card-icon i { font-size: 26px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
.country-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.country-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.country-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--bg-alt);
}
.country-card-body { padding: 24px; }
.country-card-body h3 { margin-bottom: 10px; font-size: 1.1rem; }
.country-card-body p { color: var(--muted); font-size: 0.85rem; margin-bottom: 14px; }
.tax-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--teal-lt);
  color: var(--teal);
  letter-spacing: 0.03em;
}
.tag-blue { background: #E8EEF8; color: var(--blue); }
.tag-grey { background: var(--bg-alt); color: var(--muted); }
.stats-bar { background: var(--navy); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-num {
  font-family: var(--font-disp);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,.65); font-weight: 500; }
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--muted); }
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.875rem;
}
thead { background: var(--navy); color: var(--white); }
thead th { padding: 14px 18px; text-align: left; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase; }
tbody tr { border-bottom: 1px solid var(--border); }
tbody tr:last-child { border-bottom: none; }
tbody td { padding: 14px 18px; color: var(--text); vertical-align: middle; }
tbody tr:hover { background: var(--bg-alt); }
.rate { font-weight: 600; color: var(--navy); }
.accordion { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background var(--transition);
}
.accordion-trigger:hover { background: var(--bg-alt); }
.accordion-trigger[aria-expanded="true"] { background: var(--teal-lt); color: var(--teal); }
.accordion-trigger .acc-icon { transition: transform var(--transition); flex-shrink: 0; }
.accordion-trigger[aria-expanded="true"] .acc-icon { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-body-inner { padding: 0 24px 20px; color: var(--muted); font-size: 0.9rem; line-height: 1.8; }
.form-grid { display: grid; gap: 20px; }
.form-grid-2 { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(46,139,139,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.form-message {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
}
.form-message.success { background: #e8f5e9; color: #2e7d32; display: block; }
.form-message.error { background: #fdecea; color: #c62828; display: block; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--teal-lt);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 4px; }
.contact-info-value { font-weight: 500; color: var(--navy); }
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-wrap img { width: 100%; height: 400px; object-fit: cover; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  background: var(--bg-alt);
}
.team-name { font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--muted); }
.value-list { display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }
.value-item { display: flex; align-items: flex-start; gap: 14px; }
.value-icon { width: 36px; height: 36px; border-radius: var(--radius-sm); background: var(--teal-lt); display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0; }
.value-text h4 { margin-bottom: 4px; }
.value-text p { font-size: 0.875rem; color: var(--muted); margin: 0; }
.guide-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.guide-layout { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start; }
.guide-nav-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 12px; }
.guide-nav a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.875rem;
  color: var(--muted);
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  border-left: 2px solid transparent;
  margin-bottom: 2px;
}
.guide-nav a:hover, .guide-nav a.active { color: var(--teal); border-left-color: var(--teal); background: var(--teal-lt); }
.guide-article h2 { margin-top: 56px; margin-bottom: 16px; padding-top: 40px; border-top: 1px solid var(--border); }
.guide-article h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.guide-article h3 { margin-top: 32px; margin-bottom: 12px; }
.guide-article ul, .guide-article ol { padding-left: 24px; margin-bottom: 1rem; color: var(--muted); }
.guide-article ul { list-style: disc; }
.guide-article ol { list-style: decimal; }
.guide-article li { margin-bottom: 6px; font-size: 0.9rem; line-height: 1.7; }
.callout {
  background: var(--teal-lt);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 24px 0;
}
.callout p { font-size: 0.9rem; color: var(--text); margin: 0; }
.callout-title { font-weight: 700; color: var(--teal); margin-bottom: 6px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }
.policy-body { max-width: 820px; margin: 0 auto; }
.policy-body h2 { margin-top: 48px; margin-bottom: 16px; font-size: 1.35rem; }
.policy-body h3 { margin-top: 28px; margin-bottom: 10px; font-size: 1.05rem; }
.policy-body ul, .policy-body ol { padding-left: 24px; margin-bottom: 1rem; }
.policy-body ul { list-style: disc; }
.policy-body ol { list-style: decimal; }
.policy-body li { margin-bottom: 6px; font-size: 0.9rem; color: var(--muted); }
.policy-meta { font-size: 0.82rem; color: var(--muted); margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  margin-top: auto;
}
.footer-main { padding: 64px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand { margin-bottom: 16px; }
.footer-desc { font-size: 0.875rem; line-height: 1.8; color: rgba(255,255,255,.55); margin-top: 12px; }
.footer-heading { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-links a:hover { color: var(--teal); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 0.875rem; color: rgba(255,255,255,.65); }
.footer-contact-item i { margin-top: 2px; color: var(--teal); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.35); }
.footer-bottom-links a:hover { color: var(--teal); }
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--navy);
  border-top: 3px solid var(--teal);
  padding: 20px 24px;
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 260px; font-size: 0.875rem; color: rgba(255,255,255,.8); line-height: 1.6; }
.cookie-text a { color: var(--teal); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  padding: 9px 22px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-cookie-accept:hover { background: #236b6b; }
.btn-cookie-decline {
  padding: 9px 22px;
  background: transparent;
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-cookie-decline:hover { border-color: rgba(255,255,255,.5); color: var(--white); }
.breadcrumb {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb-list { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--muted); }
.breadcrumb-list a { color: var(--muted); }
.breadcrumb-list a:hover { color: var(--teal); }
.breadcrumb-sep { color: var(--border); }
.page-hero {
  background: linear-gradient(120deg, var(--navy) 0%, #1f3a55 100%);
  color: var(--white);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(46,139,139,.18) 0%, transparent 70%);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; font-size: clamp(1.6rem, 4vw, 2.4rem); }
.page-hero .lead { color: rgba(255,255,255,.72); margin: 0; font-size: 1rem; }
.search-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px 16px 8px 8px;
  box-shadow: var(--shadow-sm);
}
.search-bar input {
  flex: 1;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  padding: 8px 12px;
  outline: none;
}
.search-bar button {
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.search-bar button:hover { background: #236b6b; }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.filter-chip {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-chip:hover, .filter-chip.active { background: var(--teal); border-color: var(--teal); color: var(--white); }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.divider { height: 1px; background: var(--border); margin: 48px 0; }
.notice {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.875rem;
  color: #6d4c00;
  margin-bottom: 24px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--teal-lt);
  color: var(--teal);
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .guide-layout { grid-template-columns: 240px 1fr; gap: 32px; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap img { height: 300px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 56px 0; }
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .guide-layout { grid-template-columns: 1fr; }
  .guide-sidebar { position: static; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero { padding: 72px 0 60px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
