:root {
  /* Premium color system: deep navy with sophisticated blue accents */
  --bg: #020817;
  --surface: #0f172a;
  --card: rgba(15, 23, 42, 0.65);
  --border: rgba(148, 163, 184, 0.1);
  --text: #f8fafc;
  --muted: #94a3b8;
  --primary: #0ea5e9;
  /* sky blue */
  --primary-2: #38bdf8;
  --primary-dark: #0284c7;
  --accent: #06b6d4;
  /* cyan accent */
  --success: #10b981;

  /* Sophisticated elevation system */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.3);

  /* Refined radii */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  /* Refined spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;
  --space-10: 96px;
  --section-py: 40px;

  /* Animation curves */
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(ellipse 1400px 900px at 15% 0%, rgba(14, 165, 233, 0.08), transparent 70%),
    radial-gradient(ellipse 1000px 700px at 85% 40%, rgba(56, 189, 248, 0.05), transparent 70%),
    radial-gradient(ellipse 800px 600px at 50% 100%, rgba(6, 182, 212, 0.04), transparent 70%),
    url('../images/Background-3.png'),
    var(--bg);
  background-attachment: fixed;
  background-size: auto, auto, auto, cover, auto;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-5);
  background: linear-gradient(135deg, var(--text) 0%, rgba(248, 250, 252, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(2rem, 3.5vw + 0.5rem, 2.75rem);
  line-height: 1.15;
  margin-bottom: var(--space-5);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.25rem, 2vw + 0.25rem, 1.5rem);
  margin-bottom: var(--space-3);
  font-weight: 600;
}

p {
  margin: 0 0 var(--space-4);
  line-height: 1.75;
}

ul,
ol {
  margin: 0;
  padding-left: 1.5rem;
}

a {
  color: var(--primary-2);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }
}

.section {
  scroll-margin-top: 90px;
  position: relative;
}

.section .container>*+* {
  margin-top: var(--space-7);
}

.section .grid {
  margin-top: var(--space-6);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-1) var(--space-6);
  border-bottom: 1px solid var(--border);
  background: rgba(109, 140, 150, 0.5);
  backdrop-filter: saturate(180%) blur(10px);
  transition: all 0.3s var(--ease);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.site-header:hover::after {
  opacity: 0.4;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s var(--ease);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-logo {
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(14, 165, 233, 0.4));
  transition: filter 0.3s var(--ease);
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 0 16px rgba(14, 165, 233, 0.6));
}

.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .site-header {
    padding: var(--space-3) var(--space-4);
  }
}

.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0 var(--space-5);
  height: 48px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #0c1729;
  font-weight: 700;
  box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.25);
}

.btn-primary::before {
  background: linear-gradient(135deg, var(--primary-2) 0%, var(--accent) 100%);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(14, 165, 233, 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px 0 rgba(14, 165, 233, 0.3);
}

.btn-secondary {
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary-2);
  border: 1.5px solid rgba(14, 165, 233, 0.3);
  font-weight: 600;
}

.btn-secondary:hover {
  background: rgba(14, 165, 233, 0.18);
  border-color: rgba(14, 165, 233, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px 0 rgba(14, 165, 233, 0.15);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  font-weight: 500;
}

.btn-ghost:hover {
  border-color: rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.btn-ghost:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .btn {
    height: 44px;
    padding: 0 var(--space-4);
    font-size: 0.9rem;
  }
}

.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section.highlight {
  padding: var(--space-10) 0;
  position: relative;
  overflow: hidden;
}

.section.highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 50% 50%, rgba(14, 165, 233, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(14, 165, 233, 0.08), transparent);
  pointer-events: none;
}

.section.highlight .container {
  position: relative;
  z-index: 1;
}

.section-title {
  position: relative;
  padding-left: var(--space-4);
  margin-bottom: var(--space-6);
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-2) 50%, var(--accent) 100%);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--primary-2) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.section-title:hover::after {
  opacity: 1;
}

.grid {
  display: grid;
  gap: var(--space-6);
}

.grid.two {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

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

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

@media (max-width: 768px) {

  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .grid {
    gap: var(--space-5);
  }
}

.glass {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(24px) saturate(150%);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), transparent 50%, rgba(6, 182, 212, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  /* do not block clicks inside glass cards */
  transition: opacity 0.4s var(--ease);
}

.glass:hover {
  border-color: rgba(148, 163, 184, 0.15);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  transform: translateY(-2px);
}

.glass:hover::before {
  opacity: 1;
}

.card {
  padding: var(--space-6);
  height: 100%;
}

.media-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.media-card img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.media-card:hover img {
  transform: scale(1.05);
}

.media-card figcaption {
  padding: var(--space-5);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85));
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.list {
  display: grid;
  gap: var(--space-4);
  list-style: none;
  padding-left: 0;
}

.list li {
  position: relative;
  padding-left: var(--space-5);
  line-height: 1.7;
}

.list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

.list.badges {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
  padding-left: 0;
  list-style: none;
}

.list.badges li {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(6, 182, 212, 0.03) 100%),
    rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.list.badges li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.list.badges li::after {
  content: '';
  position: static;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-2);
  box-shadow: 0 0 8px rgba(14, 165, 233, 0.6);
  flex-shrink: 0;
}

.list.badges li:hover {
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(6, 182, 212, 0.08) 100%),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateX(4px);
}

.list.badges li:hover::before {
  opacity: 1;
}

.steps {
  display: grid;
  gap: var(--space-5);
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}

.steps li,
.steps .step {
  position: relative;
  padding-left: 60px;
  padding-top: var(--space-1);
  line-height: 1.7;
}

.steps li::before,
.steps .step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #0c1729;
  font-weight: 800;
  font-size: 1.1rem;
  font-family: "Space Grotesk", sans-serif;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
  transition: all 0.3s var(--ease);
}

.steps li:hover::before,
.steps .step:hover::before {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.6);
}

.steps li::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 45px;
  bottom: -20px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
  opacity: 0.3;
}

.steps li:last-child::after {
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: var(--space-10) 0 var(--space-9);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(0.8) contrast(1.1) brightness(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 1000px 600px at 25% 15%, rgba(14, 165, 233, 0.25), transparent 70%),
    radial-gradient(ellipse 900px 700px at 85% 50%, rgba(56, 189, 248, 0.15), transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(2, 8, 23, 0.6) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .hero-content {
  max-width: 920px;
  animation: fadeInUp 0.8s var(--ease) both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.overline {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  display: inline-block;
  position: relative;
  padding-bottom: var(--space-2);
}

.overline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(248, 250, 252, 0.85);
  margin-bottom: var(--space-6);
  max-width: 720px;
}

.hero-highlights {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  margin-top: var(--space-5);
}

.hero-highlights li {
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
  /*border: 1px solid rgba(14, 165, 233, 0.25);
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(6, 182, 212, 0.05)),
    rgba(255, 255, 255, 0.02);*/
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hero-highlights li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #0c1729;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}

.hero-highlights li:hover {
  /*border-color: rgba(14, 165, 233, 0.4);
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(6, 182, 212, 0.08)),
    rgba(255, 255, 255, 0.04);*/
  transform: translateY(-2px);
}

.cta-row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin: var(--space-6) 0 var(--space-5);
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: var(--space-8) 0 var(--space-7);
  }

  .lead {
    font-size: 1.1rem;
  }

  .hero-highlights li {
    font-size: 0.85rem;
  }
}

/* Accordion */
.accordion {
  display: grid;
  gap: var(--space-3);
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.03), rgba(6, 182, 212, 0.02)),
    rgba(255, 255, 255, 0.02);
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(12px);
}

.accordion-item:hover {
  border-color: rgba(148, 163, 184, 0.15);
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.06), rgba(6, 182, 212, 0.04)),
    rgba(255, 255, 255, 0.03);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s var(--ease);
}

.accordion-header:hover {
  color: var(--primary-2);
}

.accordion-header span {
  font-weight: 600;
  /*line-height: 0.5;*/
}

.accordion-icon {
  transition: transform 0.3s var(--ease);
  color: var(--primary);
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.1);
}

.accordion-panel {
  padding: 0 var(--space-5) var(--space-4);
  display: none;
  color: var(--muted);
  line-height: 1.75;
  animation: slideDown 0.3s var(--ease);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.accordion-item[aria-expanded="true"] {
  border-color: rgba(14, 165, 233, 0.25);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}

.accordion-item[aria-expanded="true"] .accordion-panel {
  display: block;
}

.accordion-item[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
  background: rgba(14, 165, 233, 0.2);
}

/* Contact */
.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-6);
  padding: var(--space-7);
}

.contact-info h3 {
  margin-bottom: var(--space-4);
  color: var(--text);
}

.contact-info p {
  margin-bottom: var(--space-2);
  line-height: 1.7;
}

.contact-info a {
  color: var(--primary-2);
  transition: color 0.2s var(--ease);
  font-weight: 500;
}

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

.contact-actions {
  display: flex;
  gap: var(--space-1);
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: var(--space-3);
}

.qr {
  margin-top: var(--space-1);
}

.qr a {
  display: inline-block;
  line-height: 0;
  /* remove inline gap */
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.qr img {
  display: block;
  width: 140px;
  height: auto;
  /*border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);*/
  transition: all 0.3s var(--ease);
}

.qr img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(14, 165, 233, 0.2);
}

@media (max-width: 768px) {
  .contact-card {
    grid-template-columns: 1fr;
    padding: var(--space-5);
  }
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.modal[aria-hidden="false"] {
  display: flex;
  animation: fadeIn 0.3s var(--ease);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 23, 0.85);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-7);
  animation: slideUp 0.4s var(--ease-bounce);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-content h3 {
  margin-bottom: var(--space-3);
  font-size: 1.75rem;
}

.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: all 0.2s var(--ease);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(148, 163, 184, 0.3);
  transform: rotate(90deg);
}

.form-row {
  display: grid;
  gap: var(--space-2);
  margin: var(--space-4) 0;
}

.form-row.two {
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-row label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: var(--space-1);
  display: block;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-actions {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
  flex-wrap: wrap;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: var(--space-2);
}

.form-error {
  color: #ef4444;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius);
}

@media (max-width: 768px) {
  .modal-content {
    padding: var(--space-5);
  }

  .form-row.two {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

.site-footer {
  padding: var(--space-8) 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.5));
  color: var(--muted);
  margin-top: var(--space-10);
}

.site-footer .container {
  display: flex;
  gap: var(--space-2);
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--muted);
  transition: color 0.2s var(--ease);
}

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

.sep {
  opacity: 0.4;
  margin: 0 var(--space-1);
}

/* Partners Carousel */
.partners-carousel {
  overflow: hidden;
  position: relative;
  margin-top: var(--space-6);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.partners-track {
  display: flex;
  gap: var(--space-7);
  align-items: center;
  animation: scroll-partners 25s linear infinite;
  will-change: transform;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(100%) brightness(1.2);
  transition: all 0.4s var(--ease);
  flex-shrink: 0;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}

@keyframes scroll-partners {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% / 3));
  }
}

@media (max-width: 768px) {
  .partners-track {
    gap: var(--space-5);
  }

  .partner-logo {
    height: 50px;
    max-width: 140px;
  }
}

/* Mobile header adjustments */
@media (max-width: 720px) {
  .brand-name {
    display: none;
  }
}

/* Smooth scrolling for all browsers */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Selection styling */
::selection {
  background: rgba(14, 165, 233, 0.3);
  color: var(--text);
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-dark), var(--primary));
  border-radius: 6px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
}

/* Focus visible for accessibility */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}