:root {
  --mint: #D8F7D6;
  --mint-2: #E9FCE9;
  --deep: #0A2540;
  --text: #102A43;
  --accent: #5B6BFF;
  --accent-2: #6D7CFF;
  --ink: #1F2937;
  --bg: #ffffff;
  --muted: #6B7280;
  --success: #22C55E;
  --radius: 22px;
  --shadow: 0 10px 30px rgba(16, 42, 67, .12);
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family: "Plus Jakarta Sans", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--deep);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .1px;
  box-shadow: var(--shadow);
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(16, 42, 67, .18);
  background: #17b14d
}

.btn-outline {
  background: #fff;
  color: var(--deep);
  border: 2px solid var(--deep)
}

.tag {
  display: inline-block;
  background: var(--mint);
  color: var(--deep);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .3px
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .06)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
  color: var(--deep)
}

nav a {
  margin: 0 10px;
  color: var(--deep);
  font-weight: 600
}

.hero {
  background: linear-gradient(180deg, #fff 0%, var(--mint-2) 100%);
  padding: 72px 0 48px;
  position: relative;
  overflow: hidden
}

.hero .grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center
}

h1 {
  font-weight: 900;
  color: var(--deep);
  letter-spacing: -.02em;
  margin: 0 0 12px;
  font-size: 48px;
  line-height: 1.05
}

.lead {
  font-size: 18px;
  color: #374151;
  margin: 0 0 22px
}

.mock {
  width: fit-content;
  height: fit-content;
  border-radius: 32px;
  background: linear-gradient(180deg, #0a2a40, #114b5f);
  box-shadow: 0 30px 60px rgba(16, 42, 67, .25);
  position: relative;
  overflow: hidden;
  border: 8px solid #fff;
  margin: 0 auto;
}

.mock-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  border-radius: 24px;
}

.phone-hero {
  position: absolute;
  bottom: -8%;
  right: -12%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--mint) 0%, rgba(216, 247, 214, .0) 70%);
  z-index: 0
}

.hero-card {
  background: #fff;
  border-radius: 24px;
  padding: 16px;
  position: absolute;
  left: 8%;
  top: 12%;
  box-shadow: var(--shadow)
}

.hero-badge {
  position: absolute;
  right: 8%;
  bottom: 10%;
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 800;
  color: var(--success)
}

.section {
  padding: 64px 0
}

.section.mint {
  background: var(--mint-2)
}

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

.card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow)
}

.card-img-container {
  margin: 6px auto;
  text-align: center;
  padding: 2px;
  width: fit-content;
  height: fit-content;
  display: block;
}

.card-img {
  width: auto;
  height: auto;
  max-width: 100%;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
  max-height: 400px;
}

.card h3 {
  margin: 0 0 8px
}

h2 {
  font-size: 34px;
  margin: 0 0 12px;
  color: var(--deep);
  letter-spacing: -.02em;
  text-align: center;
}

.small {
  font-size: 14px;
  color: var(--muted)
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px
}

.feature {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow)
}

.feature-section {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.feature-image-container {
  flex: 1.5;
  min-width: 300px;
}

.feature-list-container {
  flex: 1;
  min-width: 250px;
}

.feature-small {
  margin-bottom: 15px;
  padding: 12px;
}

.feature-small .feature-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.feature-small h3 {
  font-size: 1.2rem;
  margin: 0 0 6px;
}

.feature-small p {
  font-size: 0.9rem;
  margin: 0;
}

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

.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 14px;
}

.partner {
  width: 100%;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.gallery-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

footer {
  background: #0b1f33;
  color: #cbd5e1;
  padding: 48px 0 24px
}

footer a {
  color: #e2e8f0
}

.disclaimer {
  background: #0a1422;
  color: #cbd5e1;
  padding: 18px;
  border-radius: 14px;
  margin: 18px 0;
  font-size: 12px;
  line-height: 1.6
}

.kicker {
  font-weight: 800;
  color: var(--accent)
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

input,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #fff;
  outline: none
}

label {
  font-weight: 700;
  font-size: 14px
}

form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

hr.sep {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, .06);
  margin: 32px 0
}

/* Cookie Consent Popup */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 20px;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-text h3 {
  margin: 0 0 10px 0;
  color: var(--deep);
  font-size: 18px;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  flex: 1;
  min-width: 120px;
  justify-content: center;
  padding: 12px 15px;
  font-size: 14px;
}

/* Burger menu styles */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.burger-menu:focus {
  outline: none;
}

.burger-menu span {
  width: 100%;
  height: 3px;
  background: var(--deep);
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

/* Mobile navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  padding: 72px 20px 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 9;
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  padding: 15px 0;
  color: var(--deep);
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 8;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 920px) {
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  nav {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero .grid {
    grid-template-columns: 1fr
  }

  .grid-3 {
    grid-template-columns: 1fr
  }

  .features {
    grid-template-columns: 1fr
  }

  .contact-card {
    grid-template-columns: 1fr
  }

  .phone-hero {
    display: none
  }
  
  h1 {
    font-size: 36px;
  }
  
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Cookie Consent Popup Mobile */
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 15px;
  }

  .cookie-content {
    gap: 12px;
  }

  .cookie-text h3 {
    font-size: 16px;
  }

  .cookie-text p {
    font-size: 13px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .partner {
    height: 44px;
  }
}
