/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #f45c2c;
  --orange-hover: #d94e20;
  --max-width: 1140px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --transition: 0.3s ease;

  /* Dark theme (DEFAULT) */
  --bg: #0d1117;
  --bg-alt: #161b22;
  --bg-card: #1c2128;
  --bg-card-hover: #21262d;
  --bg-input: #0d1117;
  --border: #30363d;
  --border-light: #21262d;
  --text: #e6edf3;
  --text-secondary: #8b949e;
  --text-muted: #6e7681;
  --heading: #f0f6fc;
  --nav-bg: #010409;
  --hero-bg: #0d1117;
  --hero-bg-end: #161b22;
  --footer-bg: #010409;
  --card-shadow: 0 1px 3px rgba(0,0,0,0.3);
  --card-shadow-hover: 0 8px 24px rgba(0,0,0,0.4);
  --overlay-bg: rgba(255,255,255,0.04);
  --stat-bg: rgba(244,92,44,0.1);
}

/* Light theme */
[data-theme="light"] {
  --bg: #ffffff;
  --bg-alt: #f6f8fa;
  --bg-card: #ffffff;
  --bg-card-hover: #f6f8fa;
  --bg-input: #ffffff;
  --border: #d0d7de;
  --border-light: #e8ebef;
  --text: #1f2328;
  --text-secondary: #656d76;
  --text-muted: #8b949e;
  --heading: #1f2328;
  --nav-bg: #1a2332;
  --hero-bg: #1a2332;
  --hero-bg-end: #243044;
  --footer-bg: #1a2332;
  --card-shadow: 0 1px 3px rgba(0,0,0,0.08);
  --card-shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
  --overlay-bg: rgba(0,0,0,0.02);
  --stat-bg: #f6f8fa;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition), color var(--transition);
}

a { color: var(--orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange-hover); }

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

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

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--nav-bg);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--orange-hover) !important;
}

/* Header phone number */
.nav-phone {
  color: #fff !important;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.3px;
  padding: 8px 0 8px 16px !important;
  border-left: 1px solid rgba(255,255,255,0.15);
  margin-left: 8px;
  background: none !important;
}

.nav-phone:hover {
  color: var(--orange) !important;
  background: none !important;
}

/* Theme toggle */
.theme-toggle {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  margin-left: 8px;
}

.theme-toggle:hover {
  background: rgba(255,255,255,0.2);
}

.theme-toggle .icon-sun { display: inline; }
.theme-toggle .icon-moon { display: none; }

[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: inline; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: all 0.3s;
}

/* ===== HERO ===== */
@keyframes hero-gradient {
  0%   { background-position: 0 0, 0% 50%; }
  50%  { background-position: 0 0, 100% 50%; }
  100% { background-position: 0 0, 0% 50%; }
}

.hero {
  background-image: url('/img/circuit.svg'), linear-gradient(-45deg, var(--hero-bg), #1e2d45, var(--hero-bg-end), #0d1117);
  background-size: 200px 200px, 400% 400%;
  background-repeat: repeat, no-repeat;
  background-position: 0 0, 0% 50%;
  animation: hero-gradient 10s ease infinite;
  color: #fff;
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244,92,44,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-strapline {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 20px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  position: relative;
}

.hero h1 span { color: var(--orange); }

/* Orange accent for first words */
.accent { color: var(--orange); }

.hero p {
  font-size: 20px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-phone {
  margin-top: 28px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  position: relative;
}

.hero-phone a {
  color: #fff;
  letter-spacing: 0.5px;
}

.hero-phone a:hover {
  color: var(--orange);
}

.hero-phone .phone-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 4px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(244,92,44,0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  color: var(--heading);
  transform: translateY(-1px);
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 24px;
  transition: background var(--transition);
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Inline headings and text (used in pages with style attributes) */
.seo-heading {
  font-size: 30px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 20px;
  text-align: center;
}

.seo-text {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.seo-text-center {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: center;
}

.area-tags {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 2;
}

.area-tags strong {
  color: var(--text);
}

.sub-text {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 16px;
}

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--orange);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--orange), #ff7849);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  color: #fff;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== PRICING / TIERS ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.price-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.2s;
  position: relative;
}

.price-card.featured {
  border-color: var(--orange);
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(244,92,44,0.15);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}

.price-card .price-subtitle {
  color: var(--text-secondary);
  font-size: 14px;
}

.price-amount {
  font-size: 44px;
  font-weight: 800;
  color: var(--heading);
  margin: 16px 0 4px;
}

.price-amount span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

.price-period {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.price-features li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: '\2713';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

.price-note {
  text-align: center;
  margin-top: 28px;
  color: var(--text-secondary);
  font-size: 14px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
}

.trust-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--orange), #ff7849);
  color: #fff;
  padding: 60px 24px;
  text-align: center;
  border-radius: 16px;
  margin: 0 24px;
}

.cta-banner h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 28px;
}

.cta-banner .btn {
  background: #fff;
  color: var(--orange);
}

.cta-banner .btn:hover {
  background: #f0f0f0;
  color: var(--orange-hover);
}

.cta-banner .accent {
  color: #fff;
  font-style: italic;
}

/* ===== ABOUT CONTENT ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-text ul {
  list-style: none;
  margin-top: 20px;
}

.about-text ul li {
  padding: 8px 0;
  color: var(--text);
}

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

.about-stat {
  background: var(--stat-bg);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--border);
}

.about-stat strong {
  display: block;
  font-size: 28px;
  color: var(--orange);
  margin-bottom: 4px;
}

.about-stat span {
  font-size: 14px;
  color: var(--text-secondary);
}

.about-image {
  background: var(--bg-alt);
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-muted);
  border: 2px dashed var(--border);
}

.protect-heading {
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--heading);
  margin-bottom: 4px;
}

.protect-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.about-image.protect-badge {
  background: transparent;
  border: none;
  aspect-ratio: auto;
}

.about-image.protect-badge img {
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(244,92,44,0.2));
}

.about-image.eset-badge {
  background: transparent;
  border: none;
  aspect-ratio: auto;
}

.about-image.eset-badge img {
  border-radius: 12px;
  box-shadow: var(--card-shadow-hover);
}

/* ===== SUPPORT OPTIONS (Remote vs On-Site) ===== */
.support-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.support-option {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.2s;
}

.support-option:hover {
  border-color: var(--orange);
  box-shadow: var(--card-shadow-hover);
}

.support-option-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--orange), #ff7849);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #fff;
}

.support-option h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 12px;
}

.support-option p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.support-option ul {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.support-option ul li {
  padding: 6px 0;
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.support-option ul li::before {
  content: '\2713';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

.support-option .btn {
  width: 100%;
  justify-content: center;
}

/* ===== ADDITIONAL SERVICES GRID ===== */
.services-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.services-extra-card {
  padding: 20px;
  background: var(--bg-alt);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.services-extra-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
}

.services-extra-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 16px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--orange);
}

.contact-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 2px;
}

.contact-item p,
.contact-item a {
  font-size: 15px;
  color: var(--text-secondary);
}

.contact-callout {
  margin-top: 32px;
  padding: 20px;
  background: var(--bg-alt);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.contact-callout p {
  font-size: 15px;
  color: var(--text);
}

.contact-callout .sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.contact-form {
  background: var(--bg-alt);
  padding: 36px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font);
  transition: border-color 0.2s;
  background: var(--bg-input);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,92,44,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

/* ===== FOOTER ===== */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.7);
  padding: 48px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 4px;
}

.footer-brand h3 span { color: var(--orange); }
.footer-brand h3 { font-weight: 800; }

.footer-tagline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  font-size: 13px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ===== REMOTE SUPPORT PAGE ===== */
.remote-hero {
  background: linear-gradient(135deg, var(--hero-bg) 0%, var(--hero-bg-end) 100%);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.remote-hero h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}

.remote-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 550px;
  margin: 0 auto 40px;
}

.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: all 0.2s;
  min-width: 180px;
  justify-content: center;
}

.dl-btn.windows { background: var(--orange); }
.dl-btn.windows:hover { background: var(--orange-hover); color: #fff; }
.dl-btn.mac { background: #555; }
.dl-btn.mac:hover { background: #333; color: #fff; }
.dl-btn.android { background: #3ddc84; color: #000; }
.dl-btn.android:hover { background: #2bb86c; color: #000; }
.dl-btn.ios { background: #007aff; color: #fff; }
.dl-btn.ios:hover { background: #005ecb; color: #fff; }

.config-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 20px;
  max-width: 520px;
  margin: 0 auto;
}

.config-box h3 {
  font-size: 15px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.9);
}

.config-string {
  background: rgba(0,0,0,0.4);
  padding: 12px 16px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 11px;
  word-break: break-all;
  cursor: pointer;
  transition: background 0.2s;
  color: rgba(255,255,255,0.8);
}

.config-string:hover {
  background: rgba(0,0,0,0.6);
}

.security-note {
  background: rgba(244,92,44,0.1);
  border: 1px solid rgba(244,92,44,0.3);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

/* ===== PAGE HEADERS ===== */
.page-header {
  background: linear-gradient(135deg, var(--hero-bg) 0%, var(--hero-bg-end) 100%);
  color: #fff;
  padding: 60px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .nav-phone { display: none; }
}

@media (max-width: 900px) {
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .price-card.featured {
    transform: none;
  }

  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-extra {
    grid-template-columns: 1fr;
  }

  .support-options {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .hero h1 { font-size: 36px; }
  .hero { padding: 60px 24px 50px; }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    flex-direction: column;
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }

  .nav-links.open { display: flex; }

  .nav-toggle { display: block; }

  .nav-logo img { height: 34px; }

  .nav-phone {
    border-left: none;
    margin-left: 0;
    padding: 8px 16px !important;
    text-align: center;
    font-size: 17px;
  }

  .hero h1 { font-size: 30px; }
  .hero p { font-size: 17px; }

  .section { padding: 48px 16px; }
  .section-header h2 { font-size: 28px; }

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

  .trust-bar { gap: 24px; }
  .trust-number { font-size: 28px; }

  .about-stats { grid-template-columns: 1fr 1fr; }

  .protect-heading { font-size: 30px; letter-spacing: 1px; }
  .protect-subtitle { font-size: 18px; }

  .about-image.protect-badge {
    justify-content: center;
    margin-top: 8px;
  }

  .about-image.protect-badge img {
    max-width: 180px;
  }
}
