﻿:root{
  --bg: #F0FEFF;
  --ink: #0b1224;
  --muted: #5f6f86;
  --blue: #2D7CC3;
  --blue-dark: #1f5f9b;
  --accent: #2fb5a7;
  --accent-dark: #1d7b73;
  --card: #ffffff;
  --card-soft: #f4f8ff;
  --surface: #fdfefe;
  --glass: rgba(255,255,255,.75);
  --border: rgba(15,23,42,.12);
  --shadow: 0 20px 50px rgba(15,23,42,.12);
  --shadow-strong: 0 28px 80px rgba(15,23,42,.18);
  --glow: 0 12px 30px rgba(45,124,195,.18);
  --bronze: #c28a63;
  --silver: #b8c0cc;
  --gold: #d6b566;
  --platinum: #7fa2c6;
  --radius: 18px;
  --font: "Sora", "Space Grotesk", "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Sora", "IBM Plex Sans", "Segoe UI", sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
html{overflow-x:hidden}
body{
  margin:0;
  font-family:var(--font);
  color:var(--ink);
  background:
    linear-gradient(180deg, #d9f3ff 0%, var(--bg) 28%, #ffffff 62%, #ffffff 100%);
  background-repeat: no-repeat;
  background-size: 100% 180vh;
  background-color: #ffffff;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after{
  content:"";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}
body::before{
  background: radial-gradient(circle, rgba(45,124,195,.45) 0%, rgba(45,124,195,0) 60%);
  top: -260px;
  left: -120px;
}
body::after{
  background: radial-gradient(circle, rgba(47,181,167,.45) 0%, rgba(47,181,167,0) 60%);
  top: -240px;
  right: -160px;
}

a{color:inherit;text-decoration:none}
.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;
}

.practice-live{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 34px;
  padding: 8px 16px;
  background: linear-gradient(90deg, #1e6fbb 0%, #2d7cc3 45%, #4ca8ff 100%);
  color: #f5fbff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 8px 20px rgba(45,124,195,.18);
  position: relative;
  z-index: 11;
}

.practice-live__dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dff8ff;
  box-shadow: 0 0 0 0 rgba(223,248,255,.75);
  animation: practiceLivePulse 1.8s ease-out infinite;
  flex: 0 0 auto;
}

.practice-live__text{
  text-align: center;
}

@keyframes practiceLivePulse{
  0%{ box-shadow: 0 0 0 0 rgba(223,248,255,.75); opacity: 1; }
  70%{ box-shadow: 0 0 0 10px rgba(223,248,255,0); opacity: .9; }
  100%{ box-shadow: 0 0 0 0 rgba(223,248,255,0); opacity: .8; }
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 84px;
  padding: 0;
  position: sticky;
  top: 0;
  background: #F0F9FF;
  backdrop-filter: blur(12px);
  border-bottom: 0;
  z-index: 10;
  box-shadow: 0 10px 40px rgba(123,192,255,.25);
  max-width: 100%;
}

.logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0;
  line-height: 0;
  width: 204px;
  height: 36px;
  max-width: 100%;
}

.logo__img{
  width: 204px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo__img-inner{
  width: 204px;
  height: 48px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.navlinks{
  display:flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  min-width: 0;
}

.langselect{
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--ink);
  padding: 0 10px;
  font-weight: 600;
}

.iconbtn{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--ink);
  display:grid;
  place-items:center;
  cursor:pointer;
}
.iconbtn:hover{filter: brightness(0.97)}
.iconbtn svg{width:18px;height:18px;fill: currentColor}
.iconbtn img{width:18px;height:18px;display:block}

.navlinks a:hover{color: var(--blue)}

.navactions{display:flex; gap: 10px; align-items:center}

.navmenu{
  position: relative;
  display: none;
}

.navmenu__btn{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 4px;
}

.navmenu__bar{
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display:block;
}

.navmenu__panel{
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(280px, calc(100vw - 24px));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15,23,42,.18);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.navmenu__panel[hidden]{
  display:none;
}

.navmenu__links{
  display: grid;
  gap: 8px;
}

.navmenu__links a{
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 600;
}

.navmenu__links a:hover{
  background: rgba(15,23,42,.06);
}

.navmenu__actions{
  border-top: 1px solid var(--border);
  padding-top: 10px;
  display: grid;
  gap: 8px;
}

html[dir="rtl"] .navmenu__panel{
  right: auto;
  left: 0;
}

html[dir="rtl"] .navmenu__links a{
  text-align: right;
}

html[dir="rtl"] .navactions{
  margin-left: auto;
  margin-right: 0;
  flex-direction: row;
}

html[dir="rtl"] .navmenu{
  order: -1;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

html[dir="rtl"] .langselect{
  order: 2;
}

html[dir="rtl"] #themeToggle{
  order: 1;
}

html[dir="rtl"] .navactions .navicon{
  order: 3;
}

html[dir="rtl"] .logo{
  margin-left: auto;
}

.navicon{
  gap: 8px;
}
.navicon__img{
  width: 18px;
  height: 18px;
  display:block;
}
.navicon__label{display:inline}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 14px;
}
.btn.disabled{
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}

.btn.primary{
  background:
    linear-gradient(90deg, rgba(255,255,255,.5), rgba(255,255,255,.2) 45%, transparent 85%),
    linear-gradient(135deg, rgba(0,0,0,.28), transparent 60%),
    var(--blue);
  border-color: rgba(45,124,195,.65);
  color: #ffffff;
}

.btn.primary:hover{
  background:
    linear-gradient(90deg, rgba(255,255,255,.6), rgba(255,255,255,.24) 45%, transparent 85%),
    linear-gradient(135deg, rgba(0,0,0,.32), transparent 60%),
    var(--blue-dark);
}
.btn.ghost{background: transparent}

.hero{
  padding: 64px 24px 40px;
  position: relative;
  z-index: 1;
}

.hero__content{
  max-width: 960px;
  margin: 0 auto;
  text-align:center;
  background: var(--glass);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: calc(var(--radius) + 8px);
  padding: 40px 40px 32px;
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
  animation: heroIn .6s ease both;
}

.hero-logo{
  display:flex;
  justify-content:center;
  align-items:center;
  margin: 10px auto 12px;
  width: min(520px, 82vw);
  height: 120px;
  overflow: hidden;
}

.hero-logo img{
  width: 100%;
  height: 160px;
  display: block;
  object-fit: cover;
  object-position: center 40%;
}

.hero__content::before{
  content:"";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,181,167,.25) 0%, rgba(47,181,167,0) 65%);
  pointer-events: none;
}

.eyebrow{
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
}

h1{
  margin: 16px 0 8px;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  text-transform: lowercase;
  font-family: var(--font-display);
}

.hero p{
  color: var(--muted);
  margin: 0 auto 24px;
  max-width: 540px;
}

.cta{padding: 14px 22px; font-size: 15px}

#heroCta{
  position: relative;
  overflow: visible;
  padding: 22px 48px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: .01em;
  border-radius: 12px;
  margin: 14px auto 22px;
  border: 1px solid rgba(111, 233, 255, .95);
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.32), rgba(255,255,255,0) 40%),
    linear-gradient(135deg, #00c8ff 0%, #2d7cc3 45%, #1a4f86 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.2) inset,
    0 14px 36px rgba(45,124,195,.48),
    0 0 28px rgba(0,200,255,.5);
  transform: translateY(0) scale(1);
  animation: heroCtaPulse 2s ease-in-out infinite;
}

#heroCta::after{
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 14px;
  border: 1px solid rgba(111, 233, 255, .45);
  opacity: .8;
  animation: heroCtaRing 2s ease-out infinite;
  pointer-events: none;
}

#heroCta:hover,
#heroCta:focus-visible{
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.28) inset,
    0 18px 44px rgba(45,124,195,.56),
    0 0 40px rgba(0,200,255,.62);
}

@keyframes heroCtaPulse{
  0%,100%{ box-shadow: 0 0 0 1px rgba(255,255,255,.2) inset, 0 14px 36px rgba(45,124,195,.48), 0 0 28px rgba(0,200,255,.5); }
  50%{ box-shadow: 0 0 0 1px rgba(255,255,255,.26) inset, 0 20px 52px rgba(45,124,195,.58), 0 0 54px rgba(0,200,255,.7); }
}

@keyframes heroCtaRing{
  0%{ transform: scale(1); opacity: .8; }
  100%{ transform: scale(1.08); opacity: 0; }
}

.hero__options{
  margin-top: 32px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.hero__options .card{
  animation: fadeUp .5s ease both;
}
.hero__options .card:nth-child(2){animation-delay: .08s}

.card{
  background: var(--card-soft);
  border-radius: var(--radius);
  border: 0.5px solid rgba(15,23,42,.11);
  padding: 18px;
  text-align:left;
  box-shadow:
    0 10px 22px rgba(15,23,42,.11),
    0 1px 0 rgba(255,255,255,.7) inset;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}

.card::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(6,24,44,.65), rgba(6,24,44,.25));
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 0;
}

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

#practiceCard,
#examCard{
  background-size: cover;
  background-position: center;
  color: #fff;
}

#practiceCard::before,
#examCard::before{
  opacity: .92;
}

#practiceCard .card__title,
#examCard .card__title,
#practiceCard .card__sub,
#examCard .card__sub{
  text-shadow: 0 2px 10px rgba(6,24,44,.55);
}

#practiceCard .card__sub,
#examCard .card__sub{
  color: rgba(255,255,255,.85);
}

#practiceCard .btn.ghost,
#examCard .btn.ghost{
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.45);
  color: #fff;
}

#practiceCard .btn.ghost:hover,
#examCard .btn.ghost:hover{
  background: rgba(255,255,255,.28);
}

#practiceCard::after,
#examCard::after{
  display: none;
}

#practiceCard{
  background-image: url("https://pub-8b51270c11b14ea4b98b754c3dceeb42.r2.dev/website_images/practice.jpg");
}

#examCard{
  background-image: url("https://pub-8b51270c11b14ea4b98b754c3dceeb42.r2.dev/website_images/exam.jpg");
}

.card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(15,23,42,.14);
}

.card::after{
  display: none;
}

.card__title{font-weight: 700; margin-bottom: 6px}
.card__sub{color: var(--muted); font-size: 14px}
.card__actions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.card.disabled{
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.hint{
  margin-top: 14px;
  color: var(--blue-dark);
  font-weight: 600;
}

.section{
  padding: 40px 24px;
  position: relative;
  z-index: 1;
}

.section.alt{
  background: transparent;
}

.section__wrap{
  max-width: 960px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 26px 28px;
  box-shadow: var(--shadow);
}

.section h2{
  margin: 0 0 8px;
  font-size: 26px;
  font-family: var(--font-display);
  letter-spacing: .02em;
}

.section p{color: var(--muted); margin: 0}

.bundle-section{
  margin-top: 24px;
}
.bundle-section h3{
  margin: 0 0 12px;
  font-size: 18px;
  font-family: var(--font-display);
  letter-spacing: .02em;
}
.bundle-grid{
  display:flex;
  flex-wrap: wrap;
  justify-content:center;
  gap: 18px;
}
.bundle-card{
  background: var(--card-soft);
  border-radius: var(--radius);
  border: 0.5px solid rgba(15,23,42,.11);
  box-shadow: 0 16px 30px rgba(15,23,42,.10);
  display:flex;
  flex-direction:column;
  gap: 10px;
  flex: 1 1 210px;
  max-width: 240px;
  min-height: 400px;
  transition: transform .2s ease, box-shadow .2s ease;
  animation: bundleFade .5s ease both;
  will-change: transform, box-shadow;
  position: relative;
  overflow: hidden;
  --bundle-head: #2d7cc3;
}
 
.bundle-card:hover{
  transform: translate3d(0, -3px, 0);
  box-shadow: 0 18px 36px rgba(15,23,42,.14);
}
.bundle-card__head{
  padding: 16px 18px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255,255,255,.38), rgba(255,255,255,.14) 45%, transparent 80%),
    linear-gradient(135deg, rgba(0,0,0,.22), transparent 60%),
    var(--bundle-head);
  display:flex;
  flex-direction: column;
  text-align: center;
  gap: 4px;
  border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
  position: relative;
}
.bundle-card__ribbon{
  position: absolute;
  top: 14px;
  right: -46px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.35), rgba(255,255,255,0) 45%),
    linear-gradient(135deg, #1f9fe0, #176bb5 60%, #0f4b87);
  color: #ffffff;
  padding: 6px 58px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: rotate(30deg);
  box-shadow: 0 8px 16px rgba(15,23,42,.18);
  white-space: nowrap;
  text-align: center;
}
.is-rtl .bundle-card__ribbon{
  right: auto;
  left: -46px;
  transform: rotate(-30deg);
}
.bundle-card__ribbon--recommended{
  background:
    linear-gradient(120deg, rgba(255,255,255,.35), rgba(255,255,255,0) 45%),
    linear-gradient(135deg, #34d399, #22c55e 60%, #15803d);
}
.bundle-card__ribbon::after{
  content:"";
  position:absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.25), transparent 55%);
  mix-blend-mode: screen;
  opacity: .7;
  pointer-events: none;
}
.bundle-card__ribbon--recommended{
  background:
    linear-gradient(120deg, rgba(255,255,255,.35), rgba(255,255,255,0) 45%),
    linear-gradient(135deg, #34d399, #22c55e 60%, #15803d);
}
.bundle-card__price-old{
  position: relative;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  color: rgba(100,116,139,.85);
  padding: 2px 4px;
}
.bundle-card__price-old::after{
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  height: 2px;
  background: #ef4444;
  transform: rotate(-12deg);
  transform-origin: center;
}
.bundle-card--duration .bundle-card__head{
  background:
    linear-gradient(90deg, rgba(255,255,255,.5), rgba(255,255,255,.2) 45%, transparent 85%),
    linear-gradient(135deg, rgba(0,0,0,.28), transparent 60%),
    var(--bundle-head);
}
.bundle-card__title{
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .02em;
  font-family: var(--font-display);
}
.bundle-card__subtitle{
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .85;
}
.bundle-card__list{
  margin: 0;
  padding: 12px 18px 8px;
  color: var(--ink);
  font-size: 14px;
  display:grid;
  gap: 10px;
  list-style: none;
}
.bundle-card__list li{
  display:flex;
  align-items:center;
  gap: 10px;
  line-height: 1.4;
}
.bundle-icon{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  opacity: .85;
}
.bundle-card__footer{
  margin-top: auto;
  padding: 12px 18px 16px;
  border-top: 1px solid rgba(15,23,42,.16);
  display:flex;
  flex-direction: column;
  align-items: stretch;
  justify-content:flex-start;
  gap: 10px;
  background: var(--card-soft);
  border-radius: 0 0 calc(var(--radius) - 2px) calc(var(--radius) - 2px);
}
.bundle-card__price{
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
}
.bundle-card__price-sub{
  font-size: 11px;
  color: var(--muted);
}
.price-amount{
  display: inline-flex;
  align-items: flex-start;
  gap: 2px;
  font-weight: 700;
  color: var(--ink);
}
.price-euros{
  font-size: 14px;
  line-height: 1;
}
.price-cents{
  font-size: 9px;
  line-height: 1;
  transform: translateY(-2px);
  opacity: .9;
}
.bundle-card__actions{
  display:flex;
  gap: 10px;
  width: 100%;
  margin-top: auto;
}
.bundle-card__actions .btn{
  width: 100%;
  justify-content:center;
}
.bundle-card--bronze{--bundle-head: #b77752}
.bundle-card--silver{--bundle-head: #a7b0bf}
.bundle-card--gold{--bundle-head: #caa449}
.bundle-card--platinum{--bundle-head: #6f91b8}
.bundle-card--day{--bundle-head: #0a5b75}
.bundle-card--3days{--bundle-head: #0b89c6}
.bundle-card--7days{--bundle-head: #8b2bbd}
.bundle-card--14days{--bundle-head: #7a59c2}
.bundle-card--month{--bundle-head: #4aa45a}
.bundle-card.pass{border-color: rgba(22,163,74,.55)}
.bundle-card.fail{border-color: rgba(239,68,68,.55)}

.page{
  padding: 0 0 40px;
}
.page-hero{
  padding: 56px 24px 24px;
}
.page-hero__content{
  max-width: 980px;
  margin: 0 auto;
  background: var(--glass);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: calc(var(--radius) + 6px);
  padding: 32px 36px;
  box-shadow: var(--shadow-strong);
}
.page-hero h1{
  margin-top: 10px;
  text-transform: none;
}
.stat-row{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.stat-card{
  background: var(--card-soft);
  border: 0.5px solid rgba(15,23,42,.10);
  border-radius: 14px;
  padding: 12px 14px;
  text-align:center;
  box-shadow:
    0 8px 18px rgba(15,23,42,.08),
    0 1px 0 rgba(255,255,255,.68) inset;
}
.stat-card__value{
  font-weight: 800;
  font-size: 20px;
}
.stat-card__label{
  color: var(--muted);
  font-size: 12px;
}
.split{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items:start;
}
.info-list{
  margin: 14px 0 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  display:grid;
  gap: 8px;
}
.split__panel{
  display:grid;
  gap: 12px;
}
.panel-card{
  border-radius: 14px;
  border: 0.5px solid rgba(15,23,42,.10);
  padding: 16px;
  background: var(--card-soft);
  box-shadow:
    0 9px 20px rgba(15,23,42,.08),
    0 1px 0 rgba(255,255,255,.68) inset;
}
.panel-card__title{
  font-weight: 800;
  margin-bottom: 6px;
}
.feature-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.feature-card{
  border-radius: 16px;
  border: 0.5px solid rgba(15,23,42,.10);
  padding: 16px;
  background: var(--card-soft);
  box-shadow:
    0 9px 20px rgba(15,23,42,.08),
    0 1px 0 rgba(255,255,255,.68) inset;
}
.feature-card__title{
  font-weight: 800;
  margin-bottom: 6px;
}
.feature-card__desc{color: var(--muted); font-size: 14px}

.faq-list{
  display:grid;
  gap: 12px;
}
.faq-item{
  border-radius: 14px;
  border: 0.5px solid rgba(15,23,42,.10);
  background: var(--card-soft);
  box-shadow:
    0 8px 18px rgba(15,23,42,.08),
    0 1px 0 rgba(255,255,255,.68) inset;
  padding: 12px 16px;
}
.faq-item summary{
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item p{
  margin: 10px 0 0;
  color: var(--muted);
}

.contact-grid{
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}
.contact-info{
  display:grid;
  gap: 12px;
}
.info-card{
  border-radius: 14px;
  border: 0.5px solid rgba(15,23,42,.10);
  padding: 14px 16px;
  background: var(--card-soft);
  box-shadow:
    0 8px 18px rgba(15,23,42,.08),
    0 1px 0 rgba(255,255,255,.68) inset;
}
.contact-hero-card{
  background:
    linear-gradient(135deg, rgba(6,24,44,.65), rgba(6,24,44,.2)),
    url("https://pub-8b51270c11b14ea4b98b754c3dceeb42.r2.dev/website_images/contact.jpg") center/cover no-repeat;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 18px 36px rgba(15,23,42,.18);
}
.contact-hero-card .eyebrow,
.contact-hero-card h1,
.contact-hero-card p{color: #ffffff}
.info-card__title{font-weight: 800; margin-bottom: 6px}
.info-card__value{color: var(--muted)}
.contact-form{
  border-radius: 16px;
  border: 0.5px solid rgba(15,23,42,.10);
  padding: 18px;
  background: var(--card-soft);
  box-shadow:
    0 10px 22px rgba(15,23,42,.10),
    0 1px 0 rgba(255,255,255,.68) inset;
  display:grid;
  gap: 14px;
}
.form-row{
  display:grid;
  gap: 6px;
}
.form-row label{font-weight: 700; font-size: 13px}
.form-row input,
.form-row textarea{
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 10px 12px;
  font-family: var(--font);
  font-size: 14px;
  background: #ffffff;
  color: var(--ink);
}
.form-row input:focus,
.form-row textarea:focus{
  outline: 2px solid rgba(45,124,195,.25);
  border-color: rgba(45,124,195,.4);
}

.footer{
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: #f6f8fb;
  position: relative;
  z-index: 1;
}
.footer--rich{
  padding: 36px 28px 24px;
}
.footer__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer__col{
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.footer__title{
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer__list{
  display:grid;
  gap: 8px;
  font-size: 14px;
}
.footer__list a{color: var(--muted)}
.footer__text{font-size: 14px; color: var(--muted); line-height: 1.5}
.footer__social{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-pill{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display:grid;
  place-items:center;
  color: var(--ink);
  background: #ffffff;
  font-weight: 700;
  font-size: 11px;
  overflow: hidden;
}
.social-pill img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.footer__apps{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.app-badge{
  height: 42px;
  width: auto;
  display: block;
}
.footer__payments{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pay-pill{
  height: 28px;
  width: 48px;
  display: block;
  object-fit: contain;
}
.footer__bottom{
  border-top: 1px solid var(--border);
  margin-top: 28px;
  padding-top: 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.footer__links{display:flex; gap: 14px}

@keyframes heroIn{
  from{opacity: 0; transform: translateY(10px)}
  to{opacity: 1; transform: translateY(0)}
}

@keyframes fadeUp{
  from{opacity: 0; transform: translateY(8px)}
  to{opacity: 1; transform: translateY(0)}
}

@keyframes bundleFade{
  from{opacity: 0}
  to{opacity: 1}
}

@media (max-width: 820px){
  .nav{
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }
  .logo{order: 1}
  .navactions{
    order: 2;
    margin-left: auto;
    width: auto;
    justify-content:flex-end;
    flex-wrap: wrap;
  }
  .navlinks{
    display:none;
  }
  .navactions .navicon{
    display:none;
  }
  .navmenu{
    display:block;
  }
  .hero{padding-top: 44px}
  .hero__content{text-align:left; padding: 32px 26px 26px}
  .hero__options{grid-template-columns: 1fr}
  .cta{width: 100%}
  .hero .btn{width: 100%}
  .bundle-grid{
    flex-direction: column;
    align-items: stretch;
  }
  .bundle-card{
    max-width: 100%;
    min-height: auto;
    flex: 0 0 auto;
  }
  .footer__grid{grid-template-columns: 1fr}
  .footer__bottom{align-items:flex-start}
  .split{grid-template-columns: 1fr}
  .contact-grid{grid-template-columns: 1fr}
}

@media (max-width: 520px){
  .nav{
    height: 72px;
    padding: 0;
  }
  .logo{
    width: clamp(120px, 36vw, 156px);
    height: 32px;
    flex: 0 1 auto;
  }
  .logo__img{
    width: 100%;
    height: 40px;
  }
  .logo__img-inner{
    width: 100%;
    height: 40px;
  }
  .navactions{
    flex: 0 0 auto;
  }
  .hero{padding-top: 40px}
  .footer--rich{padding: 28px 18px 20px}
}

@media (max-width: 900px){
  .navactions{justify-content:flex-end}
  .navicon{
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 12px;
    justify-content:center;
  }
  .navicon__label{
    position:absolute;
    width:1px;height:1px;
    padding:0;margin:-1px;
    overflow:hidden;clip:rect(0,0,0,0);
    white-space:nowrap;border:0;
  }
}

@media (max-width: 420px){
  .navlinks{
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer__links{flex-direction: column; align-items:flex-start}
}

@media (prefers-reduced-motion: reduce){
  .hero__content,
  .hero__options .card,
  .bundle-card{
    animation: none;
  }
}

@media (orientation: landscape) and (max-height: 520px){
  .nav{
    padding: 12px 18px;
  }
  .navlinks{
    font-size: 12px;
    gap: 10px;
  }
  .hero{
    padding: 36px 18px 28px;
  }
  .hero__content{max-width: 820px}
  .hero p{max-width: 620px}
  .hero__options{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .section{padding: 28px 18px}
  .footer{padding: 18px 18px 28px}
}

body.theme-dark{
  --bg: #0f172a;
  --ink: #e5e7eb;
  --muted: #94a3b8;
  --card: #0b1224;
  --card-soft: #141f36;
  --surface: #0b1326;
  --glass: rgba(8,12,24,.8);
  --border: rgba(255,255,255,.10);
  --shadow: 0 20px 50px rgba(0,0,0,.35);
  --shadow-strong: 0 30px 80px rgba(0,0,0,.45);
}

body.theme-dark{
  background: #0f172a;
}
body.theme-dark .nav{
  background: rgba(10,16,32,.75);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 28px rgba(0,0,0,.4);
}
body.theme-dark .card{
  background: var(--card-soft);
  border: 0.5px solid rgba(148,163,184,.16);
  box-shadow:
    0 10px 22px rgba(0,0,0,.28),
    0 1px 0 rgba(255,255,255,.035) inset;
}
body.theme-dark .section.alt{background: linear-gradient(180deg, rgba(16,26,51,.85), rgba(15,23,42,0))}
body.theme-dark .footer{
  background: #0b1224;
  border-top: 1px solid rgba(255,255,255,.08);
}
body.theme-dark .footer__title{color: #e5e7eb}
body.theme-dark .social-pill{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: #e5e7eb;
}
body.theme-dark .footer__bottom{
  border-top: 1px solid rgba(255,255,255,.08);
}
body.theme-dark .iconbtn{background: rgba(255,255,255,.06); color: #e5e7eb}
body.theme-dark .langselect{
  background: rgba(255,255,255,.06);
  color: #e5e7eb;
  border: 1px solid rgba(255,255,255,.10);
}
body.theme-dark .hero__content{
  background: rgba(10,16,32,.75);
  border-color: rgba(255,255,255,.08);
}
body.theme-dark .section__wrap{
  background: #0b1326;
  border-color: rgba(255,255,255,.08);
}
body.theme-dark .page-hero__content{
  background: rgba(10,16,32,.75);
  border-color: rgba(255,255,255,.08);
}
body.theme-dark .stat-card,
body.theme-dark .panel-card,
body.theme-dark .feature-card,
body.theme-dark .faq-item,
body.theme-dark .info-card,
body.theme-dark .contact-form{
  background: var(--card-soft);
  border: 0.5px solid rgba(148,163,184,.15);
  box-shadow:
    0 9px 20px rgba(0,0,0,.25),
    0 1px 0 rgba(255,255,255,.03) inset;
}
body.theme-dark .form-row input,
body.theme-dark .form-row textarea{
  background: rgba(255,255,255,.04);
  color: #e5e7eb;
  border-color: rgba(255,255,255,.10);
}

html[dir="rtl"] body{direction: rtl}
html[dir="rtl"] .nav{flex-direction: row}
html[dir="rtl"] .navlinks{flex-direction: row-reverse}
html[dir="rtl"] .navactions{flex-direction: row-reverse}
.access-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 200;
}
.access-modal{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: min(420px, calc(100vw - 24px));
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 210;
}
.access-modal__head{
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-weight: 800;
}
.access-modal__body{
  padding: 12px 14px;
  color: var(--muted);
  white-space: pre-line;
}
.access-modal__actions{
  padding: 12px 14px 14px;
  display:flex;
  gap: 10px;
  justify-content:flex-end;
  border-top: 1px solid var(--border);
}
body.theme-dark .bundle-card{
  background: var(--card-soft);
  border: 0.5px solid rgba(148,163,184,.15);
  box-shadow: 0 16px 30px rgba(0,0,0,.28);
}
body.theme-dark .bundle-card__footer{
  border-top: 1px solid rgba(148,163,184,.18);
  background: var(--card-soft);
}
body.theme-dark .bundle-card__price{color: #e5e7eb}
body.theme-dark .bundle-card__list{color: #e6e2f2}

/* Shared smoothing for non-home public pages (exclude admin) */
.landing:not(.landing--home):not(.admin) .page-hero__content{
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 26px 8px 18px;
}

.landing:not(.landing--home):not(.admin) .section__wrap{
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 16px 6px 8px;
}

.landing:not(.landing--home):not(.admin) .page-hero p,
.landing:not(.landing--home):not(.admin) .section p{
  max-width: 760px;
  line-height: 1.72;
  text-align: left;
}

.landing:not(.landing--home):not(.admin) .section h1,
.landing:not(.landing--home):not(.admin) .section h2,
.landing:not(.landing--home):not(.admin) .section h3,
.landing:not(.landing--home):not(.admin) .page-hero h1,
.landing:not(.landing--home):not(.admin) .page-hero h2,
.landing:not(.landing--home):not(.admin) .page-hero h3{
  text-align: left;
}

html[dir="rtl"] .landing:not(.landing--home):not(.admin) .page-hero p,
html[dir="rtl"] .landing:not(.landing--home):not(.admin) .section p,
html[dir="rtl"] .landing:not(.landing--home):not(.admin) .section h1,
html[dir="rtl"] .landing:not(.landing--home):not(.admin) .section h2,
html[dir="rtl"] .landing:not(.landing--home):not(.admin) .section h3,
html[dir="rtl"] .landing:not(.landing--home):not(.admin) .page-hero h1,
html[dir="rtl"] .landing:not(.landing--home):not(.admin) .page-hero h2,
html[dir="rtl"] .landing:not(.landing--home):not(.admin) .page-hero h3{
  text-align: right;
}

body.theme-dark.landing:not(.landing--home):not(.admin) .page-hero__content,
body.theme-dark.landing:not(.landing--home):not(.admin) .section__wrap{
  background: transparent;
  border: 0;
}

/* Home-page-only smoothing: keep cards, soften large text containers */
.landing--home .hero__content{
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 24px 14px 22px;
  overflow: visible;
  text-align: center;
}

.landing--home .hero__content::before{
  display: none;
}

.landing--home .hero-logo{
  margin-bottom: 16px;
}

.landing--home #heroGreeting{
  margin: 0 auto 10px;
  max-width: max-content;
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.25;
  color: var(--ink);
  font-weight: 700;
  text-align: center;
}

.landing--home #heroWelcome{
  margin: 0 auto 16px;
  max-width: max-content;
  line-height: 1.75;
  font-size: 16px;
  color: var(--ink);
  opacity: .86;
  text-align: left;
}

.landing--home #heroDesc{
  margin: 0 auto 22px;
  max-width: max-content;
  font-size: 15px;
  line-height: 1.65;
  text-align: left;
}

.landing--home #heroWelcome:empty,
.landing--home #heroDesc:empty{
  display: none;
}

.landing--home #bundles.section.alt{
  background: transparent;
}

.landing--home #bundles .section__wrap{
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 12px 6px 8px;
}

.landing--home #bundlesTitle{
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 8px;
}

.landing--home #bundlesText{
  max-width: 700px;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}

html[dir="rtl"] .landing--home .hero__content{
  text-align: center;
}

html[dir="rtl"] .landing--home #heroGreeting{
  text-align: center;
}

html[dir="rtl"] .landing--home #heroWelcome,
html[dir="rtl"] .landing--home #heroDesc{
  text-align: right;
}

body.theme-dark.landing--home .hero__content{
  background: transparent;
  border: 0;
}

body.theme-dark.landing--home #bundles.section.alt{
  background: transparent;
}

body.theme-dark.landing--home #bundles .section__wrap{
  background: transparent;
  border: 0;
}
body.theme-dark .bundle-icon{opacity: .9}

@media (prefers-reduced-motion: reduce){
  #heroCta,
  #heroCta::after{
    animation: none;
  }
}
