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

/* ==========================================
   CSS VARIABLES & DESIGN SYSTEM
   ========================================== */
:root {
  /* Light Theme Variables */
  --primary: #1346af;
  --secondary: #2563eb;
  --bg: #ffffff;
  --bg-secondary: #f5f8ff;
  --text: #111827;
  --text-secondary: #6b7280;
  --card-bg: rgba(255, 255, 255, 0.8);
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);

  --gradient: linear-gradient(135deg, #1346af, #2563eb);
  --gradient-hover: linear-gradient(135deg, #2563eb, #1346af);
  --glow: rgba(19, 70, 175, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);

  /* Fonts */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --nav-height: 80px;
}

[data-theme="dark"] {
  /* Dark Theme Variables */
  --primary: #3b82f6;
  --secondary: #60a5fa;
  --bg: #0b1120;
  --bg-secondary: #111827;
  --text: #f9fafb;
  --text-secondary: #9ca3af;
  --card-bg: rgba(17, 24, 39, 0.8);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.6);

  --gradient: linear-gradient(135deg, #3b82f6, #60a5fa);
  --gradient-hover: linear-gradient(135deg, #60a5fa, #3b82f6);
  --glow: rgba(59, 130, 246, 0.35);
  --glass-bg: rgba(15, 23, 42, 0.6);
  --glass-border: rgba(255, 255, 255, 0.05);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  transition: background-color var(--transition-normal),
    color var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

section {
  padding: 100px 0;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography & Titles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
  padding: 6px 16px;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Gradient Text Utility */
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast),
    color var(--transition-fast);
  font-size: 0.95rem;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--gradient);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--glow);
}

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

.btn-secondary:hover {
  background-color: var(--border);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Glass Card Component */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal),
    background-color var(--transition-normal),
    border-color var(--transition-normal);
}

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

/* Floating Shapes & Blobs */
.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--glow) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
  animation: blobFloat 25s infinite alternate;
}

/* ==========================================
   PRELOADER
   ========================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader {
  position: relative;
  width: 80px;
  height: 80px;
}

.loader-circle {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 6px solid var(--primary);
  border-radius: 50%;
  animation: loaderSpin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--primary) transparent transparent transparent;
}

.loader-circle:nth-child(1) {
  animation-delay: -0.45s;
}

.loader-circle:nth-child(2) {
  animation-delay: -0.3s;
}

.loader-circle:nth-child(3) {
  animation-delay: -0.15s;
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background-color var(--transition-normal),
    border-color var(--transition-normal),
    height var(--transition-normal),
    box-shadow var(--transition-normal);
  will-change: transform;
}

.header.scrolled {
  height: 70px;
  box-shadow: var(--shadow);
}

.header.header-hidden {
  transform: translateY(-100%);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text);
  z-index: 1001;
  flex-shrink: 0;
}

.logo img {
  height: 40px;
  max-height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.logo:hover img {
  transform: scale(1.05);
}

/* Light / Dark Mode Brand Logo Switching */
.logo-dark {
  display: none !important;
}

.logo-light {
  display: block !important;
}

[data-theme="dark"] .logo-light {
  display: none !important;
}

[data-theme="dark"] .logo-dark {
  display: block !important;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-actions-static {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Theme Toggle Button */
.theme-toggle {
  width: 50px;
  height: 26px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.theme-toggle-icon {
  width: 14px;
  height: 14px;
  fill: none;
  z-index: 2;
  transition: transform var(--transition-normal);
  pointer-events: none;
}

.theme-toggle-icon path {
  stroke: var(--text-secondary);
  stroke-dasharray: none;
  transition: stroke var(--transition-normal);
}

/* Sun active in Light mode (default) */
.theme-toggle-icon.sun path {
  stroke: #ffffff;
}

/* Moon active in Dark mode */
[data-theme="dark"] .theme-toggle-icon.moon path {
  stroke: #ffffff;
}

/* Inactive states */
[data-theme="dark"] .theme-toggle-icon.sun path {
  stroke: var(--text-secondary);
}

.theme-toggle-icon.moon path {
  stroke: var(--text-secondary);
}

.theme-toggle-thumb {
  width: 20px;
  height: 20px;
  background: var(--gradient);
  border-radius: 50%;
  position: absolute;
  left: 2px;
  z-index: 1;
  transition: transform var(--transition-normal);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(24px);
}

[data-theme="dark"] .theme-toggle-icon.moon {
  transform: rotate(360deg);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text);
  border-radius: var(--radius-full);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 36px);
  padding-bottom: 72px;
  background-color: var(--bg);
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 40px;
}

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

.hero-title {
  font-size: clamp(2.2rem, 3.3vw + 0.35rem, 3.3rem);
  font-weight: 800;
  line-height: 1.16;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: break-word;
}

.hero-title-group {
  display: inline-block;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.6;
  text-wrap: pretty;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--secondary);
  animation: pulseGlow 1.5s infinite alternate;
}

/* Trust Badges Grid */
.trust-badges {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.trust-title {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 500;
  white-space: nowrap;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast);
}

.badge-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.badge-item svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
}

/* Hero Graphics */
.hero-graphics {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.shape-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
}

.shape-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--glow) 0%, rgba(255, 255, 255, 0) 65%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}

/* SVG Floating Shapes & Interactive Canvas */
.floating-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}

.floating-svg.is-grabbing,
.floating-svg.is-rotating {
  cursor: grabbing !important;
}

.hero-orbit-ring {
  pointer-events: stroke;
  transition: stroke 0.2s ease;
}

.hero-orbit-polygon {
  pointer-events: stroke;
  transition: stroke 0.2s ease;
}

.hero-orbit-line {
  pointer-events: none;
}

.shape-node {
  animation: pulseGlow 3s ease-in-out infinite alternate;
}

.shape-node-delay {
  animation: pulseGlow 3s ease-in-out infinite alternate;
  animation-delay: 1.5s;
}

/* Hero SVG Orbiting Technology Nodes */
.tech-orbit-node {
  cursor: grab;
  transition: filter 0.2s ease;
}

.tech-orbit-node:hover .tech-node-bg {
  stroke-width: 2.2;
  filter: drop-shadow(0 0 10px var(--primary));
}

.tech-orbit-node:hover .tech-node-pulse {
  opacity: 0.5;
  transform: scale(1.15);
}

.tech-orbit-node.is-dragged {
  cursor: grabbing !important;
}

.tech-orbit-node.is-dragged .tech-node-bg {
  stroke-width: 2.6;
  filter: drop-shadow(0 0 16px var(--primary));
}

.tech-orbit-node.is-dragged .tech-node-pulse {
  opacity: 0.65;
  animation: none;
}

.tech-node-pulse {
  fill: var(--primary);
  opacity: 0.2;
  transform-origin: 0 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  animation: techNodePulse 2.5s ease-in-out infinite alternate;
}

.tech-orbit-delay-1 .tech-node-pulse {
  animation-delay: 0.5s;
}

.tech-orbit-delay-2 .tech-node-pulse {
  animation-delay: 1s;
}

.tech-orbit-delay-3 .tech-node-pulse {
  animation-delay: 1.5s;
}

.tech-orbit-delay-4 .tech-node-pulse {
  animation-delay: 2s;
}

.tech-node-bg {
  fill: var(--bg);
  stroke: var(--primary);
  stroke-width: 1.5;
  filter: drop-shadow(0 2px 8px var(--glow));
  transition: fill var(--transition-normal), stroke var(--transition-normal), stroke-width 0.2s ease, filter 0.2s ease;
}

[data-theme="dark"] .tech-node-bg {
  fill: var(--bg-secondary);
  stroke: var(--primary);
}

@keyframes techNodePulse {
  0% {
    opacity: 0.15;
  }

  100% {
    opacity: 0.45;
  }
}

/* Central Jupiter Emblem */
.hero-central-emblem {
  cursor: pointer;
  transition: filter 0.3s ease, opacity 0.2s ease;
}

.hero-central-emblem:hover {
  filter: drop-shadow(0 0 14px var(--primary));
}

.hero-central-emblem:active {
  filter: drop-shadow(0 0 20px var(--primary)) brightness(1.15);
  opacity: 0.9;
}

.shape-float-1 {
  animation: shapeFloatAnim1 6s ease-in-out infinite alternate;
}

.shape-float-2 {
  animation: shapeFloatAnim2 7s ease-in-out infinite alternate;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats {
  padding: 60px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: 20px;
}

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  flex: 0 1 calc((100% - 60px) / 3);
  max-width: calc((100% - 60px) / 3);
  min-width: 290px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  height: auto;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.service-icon-box svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.service-subtitle {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 16px;
}

.service-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.service-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-features {
  margin-bottom: 32px;
  flex-grow: 1;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.service-features li svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
}

.service-card .btn {
  width: 100%;
}

/* ==========================================
   TECHNOLOGIES SECTION
   ========================================== */
.tech {
  background-color: var(--bg-secondary);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.tech-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal),
    border-color var(--transition-normal);
}

.tech-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 25px var(--glow);
}

.tech-logo {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
  border-radius: 50%;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.tech-logo svg {
  width: 38px;
  height: 38px;
  transition: transform var(--transition-normal);
}

.tech-card:hover .tech-logo {
  transform: scale(1.1);
  box-shadow: 0 8px 20px var(--glow);
}

.tech-name {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.tech-role {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  padding: 32px;
}

.why-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.why-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================
   DOMAINOFFER SHOWCASE SECTION
   ========================================== */
.domain-promo {
  padding: 80px 0;
  background-color: var(--bg);
  width: 100%;
  overflow-x: clip;
}

.promo-container {
  background: linear-gradient(135deg, rgba(19, 70, 175, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
  border: 2px solid var(--primary);
  box-shadow: 0 15px 35px var(--glow);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.promo-container::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--glow) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.promo-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.promo-tag {
  display: inline-block;
  background-color: var(--primary);
  color: #ffffff;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.promo-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  word-break: break-word;
  overflow-wrap: break-word;
}

.promo-desc {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.promo-subtext {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.6;
  word-break: break-word;
  overflow-wrap: break-word;
}

.promo-email {
  color: var(--primary);
  font-weight: 700;
  word-break: break-all;
  overflow-wrap: anywhere;
}

.promo-features-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.promo-feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.promo-feature-pill:hover {
  transform: translateX(4px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.promo-feature-pill svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  flex-shrink: 0;
  fill: var(--primary);
}

.promo-feature-pill span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  word-break: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
  background-color: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.10fr 0.90fr;
  gap: 60px;
  align-items: center;
}

.about-content {
  position: relative;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.about-bullets {
  margin-bottom: 32px;
}

.about-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.about-bullet-icon {
  width: 24px;
  height: 24px;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-bullet-icon svg {
  width: 12px;
  height: 12px;
  fill: var(--primary);
}

.about-bullet-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-bullet-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.about-card-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient);
  color: white;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  text-align: center;
  max-width: 180px;
}

.about-badge-num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.about-badge-text {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  display: none;
  animation: fadeIn var(--transition-slow) forwards;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-box {
  padding: 40px;
  text-align: center;
}

.testimonial-quote-icon {
  width: 48px;
  height: 48px;
  fill: var(--border);
  margin: 0 auto 24px;
}

.testimonial-quote {
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 28px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.testimonial-author-name {
  font-size: 1.1rem;
  font-weight: 600;
}

.testimonial-author-role {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border);
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.testimonial-dot.active {
  background-color: var(--primary);
  transform: scale(1.3);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
  background-color: var(--bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--bg);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 20px var(--glow);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
}

.faq-title {
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.4;
  padding-right: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color var(--transition-normal);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--text);
  transition: fill var(--transition-normal);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background-color: var(--primary);
}

.faq-item.open .faq-icon svg {
  fill: #ffffff;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 24px 0 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding-bottom 0.35s ease;
}

.faq-item.open .faq-answer-inner {
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 24px;
}

.faq-answer-inner p {
  margin-bottom: 12px;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-answer-inner ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-answer-inner li {
  position: relative;
  padding-left: 20px;
}

.faq-answer-inner li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.4;
}

.faq-answer-inner strong {
  color: var(--text);
  font-weight: 600;
}

.faq-answer-inner a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
  transition: opacity var(--transition-fast);
}

.faq-answer-inner a:hover {
  opacity: 0.85;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.contact-info-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-info-details p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.contact-info-details a:hover {
  color: var(--primary);
}

.location-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  line-height: 1.2;
}

.trust-badge svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.business-reg-no {
  font-size: 0.78rem !important;
  color: var(--text-secondary);
  margin-top: 8px;
  letter-spacing: 0.01em;
}

/* What Happens Next Card */
.next-steps-card {
  flex-direction: column;
  padding: 24px 28px;
  gap: 16px;
}

.next-steps-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.next-steps-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.next-steps-icon svg {
  width: 18px;
  height: 18px;
}

.next-steps-header h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}

.next-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.next-steps-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  line-height: 1.4;
}

.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-desc {
  font-weight: 500;
  color: var(--text-secondary);
}

/* Contact Form */
.contact-form-container {
  padding: 40px;
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

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

.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color var(--transition-fast),
    background-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23777%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px top 50%;
  background-size: 12px auto;
  padding-right: 42px;
  cursor: pointer;
}

.budget-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.currency-symbol {
  position: absolute;
  left: 16px;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.05rem;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

.budget-input {
  padding-left: 36px !important;
}

.required-star {
  color: #ef4444;
  font-weight: 700;
}

.optional-tag {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-left: 4px;
}

.form-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 6px;
  line-height: 1.4;
}

.form-hint strong {
  color: var(--primary);
  font-weight: 600;
}

.service-starting-price {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 4px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
}

.form-input:focus {
  border-color: var(--primary);
  background-color: var(--bg);
  box-shadow: 0 0 0 4px var(--glow);
  outline: none;
}

textarea.form-input {
  min-height: 140px;
  resize: vertical;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-submit-btn {
  width: 100%;
}

.form-cta-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-cta-reassurance svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.form-legal-note {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 10px;
  text-align: center;
  line-height: 1.4;
  opacity: 0.9;
}

.form-legal-note a {
  color: var(--primary);
  text-decoration: underline;
  transition: opacity var(--transition-fast);
}

.form-legal-note a:hover {
  opacity: 0.8;
}

.form-response-msg {
  margin-top: 16px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
  animation: fadeIn var(--transition-fast) forwards;
}

.form-response-msg.success {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: block;
}

.form-response-msg.error {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
  display: block;
}

.alert-error-custom {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-response-msg:has(.alert-error-custom) {
  padding: 0;
  border: none;
  background: none;
}


/* ==========================================
   CTA BANNER BEFORE FOOTER
   ========================================== */
.cta-banner {
  padding: 80px 0;
  background: var(--gradient);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0.9;
}

.cta-banner .btn-secondary {
  background-color: #ffffff;
  color: var(--primary);
  border: none;
}

.cta-banner .btn-secondary:hover {
  background-color: var(--bg-secondary);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-info-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.footer-info-logo img {
  height: 36px;
  max-height: 36px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.footer-info-logo:hover img {
  transform: scale(1.05);
}

.footer-info-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--text-secondary);
  transition: fill var(--transition-fast);
}

.social-link:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.social-link:hover svg {
  fill: #ffffff;
}

.footer-col h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

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

.footer-legal-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
}

.footer-legal-links a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--primary);
}

.footer-legal-links .separator {
  color: var(--border);
  user-select: none;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-meta {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px var(--glow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity var(--transition-normal),
    visibility var(--transition-normal),
    transform var(--transition-normal),
    bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--glow);
}

.scroll-top svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

/* ==========================================
   STICKY MOBILE CTA
   ========================================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  z-index: 98;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background-color var(--transition-normal),
    border-color var(--transition-normal);
  will-change: transform;
}

.mobile-sticky-cta.cta-visible {
  transform: translateY(0);
}

.mobile-sticky-cta .btn {
  width: 100%;
  padding: 12px;
}

/* ==========================================
   ANIMATIONS KEYFRAMES
   ========================================== */
@keyframes loaderSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(50px, -70px) scale(1.1);
  }

  66% {
    transform: translate(-30px, 40px) scale(0.95);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 var(--glow);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(19, 70, 175, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(19, 70, 175, 0);
  }
}

@keyframes shapeRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes shapeFloatAnim1 {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-15px) rotate(5deg);
  }
}

@keyframes shapeFloatAnim2 {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(15px) rotate(-8deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Animation classes (handled by ScrollReveal or JS class toggles) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   MEDIA QUERIES (MOBILE RESPONSIVE)
   ========================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 3.4vw + 0.4rem, 2.9rem);
  }

  .hero-desc {
    font-size: 1.08rem;
    margin-bottom: 30px;
  }

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

  .services-grid {
    gap: 24px;
  }

  .service-card {
    flex: 0 1 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
    min-width: 280px;
  }

  .tech-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .tech-grid .tech-card {
    grid-column: span 2;
  }

  .tech-grid .tech-card:nth-child(7) {
    grid-column: 2 / span 2;
  }

  .tech-grid .tech-card:nth-child(8) {
    grid-column: 4 / span 2;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-graphics {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-card-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 30px auto 0;
    max-width: 220px;
    box-shadow: var(--shadow);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  :root {
    --nav-height: 70px;
  }

  .header,
  .header.scrolled {
    height: var(--nav-height);
  }

  /* Mobile Menu navigation styling */
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    margin-left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    height: calc(100dvh - var(--nav-height));
    max-height: calc(100dvh - var(--nav-height));
    background-color: var(--bg);
    display: flex;
    flex-direction: column;
    padding: 24px 20px calc(24px + env(safe-area-inset-bottom, 12px));
    gap: 12px;
    transition: left var(--transition-normal);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid var(--border);
    z-index: 999;
  }

  .nav-menu.open {
    left: 0;
  }

  .nav-menu .nav-link {
    font-size: 1.05rem;
    font-weight: 500;
    padding: 10px 16px;
    text-align: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: var(--primary);
    background-color: var(--primary-light);
  }

  .nav-menu .nav-link::after {
    display: none;
  }

  .nav-actions {
    margin-top: auto;
    padding-top: 16px;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
  }

  .nav-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.98rem;
  }

  .mobile-sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 70px;
    /* offset for sticky cta height */
  }

  .scroll-top {
    bottom: 24px;
    right: 20px;
  }

  .scroll-top.cta-offset {
    bottom: 85px;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 34px;
    max-height: 34px;
  }

  section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 24px);
    padding-bottom: 50px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    font-size: clamp(1.95rem, 5.5vw, 2.45rem);
    margin-bottom: 18px;
  }

  .hero-title-group {
    display: inline-block;
  }

  .hero-desc {
    font-size: 1.02rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;
    margin-bottom: 28px;
  }

  .hero-btns {
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
  }

  .trust-badges {
    padding-top: 22px;
    text-align: center;
  }

  .trust-title {
    text-align: center;
    margin-bottom: 12px;
  }

  .badges-grid {
    justify-content: center;
    gap: 8px 10px;
    max-width: 520px;
    margin: 0 auto;
  }

  .badge-item {
    padding: 6px 12px;
    font-size: 0.8rem;
    gap: 6px;
  }

  .badge-item svg {
    width: 15px;
    height: 15px;
  }

  .hero-graphics {
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
  }

  .services-grid {
    max-width: 480px;
    margin: 0 auto;
    gap: 20px;
  }

  .service-card {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
  }

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

  .tech-grid .tech-card,
  .tech-grid .tech-card:nth-child(7),
  .tech-grid .tech-card:nth-child(8) {
    grid-column: auto;
  }

  .tech-grid .tech-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .domain-promo {
    padding: 60px 0;
  }

  .promo-container {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    text-align: left;
    gap: 28px;
  }

  .promo-title {
    font-size: 1.85rem;
  }

  .promo-features-box {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    padding-top: 24px;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
  }
}

@media (max-width: 640px) {
  .contact-grid {
    gap: 28px;
  }

  .contact-form-container {
    padding: 28px 20px;
  }

  .contact-info-card {
    padding: 22px 20px;
  }

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

  .container {
    padding: 0 16px;
  }

  .domain-promo {
    padding: 48px 0;
  }

  .promo-container {
    padding: 28px 20px;
    gap: 24px;
    border-radius: var(--radius-md);
  }

  .promo-title {
    font-size: 1.6rem;
  }

  .promo-desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .domain-promo {
    padding: 36px 0;
  }

  .promo-container {
    padding: 22px 16px;
    gap: 20px;
    border-radius: var(--radius-md);
    border-width: 1.5px;
  }

  .promo-tag {
    font-size: 0.72rem;
    padding: 4px 10px;
    margin-bottom: 10px;
  }

  .promo-title {
    font-size: 1.38rem;
    margin-bottom: 10px;
  }

  .promo-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 10px;
  }

  .promo-subtext {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .promo-feature-pill {
    padding: 10px 12px;
    gap: 10px;
  }

  .promo-feature-pill svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }

  .promo-feature-pill span {
    font-size: 0.82rem;
  }

  .logo img {
    height: 30px;
    max-height: 30px;
  }

  .footer-info-logo img {
    height: 30px;
    max-height: 30px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7.2vw, 2.1rem);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero-title-group {
    display: inline;
  }

  .hero-desc {
    font-size: 0.94rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
    margin-bottom: 28px;
  }

  .hero-btns .btn {
    width: 100%;
    padding: 13px 20px;
    font-size: 0.95rem;
  }

  .badges-grid {
    gap: 6px 8px;
  }

  .badge-item {
    padding: 5px 10px;
    font-size: 0.76rem;
    gap: 5px;
  }

  .badge-item svg {
    width: 14px;
    height: 14px;
  }

  .hero-graphics {
    max-width: 270px;
    margin: 0 auto;
    width: 100%;
  }

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

  .tech-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .tech-grid .tech-card,
  .tech-grid .tech-card:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: 100%;
  }

  .contact-form-container {
    padding: 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    text-align: center;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    font-size: 0.82rem;
  }

  .copyright,
  .footer-meta {
    font-size: 0.82rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.6rem;
    line-height: 1.22;
  }

  .hero-badge {
    padding: 5px 10px;
    font-size: 0.75rem;
  }

  .hero-desc {
    font-size: 0.88rem;
  }

  .badge-item {
    padding: 4px 8px;
    font-size: 0.72rem;
  }

  .hero-graphics {
    max-width: 230px;
  }

  .container {
    padding: 0 10px;
  }

  .promo-container {
    padding: 18px 12px;
    gap: 16px;
  }

  .promo-title {
    font-size: 1.22rem;
  }

  .promo-desc {
    font-size: 0.82rem;
  }

  .promo-feature-pill {
    padding: 8px 10px;
    gap: 8px;
  }

  .promo-feature-pill span {
    font-size: 0.78rem;
  }
}

/* ==========================================
   LEGAL & POLICY PAGES STYLING
   ========================================== */
.policy-page {
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 80px;
  position: relative;
  min-height: 100vh;
  width: 100%;
}

.policy-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  width: 100%;
}

.policy-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  padding: 6px 16px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  flex-wrap: wrap;
  max-width: 100%;
  box-sizing: border-box;
}

.policy-breadcrumb a {
  color: var(--primary);
  font-weight: 500;
}

.policy-breadcrumb a:hover {
  text-decoration: underline;
}

.policy-hero-title {
  font-size: 2.5rem;
  margin-bottom: 12px;
  line-height: 1.2;
  word-break: break-word;
}

.policy-hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
  word-break: break-word;
}

.policy-meta-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.policy-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.80rem;
  color: var(--text-secondary);
  padding: 4px 12px;
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  box-sizing: border-box;
}

.policy-meta-tag svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
  flex-shrink: 0;
  fill: var(--primary);
}

/* Key Policy Highlight Grid (Refund Policy) */
.policy-rules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 18px 0 28px;
  width: 100%;
}

.policy-mini-card {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background-color: var(--card-bg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  min-width: 0;
  box-sizing: border-box;
}

.policy-mini-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.policy-mini-card-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.policy-mini-card-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
}

.policy-mini-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.policy-mini-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Policy Layout Grid */
.policy-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  width: 100%;
}

/* Policy Table of Contents Sidebar (Sticky, Modern & Professional) */
.policy-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: calc(var(--nav-height) + 16px);
  align-self: start;
  z-index: 10;
  width: 100%;
}

.policy-toc-card {
  padding: 16px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--card-bg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.policy-toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 6px 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.policy-toc-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  margin: 0;
}

.policy-toc-title svg {
  width: 15px;
  height: 15px;
  min-width: 15px;
  fill: var(--primary);
}

.policy-toc-badge {
  font-size: 0.70rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.policy-toc-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: calc(100vh - var(--nav-height) - 120px);
  max-height: calc(100dvh - var(--nav-height) - 120px);
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.policy-toc-list::-webkit-scrollbar {
  width: 3.5px;
}

.policy-toc-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: var(--radius-full);
}

.policy-toc-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  transition: all 0.16s ease;
  border-left: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.35;
  text-decoration: none;
}

.policy-toc-link .toc-num {
  font-size: 0.70rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-secondary);
  opacity: 0.75;
  min-width: 16px;
}

.policy-toc-link:hover {
  color: var(--text);
  background-color: var(--bg-secondary);
}

.policy-toc-link.active {
  color: var(--primary);
  background-color: rgba(19, 70, 175, 0.08);
  border-left-color: var(--primary);
  font-weight: 600;
}

[data-theme="dark"] .policy-toc-link.active {
  background-color: rgba(59, 130, 246, 0.12);
}

.policy-toc-link.active .toc-num {
  color: var(--primary);
  opacity: 1;
}

/* Policy Content Document */
.policy-content-card {
  padding: 32px 34px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.policy-section {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: calc(var(--nav-height) + 16px);
  min-width: 0;
}

.policy-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.policy-section-heading {
  font-size: 1.20rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  min-width: 0;
}

.policy-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  flex-shrink: 0;
  border-radius: 6px;
  background-color: rgba(19, 70, 175, 0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
}

[data-theme="dark"] .policy-section-num {
  background-color: rgba(59, 130, 246, 0.16);
  color: #60a5fa;
}

.policy-section p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 8px;
}

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

.policy-section p strong {
  color: var(--text);
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 8px 0;
  min-width: 0;
}

.policy-list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.90rem;
  color: var(--text-secondary);
  line-height: 1.5;
  min-width: 0;
}

.policy-list-item strong {
  color: var(--text);
}

.policy-list-icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  flex-shrink: 0;
  margin-top: 2.5px;
  fill: var(--primary);
}

/* Highlight Rule Cards */
.policy-rule-box {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin: 10px 0;
  border: 1px solid var(--border);
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  font-size: 0.90rem;
  line-height: 1.55;
}

.policy-rule-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3.5px;
  height: 100%;
  background: var(--gradient);
}

.policy-rule-box.warning-box {
  background-color: rgba(245, 158, 11, 0.06);
  border-color: rgba(245, 158, 11, 0.22);
}

.policy-rule-box.warning-box::before {
  background: #f59e0b;
}

.policy-rule-box.danger-box {
  background-color: rgba(239, 68, 68, 0.06);
  border-color: rgba(239, 68, 68, 0.22);
}

.policy-rule-box.danger-box::before {
  background: #ef4444;
}

.policy-rule-box.success-box {
  background-color: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.22);
}

.policy-rule-box.success-box::before {
  background: #10b981;
}

.policy-rule-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  flex-wrap: wrap;
  gap: 8px;
}

.policy-rule-title {
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.policy-rule-title svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
}

.policy-badge {
  font-size: 0.70rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.badge-primary {
  background-color: rgba(19, 70, 175, 0.10);
  color: var(--primary);
  border: 1px solid rgba(19, 70, 175, 0.20);
}

.badge-warning {
  background-color: rgba(245, 158, 11, 0.12);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

[data-theme="dark"] .badge-warning {
  color: #fbbf24;
}

.badge-danger {
  background-color: rgba(239, 68, 68, 0.12);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

[data-theme="dark"] .badge-danger {
  color: #f87171;
}

.badge-success {
  background-color: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

[data-theme="dark"] .badge-success {
  color: #34d399;
}

/* Policy Tables */
.policy-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 10px 0 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  width: 100%;
}

.policy-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.86rem;
}

.policy-table th {
  background-color: var(--bg-secondary);
  color: var(--text);
  font-weight: 600;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.policy-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  line-height: 1.45;
}

.policy-table tr:last-child td {
  border-bottom: none;
}

.policy-table tr:hover td {
  background-color: rgba(0, 0, 0, 0.02);
}

[data-theme="dark"] .policy-table tr:hover td {
  background-color: rgba(255, 255, 255, 0.02);
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .blob {
    display: none !important;
  }

  .policy-page {
    overflow-x: clip !important;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .policy-sidebar {
    position: static !important;
    top: auto !important;
    width: 100% !important;
  }

  .policy-toc-card {
    padding: 14px 14px;
  }

  .policy-toc-list {
    max-height: 220px;
  }

  .policy-content-card {
    padding: 24px 20px;
  }

  .policy-rules-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .policy-page {
    padding-top: calc(var(--nav-height) + 20px);
    padding-bottom: 50px;
  }

  .policy-hero {
    margin-bottom: 24px;
  }

  .policy-hero-title {
    font-size: 2rem;
  }

  .policy-rules-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }

  .policy-content-card {
    padding: 20px 16px;
  }
}

@media (max-width: 640px) {
  .policy-hero-title {
    font-size: 1.75rem;
  }

  .policy-hero-subtitle {
    font-size: 0.90rem;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .policy-section-heading {
    font-size: 1.10rem;
    gap: 8px;
  }

  .policy-section-num {
    width: 22px;
    height: 22px;
    min-width: 22px;
    font-size: 0.74rem;
  }

  .policy-section p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 6px;
  }

  .policy-rule-box {
    padding: 12px 12px;
    margin: 8px 0;
  }

  .policy-rule-title {
    font-size: 0.90rem;
  }

  .policy-table th,
  .policy-table td {
    padding: 8px 10px;
    font-size: 0.80rem;
  }
}

@media (max-width: 480px) {
  .policy-hero-title {
    font-size: 1.55rem;
  }

  .policy-breadcrumb {
    font-size: 0.75rem;
    padding: 4px 10px;
    margin-bottom: 10px;
  }

  .policy-meta-tag {
    font-size: 0.72rem;
    padding: 4px 8px;
  }

  .policy-content-card {
    padding: 16px 12px;
  }

  .policy-list-item {
    font-size: 0.85rem;
  }
}

/* ==========================================
   TOP PROGRESS LOADING BAR (SPA TRANSITIONS)
   ========================================== */
.top-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3.5px;
  background: linear-gradient(90deg, #1346af, #2563eb, #38bdf8, #00f2fe);
  background-size: 200% 100%;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.8), 0 0 5px rgba(0, 242, 254, 0.6);
  border-radius: 0 3px 3px 0;
  animation: barGlowShimmer 2s linear infinite;
}

[data-theme="dark"] .top-progress-bar {
  background: linear-gradient(90deg, #3b82f6, #60a5fa, #38bdf8, #818cf8);
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.9), 0 0 6px rgba(56, 189, 248, 0.7);
}

@keyframes barGlowShimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

.top-progress-bar.active {
  opacity: 1;
}

.top-progress-bar.finish {
  width: 100% !important;
  opacity: 0;
  transition: width 0.16s ease-out, opacity 0.35s ease 0.16s;
}

/* ==========================================
   SPA MAIN CONTENT WRAPPER TRANSITIONS
   ========================================== */
.page-content-wrapper {
  transition: opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}

.page-content-wrapper.page-fade-out {
  opacity: 0;
}

.page-content-wrapper.page-fade-in {
  opacity: 1;
}

/* ==========================================
   404 ERROR PAGE STYLES
   ========================================== */
.error-page {
  min-height: calc(100vh - var(--nav-height) - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 40px) 20px 60px;
  position: relative;
  overflow: hidden;
}

.error-card {
  max-width: 520px;
  width: 100%;
  padding: 50px 40px;
  text-align: center;
  z-index: 2;
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.error-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 28px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.error-icon svg {
  width: 44px;
  height: 44px;
  fill: var(--primary);
  transition: fill var(--transition-normal);
}

.error-code {
  font-size: 6.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.error-title {
  font-size: 1.85rem;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  color: var(--text);
}

.error-desc {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 0.98rem;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .error-card {
    padding: 36px 20px;
  }

  .error-code {
    font-size: 5rem;
  }

  .error-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 360px) {
  .logo img {
    height: 26px;
    max-height: 26px;
  }
}

/* ==========================================
   START PROJECT & CONTACT DEDICATED PAGES
   ========================================== */
.start-project-page,
.contact-page {
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 90px;
  position: relative;
  min-height: 100vh;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  padding: 6px 16px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
}

.page-breadcrumb a {
  color: var(--primary);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.page-breadcrumb a:hover {
  text-decoration: underline;
}

.start-project-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 36px;
  align-items: flex-start;
}

.lead-steps-card {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.lead-steps-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lead-steps-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.lead-steps-card .next-steps-list {
  gap: 20px;
}

.lead-steps-card .next-steps-list li {
  align-items: flex-start;
  gap: 16px;
}

.lead-steps-card .step-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lead-steps-card .step-content strong {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
}

.lead-steps-card .step-content .step-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 400;
}

.lead-guarantee-box {
  margin-top: 6px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #10b981;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.guarantee-badge svg {
  width: 18px;
  height: 18px;
}

.guarantee-note {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.start-project-form-container {
  padding: 36px 40px;
}

@media (max-width: 991px) {
  .start-project-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .start-project-sidebar {
    order: -1;
  }
}

@media (max-width: 640px) {

  .start-project-page,
  .contact-page {
    padding-top: calc(var(--nav-height) + 24px);
    padding-bottom: 60px;
  }

  .start-project-form-container {
    padding: 24px 18px;
  }

  .lead-steps-card {
    padding: 24px 20px;
  }
}