@charset "UTF-8";

:root {
  --bg: #fdf8f2;
  --text: #1f2937;
  --muted: #6b7280;
  --accent: #1e56cd;
  --accent-strong: #153c8f;
  --shadow-out: 9px 9px 16px rgba(163, 177, 198, 0.6);
  --shadow-in: inset 6px 6px 10px rgba(163, 177, 198, 0.7), inset -6px -6px 10px rgba(255, 255, 255, 0.8);
  --radius: 20px;
  --card-border: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] {
  --bg: #1f2121;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #4f8dff;
  --accent-strong: #74a6ff;
  --shadow-out: 10px 10px 22px rgba(0, 0, 0, 0.6);
  --shadow-in: inset 6px 6px 10px rgba(0, 0, 0, 0.6), inset -6px -6px 10px rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-page {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.section {
  padding: clamp(64px, 7vw, 104px) 0;
}

.section-tight {
  padding: clamp(52px, 6vw, 80px) 0;
}

.stack {
  display: grid;
  gap: 18px;
}

.card {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-out);
  border: 1px solid var(--card-border);
  padding: 24px;
}

.card.inset {
  box-shadow: var(--shadow-in);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg);
  box-shadow: var(--shadow-out);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  background: var(--bg);
  color: var(--accent);
  box-shadow: var(--shadow-out);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  box-shadow: var(--shadow-in);
  transform: translateY(0);
}

.btn.primary {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 16px 30px rgba(30, 86, 205, 0.2);
}

.btn-live {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f1c2e;
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(235,240,248,0.9));
  box-shadow:
    inset 6px 6px 10px rgba(0, 0, 0, 0.12),
    inset -6px -6px 10px rgba(255, 255, 255, 0.85);
  margin-top: 12px;
}

.btn-live:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 7px 7px 12px rgba(0, 0, 0, 0.14),
    inset -7px -7px 12px rgba(255, 255, 255, 0.9);
}

.btn-live:active {
  box-shadow:
    inset 4px 4px 8px rgba(0, 0, 0, 0.18),
    inset -4px -4px 8px rgba(255, 255, 255, 0.92);
  transform: translateY(0);
}

.project-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(235, 240, 248, 0.9));
  box-shadow: var(--shadow-out);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 12px 0 14px;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-out);
  background: var(--bg);
  margin: 12px 0 14px;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


[data-theme="dark"] .project-thumb {
  background: linear-gradient(145deg, rgba(40, 44, 52, 0.9), rgba(28, 30, 36, 0.9));
  color: var(--text);
  box-shadow: var(--shadow-in);
}

.btn-primary {
  color: var(--accent);
  background: var(--bg);
  box-shadow: var(--shadow-out);
}

.btn.secondary,
.btn-secondary {
  color: var(--muted);
  background: var(--bg);
  box-shadow: var(--shadow-out);
}

.btn.secondary:hover,
.btn-secondary:hover {
  color: var(--text);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 0;
  backdrop-filter: blur(14px);
  background: rgba(253, 248, 242, 0.94);
}

[data-theme="dark"] .site-header {
  background: rgba(17, 19, 28, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page {
  min-height: 100vh;
  margin-top: clamp(76px, 10vw, 96px);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  color: inherit;
  white-space: nowrap;
}

.logo-mark {
  width: 56px;
  height: 40px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg) url("/assets/img/dlsa-logo.webp") center/cover no-repeat;
  color: transparent;
  font-size: 0;
  font-weight: 800;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}

.nav-toggle,
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: var(--bg);
  box-shadow: var(--shadow-out);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 40px;
}

[data-theme="dark"] .theme-toggle {
  background: #232526;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-out);
}

.nav-toggle {
  order: 2;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--home-bg);
  box-shadow: var(--shadow-out);
  cursor: pointer;
  padding: 0;
  border: none;
}

.nav-toggle-bar {
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Smooth morphing transformation for is-open toggles */
.site-header.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .nav-toggle-bar:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.theme-toggle {
  order: 3;
}

.primary-nav {
  order: 4;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  width: 100%;
  flex: 1 1 auto;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: -12px;
  min-width: 220px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  background: var(--bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-out);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  z-index: 10;
}

.nav-dropdown a {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text);
}

.nav-dropdown a:hover {
  color: var(--accent);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header.is-open .nav-dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  padding: 8px 0 0 12px;
  background: transparent;
}

.header-cta,
.site-header-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-header.is-open {
  background: transparent !important;
  backdrop-filter: none !important;
}

.site-header.is-open .container {
  flex-direction: row !important;
  align-items: center !important;
  position: relative;
  z-index: 10001;
}

.site-header.is-open .nav-toggle-bar {
  background: #ffffff !important;
}

/* Full Screen Overlay Frame design */
.site-header.is-open .primary-nav {
  display: flex !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100dvh;
  min-height: 100vh;
  background: #1e56cd;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 100px 40px 40px;
  gap: 30px;
  overflow-y: auto;
  z-index: 10000;
  animation: overlay-fade 0.3s ease forwards;
}

@keyframes overlay-fade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.site-header.is-open .nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.site-header.is-open .nav-links > a,
.site-header.is-open .nav-item > a {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff !important;
  text-transform: capitalize;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
  white-space: nowrap;
}

.site-header.is-open .nav-links > a::after,
.site-header.is-open .nav-item > a::after {
  content: "";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  margin-left: 12px;
}

/* Map CSS icons based on href variables */
.site-header.is-open .nav-links a[href="/"]::after,
.site-header.is-open .nav-links a[href="index.html"]::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E"); }
.site-header.is-open .nav-links a[href*="about"]::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E"); }
.site-header.is-open .nav-links a[href*="services"]::after,
.site-header.is-open .nav-item > a::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-6 0h-4V4h4v2z'/%3E%3C/svg%3E"); }
.site-header.is-open .nav-links a[href*="portfolio"]::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM4 18V6h16v12H4z'/%3E%3C/svg%3E"); }
.site-header.is-open .nav-links a[href*="pricing"]::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 14h-2v-2h2v2zm0-4h-2V7h2v5z'/%3E%3C/svg%3E"); }
.site-header.is-open .nav-links a[href*="blog"]::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z'/%3E%3C/svg%3E"); }
.site-header.is-open .nav-links a[href*="contact"]::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 14v-2h12v2H6zm0-3V9h12v2H6zm0-3V6h12v2H6z'/%3E%3C/svg%3E"); }

.site-header.is-open .nav-item.has-dropdown .nav-dropdown {
  position: static; opacity: 1; visibility: visible; 
  box-shadow: none; border: none; background: rgba(255,255,255,0.06); 
  padding: 10px; border-radius: 12px; display: flex; flex-direction: column; gap: 10px; margin-top: 4px;
}

.site-header.is-open .nav-item.has-dropdown .nav-dropdown a {
  font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.85) !important; padding: 4px 8px;
}
/* Floating header structure clean index */
.page-hero {
  padding: clamp(108px, 12vw, 148px) 0 clamp(48px, 7vw, 82px);
}

.page-hero-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
}

.about-hero-media {
  aspect-ratio: 16 / 10;
  min-height: 320px;
  border-radius: 28px;
  box-shadow: var(--shadow-out);
  background: linear-gradient(135deg, rgba(30, 86, 205, 0.12), rgba(255, 255, 255, 0.45));
  position: relative;
  overflow: hidden;
}

.about-hero-media::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-in);
}

.about-hero-media.has-image {
  background: none;
}

.about-hero-media.has-image::after {
  display: none;
}

.about-hero-media.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.about-hero-media.has-image video,
.capability-media video {
  width: 85% !important;
  height: 85% !important;
  position: absolute;
  top: 7.5%;
  left: 7.5%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-in);
  display: block;
}

.about-hero-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-out);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  margin: 0;
  line-height: 1.1;
}

.page-hero p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 8px;
}

.filter-btn {
  border: 1px solid var(--card-border);
  background: var(--bg);
  color: var(--text);
  box-shadow: var(--shadow-out);
  border-radius: 14px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-btn.is-active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(30, 86, 205, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}


.cta-split {
  display: grid;
  gap: 24px;
  align-items: center;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 18px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.founded-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
}

.founded-card {
  display: grid;
  gap: 18px;
  padding: 28px 32px;
}

.founded-card p {
  margin: 0;
}

.founded-card .pill {
  justify-self: start;
}

.founded-media {
  min-height: 420px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
}

.list li::before {
  content: "•";
  color: var(--accent);
  font-weight: 700;
}

.price {
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: none;
  background: var(--bg);
  box-shadow: var(--shadow-in);
  color: var(--text);
  font: inherit;
}

.form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-section {
  position: relative;
}

.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
}

.contact-form-head {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.contact-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form-grid .full {
  grid-column: 1 / -1;
}

.contact-aside {
  display: grid;
  gap: 16px;
}

.contact-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.contact-meta li strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.home-footer {
  padding: 80px 0 48px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 100%);
}

.footer-shell {
  display: grid;
  gap: 24px;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--card-border);
  background: var(--bg);
  box-shadow: var(--shadow-out);
}

.footer-main {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
}

.footer-logo {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  box-shadow: var(--shadow-in);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.footer-main p,
.footer-main a,
.footer-main span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--card-border);
  padding-top: 16px;
}

@media (min-width: 900px) {
  .site-header .container {
    align-items: center;
  }

  .primary-nav {
    display: flex;
    order: 2;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: 100%;
    padding-top: 0;
    border-top: none;
  }

  .nav-links {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .site-header-cta {
    flex-wrap: nowrap;
  }

  .cta-split {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  }

  .cta-actions {
    justify-content: flex-end;
  }

  .nav-toggle {
    display: none;
  }

  .theme-toggle {
    order: 3;
    margin-left: 0;
  }
}

@media (max-width: 1100px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header .container {
    align-items: flex-start;
  }

  .primary-nav {
    width: 100%;
  }

  .page-hero-grid,
  .grid-2,
  .contact-grid,
  .founded-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-split {
    grid-template-columns: 1fr;
  }

  .about-hero-media,
  .founded-media {
    min-height: 280px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-grid .about-hero-media {
    margin: 0;
  }

  .about-hero-media {
    min-height: 220px;
    aspect-ratio: auto;
    margin-top: 8px;
    margin-bottom: 0;
  }

  .about-hero-media.has-image img {
    height: auto;
  }

  .project-thumb {
    width: calc(100% - 24px);
    margin: 12px auto 14px;
  }

  .card {
    padding: 20px;
  }

  .founded-media {
    min-height: 260px;
  }
}

@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 420px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    width: 94vw;
  }

  .site-header {
    padding: 8px 0;
  }

  .site-header .container {
    gap: 10px;
  }

  .page {
    margin-top: 72px;
  }

  .page-hero {
    padding-top: 96px;
  }

  .btn {
    width: 100%;
  }

  .site-header .container {
    flex-wrap: wrap;
  }

  .header-cta,
  .site-header-cta {
    width: 100%;
  }
}
