:root{
  --font-sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --bg: #f7f8fb;
  --surface: rgba(11,42,91,0.06);
  --surface-2: rgba(11,42,91,0.08);
  --text: rgba(12,18,32,0.92);
  --muted: rgba(12,18,32,0.68);
  --border: rgba(12,18,32,0.12);
  --shadow: 0 18px 40px rgba(12,18,32,0.16);
  --blue: #0b2a5b;
  --blue-2: #12418a;
  --gold: #d4af37;
  --green: #21c55d;
  --ring: rgba(11,42,91,0.18);
  --radius: 18px;
  --container: 1120px;
}

html[data-theme="dark"]{
  --bg: #0b1220;
  --surface: rgba(255,255,255,0.06);
  --surface-2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --border: rgba(255,255,255,0.14);
  --shadow: 0 18px 40px rgba(0,0,0,0.38);
  --ring: rgba(212,175,55,0.35);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  padding:0;
  overflow-x: hidden;
  font-family: var(--font-sans);
  background:
    radial-gradient(900px 420px at 15% -10%, rgba(18,65,138,0.45), transparent 62%),
    radial-gradient(800px 380px at 90% 5%, rgba(212,175,55,0.20), transparent 58%),
    radial-gradient(700px 320px at 30% 110%, rgba(33,197,93,0.16), transparent 62%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: none; }
img{ max-width: 100%; display:block; }

.sr-only{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}
.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background: #fff;
  color:#000;
  padding:10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 10px; outline: 3px solid var(--gold); }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(24px) saturate(180%);
  background: color-mix(in oklab, var(--bg), transparent 20%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.08);
  transition: all 300ms ease;
}
.site-header::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  pointer-events: none;
  opacity: 0.6;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  position: relative;
  width: 100%;
}
.brand{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-shrink: 0;
  transition: transform 200ms ease;
  text-decoration: none;
}
.site-nav{
  display:flex;
  align-items:center;
  gap: 8px;
  flex-wrap: nowrap;
  min-width: 0;
  justify-content: center;
  width: 100%;
}
.theme-toggle{
  position: absolute;
  right: 0;
}
.brand:hover{
  transform: translateY(-1px);
}
.brand-mark{
  width: 180px;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: contain;
  transition: all 300ms ease;
  position: relative;
  border: 2px solid var(--border);
  padding: 8px;
  background: var(--surface);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.brand-mark::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 300ms ease;
}
.brand:hover .brand-mark{
  transform: scale(1.05);
}
.brand:hover .brand-mark::before{
  opacity: 1;
}
.brand-name{ 
  display:block; 
  font-weight: 800; 
  letter-spacing: 0.3px; 
  font-size: 15px;
  background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-subtitle{ 
  display:block; 
  font-size: 11px; 
  color: var(--muted); 
  margin-top: 2px; 
  letter-spacing: 0.2px;
  font-weight: 500;
}
.brand-tagline{ 
  display:block; 
  font-size: 10px; 
  color: var(--gold); 
  margin-top: 3px; 
  letter-spacing: 0.5px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-toggle{
  display:none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 14px;
  padding: 11px 12px;
  transition: all 250ms ease;
  position: relative;
  overflow: hidden;
}
.nav-toggle::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
  opacity: 0;
  transition: opacity 250ms ease;
}
.nav-toggle:hover{
  border-color: var(--border);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.nav-toggle:hover::before{
  opacity: 1;
}
.nav-toggle[aria-expanded="true"]{
  background: var(--surface-2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
}
.nav-toggle[aria-expanded="true"]::before{
  opacity: 1;
}
.nav-toggle:focus-visible{ 
  outline: 3px solid var(--ring); 
  outline-offset: 2px; 
}
.nav-toggle-bars{
  display:block;
  width: 20px;
  height: 2.5px;
  background: currentColor;
  position: relative;
  border-radius: 2px;
  transition: all 300ms ease;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after{
  content:"";
  position:absolute;
  left:0;
  width: 20px;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
  transition: all 300ms ease;
}
.nav-toggle-bars::before{ top: -6px; }
.nav-toggle-bars::after{ top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars{
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before{
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after{
  top: 0;
  transform: rotate(-45deg);
}

.site-nav{
  display:flex;
  align-items:center;
  gap: 8px;
  flex-wrap: nowrap;
  min-width: 0;
}
.nav-link{
  padding: 11px 16px;
  border-radius: 14px;
  color: var(--muted);
  border: 1px solid transparent;
  position: relative;
  font-weight: 600;
  font-size: 15px;
  transition: all 250ms ease;
  background: transparent;
  white-space: nowrap;
}
.brand + .nav-link{
  margin-left: 50px;
}
.nav-link::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  opacity: 0;
  transition: opacity 250ms ease;
  z-index: -1;
}
.nav-link:hover{
  color: var(--text);
  border-color: var(--border);
  transform: translateY(-1px);
}
.nav-link:hover::before{
  opacity: 1;
}
.nav-link.is-active{
  color: var(--text);
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
  border-color: var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
}
.nav-link.is-active::before{
  opacity: 1;
}

.nav-dropdown{
  position: relative;
}
.nav-dropdown-toggle{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 14px;
  color: var(--muted);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  transition: all 250ms ease;
  position: relative;
  white-space: nowrap;
}
.nav-dropdown-toggle::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  opacity: 0;
  transition: opacity 250ms ease;
  z-index: -1;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle[aria-expanded="true"]{
  color: var(--text);
  border-color: var(--border);
  transform: translateY(-1px);
}
.nav-dropdown-toggle:hover::before,
.nav-dropdown-toggle[aria-expanded="true"]::before{
  opacity: 1;
}
.nav-dropdown-toggle.is-active{
  color: var(--text);
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
  border-color: var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
}
.nav-dropdown-toggle.is-active::before{
  opacity: 1;
}
.nav-dropdown-icon{
  width: 10px;
  height: 10px;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.7;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-dropdown-toggle:hover .nav-dropdown-icon,
.nav-dropdown-toggle[aria-expanded="true"] .nav-dropdown-icon{
  opacity: 1;
}
.nav-dropdown-toggle[aria-expanded="true"] .nav-dropdown-icon{
  transform: rotate(180deg);
}
.nav-dropdown-menu{
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 300px;
  max-width: 360px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25), 0 8px 16px rgba(0,0,0,0.15);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 10000;
  opacity: 0;
}
.nav-dropdown-mega{
  min-width: 600px;
  max-width: 700px;
  display: none;
  flex-direction: row;
  gap: 24px;
  padding: 20px 24px;
}
.nav-dropdown-mega.is-open{
  display: flex;
}
.nav-dropdown-section{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav-dropdown-section-title{
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  padding: 4px 12px 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 200ms ease, transform 200ms ease, display 0s;
  pointer-events: none;
}
.nav-dropdown-menu.is-open{
  display: flex;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition: opacity 200ms ease, transform 200ms ease;
}
.nav-dropdown-category{
  padding: 10px 14px 6px;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
  margin-top: 8px;
  border-top: 1px solid var(--border);
}
.nav-dropdown-category:first-child{
  margin-top: 0;
  border-top: none;
  padding-top: 6px;
}
.nav-dropdown-link{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--text);
  border: 1px solid transparent;
  transition: all 200ms ease;
  font-weight: 500;
}
.nav-dropdown-link:hover{
  background: var(--surface-2);
  border-color: var(--border);
  transform: translateX(6px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.nav-dropdown-link-icon{
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.8;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 200ms ease;
}
.nav-dropdown-link:hover .nav-dropdown-link-icon{
  opacity: 1;
}

.theme-toggle{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 0;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  min-width: 42px;
  min-height: 42px;
  transition: all 250ms ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.theme-toggle::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
  opacity: 0;
  transition: opacity 250ms ease;
}
.theme-toggle:hover{
  border-color: var(--border);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.theme-toggle:hover::before{
  opacity: 1;
}
.theme-toggle:focus-visible{ 
  outline: 3px solid var(--ring); 
  outline-offset: 2px; 
}
.theme-toggle-icon{
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,0.1));
  border: 1.5px solid var(--border);
  transition: all 300ms ease;
  position: relative;
  z-index: 1;
}
.theme-toggle:hover .theme-toggle-icon{
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
html:not([data-theme="dark"]) .theme-toggle-icon{
  background: radial-gradient(circle at 30% 30%, var(--gold), rgba(212,175,55,0.15));
  border-color: rgba(212,175,55,0.3);
}
.theme-toggle-text{ display: none; }

.nav-cta{
  padding: 11px 20px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  color: #061425;
  background: linear-gradient(135deg, var(--gold) 0%, #ffd56a 50%, var(--gold) 100%);
  background-size: 200% 100%;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 12px rgba(212,175,55,0.3), 0 2px 4px rgba(212,175,55,0.2), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 300ms ease;
}
.nav-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212,175,55,0.4), 0 4px 8px rgba(212,175,55,0.3), inset 0 1px 0 rgba(255,255,255,0.5);
  background-position: 100% 0;
}
.nav-cta:hover::before{
  opacity: 1;
}
.nav-cta:active{
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(212,175,55,0.3), inset 0 1px 2px rgba(0,0,0,0.1);
}
.nav-cta.is-active{
  background: linear-gradient(135deg, var(--gold) 0%, #ffd56a 50%, var(--gold) 100%);
  box-shadow: 0 4px 12px rgba(212,175,55,0.4), inset 0 2px 4px rgba(0,0,0,0.1);
}
.nav-cta:focus-visible{ 
  outline: 3px solid var(--ring); 
  outline-offset: 2px; 
}

.hero{
  padding: 46px 0 28px;
}
.hero.hero-compact{
  padding: 28px 0 10px;
}
.hero.hero-modern{
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero.hero-slideshow{
  padding: 0;
  min-height: 77vh;
  display: block;
}
.hero-carousel{
  position: relative;
  width: 100%;
  height: 77vh;
  min-height: 77vh;
  display: flex;
  align-items: center;
}
.hero-slides{
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1000ms ease, transform 1000ms ease;
  pointer-events: none;
}
.hero-slide.is-active{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-slide .hero-content{
  width: 100%;
}
.hero-carousel-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 300ms ease;
  font-weight: 300;
}
.hero-carousel-nav:hover{
  background: rgba(0,0,0,0.6);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}
.hero-carousel-nav:active{
  transform: translateY(-50%) scale(0.95);
}
.hero-carousel-prev{
  left: 30px;
}
.hero-carousel-next{
  right: 30px;
}
.hero-carousel-dots{
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 10px 20px;
}
.hero-carousel-dots .dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 300ms ease;
}
.hero-carousel-dots .dot:hover{
  background: rgba(255,255,255,0.6);
  transform: scale(1.2);
}
.hero-carousel-dots .dot.is-active{
  width: 32px;
  background: linear-gradient(135deg, var(--gold), #ffd56a);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 2px 12px rgba(212,175,55,0.5);
}
.hero-background{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-gradient{
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(18,65,138,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212,175,55,0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(33,197,93,0.1) 0%, transparent 60%),
    var(--bg);
}
html[data-theme="dark"] .hero-gradient{
  background: 
    radial-gradient(circle at 20% 30%, rgba(18,65,138,0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212,175,55,0.3) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(33,197,93,0.2) 0%, transparent 60%),
    var(--bg);
}
.hero-shapes{
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.shape{
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}
.shape-1{
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}
.shape-2{
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--gold), #ffd56a);
  bottom: -50px;
  right: 10%;
  animation-delay: 5s;
}
.shape-3{
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, var(--green), #21c55d);
  top: 40%;
  right: -50px;
  animation-delay: 10s;
}
.shape-4{
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(18,65,138,0.6), rgba(212,175,55,0.4));
  bottom: 20%;
  left: 5%;
  animation-delay: 15s;
}
@keyframes float{
  0%, 100%{ transform: translate(0, 0) scale(1); }
  33%{ transform: translate(30px, -30px) scale(1.1); }
  66%{ transform: translate(-20px, 20px) scale(0.9); }
}
.hero-content{
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--gold);
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 0 0 24px;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-title{
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -1px;
  font-weight: 900;
  color: var(--text);
}
.gradient-text{
  background: linear-gradient(135deg, var(--gold) 0%, var(--blue) 50%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite;
}
@keyframes gradient-shift{
  0%, 100%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
}
.hero-subtitle{
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.6;
  color: var(--muted);
  margin: 0 auto 40px;
  max-width: 700px;
  text-align: center;
}
.hero-actions{
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.btn-secondary{
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}
.btn-secondary:hover{
  background: var(--surface-2);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.hero-stats{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-item{
  text-align: center;
}
.stat-number{
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label{
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  font-weight: 700;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  margin: 0 0 14px;
}
.hero-title{
  font-size: clamp(30px, 4.0vw, 48px);
  line-height: 1.12;
  margin: 0 0 12px;
  letter-spacing: -0.6px;
}
.hero-subtitle{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 60ch;
}
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.1px;
}
.btn:focus-visible{ outline: 3px solid var(--ring); outline-offset: 2px; }
.btn-primary{
  border-color: rgba(255,255,255,0.20);
  color: #061425;
  background: linear-gradient(135deg, var(--gold), #ffd56a);
}
.btn-ghost{
  background: transparent;
}
.btn.full{ width: 100%; }

.hero-badges{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.badge{
  display:flex;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}
.badge-icon{
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: color-mix(in oklab, var(--blue), transparent 25%);
  border: 1px solid var(--border);
}
.badge-text strong{ display:block; font-size: 13px; }
.badge-text span{ display:block; font-size: 12px; color: var(--muted); margin-top: 2px; }

.carousel{
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.carousel-slides{
  position: relative;
  aspect-ratio: 14 / 10;
}
.carousel-slide{
  position:absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1), transform 1000ms cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide.is-active{
  opacity: 1;
  transform: scale(1);
}
.carousel-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.98) contrast(1.02);
  transition: filter 800ms ease;
}
.carousel-slide.is-active img{
  filter: brightness(1) contrast(1);
}
.carousel-slide figcaption{
  position:absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.1);
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 300ms ease;
}
html[data-theme="dark"] .carousel-slide figcaption{
  border: 1px solid rgba(255,255,255,0.2);
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  color: #ffffff;
}
.carousel-slide.is-active figcaption{
  transform: translateY(0);
  opacity: 1;
}
.carousel-controls{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 10px 12px;
  gap: 10px;
  border-top: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg), transparent 50%);
}
.icon-btn{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  transition: all 250ms ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-btn:hover{
  background: var(--surface-2);
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.05);
}
.icon-btn:active{
  transform: scale(0.95);
}
.icon-btn:focus-visible{ outline: 3px solid var(--ring); outline-offset: 2px; }
.carousel-dots{ display:flex; gap: 8px; }
.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg), transparent 65%);
  transition: all 300ms ease;
  cursor: pointer;
}
.dot:hover{
  transform: scale(1.2);
  background: color-mix(in oklab, var(--gold), transparent 70%);
}
.dot.is-active{
  width: 28px;
  background: linear-gradient(135deg, var(--gold), #ffd56a);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 2px 8px rgba(212,175,55,0.4);
}

.table-wrap{
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow:auto;
  box-shadow: 0 12px 26px rgba(0,0,0,0.14);
}
.compare-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.compare-table th,
.compare-table td{
  text-align: left;
  padding: 14px 14px;
  border-bottom: 1px solid var(--border);
}
.compare-table thead th{
  position: sticky;
  top: 0;
  background: color-mix(in oklab, var(--bg), transparent 35%);
  font-weight: 900;
}
.compare-table tbody th{
  font-weight: 800;
}
.compare-table td{
  color: var(--muted);
  font-weight: 700;
}

.section{ padding: 40px 0; }
.section-alt{
  background: color-mix(in oklab, var(--bg), #000 6%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-heading{
  display:flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.section-heading h2{ margin: 0; letter-spacing: -0.3px; }
.section-heading p{ margin: 0; color: var(--muted); max-width: 60ch; }
.services-heading{
  justify-content: center;
  margin-bottom: 24px;
}
.services-title{
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 900;
  letter-spacing: -1.2px;
  text-align: center;
  background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.services-intro{
  text-align: center;
  font-size: clamp(18px, 2.2vw, 20px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto 40px;
}

.cards{
  display:grid;
  gap: 14px;
}
.cards.three{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card{
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
  padding: 18px;
  display: flex;
  flex-direction: column;
}
.service-image{
  width: 100%;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  background: color-mix(in oklab, var(--bg), transparent 60%);
}
.service-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.card:hover .service-image img{
  transform: scale(1.05);
}
.card h3{
  margin-top: 0;
  margin-bottom: 10px;
}
.card-top h3{ margin: 0 0 6px; letter-spacing: -0.2px; }
.muted{ color: var(--muted); }
.lead{ font-size: 16px; color: var(--muted); }
.price{
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.currency{ font-size: 13px; font-weight: 800; color: var(--muted); }
.per{ font-size: 13px; font-weight: 800; color: var(--muted); }
.list{
  margin: 14px 0 16px;
  padding-left: 18px;
  color: var(--muted);
}
.list li{ margin: 8px 0; }
.card.popular{
  border-color: rgba(212,175,55,0.45);
  box-shadow: 0 16px 38px rgba(212,175,55,0.12), 0 14px 30px rgba(0,0,0,0.18);
}
.badge-pill{
  position:absolute;
  top: 16px;
  right: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  color: #061425;
  background: linear-gradient(135deg, var(--gold), #ffd56a);
  border: 1px solid rgba(255,255,255,0.25);
}

.grid{ display:grid; gap: 18px; }
.grid.two{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.checks{ display:grid; gap: 12px; margin-top: 14px; }
.check{
  display:flex;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}
.check-icon{
  width: 30px; height: 30px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: color-mix(in oklab, var(--green), transparent 78%);
  border: 1px solid color-mix(in oklab, var(--green), transparent 62%);
  color: #b9ffd0;
  font-weight: 900;
}
html:not([data-theme="dark"]) .check-icon{ color: #0c2b16; }

.ad-slot{
  border-radius: calc(var(--radius) + 4px);
  border: 1px dashed color-mix(in oklab, var(--border), #fff 10%);
  background: color-mix(in oklab, var(--bg), transparent 50%);
  min-height: 220px;
}
.ad-slot-inner{ padding: 18px; }
.ad-title{ margin: 0 0 6px; font-weight: 900; letter-spacing: -0.2px; }

.cta{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, color-mix(in oklab, var(--surface), transparent 30%), transparent);
  box-shadow: var(--shadow);
}
.cta h2{ margin: 0 0 6px; }
.cta p{ margin: 0; }
.cta-actions{ display:flex; gap: 10px; flex-wrap: wrap; }

.domain-strip{
  display:flex;
  gap: 10px;
  padding: 14px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 12px 26px rgba(0,0,0,0.16);
}
.input{
  flex: 1;
  min-width: 220px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg), transparent 55%);
  color: var(--text);
  padding: 12px 14px;
  font-weight: 600;
}
.input::placeholder{ color: color-mix(in oklab, var(--muted), transparent 20%); }
.input:focus-visible{
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}
.tld-row{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.tld{
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.results{
  margin-top: 18px;
  padding: 18px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  background: var(--surface);
}
.results-title{
  margin: 0 0 12px;
  letter-spacing: -0.2px;
}
.results-list{
  display:grid;
  gap: 10px;
  margin-bottom: 12px;
}
.result-item{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg), transparent 60%);
}
.result-actions{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--green), transparent 60%);
  background: color-mix(in oklab, var(--green), transparent 82%);
  color: color-mix(in oklab, var(--text), #b9ffd0 22%);
  font-weight: 900;
  font-size: 12px;
}
.pill-warn{
  border-color: color-mix(in oklab, var(--gold), transparent 55%);
  background: color-mix(in oklab, var(--gold), transparent 84%);
  color: color-mix(in oklab, var(--text), var(--gold) 30%);
}

.contact-form{
  display:grid;
  gap: 16px;
  margin-top: 18px;
}
.form-group{
  display:grid;
  gap: 8px;
}
.form-group label{
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.form-group label span{
  color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg), transparent 55%);
  color: var(--text);
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
}
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible{
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}
.form-group textarea{
  resize: vertical;
  min-height: 120px;
}
.contact-info{
  display:grid;
  gap: 20px;
  margin-top: 18px;
}
.contact-item{
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}
.contact-item strong{
  display:block;
  margin-bottom: 8px;
  font-size: 15px;
}
.contact-item p{
  margin: 6px 0;
  color: var(--muted);
}
.contact-item a{
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 3px;
}
.contact-item a:hover{
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.legal-content{
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2{
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 24px;
  letter-spacing: -0.3px;
}
.legal-content h3{
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.legal-content p{
  margin: 12px 0;
  line-height: 1.7;
}
.legal-content ul,
.legal-content ol{
  margin: 12px 0;
  padding-left: 24px;
  line-height: 1.7;
}
.legal-content li{
  margin: 8px 0;
}
.legal-content a{
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover{
  color: #ffd56a;
}
.legal-content table{
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.legal-content th,
.legal-content td{
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.legal-content th{
  background: var(--surface);
  font-weight: 700;
  font-size: 14px;
}
.legal-content tbody tr:last-child td{
  border-bottom: none;
}
.legal-content time{
  font-weight: 600;
}

.service-categories{
  display:grid;
  gap: 40px;
}
.service-category h3{
  margin: 0 0 20px;
  font-size: 24px;
  letter-spacing: -0.3px;
  color: var(--text);
}
.service-category .card h4{
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.stats-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.stat-card{
  text-align: center;
  padding: 32px 20px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}
.stat-number{
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--gold), #ffd56a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label{
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-image{
  width: 100%;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  background: color-mix(in oklab, var(--bg), transparent 60%);
  position: relative;
}
.team-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.team-card:hover .team-image img{
  transform: scale(1.08);
}
.team-card{
  text-align: center;
}

.testimonial-card{
  position: relative;
}
.testimonial-header{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.testimonial-avatar{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border);
  background: var(--surface);
}
.testimonial-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-info{
  flex: 1;
  min-width: 0;
}
.testimonial-info strong{
  display: block;
  margin-bottom: 4px;
}
.testimonial-card::before{
  content: '"';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
  font-family: Georgia, serif;
}

.faq-accordion{
  display: grid;
  gap: 12px;
}
.faq-item{
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 250ms ease;
}
.faq-item:hover{
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-color: var(--border);
}
.faq-item[aria-expanded="true"]{
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(212,175,55,0.15);
}
.faq-button{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: all 250ms ease;
  position: relative;
}
.faq-button:hover{
  background: var(--surface-2);
}
.faq-button:focus-visible{
  outline: 3px solid var(--ring);
  outline-offset: -3px;
}
.faq-question{
  flex: 1;
  color: var(--text);
  letter-spacing: -0.2px;
}
.faq-item[aria-expanded="true"] .faq-question{
  color: var(--gold);
}
.faq-icon{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item[aria-expanded="true"] .faq-icon{
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--gold), #ffd56a);
  color: #061425;
  border-color: rgba(255,255,255,0.3);
}
.faq-content{
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item[aria-expanded="true"] .faq-content{
  max-height: 500px;
}
.faq-answer{
  padding: 0 20px 20px;
  color: var(--muted);
}

.about-hero-image{
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.about-hero-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image{
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.story-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.story-image:hover img{
  transform: scale(1.05);
}

.clients-portfolio{
  margin-top: 32px;
  overflow: hidden;
  position: relative;
}
.clients-scroll{
  overflow: hidden;
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
}
.clients-scroll::before,
.clients-scroll::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.clients-scroll::before{
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.clients-scroll::after{
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
.clients-track{
  display: flex;
  gap: 40px;
  animation: scroll-clients 30s linear infinite;
  will-change: transform;
}
.clients-track:hover{
  animation-play-state: paused;
}
.client-logo{
  flex-shrink: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.client-logo a{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 300ms ease;
  width: 100%;
}
.client-logo a:hover{
  transform: translateY(-4px);
}
.client-logo img{
  width: 100%;
  height: 170px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 300ms ease;
  border-radius: 8px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.client-logo a:hover img{
  filter: grayscale(0%) opacity(1);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(212,175,55,0.15);
}
.client-name{
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  transition: color 300ms ease;
}
.client-logo a:hover .client-name{
  color: var(--gold);
}
@keyframes scroll-clients{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(calc(-200px * 7 - 40px * 7));
  }
}

@media (max-width: 980px){
  .stats-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .client-logo{
    width: 180px;
  }
  .client-logo img{
    height: 150px;
  }
  .clients-scroll{
    height: 200px;
  }
  .clients-track{
    animation-duration: 25s;
  }
}
@media (max-width: 720px){
  .stats-grid{ grid-template-columns: 1fr; }
  .service-categories{ gap: 32px; }
  .client-logo{
    width: 160px;
  }
  .client-logo img{
    height: 130px;
    padding: 12px;
  }
  .client-name{
    font-size: 12px;
  }
  .clients-track{
    animation-duration: 20s;
  }
}

.site-footer{
  border-top: 1px solid var(--border);
  padding: 34px 0 22px;
  background: color-mix(in oklab, var(--bg), #000 6%);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 18px;
}
.footer-brand{ font-weight: 900; letter-spacing: 0.2px; margin-bottom: 8px; }
.footer-title{ font-weight: 900; margin-bottom: 10px; }
.footer-links{ list-style: none; padding: 0; margin: 0; }
.footer-links li{ margin: 10px 0; }
.footer-links a{ color: var(--muted); }
.footer-links a:hover{ color: var(--text); }
.footer-bottom{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-badges{ grid-template-columns: 1fr; }
  .cards.three{ grid-template-columns: 1fr; }
  .grid.two{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .tld-row{ grid-template-columns: 1fr 1fr; }
  .hero.hero-modern{
    min-height: 80vh;
    padding: 100px 0 60px;
  }
  .hero.hero-slideshow{
    min-height: 77vh;
  }
  .hero-carousel{
    min-height: 77vh;
    height: 77vh;
  }
  .hero-stats{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .hero-carousel-nav{
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
  .hero-carousel-prev{
    left: 20px;
  }
  .hero-carousel-next{
    right: 20px;
  }
  .hero-carousel-dots{
    bottom: 30px;
    padding: 8px 16px;
  }
}
@media (max-width: 720px){
  .nav-toggle{ display:inline-flex; }
  .site-nav{
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display:none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: color-mix(in oklab, var(--bg), transparent 15%);
    border-bottom: 1px solid var(--border);
  }
  .site-nav.is-open{ display:flex; }
  .nav-cta{ text-align:center; }
  .cta{ flex-direction: column; align-items: flex-start; }
  .footer-grid{ grid-template-columns: 1fr; }
  .domain-strip{ flex-direction: column; }
  .tld-row{ grid-template-columns: 1fr; }
  .nav-dropdown{
    width: 100%;
  }
  .nav-dropdown-toggle{
    width: 100%;
    justify-content: space-between;
  }
  .nav-dropdown-menu{
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
    border: 1px solid var(--border);
  }
  .hero.hero-modern{
    min-height: 75vh;
    padding: 80px 0 50px;
  }
  .hero.hero-slideshow{
    min-height: 77vh;
  }
  .hero-carousel{
    min-height: 77vh;
    height: 77vh;
  }
  .hero-stats{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-actions{
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn{
    width: 100%;
  }
  .shape{
    filter: blur(30px);
  }
  .shape-1, .shape-2, .shape-3, .shape-4{
    width: 150px;
    height: 150px;
  }
  .hero-carousel-nav{
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  .hero-carousel-prev{
    left: 15px;
  }
  .hero-carousel-next{
    right: 15px;
  }
  .hero-carousel-dots{
    bottom: 20px;
    padding: 6px 12px;
    gap: 8px;
  }
  .hero-carousel-dots .dot{
    width: 8px;
    height: 8px;
  }
  .hero-carousel-dots .dot.is-active{
    width: 28px;
  }
}


