/* ===================================================
   10xmate.com — main stylesheet
   =================================================== */

/* ===== Variables ===== */
:root {
  --bg:        #ffffff;
  --surface:   #f0f9ff;
  --surface-2: #e0f2fe;
  --border:    #e2e8f0;
  --text:      #0f172a;
  --muted:     #64748b;
  --cyan:      #00b8cc;
  --cyan-dim:  rgba(0, 184, 204, 0.1);
  --cyan-dark: #038089;
  /* dark palette — header, footer, dark bands */
  --dk-bg:     #0d1117;
  --dk-surface:#161b22;
  --dk-border: #30363d;
  --dk-text:   #e6edf3;
  --dk-muted:  #8b949e;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 8px;
  --max: 1100px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ===== Header ===== */
.site-header {
  background: rgba(13,17,23,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--dk-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; text-decoration: none; line-height: 0; }
.logo:hover { text-decoration: none; }
.logo img { height: 60px; width: auto; display: block; }

/* Nav */
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  color: var(--dk-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.site-nav a:hover, .site-nav a.active { color: var(--dk-text); text-decoration: none; }
.nav-cta {
  background: var(--cyan) !important;
  color: #0d1117 !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--dk-text); border-radius: 2px; transition: 0.25s;
}
@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none; position: absolute; top: 72px; inset-inline: 0;
    background: var(--dk-bg); border-bottom: 1px solid var(--dk-border);
    flex-direction: column; align-items: flex-start;
    padding: 20px 24px 24px; gap: 18px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 1rem; }
}

/* ===== Footer ===== */
.site-footer {
  margin-top: auto;
  background: var(--dk-bg);
  border-top: 1px solid var(--dk-border);
  padding: 48px 0 24px;
}
.footer-inner {
  display: flex; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; margin-bottom: 40px;
}
.footer-brand p { color: var(--dk-muted); font-size: 0.85rem; margin-top: 10px; max-width: 220px; line-height: 1.6; }
.footer-brand img { height: 32px; width: auto; }
.footer-col h4 {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--dk-muted); margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--dk-muted); font-size: 0.875rem; }
.footer-col a:hover { color: var(--dk-text); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid var(--dk-border);
  padding-top: 20px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 8px;
  color: var(--dk-muted); font-size: 0.8rem;
}
.footer-bottom a { color: var(--dk-muted); font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--dk-text); text-decoration: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none; text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.btn:hover { opacity: 0.85; text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--cyan); color: #0d1117; }
.btn-outline  { background: transparent; color: var(--cyan); border: 1.5px solid var(--cyan); }
.btn-ghost    { background: var(--surface-2); color: var(--text); border: 1px solid var(--border); }

/* ===== Badges ===== */
.badge {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
}
.badge-cyan { background: var(--cyan-dim); color: var(--cyan); border: 1px solid rgba(0,203,228,0.25); }

/* ===== Section helpers ===== */
.section-label {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--cyan); font-weight: 700; margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 14px;
}
.section-sub {
  color: var(--muted); font-size: 1rem; max-width: 560px; line-height: 1.7;
}

/* ===== Browser frame ===== */
.browser-frame {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d1d5db;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.06);
}
.browser-chrome {
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1; background: #ffffff; border: 1px solid #e5e7eb;
  border-radius: 4px; padding: 3px 10px;
  font-size: 0.75rem; color: #6b7280; font-family: monospace;
}
.browser-frame img { width: 100%; }

/* ===================================================
   HOME PAGE
   =================================================== */

/* Hero */
.hero {
  padding: 60px 0;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #f0f9ff 0%, #ffffff 55%, #f0fdfa 100%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 500px at 65% 40%, rgba(0,184,204,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}
@media (max-width: 820px) {
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-video { order: -1; }
}
.hero-badge { margin-bottom: 20px; }
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 20px;
}
.hero-title .accent { color: var(--cyan); }
.hero-sub {
  color: var(--muted); font-size: 1.05rem;
  max-width: 480px; line-height: 1.75; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-video {
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,184,204,0.2), 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid #bae6fd;
  background: #f0f9ff;
  aspect-ratio: 16/9;
  min-height: 420px;
}
.hero-video video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Stats band — vibrant gradient */
.stats-band {
  background: linear-gradient(135deg, #00b8cc 0%, #038089 100%);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  text-align: center;
}
@media (max-width: 640px) { .stats-grid { grid-template-columns: 1fr; gap: 32px; } }
.stat-item { padding: 24px 32px; }
.stat-number {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800; letter-spacing: -2px;
  color: #ffffff; line-height: 1;
  margin-bottom: 12px;
}
.stat-label { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.6; max-width: 220px; margin: 0 auto; }
.stat-label strong { color: #ffffff; }

/* Benefits section */
.benefits { padding: 96px 0; background: var(--bg); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 820px) { .benefits-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,184,204,0.12);
}
.benefit-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  color: var(--cyan); margin-top: 2px;
}
.benefit-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.6; }

/* CTA band */
.cta-band {
  padding: 96px 0; text-align: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #e6edf3;
}
.cta-band h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700; letter-spacing: -0.5px; margin-bottom: 14px; color: #ffffff;
}
.cta-band p { color: #8b949e; margin-bottom: 36px; font-size: 1rem; }

/* ===================================================
   PRODUCT PAGE
   =================================================== */
.page-hero {
  padding: 72px 0 56px;
  background: linear-gradient(160deg, #f0f9ff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}
.feature-section { padding: 80px 0; border-bottom: 1px solid var(--border); background: var(--bg); }
.feature-section:nth-child(even) { background: var(--surface); }
.feature-section:last-of-type { border-bottom: none; }
.feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; margin-top: 48px;
}
.feature-layout.reverse { direction: rtl; }
.feature-layout.reverse > * { direction: ltr; }
@media (max-width: 820px) {
  .feature-layout { grid-template-columns: 1fr; gap: 36px; }
  .feature-layout.reverse { direction: ltr; }
}
.feature-text h2 { font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 700; letter-spacing: -0.4px; margin-bottom: 14px; }
.feature-text p { color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-size: 0.95rem; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--muted); font-size: 0.9rem; line-height: 1.5;
}
.check-list li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='8.25' stroke='%2300cbe4' stroke-width='1.5'/%3E%3Cpath d='M5.5 9l2.5 2.5 4.5-5' stroke='%2300cbe4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.video-player {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  background: #000;
}
.video-player video { width: 100%; display: block; }

/* ===================================================
   REWARDS PAGE
   =================================================== */
.rewards-intro { padding: 80px 0; }
.rewards-intro-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
@media (max-width: 820px) { .rewards-intro-layout { grid-template-columns: 1fr; } }
.rewards-categories { padding: 0 0 80px; }
.rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
@media (max-width: 820px) { .rewards-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .rewards-grid { grid-template-columns: 1fr; } }
.reward-card {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.reward-card:hover { border-color: var(--cyan); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,184,204,0.12); }
.reward-icon {
  width: 44px; height: 44px; background: var(--cyan-dim);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px; color: var(--cyan);
}
.reward-icon svg { width: 22px; height: 22px; }
.reward-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.reward-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.65; }

/* ===================================================
   CALCULATOR PAGE
   =================================================== */
.calc-section { padding: 80px 0; }
.calc-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start; margin-top: 48px;
}
@media (max-width: 820px) { .calc-layout { grid-template-columns: 1fr; } }
.calc-form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 40px;
}
@media (max-width: 500px) { .calc-form-card { padding: 24px 20px; } }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--text); margin-bottom: 8px;
}
.form-group input {
  width: 100%; padding: 10px 14px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-size: 0.95rem; font-family: var(--font);
  transition: border-color 0.2s;
}
.form-group input:focus { outline: none; border-color: var(--cyan); }
.form-group input::placeholder { color: var(--muted); }
.form-hint { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.form-error { font-size: 0.78rem; color: #f87171; margin-top: 4px; display: none; }
.form-error.visible { display: block; }
.calc-results { display: none; }
.calc-results.visible { display: block; }
.result-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 40px; margin-bottom: 20px;
}
@media (max-width: 500px) { .result-card { padding: 24px 20px; } }
.result-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 8px; }
.result-value { font-size: 2.4rem; font-weight: 700; color: var(--cyan); letter-spacing: -1px; line-height: 1; }
.result-saving { color: #4ade80; }
.result-note { color: var(--muted); font-size: 0.85rem; line-height: 1.6; margin-top: 16px; }
.service-price-card {
  background: var(--cyan-dim); border: 1px solid rgba(0,203,228,0.25);
  border-radius: 12px; padding: 24px 28px;
}
.service-price-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.service-price-card strong { color: var(--text); }

/* ===================================================
   SERVICE PLANS
   =================================================== */
.plans-section { padding: 80px 0; }
.plans-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 24px; margin-top: 48px;
}
@media (max-width: 720px) { .plans-grid { grid-template-columns: 1fr; } }
.plan-card {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: 16px; padding: 40px; position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.plan-card:hover { border-color: var(--cyan); box-shadow: 0 8px 32px rgba(0,184,204,0.12); }
.plan-card--featured {
  border-color: var(--cyan);
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  box-shadow: 0 8px 32px rgba(0,184,204,0.15);
}
.plan-badge {
  position: absolute; top: -12px; left: 40px;
  background: var(--cyan); color: #0d1117;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 12px; border-radius: 999px;
}
.plan-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.plan-desc { color: var(--muted); font-size: 0.9rem; margin-bottom: 28px; line-height: 1.6; }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--muted); font-size: 0.875rem; line-height: 1.5;
}
.plan-features li::before {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='8.25' stroke='%2300cbe4' stroke-width='1.5'/%3E%3Cpath d='M5.5 9l2.5 2.5 4.5-5' stroke='%2300cbe4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ===================================================
   CONTACTS PAGE
   =================================================== */
.contact-section { padding: 80px 0; }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
@media (max-width: 820px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-heading { font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 700; letter-spacing: -0.5px; margin-bottom: 14px; }
.contact-sub { color: var(--muted); line-height: 1.75; margin-bottom: 40px; font-size: 0.95rem; }
.contact-methods { display: flex; flex-direction: column; gap: 22px; }
.contact-method { display: flex; align-items: center; gap: 16px; }
.method-icon {
  width: 44px; height: 44px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--cyan);
}
.method-icon svg { width: 20px; height: 20px; }
.method-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 3px; }
.method-value { color: var(--text); font-size: 0.95rem; }
.method-value a { color: var(--text); }
.method-value a:hover { color: var(--cyan); text-decoration: none; }
.contact-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 40px;
}
.contact-card h2 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.contact-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.65; margin-bottom: 28px; }

/* ===================================================
   PRIVACY / TERMS
   =================================================== */
.legal-wrap { max-width: 720px; margin: 0 auto; padding: 72px 24px 96px; }
.legal-wrap h1 { font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 700; letter-spacing: -0.5px; margin-bottom: 8px; }
.legal-wrap .meta { color: var(--muted); font-size: 0.85rem; margin-bottom: 48px; }
.legal-wrap h2 { font-size: 1.1rem; font-weight: 600; margin: 36px 0 10px; }
.legal-wrap p, .legal-wrap li { color: var(--muted); font-size: 0.925rem; line-height: 1.8; }
.legal-wrap ul { list-style: disc; padding-left: 20px; margin: 10px 0; display: flex; flex-direction: column; gap: 6px; }
.legal-wrap a { color: var(--cyan); }

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed; bottom: 0; inset-inline: 0;
  z-index: 999; background: var(--surface);
  border-top: 1px solid var(--border); padding: 16px 24px;
}
.cookie-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cookie-inner p { color: var(--muted); font-size: 0.875rem; line-height: 1.6; }
.cookie-inner a { color: var(--cyan); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 8px 20px; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 600;
  cursor: pointer; border: none; transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn-accept  { background: var(--cyan); color: #0d1117; }
.cookie-btn-decline { background: var(--surface-2); color: var(--muted); border: 1px solid var(--border); }

/* ===================================================
   PAGE HERO (shared inner-page header)
   =================================================== */
.page-hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px;
}
.page-hero-sub {
  color: var(--muted); font-size: 1rem; line-height: 1.75; max-width: 580px;
}

/* ===================================================
   REWARDS PAGE — additional
   =================================================== */
.rewards-banner-section { padding: 56px 0 0; }
.rewards-banner-section .browser-frame { max-width: 860px; margin: 0 auto; }

.content-section { padding: 72px 0; }
.content-narrow { max-width: 700px; margin: 0 auto; }
.content-narrow h2 { font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 700; letter-spacing: -0.4px; margin-bottom: 20px; }
.content-narrow p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }

.rewards-categories { padding: 0 0 80px; }
.reward-card svg { width: 32px; height: 32px; color: var(--cyan); margin-bottom: 14px; display: block; }
.reward-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }

.reward-banners { padding: 0 0 96px; }
.reward-banners-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 48px;
}
@media (max-width: 820px) { .reward-banners-grid { grid-template-columns: 1fr; } }
.reward-banners-grid img { border-radius: 12px; border: 1px solid var(--border); width: 100%; object-fit: cover; }

/* ===================================================
   CALCULATOR PAGE — new layout
   =================================================== */
.calc-section { padding: 72px 0 96px; }
.calc-card {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: 16px; padding: 48px;
  max-width: 780px; margin: 0 auto 48px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
@media (max-width: 600px) { .calc-card { padding: 28px 20px; } }
.calc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 32px;
}
@media (max-width: 600px) { .calc-grid { grid-template-columns: 1fr; } }
.calc-field { display: flex; flex-direction: column; gap: 6px; }
.calc-field label {
  font-size: 0.85rem; font-weight: 600; color: var(--text);
}
.calc-field input {
  padding: 10px 14px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-size: 0.95rem; font-family: var(--font);
  transition: border-color 0.2s;
}
.calc-field input:focus { outline: none; border-color: var(--cyan); }
.calc-field input::placeholder { color: var(--muted); }
.field-err { font-size: 0.78rem; color: #f87171; display: none; }
.field-err.visible { display: block; }
.calc-submit { text-align: center; }
.calc-results { display: none; margin-top: 36px; border-top: 1px solid var(--border); padding-top: 36px; }
.calc-results.visible { display: block; }
.calc-results h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 28px; }
@media (max-width: 600px) { .results-grid { grid-template-columns: 1fr; } }
.result-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 22px;
}
.result-item--highlight { border-color: rgba(0,203,228,0.4); background: var(--cyan-dim); }
.result-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; }
.result-value { font-size: 1.5rem; font-weight: 700; color: var(--cyan); letter-spacing: -0.5px; }
.result-item--highlight .result-value { color: #4ade80; }
.results-cta { text-align: center; }

.calc-disclaimer {
  max-width: 780px; margin: 0 auto;
  background: #ffffff; border: 1px solid var(--border);
  border-radius: 12px; padding: 32px 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
@media (max-width: 600px) { .calc-disclaimer { padding: 20px; } }
.calc-disclaimer h3 { font-size: 1rem; font-weight: 600; margin-bottom: 12px; }
.calc-disclaimer p { color: var(--muted); font-size: 0.9rem; line-height: 1.75; margin-bottom: 16px; }
.calc-disclaimer ul { list-style: disc; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.calc-disclaimer li { color: var(--muted); font-size: 0.875rem; line-height: 1.65; }

/* ===================================================
   SERVICE PLANS — additional
   =================================================== */
.plan-card--featured {
  border-color: var(--cyan);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(0,203,228,0.04) 100%);
}
.plan-badge-wrap { margin-bottom: 16px; }
.plan-header { margin-bottom: 24px; }
.plan-tagline { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-top: 6px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 0.875rem; line-height: 1.5; }
.plan-features li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--cyan); }
.plan-cta { }
.plans-note {
  text-align: center; color: var(--muted); font-size: 0.875rem;
  margin-top: 40px; line-height: 1.7;
}
.plans-note a { color: var(--cyan); }

/* ===================================================
   CONTACTS PAGE — additional
   =================================================== */
.contacts-section { padding: 72px 0; }
.contacts-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
@media (max-width: 900px) { .contacts-grid { grid-template-columns: 1fr; max-width: 480px; } }
.contact-card {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 32px;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.contact-icon {
  width: 48px; height: 48px; background: var(--cyan-dim);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; color: var(--cyan); margin-bottom: 20px;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-card h2 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.contact-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; margin-bottom: 0; }
.contact-email {
  display: inline-block; margin-top: 18px;
  color: var(--cyan); font-size: 0.95rem; font-weight: 600;
}
.contact-email:hover { text-decoration: underline; }

.robotko-section { padding: 72px 0 96px; }
.robotko-inner {
  display: flex; align-items: center; gap: 60px;
}
@media (max-width: 720px) { .robotko-inner { flex-direction: column; gap: 32px; text-align: center; } }
.robotko-img { width: 200px; flex-shrink: 0; border-radius: 12px; }
.robotko-text h2 { font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 700; letter-spacing: -0.5px; margin-bottom: 14px; }
.robotko-text p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 24px; }

/* ===================================================
   LEGAL PAGES (Privacy Policy / Terms of Use)
   =================================================== */
.legal-section { padding: 72px 0 96px; }
.legal-content {
  max-width: 720px; margin: 0 auto;
}
.legal-content h2 { font-size: 1.1rem; font-weight: 600; margin: 36px 0 10px; color: var(--text); }
.legal-content p, .legal-content li { color: var(--muted); font-size: 0.925rem; line-height: 1.8; }
.legal-content ul { list-style: disc; padding-left: 20px; margin: 10px 0; display: flex; flex-direction: column; gap: 6px; }
.legal-content a { color: var(--cyan); }
.legal-content strong { color: var(--text); }
