@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800&display=swap');

:root {
  --blue-primary: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-darker: #1e40af;
  --blue-light: rgba(37, 99, 235, 0.13);
  --blue-lighter: rgba(37, 99, 235, 0);
  --blue-glow: rgba(37, 99, 235, 0.28);
  --dark-900: #0f172a;
  --dark-800: #1e293b;
  --dark-700: #334155;
  --light-100: #f8fafc;
  --light-200: #f1f5f9;
  --light-300: #e2e8f0;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-light: #94a3b8;
  --white: #ffffff;
  --border: rgba(37, 99, 235, 0.14);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 16px rgba(37,99,235,0.11);
  --shadow-lg: 0 8px 32px rgba(37,99,235,0.17);
  --shadow-xl: 0 16px 56px rgba(37,99,235,0.22);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --header-height: 72px;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

main { flex: 1; padding-top: var(--header-height); }

img { max-width: 100%; display: block; }

a { color: var(--blue-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--blue-dark); }

ul { list-style: none; }

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

/* ─── HEADER ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(37, 99, 235, 0.18);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(15, 23, 42, 0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 50px;
  width: auto;
  display: block;
  border-radius: 6px;
}
.logo-img-dark {
  mix-blend-mode: screen;
  opacity: 0.92;
}
.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  font-family: "Orbitron", sans-serif;
  text-shadow: 0 0 18px rgba(0, 227, 227, 0.45);
  line-height: 1;
}
.logo-text2 {
  font-size: 22px;
  font-weight: 700;
  color: #00E3E3;
  letter-spacing: 2px;
  font-family: "Orbitron", sans-serif;
  text-shadow: 0 0 18px rgba(0, 227, 227, 0.6);
  line-height: 1;
}
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: white;
  background: rgba(37, 99, 235, 0.22);
}

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  border: none; text-decoration: none; white-space: nowrap;
  font-family: inherit;
}
.btn-primary {
  background: var(--blue-primary); color: white;
  box-shadow: 0 4px 14px var(--blue-glow);
}
.btn-primary:hover {
  background: var(--blue-dark); color: white;
  transform: translateY(-1px); box-shadow: 0 6px 22px var(--blue-glow);
}
.btn-outline {
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1); color: white;
  border-color: rgba(255,255,255,0.5); transform: translateY(-1px);
}
.btn-ghost-white {
  background: rgba(255,255,255,0.1); color: white;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.2); color: white;
  transform: translateY(-1px);
}
.btn-white {
  background: white; color: var(--blue-primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--light-100); color: var(--blue-dark);
  transform: translateY(-2px); box-shadow: var(--shadow-lg);
}
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: var(--radius-md); }
.btn-full { width: 100%; justify-content: center; }

/* ─── HAMBURGER ────────────────────────────────────────── */
.menu-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
  border: none; background: none;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.8); border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* "Min side" link – hidden on desktop, visible only in mobile overlay */
.nav-login-link { display: none; }

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: var(--dark-900);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-about p {
  margin-top: 16px;
  font-size: 14px; line-height: 1.75;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
}
.footer-about .logo-name { color: white; }
.footer-about .logo-tag  { color: rgba(255,255,255,0.35); }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.social-btn:hover { background: var(--blue-primary); color: white; }

.footer-col h4 {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: white; margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.45); font-size: 14px; }
.footer-col ul a:hover { color: white; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px;
  font-size: 14px; color: rgba(255,255,255,0.45);
}
.footer-contact-item svg { color: var(--blue-primary); flex-shrink: 0; margin-top: 1px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.28);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.28); font-size: 13px; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

/* ─── HERO (main page) ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--dark-900);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 65% -10%, rgba(37,99,235,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at -5% 90%, rgba(37,99,235,0.18) 0%, transparent 55%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.065) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; padding: 130px 0 90px; width: 100%; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 8px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.35);
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  color: #93c5fd; margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-primary);
  box-shadow: 0 0 8px var(--blue-primary);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.4; transform:scale(0.7); }
}

.hero h1 {
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 900; line-height: 1.1; letter-spacing: -2.5px;
  color: white; margin-bottom: 22px;
}
.hero h1 .hl {
  background: linear-gradient(135deg, #93c5fd 0%, #2563eb 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.55);
  line-height: 1.75; margin-bottom: 40px; max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 40px;
  margin-top: 52px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-val  { font-size: 32px; font-weight: 900; color: white; letter-spacing: -1px; line-height: 1; }
.stat-lbl  { font-size: 13px; color: rgba(255,255,255,0.38); margin-top: 4px; }

/* ─── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  background: var(--dark-900);
  padding: 80px 0 64px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 120% at 75% 50%, rgba(37,99,235,0.2) 0%, transparent 65%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 0%, transparent 80%);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 14px; border-radius: 100px;
  background: rgba(37,99,235,0.14);
  border: 1px solid rgba(37,99,235,0.3);
  font-size: 12px; font-weight: 700; letter-spacing: 0.8px;
  color: #93c5fd; text-transform: uppercase; margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800; color: white;
  letter-spacing: -1.5px; line-height: 1.15;
  margin-bottom: 16px; max-width: 600px;
}
.page-hero p {
  font-size: 17px; color: rgba(255,255,255,0.5);
  max-width: 560px; line-height: 1.75;
}

/* ─── SECTIONS ────────────────────────────────────────── */
.section     { padding: 96px 0; }
.section-sm  { padding: 64px 0; }
.section-dark  { background: var(--dark-900); color: white; }
.section-light { background: var(--light-100); }
.section-blue  { background: linear-gradient(135deg, rgba(37,99,235,0.07) 0%, rgba(37,99,235,0) 100%); }

.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.8px;
  color: var(--blue-primary); margin-bottom: 12px;
}
.section-label::before {
  content: ''; display: block;
  width: 18px; height: 2px;
  background: var(--blue-primary); border-radius: 2px;
}
.section-dark .section-label { color: #93c5fd; }
.section-dark .section-label::before { background: #93c5fd; }

h2.section-title {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800; letter-spacing: -1.5px;
  line-height: 1.15; color: var(--text-primary);
  margin-bottom: 14px;
}
.section-dark h2.section-title { color: white; }

.section-sub { font-size: 17px; color: var(--text-secondary); line-height: 1.75; max-width: 520px; }
.section-dark .section-sub { color: rgba(255,255,255,0.5); }

/* ─── SERVICE CARDS ───────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 860px; margin: 0 auto; }
.cards-grid--three { grid-template-columns: repeat(3,1fr); max-width: 1100px; }
.cards-grid--three .card { padding: 24px 20px; }

.card {
  background: white; border: 1px solid var(--light-300);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(37,99,235,0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.card-dark {
  background: var(--dark-800);
  border-color: rgba(255,255,255,0.06);
}
.card-dark:hover {
  border-color: rgba(37,99,235,0.45);
  box-shadow: 0 8px 32px rgba(37,99,235,0.22);
}

.card-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-primary); margin-bottom: 20px;
}
.card-dark .card-icon { background: rgba(37,99,235,0.2); color: #93c5fd; }

.card h3 { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; letter-spacing: -0.3px; }
.card-dark h3 { color: white; }
.card p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }
.card-dark p { color: rgba(255,255,255,0.48); }
.card-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 14px; font-weight: 600;
  color: var(--blue-primary); margin-top: 18px;
}
.card-link:hover { gap: 9px; }

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; }
.feature-check {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  background: var(--blue-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-primary);
}
.feature-text strong { display: block; font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.feature-text span  { font-size: 14px; color: var(--text-secondary); }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-card {
  text-align: center; padding: 28px 20px;
  background: white; border: 1px solid var(--light-300);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--border); }
.stat-num { font-size: 40px; font-weight: 900; color: var(--blue-primary); letter-spacing: -2px; line-height: 1; }
.stat-card-lbl { font-size: 14px; color: var(--text-secondary); margin-top: 6px; font-weight: 500; }

/* ─── PROCESS STEPS ───────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 32px; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 27px;
  left: calc(12.5% + 12px); right: calc(12.5% + 12px);
  height: 1px;
  background: linear-gradient(90deg, var(--blue-primary) 0%, rgba(37,99,235,0.1) 100%);
  opacity: 0.3;
}
.step { text-align: center; }
.step-num {
  width: 54px; height: 54px;
  background: white; border: 2px solid var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: var(--blue-primary);
  margin: 0 auto 20px;
  box-shadow: 0 0 0 7px rgba(37,99,235,0.05);
  position: relative; z-index: 1;
}
.step h4 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.step p  { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ─── PRICING ─────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; align-items: start; max-width: 860px; margin: 0 auto; }

.pricing-card {
  background: white; border: 1px solid var(--light-300);
  border-radius: var(--radius-xl); padding: 36px;
  position: relative; transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.pricing-card.featured {
  background: var(--dark-900);
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 1px var(--blue-primary), var(--shadow-xl);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }

.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue-primary); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 16px; border-radius: 100px;
  text-transform: uppercase; white-space: nowrap;
}
.pricing-tier {
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--blue-primary); margin-bottom: 12px;
}
.pricing-card.featured .pricing-tier { color: #93c5fd; }

.pricing-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 6px; }
.price-amt {
  font-size: 44px; font-weight: 900; letter-spacing: -2.5px;
  line-height: 1; color: var(--text-primary);
}
.pricing-card.featured .price-amt { color: white; }
.price-cur { font-size: 18px; font-weight: 700; color: var(--text-secondary); }
.pricing-card.featured .price-cur { color: rgba(255,255,255,0.55); }

.pricing-period { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.38); }

.pricing-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 24px; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.5); }

.pricing-divider { border: none; border-top: 1px solid var(--light-300); margin: 22px 0; }
.pricing-card.featured .pricing-divider { border-color: rgba(255,255,255,0.1); }

.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.pricing-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.7); }
.pricing-feature svg { color: var(--blue-primary); flex-shrink: 0; }
.pricing-card.featured .pricing-feature svg { color: #60a5fa; }

/* ─── CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  border-radius: var(--radius-xl); padding: 72px 64px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% -20%, rgba(255,255,255,0.14) 0%, transparent 60%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800; color: white; letter-spacing: -1px;
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 17px; color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 480px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── CONTACT ─────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }

.contact-info-list { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  background: var(--light-100);
  border: 1px solid var(--light-300);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-info-card:hover {
  border-color: var(--border);
  background: white; box-shadow: var(--shadow-md);
}
.contact-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--blue-light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-primary);
}
.contact-info-card h4 { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.contact-info-card p  { font-size: 14px; color: var(--text-secondary); }

.contact-form-card {
  background: white; border: 1px solid var(--light-300);
  border-radius: var(--radius-xl); padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 { font-size: 22px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.contact-form-card > p { font-size: 14px; color: var(--text-secondary); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 11px 14px;
  background: var(--light-100);
  border: 1.5px solid var(--light-300);
  border-radius: var(--radius-sm);
  font-size: 14px; font-family: inherit;
  color: var(--text-primary); transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-primary);
  background: white;
  box-shadow: 0 0 0 3px var(--blue-light);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── FAQ ─────────────────────────────────────────────── */
.faq-wrap { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--light-300); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; text-align: left;
  font-family: inherit; font-size: 16px; font-weight: 600;
  color: var(--text-primary); transition: var(--transition);
}
.faq-q:hover { color: var(--blue-primary); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue-light); color: var(--blue-primary);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--blue-primary); color: white; transform: rotate(45deg); }
.faq-a {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.75; padding-bottom: 20px; display: none;
}
.faq-item.open .faq-a { display: block; }

/* ─── TECH TAGS ────────────────────────────────────────── */
.tech-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tech-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: var(--blue-light); border: 1px solid rgba(37,99,235,0.2);
  border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--blue-primary);
}

/* ─── TWO-COL SPLIT ───────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split-img {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
}

/* ─── SCROLL ANIMATIONS ───────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* ─── FLOAT ANIMATION ─────────────────────────────────── */
@keyframes floatY {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}
.float-anim { animation: floatY 6s ease-in-out infinite; }

/* ─── RESPONSIVE ──────────────────────────────────────── */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps-grid::before { display: none; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 48px; }
  .section { padding: 72px 0; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  /* Header */
  .main-nav { display: none; }
  .header-actions .btn-outline { display: none; }
  .menu-toggle { display: flex; }
  .logo-text, .logo-text2 { font-size: 17px; letter-spacing: 1px; }

  /* Mobile nav overlay – dark to match site theme */
  .main-nav.open {
    display: flex; flex-direction: column;
    position: fixed;
    top: var(--header-height); left: 0; right: 0;
    height: calc(100dvh - var(--header-height));
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 24px; gap: 6px; z-index: 999;
    overflow-y: auto;
  }
  .main-nav.open a {
    padding: 14px 16px; font-size: 17px;
    border-radius: var(--radius-md);
    color: rgba(255,255,255,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .main-nav.open a:hover,
  .main-nav.open a.active {
    color: white; background: rgba(37,99,235,0.22);
    border-color: transparent;
  }
  .main-nav.open .nav-login-link {
    display: flex; align-items: center;
    margin-top: 12px;
    background: var(--blue-primary); color: white;
    border-radius: var(--radius-md);
    justify-content: center; font-weight: 700;
    border-bottom: none;
  }
  .main-nav.open .nav-login-link:hover { background: var(--blue-dark); }

  /* Section spacing */
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .section-header { margin-bottom: 40px; }
  .hero-content { padding: 96px 0 56px; }
  .page-hero { padding: 56px 0 44px; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 24px; }
  .hero-sub { font-size: 15px; }

  /* Grids → single column */
  .cards-grid, .pricing-grid, .stats-row, .steps-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  /* Cards */
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .contact-form-card { padding: 28px 24px; }
  .benefit-panel { padding: 28px 24px; }
  .card { padding: 24px 20px; }

  /* CTA */
  .cta-banner { padding: 44px 28px; }
  .cta-banner p { margin-left: 0; margin-right: 0; max-width: 100%; }

  /* Footer */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* Small mobile (≤500px) */
@media (max-width: 500px) {
  .container { padding: 0 16px; }
  .logo-text, .logo-text2 { font-size: 14px; letter-spacing: 0.5px; }
  .logo-img { height: 38px; }

  .section { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-links { flex-wrap: wrap; gap: 16px; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-stats { flex-wrap: wrap; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  .pricing-card { padding: 24px 18px; }
  .contact-form-card { padding: 22px 16px; }
  .page-hero { padding: 44px 0 32px; }
}

/* ─── PRODUCT SHOWCASE (Calendar etc.) ───────────────── */
.product-hero {
  background: linear-gradient(135deg, var(--dark-900) 0%, #0d1f3c 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.product-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(37,99,235,0.22) 0%, transparent 60%);
}
.product-hero .container { position: relative; z-index: 1; }
.product-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.product-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  background: rgba(37,99,235,0.18);
  border: 1px solid rgba(37,99,235,0.4);
  border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.8px;
  color: #93c5fd; text-transform: uppercase;
  margin-bottom: 20px;
}
.product-hero h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900; color: white;
  letter-spacing: -2px; line-height: 1.1;
  margin-bottom: 20px;
}
.product-hero h2 .hl {
  background: linear-gradient(135deg, #93c5fd 0%, #2563eb 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.product-hero p.lead {
  font-size: 17px; color: rgba(255,255,255,0.55);
  line-height: 1.75; margin-bottom: 32px;
}
.product-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.product-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.product-feature-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7);
}
.product-feature-pill svg { color: #60a5fa; flex-shrink: 0; }

.product-screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.screenshot-slot {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--dark-800);
  border: 1px solid rgba(37,99,235,0.2);
  aspect-ratio: 16/10;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.3);
  font-size: 13px; text-align: center;
  padding: 20px;
  transition: var(--transition);
}
.screenshot-slot:hover {
  border-color: rgba(37,99,235,0.5);
  background: rgba(37,99,235,0.07);
}
.screenshot-slot.wide {
  grid-column: span 2;
  aspect-ratio: 16/7;
}
.screenshot-slot svg { color: rgba(37,99,235,0.5); }
.screenshot-slot img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
}
.app-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.65);
  margin-right: 8px;
}

/* ─── PRICE CALCULATOR ────────────────────────────────── */
.calculator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.calc-card {
  background: white;
  border: 1.5px solid var(--light-300);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.calc-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.calc-card.featured {
  border-color: rgba(37,99,235,0.3);
  background: linear-gradient(135deg, rgba(37,99,235,0.04) 0%, white 100%);
}
.calc-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-primary);
  margin-bottom: 20px;
}
.calc-card h3 { font-size: 20px; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; }
.calc-card .calc-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.6; }

.calc-field { margin-bottom: 16px; }
.calc-field label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--text-primary); margin-bottom: 6px;
}
.calc-field input,
.calc-field select {
  width: 100%;
  padding: 11px 14px;
  background: var(--light-100);
  border: 1.5px solid var(--light-300);
  border-radius: var(--radius-sm);
  font-size: 15px; font-family: inherit;
  color: var(--text-primary); transition: var(--transition);
  outline: none;
}
.calc-field input:focus,
.calc-field select:focus {
  border-color: var(--blue-primary);
  background: white;
  box-shadow: 0 0 0 3px var(--blue-light);
}

.calc-result {
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--blue-light);
  border: 1px solid rgba(37,99,235,0.18);
  border-radius: var(--radius-md);
  text-align: center;
}
.calc-result-label {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--blue-primary); margin-bottom: 4px;
}
.calc-result-price {
  font-size: 32px; font-weight: 900;
  color: var(--blue-primary); letter-spacing: -1.5px; line-height: 1;
}
.calc-result-sub {
  font-size: 12px; color: var(--text-secondary); margin-top: 4px;
}
.calc-note {
  font-size: 12px; color: var(--text-light);
  margin-top: 14px; line-height: 1.6;
}

/* ─── WHY US PANEL (benefit cards) ───────────────────── */
.benefit-panel {
  background: var(--dark-800);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid rgba(37,99,235,0.2);
}
.benefit-panel-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.benefit-panel-icon {
  width: 38px; height: 38px;
  background: var(--blue-primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.benefit-panel-title { font-size: 14px; font-weight: 700; color: white; }
.benefit-panel-sub   { font-size: 12px; color: rgba(255,255,255,0.35); }
.benefit-items { display: flex; flex-direction: column; gap: 14px; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
}
.benefit-item-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: rgba(37,99,235,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #60a5fa;
}
.benefit-item-text strong { display: block; font-size: 14px; font-weight: 700; color: white; margin-bottom: 2px; }
.benefit-item-text span   { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.5; }

@media (max-width: 1024px) {
  .calculator-grid { grid-template-columns: 1fr; }
  .product-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .product-screenshots { grid-template-columns: 1fr 1fr; }
  .product-hero { padding: 72px 0; }
}
@media (max-width: 768px) {
  .product-hero { padding: 56px 0; }
  .product-hero p.lead { font-size: 15px; }
  .product-screenshots { grid-template-columns: 1fr; }
  .screenshot-slot.wide { grid-column: span 1; aspect-ratio: 16/10; }
  .product-features-grid { grid-template-columns: 1fr; }
  .product-hero-actions { flex-direction: column; }
  .product-hero-actions .btn { width: 100%; justify-content: center; }
}
@media (max-width: 500px) {
  .product-hero { padding: 44px 0; }
}

/* ─── VARSEL-MODAL ─────────────────────────────────────── */
#varsel-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,0.75);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
#varsel-overlay.hidden { display: none; }
#varsel-modal {
  background: white;
  border-radius: 14px;
  padding: 36px 32px 28px;
  max-width: 460px; width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  text-align: center;
}
#varsel-modal .varsel-icon {
  font-size: 32px; margin-bottom: 16px;
}
#varsel-modal h2 {
  font-size: 18px; font-weight: 800;
  color: var(--text-primary); margin-bottom: 12px;
}
#varsel-modal p {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.6; margin-bottom: 28px;
}
#varsel-ok {
  background: var(--blue-primary); color: white;
  border: none; border-radius: 8px;
  padding: 12px 36px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: inherit;
  transition: background 0.2s;
}
#varsel-ok:hover { background: var(--blue-dark); }
