/* Osteo Gate — Shared Stylesheet */

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

:root {
  --primary:    #017d85;
  --primary-dk: #015f66;
  --text:       #111827;
  --muted:      #6B7280;
  --border:     #D1D5DB;
  --bg:         #FFFFFF;
  --surface:    #F9FAFB;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

/* ── Top accent bar ── */

.top-bar {
  height: 3px;
  background: var(--primary);
}

/* ── Layout ── */

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

/* ── Nav ── */

nav {
  border-bottom: none;
  padding: 16px 0;
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0;
}

.nav-logo:hover {
  text-decoration: none;
  opacity: 0.8;
}

.nav-logo-img {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.btn-nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: #ffffff;
  padding: 9px 20px;
  border-radius: 11px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  align-self: center;
  line-height: 1;
}

.btn-nav-cta:hover {
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

/* ── Hero ── */

.hero {
  padding: 8px 0 120px;
  background: var(--primary);
  position: relative;
  overflow: visible;
}

.hero .container {
  max-width: 1100px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-bg svg {
  width: 100%;
  height: 100%;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-text .store-buttons {
  justify-content: flex-start;
  flex-wrap: nowrap;
}

/* ── Phone mockups ── */

.hero-phones {
  position: relative;
  flex-shrink: 0;
  width: 420px;
  height: 520px;
  transform: translateX(-20px);
  z-index: 10;
}

.phone {
  position: absolute;
  width: 210px;
  height: 420px;
  background: #0d1b22;
  border-radius: 36px;
  border: 6px solid #1c2e38;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.phone-screen {
  position: absolute;
  inset: 0;
  background: #f0f4f4;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 8px;
  background: #0d1b22;
  border-radius: 4px;
  z-index: 2;
}

.phone-back {
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.85;
}

.phone-front {
  top: 68px;
  left: 168px;
  z-index: 2;
}

/* ── Hero wave ── */

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-wave svg {
  width: 100%;
  height: 160px;
  display: block;
}

/* ── Store buttons ── */

.store-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.12s;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.88;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-store {
  min-width: 168px;
  justify-content: center;
  gap: 10px;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.store-btn-sub {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.75;
  letter-spacing: 0.01em;
}

.store-btn-main {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.btn-apple {
  background: var(--text);
  color: #ffffff;
}

.btn-google {
  background: var(--bg);
  color: var(--text);
  border: 1.5px solid var(--border);
}

.store-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Sections ── */

section {
  padding: 36px 0;
}

section + section {
  border-top: 1px solid var(--border);
}

.hero + section {
  border-top: none;
}

.hiw-section + section {
  border-top: none;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}

.section-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.section-body {
  font-size: 15px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.65;
}

/* ── How it works steps ── */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.step {
  position: relative;
  padding-top: 16px;
  border-top: 1.5px solid var(--border);
}

.step-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.step-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── How it works (two-column) ── */

.watermark-wrapper {
  position: relative;
  overflow: hidden;
}

.watermark-wrapper::before {
  content: '';
  position: absolute;
  left: -300px;
  top: -7%;
  width: 800px;
  height: 800px;
  background: url('favicon.png') no-repeat center / contain;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}

.watermark-wrapper > * {
  position: relative;
  z-index: 1;
}

.hiw-section {
  padding: 32px 0 140px;
  position: relative;
}

.hiw-inner {
  display: flex;
  align-items: center;
  gap: 56px;
}

.hiw-visual {
  position: relative;
  flex-shrink: 0;
  width: 320px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw-circle-outer {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(1, 125, 133, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hiw-circle-inner {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(1, 125, 133, 0.13);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hiw-phone {
  position: relative;
  z-index: 2;
  width: 185px;
  height: 370px;
}

.hiw-content {
  flex: 1;
  min-width: 0;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.hiw-steps .step {
  padding-top: 14px;
  border-top: 1.5px solid var(--border);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

/* ── Audience grid ── */

.section-alt {
  background: var(--primary);
  position: relative;
  padding-bottom: 0;
}

.hiw-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  pointer-events: none;
}

.hiw-wave svg {
  width: 100%;
  height: 120px;
  display: block;
}

.section-alt-cta {
  text-align: center;
  padding: 32px 0 0;
}

.btn-contact-us {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  background: #ffffff;
  padding: 13px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-contact-us:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.section-alt-wave {
  position: relative;
  line-height: 0;
  margin-top: 16px;
}

.section-alt-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

.cta-section {
  border-top: none !important;
}

.section-alt .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.section-alt .section-title {
  color: #ffffff;
}

.section-alt .section-sub {
  color: rgba(255, 255, 255, 0.75);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.audience-col {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.audience-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.audience-intro {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 20px;
}

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  margin-bottom: 24px;
}

.audience-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.audience-list-icon {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.audience-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.15s;
}

.audience-cta:hover {
  opacity: 0.75;
  text-decoration: none;
}

/* ── Quality section ── */

.quality-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.quality-heading {
  flex: 0 0 200px;
}

.quality-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 2px;
}

.quality-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Download CTA ── */

.cta-section {
  text-align: center;
  background: var(--surface);
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.cta-inner {
  max-width: 480px;
  margin: 0 auto;
}

.cta-icon {
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.cta-title {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.cta-body {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.cta-section .btn-apple {
  background: var(--text);
  color: #ffffff;
}

.cta-section .btn-google {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

/* ── Partnership / Academy section ── */

.partnership-section {
  padding: 12px 0 28px;
  background: var(--bg);
}

.partnership-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.partnership-text {
  flex: 1;
}

.partnership-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.partnership-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 440px;
}

.partnership-logo {
  flex-shrink: 0;
  opacity: 0.75;
}

.partnership-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* ── Footer ── */

footer {
  border-top: none;
  padding: 20px 0;
  background: var(--primary);
}

footer nav {
  background: none;
  position: static;
  padding: 0;
  z-index: auto;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  font-size: 14px;
  color: #ffffff;
}

.footer-logo:hover {
  opacity: 0.8;
  color: #ffffff;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.15s;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

/* ── Legal pages ── */

.legal-header {
  padding: 52px 0 28px;
  border-bottom: 1px solid var(--border);
}

.legal-header h1 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.legal-header .updated {
  font-size: 13px;
  color: var(--muted);
}

.legal-body {
  padding: 40px 0 64px;
}

.legal-body h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 36px 0 10px;
}

.legal-body p,
.legal-body li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-body ul {
  margin: 8px 0 8px 20px;
}

.legal-body a {
  color: var(--primary);
}

/* ── Contact page ── */

.contact-page {
  padding: 64px 0 80px;
  min-height: calc(100vh - 140px);
}

.contact-page .container {
  max-width: 1100px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left column */
.contact-info {
  padding-top: 8px;
}

.contact-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.contact-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.contact-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-email-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 36px;
}

.contact-email-row:hover {
  text-decoration: underline;
}

.contact-email-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(1, 125, 133, 0.1);
  color: var(--primary);
  flex-shrink: 0;
}

.contact-topics-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-topic-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-topic-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 6px;
}

.contact-topic-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.contact-topic-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Right column — form */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  margin-top: 90px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.form-required {
  color: var(--primary);
}

.form-field input,
.form-field textarea {
  font-family: inherit;
  font-size: 13px;
  color: var(--text);
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  resize: vertical;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(1, 125, 133, 0.12);
}

.btn-send {
  align-self: flex-end;
  background: var(--primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.12s;
  letter-spacing: 0.01em;
}

.btn-send:hover {
  background: var(--primary-dk);
  transform: translateY(-1px);
  text-decoration: none;
  opacity: 1;
}

.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 32px 0;
  color: var(--primary);
}

.contact-success h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
}

.contact-success p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-error {
  font-size: 14px;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 4px;
  line-height: 1.55;
}

/* ── FAQ section ── */

.faq-section {
  padding: 64px 0 80px;
  border-top: 1px solid var(--border);
}

.faq-heading {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 36px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

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

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23017d85' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(180deg);
}

.faq-item[open] .faq-question {
  color: var(--primary);
}

.faq-answer {
  padding: 0 0 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--primary);
}

/* ── Responsive ── */

@media (max-width: 600px) {
  .hero {
    padding: 40px 0 90px;
  }

  .hero-inner {
    flex-direction: column;
    gap: 40px;
  }

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

  .hero-text .store-buttons {
    justify-content: center;
  }

  .hero-phones {
    width: 300px;
    height: 380px;
  }

  .phone {
    width: 155px;
    height: 310px;
    border-radius: 28px;
    border-width: 5px;
  }

  .phone-front {
    top: 52px;
    left: 124px;
  }

  .btn-nav-cta {
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    white-space: nowrap;
  }

  .nav-logo {
    font-size: 17px;
    gap: 7px;
  }

  .nav-logo-img {
    width: 28px;
    height: 28px;
  }

  nav .container {
    gap: 12px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .hiw-inner {
    flex-direction: column;
    gap: 36px;
  }

  .hiw-visual {
    width: 220px;
    height: 320px;
  }

  .hiw-circle-outer {
    width: 220px;
    height: 220px;
  }

  .hiw-circle-inner {
    width: 165px;
    height: 165px;
  }

  .hiw-phone {
    width: 130px;
    height: 260px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .partnership-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

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

  .quality-inner {
    flex-direction: column;
    gap: 16px;
  }

  .quality-heading {
    flex: none;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
    margin-top: 0;
  }

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

  .btn-send {
    align-self: stretch;
  }
}

/* ── Cookie banner ── */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 640px;
  background: #1a2e35;
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.cookie-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin: 0;
}

.cookie-text a {
  color: #ffffff;
  text-decoration: underline;
}

.cookie-btn {
  flex-shrink: 0;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}

.cookie-btn:hover {
  background: var(--primary-dk);
}
