/* Golden Wink Kingdom — Nordic Ice + Gradient Mesh */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:root {
  --bg: #e8ecf1;
  --surface: #f5f7fa;
  --surface-alt: #ffffff;
  --primary: #1e40af;
  --primary-hover: #1e3a8a;
  --secondary: #0f766e;
  --accent: #3b82f6;
  --text: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border: rgba(30, 64, 175, 0.1);
  --radius: 6px;
  --font-heading: "Poppins", system-ui, sans-serif;
  --shadow: 0 8px 32px rgba(30, 64, 175, 0.08);
  --glass: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.7);
}

/* Mesh gradient page backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(59, 130, 246, 0.22), transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(15, 118, 110, 0.18), transparent 45%),
    radial-gradient(ellipse 70% 60% at 50% 90%, rgba(30, 64, 175, 0.12), transparent 55%),
    linear-gradient(165deg, #e8ecf1 0%, #dce4ef 40%, #eef2f8 100%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-weight: 700;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* —— Nav —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  background: rgba(245, 247, 250, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(30, 64, 175, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 0.75rem;
  min-width: 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: min(200px, 42vw);
  min-width: 0;
}

.nav-brand img {
  width: auto;
  max-width: 100%;
  max-height: 48px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.nav-toggle {
  display: none;
  padding: 0.5rem;
  border-radius: var(--radius);
  color: var(--primary);
  transition: background 0.25s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(30, 64, 175, 0.08);
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  min-width: 0;
  flex: 1;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--primary);
  background: rgba(30, 64, 175, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: transform 0.2s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.btn-outline {
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--primary);
  backdrop-filter: blur(8px);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: #fff;
  border-color: rgba(30, 64, 175, 0.2);
}

.nav-cta {
  margin-left: 0.75rem;
}

/* —— Hero —— */
.hero {
  padding: 8rem 0 4rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  justify-items: stretch;
}

.hero-copy {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-grid .hero-copy {
    margin: 0 auto;
    justify-self: center;
    align-self: center;
  }
}

/* Mid-width desktop: avoid horizontal overflow; allow a second row if needed */
@media (min-width: 768px) and (max-width: 1140px) {
  .nav-menu {
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 0.35rem;
  }

  .nav-links {
    gap: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-links a {
    padding: 0.45rem 0.45rem;
    font-size: 0.78rem;
  }

  .nav-cta {
    margin-left: 0.35rem;
    flex-shrink: 0;
  }

  .nav-cta .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.hero-visual {
  position: relative;
}

.hero-visual .glass-card {
  padding: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
}

.hero-visual img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  padding: 1.25rem 0.5rem;
  border: 1px solid var(--glass-border);
  max-width: 100%;
}

.stat {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 0.75rem 1rem;
  position: relative;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* —— Glass cards —— */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(30, 64, 175, 0.12);
  border-color: rgba(59, 130, 246, 0.25);
}

/* —— Sections —— */
section {
  padding: 4.5rem 0;
  position: relative;
}

section.alt-surface {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-img:hover img {
  transform: scale(1.03);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.12), rgba(59, 130, 246, 0.15));
  color: var(--primary);
  margin-bottom: 1rem;
}

.icon-circle svg {
  width: 24px;
  height: 24px;
}

.service-card h3,
.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
}

.service-card p,
.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.about-list {
  margin-top: 1.5rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.98rem;
  color: var(--text-secondary);
}

.about-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
}

/* Timeline */
.timeline {
  display: grid;
  gap: 1.25rem;
  position: relative;
  padding-left: 1.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--secondary));
  border-radius: 2px;
  opacity: 0.35;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.timeline-step .glass-card {
  flex: 1;
}

.timeline-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.timeline-step p {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* Marquee */
.marquee-wrap {
  padding: 1.25rem 0;
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}

.marquee-item {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  white-space: nowrap;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

/* Testimonials */
.testimonial-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-slides {
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
}

.testimonial-slide {
  display: none;
  padding: 2.5rem;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.45s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.testimonial-slide blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-meta strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-meta span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonial-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.testimonial-controls button:hover,
.testimonial-controls button:focus-visible {
  background: rgba(30, 64, 175, 0.08);
  border-color: rgba(30, 64, 175, 0.25);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  padding: 0;
  background: var(--text-muted);
  opacity: 0.35;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.testimonial-dots button.active {
  opacity: 1;
  background: var(--primary);
  transform: scale(1.15);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  transition: color 0.25s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--primary);
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 10px;
  left: 4px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  left: 10px;
  top: 4px;
}

.faq-item.open .faq-icon::after {
  transform: scaleY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 24rem;
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-card .contact-list {
  margin-top: 1.5rem;
}

.contact-list li {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.contact-details p {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.contact-details a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.contact-details a:hover {
  color: var(--primary-hover);
}

/* Footer */
.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  width: auto;
  max-height: 40px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 22rem;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  padding: 1.25rem 1.5rem;
  background: rgba(30, 41, 59, 0.95);
  color: #f1f5f9;
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-inner p {
  flex: 1;
  min-width: 240px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-inner a {
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-actions .btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.cookie-actions .btn-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #e2e8f0;
}

.cookie-actions .btn-decline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cookie-actions .btn-accept {
  background: var(--accent);
  color: #fff;
  box-shadow: none;
}

.cookie-actions .btn-accept:hover {
  background: #2563eb;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* Legal pages */
.legal-page main {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.legal-content > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.legal-content ul {
  margin: 0.5rem 0 1rem 1.25rem;
  list-style: disc;
}

.legal-content ul li {
  margin-bottom: 0.4rem;
}

/* Reveal stagger children optional */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1002;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    width: min(320px, 88vw);
    max-width: 100%;
    height: 100vh;
    max-height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(245, 247, 250, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -8px 0 32px rgba(30, 64, 175, 0.1);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-6,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-grid .hero-copy {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    padding: 0;
  }

  .stat:not(:last-child)::after {
    display: none;
  }

  .stat {
    border-bottom: 1px solid var(--border);
    padding: 1rem;
  }

  .stat:last-child {
    border-bottom: none;
  }

  .hero-visual {
    order: -1;
  }

  .section-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .timeline {
    padding-left: 0;
  }

  .timeline::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  section {
    padding: 3.25rem 0;
  }

  .hero {
    padding-top: 6.5rem;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}
