/* ========================================
   PVAProvider.com — Ultra Premium CSS
   HTML5 + CSS3 + Vanilla JS only
   Namecheap Shared Hosting Optimized
   ======================================== */

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
  /* Dark Navy Brand Colors */
  --brand-gold: #F5A623;
  --brand-gold-light: #FFD07A;
  --brand-navy: #050D1F;
  --brand-navy-2: #0A1628;
  --brand-navy-3: #0F1F3D;
  --brand-blue: #1A4B8C;
  --brand-accent: #2563EB;
  --brand-glow: #3B82F6;
  --brand-teal: #0EA5E9;

  /* Text Colors — all high-contrast on dark */
  --text-primary: #F0F4FF;
  --text-secondary: #B8C4D8;
  --text-muted: #6B7A99;
  --text-on-gold: #1a0a00;

  /* Legacy aliases (keeps service pages consistent) */
  --white: #F0F4FF;
  --cyan: #0EA5E9;
  --blue: #2563EB;
  --black: #050D1F;
  --gray-dark: #B8C4D8;
  --gray-medium: #6B7A99;
  --gray-light: rgba(255,255,255,0.10);
  --gray-bg: rgba(255,255,255,0.04);
  --green: #22d3a1;
  --amber: #F5A623;
  --red: #f87171;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #0EA5E9, #2563EB);
  --gold-gradient: linear-gradient(135deg, #F5A623 0%, #FFD07A 50%, #F5A623 100%);
  --blue-gradient: linear-gradient(135deg, #1A4B8C 0%, #2563EB 100%);

  /* Typography */
  --font-heading: 'Sora', 'Outfit', sans-serif;
  --font-body: 'DM Sans', 'Inter', sans-serif;

  /* Spacing */
  --section-pad: 96px;
  --section-pad-mobile: 64px;
  --container-max: 1200px;
  --container-pad: 24px;
  --card-pad: 32px;
  --card-gap: 24px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 1px 3px rgba(0,0,0,0.2), 0 4px 12px rgba(0,0,0,0.15);
  --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.3), 0 0 24px rgba(245,166,35,0.1);
  --shadow-dropdown: 0 24px 60px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.2);
  --shadow-button: 0 4px 16px rgba(245,166,35,0.35);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;

  /* Nav */
  --nav-height: 76px;

  /* Borders */
  --border-subtle: rgba(255,255,255,0.07);
  --card-bg: rgba(255,255,255,0.04);
  --card-bg-hover: rgba(255,255,255,0.07);

  /* Glows */
  --glow-blue: 0 0 40px rgba(37,99,235,0.35);
  --glow-gold: 0 0 40px rgba(245,166,35,0.3);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--brand-navy);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--brand-navy); }
::-webkit-scrollbar-thumb { background: var(--brand-blue); border-radius: 3px; }

/* ---- Utility Classes ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: var(--text-primary); }
.text-black { color: var(--brand-navy); }
.text-gray { color: var(--text-muted); }
.text-cyan { color: var(--brand-teal); }
.text-green { color: var(--green); }
.text-amber { color: var(--brand-gold); }
.text-red { color: var(--red); }

.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }

.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.section {
  padding: var(--section-pad) 0;
}

.section-alt {
  background: var(--brand-navy-2);
}

.section-dark { background: var(--brand-navy); }
.section-mid  { background: var(--brand-navy-2); }
.section-deep { background: var(--brand-navy-3); }

/* Gradient text */
.gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Top Utility Bar ---- */
.top-bar {
  background: var(--brand-gold);
  padding: 10px 0;
  position: relative;
  z-index: 101;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-on-gold);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
}

.top-bar-item.top-bar-link {
  transition: opacity 0.2s, transform 0.2s;
}

.top-bar-item.top-bar-link:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ---- Navigation ---- */
.nav {
  position: sticky;
  top: 0;
  background: rgba(5,13,31,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  height: var(--nav-height);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 2px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--brand-gold);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base);
  position: relative;
  letter-spacing: 0.1px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

/* Nav CTA */
.nav-cta {
  background: var(--brand-gold);
  color: var(--text-on-gold) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-heading);
  transition: all var(--transition-base);
  white-space: nowrap;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--brand-gold-light);
  transform: translateY(-1px);
  box-shadow: var(--glow-gold);
}

/* Nav right wrapper */
.nav-right,
.svc-nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Mega Menu */
.has-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--brand-navy-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dropdown);
  padding: 24px;
  min-width: 640px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  pointer-events: none;
}

.has-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mega-menu-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--brand-gold);
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  cursor: pointer;
  color: var(--text-secondary);
}

.mega-menu-item:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
}

.mega-menu-icon {
  width: 18px;
  height: 18px;
  color: var(--brand-gold);
  flex-shrink: 0;
}

.mega-menu-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.mega-menu-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
  position: relative;
  z-index: 1;
  cursor: pointer;
  border: none;
  background: none;
}

.mobile-menu-btn:hover {
  background: rgba(255,255,255,0.08);
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9998;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: var(--brand-navy-2);
  z-index: 9999;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-left: 1px solid var(--border-subtle);
}

.mobile-menu-panel.active {
  transform: translateX(0);
}

.mobile-menu-close {
  color: var(--text-secondary);
  margin-bottom: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
}

.mobile-menu-links {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-menu-link {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), color var(--transition-fast);
  display: block;
}

.mobile-menu-link:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
}

.mobile-menu-section-label {
  padding: 14px 16px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.mobile-menu-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 6px 0;
}

.mobile-menu-cta {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--brand-gold);
  color: var(--text-on-gold) !important;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-align: center;
  display: block;
  transition: opacity var(--transition-fast);
}

.mobile-menu-cta:hover {
  opacity: 0.92;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--brand-gold);
  color: var(--text-on-gold);
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--brand-gold-light);
  box-shadow: 0 8px 24px rgba(245,166,35,0.4);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.10);
}

.btn-outline {
  background: transparent;
  color: var(--brand-teal);
  border: 1.5px solid var(--brand-teal);
}

.btn-outline:hover {
  background: rgba(14,165,233,0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--text-primary);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
  border-radius: var(--radius-md);
}

/* ---- Cards ---- */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--card-pad);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(245,166,35,0.2);
}

/* Service Card */
.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
}

.service-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

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

.service-card-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.service-card-feature svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

/* Pricing Card */
.pricing-card {
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  border: 2px solid rgba(245,166,35,0.5);
  box-shadow: var(--shadow-card-hover);
}

.pricing-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--brand-gold);
  color: var(--text-on-gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.pricing-card-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.pricing-card-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  font-family: var(--font-heading);
  margin-top: 8px;
}

.pricing-card-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 24px 0;
}

.pricing-card-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-card-feature.included svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

.pricing-card-feature.excluded {
  color: var(--text-muted);
}

.pricing-card-feature.excluded svg {
  width: 18px;
  height: 18px;
  color: var(--border-subtle);
  flex-shrink: 0;
}

/* Account Type Card */
.account-card {
  cursor: pointer;
  position: relative;
}

.account-card.selected {
  border: 2px solid var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15), var(--shadow-card-hover);
}

.account-card-badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  background: rgba(245,166,35,0.1);
  color: var(--brand-gold);
}

.account-card-badge.new {
  background: rgba(14,165,233,0.1);
  color: var(--brand-teal);
}

.account-card-badge.aged {
  background: rgba(245,166,35,0.1);
  color: var(--brand-gold);
}

.account-card-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  font-family: var(--font-heading);
  margin-bottom: 16px;
}

.account-card-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

/* ---- Status Badges ---- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-instock {
  background: rgba(34,211,161,0.12);
  color: var(--green);
}

.badge-lowstock {
  background: rgba(245,166,35,0.12);
  color: var(--brand-gold);
}

.badge-outstock {
  background: rgba(248,113,113,0.12);
  color: var(--red);
}

.badge-new {
  background: rgba(14,165,233,0.1);
  color: var(--brand-teal);
}

.badge-popular {
  background: rgba(245,166,35,0.1);
  color: var(--brand-gold);
}

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  font-size: 16px;
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B8C4D8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

/* ---- Modals ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9990;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal-panel {
  background: var(--brand-navy-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-dropdown);
  max-width: 460px;
  width: 100%;
  padding: 40px;
  position: relative;
  animation: modalSlideUp 0.28s ease both;
}

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: rgba(255,255,255,0.10);
  color: var(--text-primary);
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-heading);
  text-align: left;
  gap: 16px;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--brand-gold);
}

.faq-question svg,
.faq-question i {
  width: 20px;
  height: 20px;
  color: var(--brand-gold);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item.open .faq-question svg,
.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---- Footer ---- */
.footer {
  background: #030810;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 0;
  color: var(--text-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-brand-logo span {
  color: var(--brand-gold);
  font-weight: 500;
}

.footer-brand-tagline {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: rgba(245,166,35,0.15);
  border-color: rgba(245,166,35,0.3);
  color: var(--brand-gold);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-heading {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14.5px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--brand-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 13.5px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-link {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-bottom-link:hover {
  color: var(--text-secondary);
}

/* ========================================
   PAGE HERO — Service Pages
   FIXED: beautiful dark navy hero with vivid text
   ======================================== */
.page-hero {
  position: relative;
  background: var(--brand-navy-3);
  padding: 88px 0 72px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(245,166,35,0.18) 0%, transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(37,99,235,0.16) 0%, transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(14,165,233,0.10) 0%, transparent 40%);
  pointer-events: none;
}

/* Subtle grid lines */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

/* Gold accent bar above title */

/* Hero icon wrapper */
.page-hero-content > div:first-of-type {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

/* PAGE HERO TITLE — beautiful, visible, high-contrast */
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px;

  /* Vivid gradient title text */
  background: linear-gradient(135deg, #FFFFFF 0%, #F5A623 55%, #FFD07A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  /* Glow for drama */
  filter: drop-shadow(0 2px 20px rgba(245,166,35,0.3));
}

/* PAGE HERO DESCRIPTION — crisp, clearly readable */
.page-hero-desc {
  font-size: clamp(16px, 1.4vw, 19px);
  color: #C9D6EA;
  max-width: 600px;
  margin: 0 auto 8px;
  line-height: 1.75;
  font-weight: 400;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  justify-content: center;
}

.breadcrumb a {
  color: var(--brand-teal);
  transition: opacity var(--transition-fast);
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.breadcrumb-separator {
  color: var(--border-subtle);
}

/* ---- Section Headers ---- */
.section-header {
  margin-bottom: 64px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-label {
  justify-content: center;
}

.section-header.center .section-label::before {
  display: none;
}

.section-header.center .section-desc {
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--brand-gold);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  line-height: 1.12;
  margin-bottom: 20px;
}

.section-title span {
  color: var(--brand-gold);
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 600px;
}

/* ---- Stats Section ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--border-subtle);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .stat-suffix {
  font-size: 0.6em;
  color: var(--brand-gold);
}

.stat-number .gold {
  color: var(--brand-gold);
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  background: rgba(245,166,35,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold);
}

/* ---- CTA Section ---- */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--brand-navy-3) 0%, #0A1F3D 100%);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.1;
  position: relative;
}

.cta-title span {
  color: var(--brand-gold);
}

.cta-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
  position: relative;
}

.cta-btn {
  background: var(--brand-gold);
  color: var(--text-on-gold);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-button);
  position: relative;
}

.cta-btn:hover {
  transform: translateY(-2px);
  background: var(--brand-gold-light);
  box-shadow: 0 12px 32px rgba(245,166,35,0.4);
}

/* ---- Blog Card ---- */
.blog-card {
  overflow: hidden;
  padding: 0;
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: var(--card-pad);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.blog-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---- Legal Content ---- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 40px 0 16px;
  font-family: var(--font-heading);
}

.legal-content h3:first-child {
  margin-top: 0;
}

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

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
  list-style: disc;
}

.legal-content ul li {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ---- Order Page ---- */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.order-summary {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--card-pad);
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.order-summary-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
  margin-bottom: 24px;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
  color: var(--text-secondary);
}

.order-summary-row.total {
  border-bottom: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  padding-top: 16px;
  margin-top: 8px;
  border-top: 2px solid var(--border-subtle);
}

/* ---- Scroll Reveal ---- */
/* Reveal animation — only active when JS has loaded (body.js-ready class set by script) */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
}

body.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Keyframe Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(245,166,35,0); }
}

/* ========================================
   SERVICE PAGE PRICING SECTION
   ======================================== */
.svc-pricing-v3 {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background: #070b16;
  color: var(--text-primary);
}

.svc-pricing-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(245,166,35,0.20), transparent 32%),
    radial-gradient(circle at 85% 14%, rgba(6,182,212,0.14), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(59,130,246,0.10), transparent 38%),
    linear-gradient(180deg, #070b16 0%, #0f172a 52%, #020617 100%);
}

.svc-pricing-v3::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 76% at 50% 42%, black 0%, transparent 100%);
  pointer-events: none;
}

.svc-pricing-v3 .container {
  position: relative;
  z-index: 1;
  max-width: 1360px;
}

.svc-pricing-v3 .section-header {
  max-width: 800px;
  margin: 0 auto 36px;
  text-align: center;
}

.svc-pricing-v3 .section-label,
.svc-panel-kicker { color: var(--brand-gold); justify-content: center; }
.svc-pricing-v3 .section-title { color: var(--text-primary); }
.svc-pricing-v3 .section-desc { color: var(--text-secondary); margin: 0 auto; }

.svc-tabs input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.svc-tab-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 34px;
  padding: 8px;
  border: 1px solid rgba(148,163,184,0.20);
  border-radius: 18px;
  background: rgba(15,23,42,0.82);
  box-shadow: 0 18px 45px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
}

.svc-tab-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.1px;
  cursor: pointer;
  transition: all 0.22s ease;
}

.svc-tab-label:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.07);
}

.svc-tab-panel { display: none; animation: svcFadeUp 0.32s ease both; }
@keyframes svcFadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.svc-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 22px;
  padding: 0 4px;
}

.svc-panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.svc-panel-title {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 6px;
}

.svc-panel-desc {
  max-width: 620px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.svc-panel-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 999px;
  background: rgba(245,166,35,0.08);
  color: var(--brand-gold);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.svc-pricing-grid-v3 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.svc-price-card-v3 {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px 18px;
  border: 1px solid rgba(148,163,184,0.18);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(15,23,42,0.96), rgba(2,6,23,0.92));
  overflow: hidden;
  box-shadow: 0 22px 54px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.045);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.svc-price-card-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.08), transparent 58%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.svc-price-card-v3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #f5a623 0%, #ffd07a 50%, #f5a623 100%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.svc-price-card-v3:hover,
.svc-price-card-v3.is-featured {
  transform: translateY(-6px);
  border-color: rgba(245,166,35,0.38);
  background: linear-gradient(180deg, rgba(30,41,59,0.98), rgba(15,23,42,0.96));
  box-shadow: 0 26px 70px rgba(0,0,0,0.44), 0 0 34px rgba(245,166,35,0.16);
}

.svc-price-card-v3:hover::before,
.svc-price-card-v3:hover::after,
.svc-price-card-v3.is-featured::before,
.svc-price-card-v3.is-featured::after { opacity: 1; }
.svc-price-card-v3 > * { position: relative; z-index: 1; }

.svc-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.svc-card-badge-v3 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 5px 9px;
  border: 1px solid rgba(245,166,35,0.22);
  border-radius: 999px;
  background: rgba(245,166,35,0.1);
  color: var(--brand-gold);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  white-space: nowrap;
}

.svc-card-icon-v3 {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245,166,35,0.22);
  border-radius: 14px;
  background: rgba(245,166,35,0.1);
  color: var(--brand-gold);
  flex-shrink: 0;
}

.svc-card-icon-v3 svg { width: 21px; height: 21px; }

.svc-card-title-v3 {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.45px;
  margin-bottom: 8px;
}

.svc-card-desc-v3 {
  min-height: 58px;
  color: var(--text-secondary);
  font-size: 12.8px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.svc-price-line-v3 {
  padding: 13px 0;
  margin-bottom: 12px;
  border-top: 1px solid rgba(148,163,184,0.18);
  border-bottom: 1px solid rgba(148,163,184,0.18);
}

.svc-price-line-v3 span {
  display: block;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.svc-price-line-v3 strong {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.svc-price-line-v3 small {
  color: var(--text-secondary);
  font-size: 11.5px;
  margin-left: 4px;
}

.svc-feature-list-v3 {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.svc-feature-list-v3 li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(148,163,184,0.16);
  color: var(--text-secondary);
  font-size: 12.4px;
  line-height: 1.35;
}

.svc-feature-list-v3 li:last-child { border-bottom: 0; }
.svc-feature-list-v3 i { color: var(--brand-gold); flex-shrink: 0; }

.svc-order-btn-v3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background: var(--brand-gold);
  color: var(--text-on-gold);
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.svc-order-btn-v3:hover {
  transform: translateY(-1px);
  background: var(--brand-gold-light);
  box-shadow: 0 12px 28px rgba(245,166,35,0.28);
}

/* ---- Order Contact Modal ---- */
.order-contact-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}

.order-contact-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.order-contact-card {
  background: var(--brand-navy-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px 32px 32px;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  animation: modalSlideUp 0.28s ease both;
}

.order-contact-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
  border: none;
}

.order-contact-close:hover {
  background: rgba(255,255,255,0.10);
  color: var(--text-primary);
}

.order-contact-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  text-align: center;
}

.order-contact-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 28px;
}

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

.order-contact-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  cursor: pointer;
  background: rgba(255,255,255,0.04);
}

.order-contact-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.order-contact-option.whatsapp {
  border-color: rgba(34,197,94,0.2);
}

.order-contact-option.whatsapp:hover {
  border-color: rgba(34,197,94,0.5);
  box-shadow: 0 8px 24px rgba(34,197,94,0.2);
}

.order-contact-option.telegram {
  border-color: rgba(59,130,246,0.2);
}

.order-contact-option.telegram:hover {
  border-color: rgba(59,130,246,0.5);
  box-shadow: 0 8px 24px rgba(59,130,246,0.2);
}

.order-contact-option.email {
  border-color: rgba(245,166,35,0.2);
}

.order-contact-option.email:hover {
  border-color: rgba(245,166,35,0.5);
  box-shadow: 0 8px 24px rgba(245,166,35,0.2);
}

.order-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

.order-contact-option.whatsapp .order-contact-icon { background: #22c55e; }
.order-contact-option.telegram .order-contact-icon { background: #3b82f6; }
.order-contact-option.email .order-contact-icon { background: var(--brand-gold); }

.order-contact-icon svg {
  width: 22px;
  height: 22px;
  color: white;
}

.order-contact-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
  font-family: var(--font-heading);
}

.order-contact-text span {
  font-size: 13px;
  color: var(--text-secondary);
}

.order-contact-note {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* ---- What You Get section (service pages) ---- */
.section .card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--card-pad);
  box-shadow: var(--shadow-card);
}

/* ---- Service card button ---- */
.btn-service {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand-gold);
  color: var(--text-on-gold);
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-heading);
  padding: 14px 24px;
  border-radius: 12px;
  transition: all 0.2s;
  width: 100%;
}

.btn-service:hover {
  background: var(--brand-gold-light);
  transform: translateY(-1px);
}

button.ig-order-btn-v3,
button.svc-order-btn-v3 {
  width: 100%;
  border: none;
  font-family: var(--font-heading);
  cursor: pointer;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet (768px - 1100px) */
@media (max-width: 1100px) {
  .svc-pricing-grid-v3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border-subtle); }
}

/* Mobile (<768px) */
@media (max-width: 767px) {
  :root {
    --section-pad: 64px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-desc {
    font-size: 16px;
  }

  .page-hero {
    padding: 64px 0 56px;
  }

  .page-hero-title {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1px;
  }

  .page-hero-desc {
    font-size: 15px;
    line-height: 1.65;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat-item {
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
  }

  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:last-child { border-bottom: none; }

  .stat-number { font-size: 36px; }

  .cta-title { font-size: 28px; }

  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-logo { font-size: 22px; }
  .nav-right { gap: 10px; }
  .nav-cta { font-size: 13px; padding: 8px 14px; border-radius: 7px; }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .top-bar-inner {
    gap: 12px;
  }

  .top-bar-item {
    font-size: 11px;
  }

  .top-bar-item:nth-child(3),
  .top-bar-item:nth-child(4) { display: none; }

  .section .grid-3,
  .section .grid-2 {
    grid-template-columns: 1fr;
  }

  .svc-pricing-v3 { padding: 72px 0; }
  .svc-tab-controls {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 8px;
  }
  .svc-tab-label { flex: 0 0 auto; justify-content: center; min-width: max-content; }
  .svc-panel-head { display: block; }
  .svc-panel-note { margin-top: 16px; white-space: normal; }
  .svc-pricing-grid-v3 { grid-template-columns: 1fr; }
  .svc-card-desc-v3 { min-height: auto; }
  .svc-price-card-v3 { padding: 20px 16px; border-radius: 18px; }
  .svc-card-title-v3 { font-size: 20px; }
  .svc-price-line-v3 strong { font-size: 34px; }

  .order-contact-card {
    padding: 32px 20px 24px;
  }
  .order-contact-title { font-size: 20px; }
}

/* Small Mobile (<480px) */
@media (max-width: 479px) {
  .nav-cta { display: none; }
  .nav-logo { font-size: 20px; }
  .container { padding: 0 16px; }

  .page-hero-title {
    font-size: clamp(26px, 9vw, 36px);
  }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  body.js-ready .reveal,
  body.js-ready .reveal.visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Thin scrollbar on webkit */
@supports (scrollbar-width: thin) {
  html {
    scrollbar-width: thin;
    scrollbar-color: var(--brand-blue) transparent;
  }
}

/* ============================================
   REVEAL INSIDE HIDDEN TAB PANELS
   Elements inside display:none panels can't
   be observed, so show them immediately when panel opens
   ============================================ */
.svc-tab-panel .reveal,
.svc-tab-panel .reveal.visible,
body.js-ready .svc-tab-panel .reveal,
body.js-ready .svc-tab-panel .reveal.visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}


/* ChatGPT repair patch */
table{width:100%!important;border-collapse:collapse!important;display:table!important}
table th,table td{padding:12px;border:1px solid rgba(255,255,255,.12)}
.hero,.service-hero,[class*="hero"]{
overflow:hidden;
}

/* Responsive Hero & Image Loading Fix */
.hero,.hero-section{
position:relative;
overflow:hidden;
}
.hero-content{
position:relative;
z-index:2;
}
img{
max-width:100%;
height:auto;
}
@media (max-width:768px){
.hero-visual,.hero-image,.hero-card{
width:100%!important;
margin:20px auto!important;
}
}
