/* ============================================================
   AXON GLOBAL LLC — Premium Minimalist Stylesheet
   Virtual Services Landing Page
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --primary: #1A7A8A;
  --primary-light: #2A9AAA;
  --primary-dark: #0F5A66;
  --accent: #E8802A;
  --accent-light: #F49D4C;

  /* Neutrals */
  --dark: #1a1a2e;
  --dark-secondary: #2d2d44;
  --gray-900: #212529;
  --gray-700: #495057;
  --gray-500: #6c757d;
  --gray-300: #dee2e6;
  --gray-100: #f8f9fa;
  --white: #ffffff;
  --bg-light: #fafbfc;

  /* Semantic */
  --success: #10b981;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);

  /* Motion */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

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

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

/* Selection */
::selection {
  background-color: rgba(26, 122, 138, 0.15);
  color: var(--primary-dark);
}

::-moz-selection {
  background-color: rgba(26, 122, 138, 0.15);
  color: var(--primary-dark);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-500);
}

/* Firefox scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--gray-300) transparent;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--dark);
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-700);
}

.section-subtitle {
  color: var(--gray-500);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.0625rem;
  line-height: 1.7;
}

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

section {
  padding: 100px 0;
}

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

.section-header h2 {
  margin-bottom: 16px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 32px;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 122, 138, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

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

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--gray-300);
}

.btn-outline:hover {
  border-color: var(--primary);
  background-color: rgba(26, 122, 138, 0.04);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

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

.btn-block {
  width: 100%;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background-color: transparent;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.logo,
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo img,
.header-logo img {
  height: 56px;
  width: auto;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  transition: var(--transition);
}

.header.scrolled .logo-text {
  color: var(--dark);
}

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

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

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.header.scrolled .nav-link {
  color: var(--gray-700);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

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

.header.scrolled .nav-link:hover {
  color: var(--primary);
}

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

.nav-cta {
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: var(--transition);
  border: 2px solid var(--primary);
}

.nav-cta:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(26, 122, 138, 0.25);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.header.scrolled .hamburger span {
  background-color: var(--dark);
}

.hamburger span:nth-child(1) {
  margin-bottom: 6px;
}

.hamburger span:nth-child(3) {
  margin-top: 6px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .nav-links {
  flex-direction: column;
  gap: 28px;
}

.mobile-menu .nav-link {
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
}

.mobile-menu .nav-link:hover {
  color: var(--primary);
}

.mobile-menu .nav-cta {
  margin-top: 24px;
  padding: 14px 36px;
  font-size: 1rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.85) 0%,
    rgba(26, 26, 46, 0.7) 50%,
    rgba(15, 90, 102, 0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content h1 {
  color: var(--white);
  font-size: 4rem;
  margin-bottom: 24px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn-group {
  justify-content: center;
}

/* Decorative Orbs */
.hero-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.hero-decor--teal {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -10%;
  right: -5%;
  animation: float 8s ease-in-out infinite;
}

.hero-decor--orange {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -10%;
  left: -5%;
  animation: float 10s ease-in-out infinite reverse;
}

/* ============================================================
   LOGO CLOUD / TRUSTED BY
   ============================================================ */
.logo-cloud {
  background-color: var(--gray-100);
  padding: 48px 0;
  overflow: hidden;
}

.logo-cloud-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.marquee {
  overflow: hidden;
  position: relative;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--gray-100), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--gray-100), transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  color: var(--gray-500);
  font-weight: 600;
  font-size: 1.125rem;
  padding: 0 48px;
  white-space: nowrap;
  opacity: 0.5;
  font-family: 'Space Grotesk', sans-serif;
}

.marquee-item img {
  height: 32px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: var(--transition);
}

.marquee-item img:hover {
  opacity: 0.7;
  filter: grayscale(0%);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats {
  padding: 80px 0;
}

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

.stat-item {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  width: 1px;
  background-color: var(--gray-300);
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--gray-500);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background-color: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-300);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: rgba(26, 122, 138, 0.1);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  margin-bottom: 20px;
  font-size: 0.9375rem;
}

.service-link {
  font-weight: 500;
  color: var(--primary);
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 10px;
}

.service-link::after {
  content: '\2192';
  transition: var(--transition);
}

/* ============================================================
   VISUAL SHOWCASE (ZIGZAG)
   ============================================================ */
.showcase-row {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  border-bottom: 1px solid var(--gray-300);
}

.showcase-row:last-child {
  border-bottom: none;
}

.showcase-row:nth-child(even) {
  direction: rtl;
  background-color: var(--bg-light);
  padding: 60px 24px;
  border-radius: var(--radius-lg);
  border-bottom: none;
  margin: 24px 0;
}

.showcase-row:nth-child(even) > * {
  direction: ltr;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.showcase-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.showcase-image img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-image:hover img {
  transform: scale(1.03);
}

.showcase-tag {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.showcase-content h2 {
  margin-bottom: 16px;
  font-size: 2rem;
}

.showcase-content p {
  margin-bottom: 24px;
}

.showcase-list {
  margin-bottom: 32px;
}

.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: var(--gray-700);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.showcase-list li svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  stroke: var(--success);
  fill: none;
  stroke-width: 2;
  margin-top: 2px;
}

/* ============================================================
   HOW IT WORKS / PROCESS
   ============================================================ */
.process {
  background-color: var(--gray-100);
}

.process-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.process-step {
  text-align: center;
  flex: 1;
  position: relative;
  padding: 0 16px;
}

/* Connecting line */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(50% + 32px);
  width: calc(100% - 64px);
  height: 2px;
  background-color: var(--gray-300);
  z-index: 0;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.process-step h4 {
  margin-bottom: 8px;
}

.process-step p {
  color: var(--gray-500);
  font-size: 0.875rem;
  line-height: 1.6;
}

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

.testimonial-card {
  padding: 40px 32px;
  background-color: var(--gray-100);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
}

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

.testimonial-quote-mark {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 6rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-700);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--dark);
}

.testimonial-author-role {
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  background: var(--gray-100);
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--gray-300);
}

.pricing-toggle-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: var(--transition);
  padding: 10px 28px;
  border-radius: 50px;
  cursor: pointer;
  background: transparent;
  border: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pricing-toggle-label.active {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(26, 122, 138, 0.3);
}

.pricing-toggle-badge {
  display: inline-block;
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background-color: var(--gray-300);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-switch.active {
  background-color: var(--primary);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--white);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.toggle-switch.active::after {
  transform: translateX(24px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.pricing-card {
  background-color: var(--white);
  padding: 48px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-300);
  text-align: center;
  transition: var(--transition);
  position: relative;
}

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

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-plan {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.pricing-description {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.pricing-price {
  margin-bottom: 32px;
}

.pricing-card-currency {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  vertical-align: super;
}

.pricing-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.pricing-period {
  color: var(--gray-500);
  font-size: 1rem;
  font-weight: 400;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--gray-700);
  font-size: 0.9375rem;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  stroke: var(--success);
  fill: none;
  stroke-width: 2.5;
}

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

.pricing-card.popular .btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-300);
  padding: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--dark);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--gray-500);
  border-radius: 2px;
  transition: var(--transition);
}

.faq-icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
  background-color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer p {
  padding-bottom: 24px;
  color: var(--gray-700);
  font-size: 0.9375rem;
  line-height: 1.7;
}

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

.contact-form {
  background-color: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--dark);
  background-color: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 122, 138, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-500);
}

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

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

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

.form-submit {
  width: 100%;
  background-color: var(--primary);
  color: var(--white);
  padding: 16px;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

.form-submit:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(26, 122, 138, 0.3);
}

.contact-info {
  padding-top: 16px;
}

.contact-info h3 {
  margin-bottom: 8px;
}

.contact-info > p {
  margin-bottom: 32px;
}

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

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background-color: rgba(26, 122, 138, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.contact-info-text h4 {
  margin-bottom: 4px;
  font-size: 0.9375rem;
}

.contact-info-text p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

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

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

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  bottom: -150px;
  left: -50px;
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

.cta-banner .btn-white:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--dark);
  padding: 80px 0 32px;
}

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

.footer-about p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-heading {
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9375rem;
  transition: var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  color: var(--primary-light);
}

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

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

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  transition: var(--transition);
}

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

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--white);
  box-shadow: var(--shadow-xl);
  border-top: 1px solid var(--gray-300);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn-accept:hover {
  background-color: var(--primary-dark);
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--gray-700);
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.875rem;
  border: 1px solid var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn-reject:hover {
  border-color: var(--gray-500);
}

.cookie-btn-customize {
  background: none;
  border: none;
  color: var(--gray-500);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: var(--transition);
  padding: 10px 8px;
}

.cookie-btn-customize:hover {
  color: var(--primary);
}

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

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

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

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll:nth-child(2) {
  transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
  transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(4) {
  transition-delay: 0.3s;
}

.animate-on-scroll:nth-child(5) {
  transition-delay: 0.4s;
}

.animate-on-scroll:nth-child(6) {
  transition-delay: 0.5s;
}

/* ============================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .showcase-grid,
  .showcase-row {
    gap: 40px;
  }

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

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

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  /* Header */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.0625rem;
  }

  .hero .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .hero .btn-group .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Showcase */
  .showcase-grid,
  .showcase-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .showcase-row:nth-child(even) {
    direction: ltr;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-item::after {
    display: none !important;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  /* Process — vertical timeline */
  .process-grid {
    flex-direction: column;
    gap: 32px;
  }

  .process-step:not(:last-child)::after {
    top: auto;
    left: 23px;
    width: 2px;
    height: 32px;
    bottom: -32px;
  }

  .process-step {
    display: flex;
    text-align: left;
    gap: 16px;
    align-items: flex-start;
    padding: 0;
  }

  .step-number {
    margin: 0;
    flex-shrink: 0;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card:last-child {
    max-width: none;
  }

  /* FAQ */
  .faq-question {
    font-size: 1rem;
  }

  /* Contact */
  .contact-form {
    padding: 32px 24px;
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer-legal {
    justify-content: center;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 60px 0;
  }

  .cta-banner h2 {
    font-size: 1.75rem;
  }

  /* Cookie Banner */
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Logo Cloud */
  .marquee-item {
    padding: 0 32px;
    font-size: 1rem;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  section {
    padding: 48px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

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

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

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

  .stat-number {
    font-size: 2rem;
  }

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

  .testimonial-card {
    padding: 32px 24px;
  }

  .pricing-card {
    padding: 36px 24px;
  }

  .pricing-amount {
    font-size: 2.5rem;
  }

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

  .cta-banner h2 {
    font-size: 1.5rem;
  }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center {
  text-align: center;
}

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

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

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.mt-5 {
  margin-top: 40px;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

.mb-4 {
  margin-bottom: 32px;
}

.mb-5 {
  margin-bottom: 40px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   POLICY PAGES — Header, Content, Footer
   ============================================================ */

/* Policy Page Header (simplified) */
.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-300);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.75rem 0;
}

.header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.header-logo img {
  height: 40px;
  width: auto;
}

.header-logo span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}

.header-back {
  font-size: 0.9rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.header-back:hover {
  background-color: var(--gray-100);
  color: var(--primary);
  border-color: var(--primary);
}

.header-back svg {
  width: 16px;
  height: 16px;
}

/* Policy Page Main Content */
.policy-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}

.policy-page p {
  color: var(--gray-700);
}

.policy-page a {
  color: var(--primary);
}

.policy-page a:hover {
  color: var(--primary-dark);
}

.policy-page ul,
.policy-page ol {
  list-style: revert;
  padding-left: 1.5rem;
}

.policy-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-300);
}

.policy-header h1 {
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
}

.policy-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.policy-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Table of Contents */
.toc {
  background-color: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.toc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.toc ol {
  list-style: none;
  padding: 0;
  counter-reset: toc-counter;
}

.toc ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.4rem;
}

.toc ol li::before {
  content: counter(toc-counter) ".";
  color: var(--primary);
  font-weight: 600;
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.toc ol li a {
  font-size: 0.93rem;
  color: var(--gray-500);
  transition: var(--transition);
}

.toc ol li a:hover {
  color: var(--primary);
}

/* Policy Sections */
.policy-section {
  margin-bottom: 2rem;
}

.policy-section h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(26, 122, 138, 0.15);
  font-size: 1.75rem;
}

.policy-section h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.policy-section h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
  font-family: 'Space Grotesk', sans-serif;
}

.policy-section ul,
.policy-section ol {
  margin-bottom: 1rem;
}

.policy-section li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
  color: var(--gray-700);
  font-size: 1.0625rem;
}

/* Collapsible Sections */
.collapsible {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.collapsible:hover {
  border-color: rgba(26, 122, 138, 0.3);
}

.collapsible-toggle {
  width: 100%;
  background: var(--gray-100);
  border: none;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.collapsible-toggle:hover {
  background: rgba(26, 122, 138, 0.06);
}

.collapsible-toggle::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 400;
  transition: transform 0.3s ease;
}

.collapsible.open .collapsible-toggle::after {
  content: "\2212";
}

.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.collapsible.open .collapsible-content {
  max-height: 5000px;
}

.collapsible-inner {
  padding: 1rem 1.25rem 1.25rem;
}

/* Policy Tables */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.policy-table thead {
  background-color: var(--dark);
  color: var(--white);
}

.policy-table thead th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-family: 'Space Grotesk', sans-serif;
}

.policy-table tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-300);
  vertical-align: top;
  color: var(--gray-700);
}

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

.policy-table tbody tr:nth-child(even) {
  background-color: var(--gray-100);
}

.policy-table code {
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.82rem;
  background: rgba(26, 122, 138, 0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  color: var(--primary-dark);
}

/* Info & Warning Boxes */
.info-box {
  background-color: rgba(26, 122, 138, 0.06);
  border-left: 4px solid var(--primary);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.info-box strong {
  color: var(--primary-dark);
}

.info-box p {
  margin-bottom: 0;
}

.warning-box {
  background-color: #fef3c7;
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.warning-box strong {
  color: #92400e;
}

/* Contact Card */
.contact-card {
  background-color: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
}

.contact-card h4 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.contact-card p {
  margin-bottom: 0.35rem;
  font-size: 0.93rem;
  color: var(--gray-500);
}

.contact-card a {
  color: var(--primary);
  font-weight: 500;
}

/* Policy Footer (simplified) */
.site-footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 2.5rem 0;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 32px;
  margin: 0 auto 0.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-brand p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}

.site-footer .footer-links a:hover {
  color: var(--white);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1.25rem 0;
}

.site-footer .footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Policy Page Responsive */
@media (max-width: 768px) {
  .policy-page {
    padding: 2rem 1.25rem 3rem;
  }

  .policy-header h1 {
    font-size: 1.75rem;
  }

  .policy-section h2 {
    font-size: 1.4rem;
  }

  .header-inner {
    padding: 0 1.25rem;
  }

  .header-logo span {
    display: none;
  }

  .toc {
    padding: 1rem 1.25rem;
  }

  .policy-table {
    display: block;
    overflow-x: auto;
  }

  .policy-meta {
    flex-direction: column;
    gap: 0.35rem;
  }

  .site-footer .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .policy-page {
    padding: 1.5rem 1rem 2.5rem;
  }

  .collapsible-toggle {
    padding: 0.75rem 1rem;
    font-size: 0.93rem;
  }

  .collapsible-inner {
    padding: 0.75rem 1rem 1rem;
  }
}

/* Policy Print Styles */
@media print {
  .site-header,
  .site-footer,
  .header-back {
    display: none;
  }

  .collapsible-content {
    max-height: none !important;
  }

  .collapsible-toggle::after {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  .policy-page a {
    color: #000;
    text-decoration: underline;
  }
}

/* ============================================================
   ADDITIONAL STYLES — Form states, ghost button, utilities
   ============================================================ */

/* Ghost Button (text-only style) */
.btn-ghost {
  background: none;
  border: 2px solid transparent;
  color: var(--gray-500);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 10px 16px;
}

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

/* Form Group Full Width (spans full grid row) */
.form-group-full {
  grid-column: 1 / -1;
}

/* Form Error Message */
.form-error {
  display: block;
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 4px;
  min-height: 0;
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Form Success Message */
.form-success {
  background-color: rgba(16, 185, 129, 0.08);
  border: 1px solid var(--success);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-700);
  font-size: 0.9375rem;
}

.form-success svg {
  flex-shrink: 0;
}

.form-success p {
  margin: 0;
  font-size: 0.9375rem;
}

/* Form Required / Optional Labels */
.form-required {
  color: #ef4444;
  font-weight: 500;
}

.form-optional {
  color: var(--gray-500);
  font-size: 0.8125rem;
  font-weight: 400;
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 16px;
}
.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.5;
  filter: grayscale(40%);
  width: 32px;
  height: 32px;
}
.lang-btn:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}
.lang-btn.active {
  opacity: 1;
  filter: grayscale(0%);
}
.lang-flag {
  font-size: 1.25rem;
  line-height: 1;
}
