/* ========================================
   AccsNova — Blue Luxury Design System
   ======================================== */

/* ─── CSS Variables ─── */
:root {
  --white: #FFFFFF;
  --bg-light: #F6F9FC;
  --bg-section: #EAF1F8;
  --navy: #0B1F3A;
  --blue-dark: #1F3C88;
  --blue: #3B82F6;
  --blue-light: #60A5FA;
  --slate: #64748B;
  --gold: #C9A96E;
  --text: #0B1F3A;
  --text-light: #64748B;
  --shadow: 0 4px 24px rgba(11,31,58,0.08);
  --shadow-lg: 0 12px 48px rgba(11,31,58,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --max-width: 1280px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul { list-style: none; }

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

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

.section {
  padding: 80px 0;
}

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

.section-blue {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%);
  color: var(--white);
}

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

.gold-text { color: var(--gold); }

.blue-text { color: var(--blue); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(59,130,246,0.35);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59,130,246,0.45);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(201,169,110,0.35);
}

.btn-gold:hover {
  background: #b8985a;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

/* ─── Top Utility Bar ─── */
.top-bar {
  background: var(--navy);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.8125rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: var(--gold);
  font-weight: 500;
}

.top-bar a:hover { text-decoration: underline; }

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

/* ─── Navigation ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11,31,58,0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(11,31,58,0.08);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  background: var(--bg-light);
  color: var(--blue);
}

.nav-links > li > a svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

/* ─── Dropdown ─── */
.dropdown {
  position: relative;
}

/* Bridge gap between trigger and menu so mouse doesn't lose hover */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  display: none;
}
.dropdown:hover::after { display: block; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(11,31,58,0.14), 0 2px 8px rgba(11,31,58,0.06);
  padding: 8px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  transition-delay: 0s;
  z-index: 1001;
  max-height: 440px;
  overflow-y: auto;
  pointer-events: none;
}

.dropdown-menu::-webkit-scrollbar { width: 4px; }
.dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--blue-light);
  border-radius: 4px;
}

/* Stay open on hover — no disappear on mouse move toward menu */
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition-delay: 0s;
}

/* Keep menu open when mouse is over the menu itself */
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--blue);
}

.dropdown-section {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--slate);
  padding: 12px 14px 4px;
}

/* ─── Mobile Menu ─── */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 2px solid rgba(59,130,246,0.2);
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  transition: var(--transition);
}

.mobile-toggle:hover {
  background: var(--bg-light);
  border-color: var(--blue);
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Order Modal ─── */
.order-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,31,58,0.55);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.order-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.order-modal {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(11,31,58,0.18);
  transform: scale(0.92) translateY(16px);
  transition: transform 0.3s ease;
  position: relative;
  text-align: center;
}

.order-modal-overlay.active .order-modal {
  transform: scale(1) translateY(0);
}

.order-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: var(--bg-light);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}

.order-modal-close:hover {
  background: var(--blue);
  color: var(--white);
}

.order-modal h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.order-modal p {
  color: var(--slate);
  font-size: 0.9375rem;
  margin-bottom: 28px;
}

.order-modal-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-channel-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.order-channel-btn.whatsapp {
  background: #25D36615;
  color: #128C7E;
  border-color: #25D36630;
}
.order-channel-btn.whatsapp:hover {
  background: #25D366;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}

.order-channel-btn.telegram {
  background: #2AABEE15;
  color: #2AABEE;
  border-color: #2AABEE30;
}
.order-channel-btn.telegram:hover {
  background: #2AABEE;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42,171,238,0.35);
}

.order-channel-btn.email {
  background: var(--bg-light);
  color: var(--navy);
  border-color: rgba(11,31,58,0.1);
}
.order-channel-btn.email:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59,130,246,0.35);
}

.order-channel-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ─── Pricing Tabs (new card system) ─── */
.pricing-tabs-section {
  margin: 48px 0;
}

.pricing-tabs-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-tabs-section > p {
  color: var(--slate);
  margin-bottom: 28px;
}

.tab-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--bg-section);
  padding-bottom: 0;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 8px 8px 0 0;
  border: 2px solid transparent;
  border-bottom: none;
  background: transparent;
  color: var(--slate);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  bottom: -2px;
}

.tab-btn:hover {
  color: var(--blue);
  background: var(--bg-light);
}

.tab-btn.active {
  background: var(--white);
  color: var(--blue);
  border-color: var(--bg-section);
  border-bottom-color: var(--white);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: tabFadeIn 0.3s ease;
}

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

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--bg-section);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(59,130,246,0.12);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--blue);
  background: linear-gradient(135deg, rgba(59,130,246,0.04) 0%, rgba(31,60,136,0.03) 100%);
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 14px;
  right: -22px;
  background: var(--blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 28px;
  transform: rotate(35deg);
  letter-spacing: 0.5px;
}

.pricing-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.pricing-card-qty {
  font-size: 0.8125rem;
  color: var(--slate);
  font-weight: 500;
}

.pricing-card-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.pricing-card-price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate);
}

.pricing-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pricing-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.4;
}

.pricing-card-features li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .btn-order-now {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.pricing-card .btn-order-now:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59,130,246,0.35);
}

.pricing-card.featured .btn-order-now {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 4px 16px rgba(59,130,246,0.3);
}

/* ─── Hero ─── */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 50%, var(--bg-section) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.08);
  color: var(--blue);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.125rem;
  color: var(--slate);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--slate);
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--blue);
}

/* Hero Right Side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-cards {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-float-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.hero-float-card:hover {
  transform: translateY(-4px);
}

.hero-float-card:nth-child(2) { margin-left: 30px; }
.hero-float-card:nth-child(3) { margin-left: 15px; }

.float-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.float-info h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
}

.float-info p {
  font-size: 0.8125rem;
  color: var(--slate);
  margin: 0;
}

.float-price {
  margin-left: auto;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9375rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-chip {
  background: var(--white);
  border: 1px solid rgba(11,31,58,0.08);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8125rem;
  color: var(--slate);
  box-shadow: var(--shadow);
}

/* ─── Section Header ─── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--slate);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.section-blue .section-header h2,
.section-blue .section-header p { color: var(--white); }
.section-blue .section-header p { opacity: 0.85; }

/* ─── Cards ─── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(11,31,58,0.04);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.card p {
  color: var(--slate);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ─── Service Cards ─── */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(11,31,58,0.04);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-img .icon-overlay {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}

.service-card-body p {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-card-footer .price {
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
}

/* ─── Platform Gallery ─── */
.platform-section {
  margin-bottom: 48px;
}

.platform-section:last-child { margin-bottom: 0; }

.platform-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.platform-title svg {
  width: 20px;
  height: 20px;
  fill: var(--blue);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.platform-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
  border: 1px solid rgba(11,31,58,0.04);
}

.platform-chip:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.platform-chip svg,
.platform-chip img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ─── Pricing Tables ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}

.pricing-card.popular {
  border-color: var(--gold);
}

.pricing-card.popular::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(11,31,58,0.06);
}

.pricing-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-header .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
}

.pricing-header .price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate);
}

.pricing-features {
  margin-bottom: 24px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.9375rem;
  color: var(--slate);
  border-bottom: 1px solid rgba(11,31,58,0.04);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li svg {
  width: 18px;
  height: 18px;
  fill: #22c55e;
  flex-shrink: 0;
}

/* ─── Pricing Table ─── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(11,31,58,0.06);
}

.pricing-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-table th:first-child { border-radius: var(--radius) 0 0 0; }
.pricing-table th:last-child { border-radius: 0 var(--radius) 0 0; }

.pricing-table td {
  font-size: 0.9375rem;
}

.pricing-table tr:hover td {
  background: var(--bg-light);
}

.pricing-table .price-cell {
  font-weight: 700;
  color: var(--blue);
}

/* ─── Order Flow Steps ─── */
.steps {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  max-width: 180px;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  font-size: 1.375rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow);
}

.step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step p {
  font-size: 0.875rem;
  opacity: 0.85;
}

.step-arrow {
  position: absolute;
  right: -30px;
  top: 16px;
  color: rgba(255,255,255,0.4);
  font-size: 1.5rem;
}

/* ─── Advantages ─── */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.advantage-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.advantage-card .icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 20px;
}

.advantage-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.advantage-card p {
  color: var(--slate);
  font-size: 0.9375rem;
}

/* ─── Insights / Blog Cards ─── */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.insight-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.insight-card-img {
  height: 180px;
  overflow: hidden;
}

.insight-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.insight-card:hover .insight-card-img img {
  transform: scale(1.05);
}

.insight-card-body {
  padding: 24px;
}

.insight-card-body .tag {
  display: inline-block;
  background: rgba(59,130,246,0.08);
  color: var(--blue);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.insight-card-body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.insight-card-body p {
  color: var(--slate);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ─── FAQ ─── */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(11,31,58,0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--blue);
  flex-shrink: 0;
  transition: var(--transition);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--slate);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ─── CTA Section ─── */
.cta-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

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

/* ─── Service Page Hero ─── */
.page-hero {
  padding: 60px 0 80px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-section) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--slate);
  margin-bottom: 24px;
}

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

.breadcrumb svg {
  width: 14px;
  height: 14px;
  fill: var(--slate);
}

.page-hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.0625rem;
  color: var(--slate);
  max-width: 600px;
  line-height: 1.7;
}

/* ─── Value Bar ─── */
.value-bar {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid rgba(11,31,58,0.06);
}

.value-bar .container {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.value-item svg {
  width: 20px;
  height: 20px;
  fill: var(--blue);
  flex-shrink: 0;
}

.value-item span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
}

/* ─── Content Section ─── */
.content-section {
  padding: 60px 0;
}

.content-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.content-section p {
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.content-section ul li {
  color: var(--slate);
  padding: 6px 0;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.content-section ul li svg {
  width: 16px;
  height: 16px;
  fill: var(--blue);
  flex-shrink: 0;
}

.content-section ul {
  list-style: none;
  padding-left: 0;
}

/* ─── Related Links ─── */
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.related-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--bg-light);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
}

.related-links a:hover {
  background: var(--blue);
  color: var(--white);
}

/* ─── Floating Buttons ─── */
.float-buttons {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn.whatsapp { background: #25D366; }
.float-btn.telegram { background: #0088CC; }

.float-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.float-tooltip {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  visibility: visible;
}

/* ─── Contact Page ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--slate);
  margin-bottom: 24px;
  line-height: 1.7;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  transition: var(--transition);
}

.contact-channel:hover {
  background: var(--bg-section);
}

.contact-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-channel-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.contact-channel-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-channel-info p {
  font-size: 0.875rem;
  color: var(--slate);
  margin: 0;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(11,31,58,0.1);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--navy);
  transition: var(--transition);
  background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

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

/* ─── Blog ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 28px;
}

.blog-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.8125rem;
  color: var(--slate);
}

.blog-card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.blog-card-body p {
  color: var(--slate);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ─── Footer ─── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 32px;
}

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

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold);
}

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

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

/* ─── Editor Picks Grid ─── */
.editor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.editor-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(11,31,58,0.04);
}

.editor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.editor-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
}

.editor-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy);
}

.editor-card p {
  font-size: 0.8125rem;
  color: var(--slate);
}

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

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Depth Panel ─── */
.depth-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.depth-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.depth-stat h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}

.depth-stat p {
  color: var(--slate);
  font-size: 0.9375rem;
}

.depth-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.depth-category {
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.depth-category h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.depth-category h4 svg {
  width: 18px;
  height: 18px;
  fill: var(--blue);
}

.depth-category ul li {
  font-size: 0.875rem;
  color: var(--slate);
  padding: 4px 0;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--blue-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .depth-stats { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }

  /* ── Hide nav links by default on mobile — show only hamburger ── */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 32px rgba(11,31,58,0.12);
    flex-direction: column;
    padding: 16px 0;
    gap: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    overflow-x: hidden;
    align-items: stretch;
    z-index: 998;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
  }

  .nav-links.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  /* Keep hamburger button on top */
  .mobile-toggle { z-index: 1001; }
  .navbar { z-index: 1000; }

  /* Nav items */
  .nav-links > li {
    border-bottom: 1px solid rgba(11,31,58,0.06);
  }
  .nav-links > li:last-child { border-bottom: none; }

  .nav-links > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    border-radius: 8px;
    margin: 2px 12px;
    background: transparent;
    transition: all 0.2s ease;
  }

  .nav-links > li > a:hover,
  .nav-links > li > a.active {
    background: rgba(59,130,246,0.08);
    color: var(--blue);
    transform: translateX(4px);
  }

  /* Dropdown chevron rotate */
  .nav-links > li > a svg {
    width: 16px;
    height: 16px;
    transition: transform 0.28s cubic-bezier(.4,0,.2,1);
    flex-shrink: 0;
  }
  .dropdown.open > a svg { transform: rotate(180deg); }

  /* Mobile dropdown - smooth accordion */
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border-radius: 8px;
    background: rgba(59,130,246,0.04);
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    padding: 0;
    margin: 4px 12px;
    transition: max-height 0.3s cubic-bezier(.4,0,.2,1),
                padding 0.2s ease;
    border: 1px solid rgba(59,130,246,0.08);
  }

  .dropdown.open .dropdown-menu {
    max-height: 60vh;
    padding: 8px 12px 16px 12px;
    pointer-events: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Section headers inside mobile dropdown */
  .dropdown-section {
    padding: 14px 8px 4px;
    font-size: 0.6875rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 1.2px;
  }

  /* Links inside dropdown */
  .dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: var(--text);
    font-weight: 500;
  }
  .dropdown-menu a:hover {
    background: rgba(59,130,246,0.08);
    color: var(--blue);
  }

  /* Order Now button stays visible */
  .nav-links .btn-primary {
    margin: 12px 20px 4px;
    text-align: center;
    display: block;
    color: #fff !important;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(59,130,246,0.3);
  }

  /* Hero: text first, then visual on mobile */
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero p { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { order: 2; }
  
  .hero h1 { font-size: 2rem; }

  /* Make hero buttons smaller on mobile */
  .hero .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .page-hero h1 { font-size: 2rem; }

  .contact-grid { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .top-bar .container { justify-content: center; }
  
  .section { padding: 56px 0; }
  
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { display: none; }
  
  .depth-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .editor-grid { grid-template-columns: repeat(2, 1fr); }

  .pricing-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .order-modal {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.625rem; }
  .section-header h2 { font-size: 1.625rem; }
  .cta-box h2 { font-size: 1.75rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .editor-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .advantage-grid { grid-template-columns: 1fr; }
  .depth-stats { grid-template-columns: 1fr; }
  .hero-float-card:nth-child(2),
  .hero-float-card:nth-child(3) { margin-left: 0; }
  .tab-nav { gap: 4px; }
  .tab-btn { padding: 8px 14px; font-size: 0.8125rem; }
}
