/* ========================================
   CRITICAL PATH GROUP WEBSITE STYLES
   ======================================== */

/* COLOR PALETTE */
:root {
  --navy-primary: #0F1F2E;
  --navy-text: #0F172A;
  --gold-accent: #C9A24D;
  --gold-hover: #B8923F;
  --slate-gray: #4B5563;
  --light-gray: #9CA3AF;
  --surface-light: #F8FAFC;
  --surface-card: #F3F4F6;
  --white: #FFFFFF;
  --navy-dark: #0A1520;

  /* Typography */
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --font-weight-300: 300;
  --font-weight-400: 400;
  --font-weight-500: 500;
  --font-weight-600: 600;
  --font-weight-700: 700;
  --font-weight-800: 800;

  /* Spacing */
  --spacing-unit: 1rem;
  --section-padding-vertical: 80px;
  --container-max-width: 1200px;

  /* Transitions */
  --transition-default: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy-text);
  background-color: var(--white);
  font-weight: var(--font-weight-400);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-700);
  line-height: 1.2;
  color: var(--navy-text);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: var(--font-weight-800);
}

h2 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-800);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  font-weight: var(--font-weight-700);
}

h4 {
  font-size: 1.375rem;
  font-weight: var(--font-weight-700);
}

h5 {
  font-size: 1.125rem;
  font-weight: var(--font-weight-700);
}

h6 {
  font-size: 1rem;
  font-weight: var(--font-weight-700);
}

p {
  margin-bottom: 1.25rem;
  color: var(--slate-gray);
  font-weight: var(--font-weight-400);
  line-height: 1.7;
}

a {
  color: var(--gold-accent);
  text-decoration: none;
  transition: var(--transition-default);
}

a:hover {
  color: var(--gold-hover);
}

button {
  font-family: var(--font-family);
  cursor: pointer;
  border: none;
  transition: var(--transition-default);
}

input, textarea, select {
  font-family: var(--font-family);
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}

li {
  margin-bottom: 0.5rem;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

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

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

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

.text-slate {
  color: var(--slate-gray);
}

.text-light {
  color: var(--light-gray);
}

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

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.font-light {
  font-weight: var(--font-weight-300);
}

.font-regular {
  font-weight: var(--font-weight-400);
}

.font-medium {
  font-weight: var(--font-weight-500);
}

.font-semibold {
  font-weight: var(--font-weight-600);
}

.font-bold {
  font-weight: var(--font-weight-700);
}

/* Margin utilities */
.mb-1 {
  margin-bottom: var(--spacing-unit);
}

.mb-2 {
  margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.mb-3 {
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.mb-4 {
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.mb-5 {
  margin-bottom: calc(var(--spacing-unit) * 4);
}

.mt-1 {
  margin-top: var(--spacing-unit);
}

.mt-2 {
  margin-top: calc(var(--spacing-unit) * 1.5);
}

.mt-3 {
  margin-top: calc(var(--spacing-unit) * 2);
}

.mt-4 {
  margin-top: calc(var(--spacing-unit) * 3);
}

.mt-5 {
  margin-top: calc(var(--spacing-unit) * 4);
}

/* ========================================
   NAVIGATION
   ======================================== */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--navy-primary);
  padding: 0.75rem 1.5rem;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
  font-size: 1.125rem;
  font-weight: var(--font-weight-700);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-logo-critical {
  color: var(--white);
}

.nav-logo-group {
  color: var(--gold-accent);
}

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

.nav-links a {
  color: var(--white);
  font-weight: var(--font-weight-500);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--gold-accent);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  color: var(--white);
  font-weight: var(--font-weight-500);
  font-size: 0.95rem;
  background: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown-toggle:hover {
  color: var(--gold-accent);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--navy-primary);
  list-style: none;
  padding: 1rem 0;
  margin-top: 0.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-fast);
  min-width: 150px;
}

.nav-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu li {
  margin: 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--white);
  font-weight: var(--font-weight-400);
  font-size: 0.9rem;
}

.nav-dropdown-menu a:hover {
  background-color: rgba(201, 162, 77, 0.1);
  color: var(--gold-accent);
}


.nav-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  padding: 0;
  gap: 0.375rem;
  margin-left: 2rem;
}

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

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

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: var(--font-weight-600);
  border-radius: 8px;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  transition: var(--transition-default);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--gold-accent);
  color: var(--navy-text);
  border-color: var(--gold-accent);
}

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

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

.btn-secondary:hover {
  background-color: var(--gold-accent);
  color: var(--navy-text);
}

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

.btn-white:hover {
  background-color: var(--surface-light);
  border-color: var(--surface-light);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  background-color: var(--navy-primary);
  color: var(--white);
  padding: calc(var(--section-padding-vertical) + 4rem) var(--spacing-unit) var(--section-padding-vertical);
  text-align: center;
  margin-top: 60px;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 8vw, 3.5rem);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-light {
  background-color: var(--surface-light);
  color: var(--navy-text);
}

.hero-light h1 {
  color: var(--navy-text);
}

.hero-light p {
  color: var(--slate-gray);
}

.hero-logo {
  max-width: 320px;
  margin: 0 auto 1.5rem;
}

.hero-logo img {
  width: 100%;
  height: auto;
}

/* ========================================
   SECTIONS
   ======================================== */

section {
  padding: var(--section-padding-vertical) var(--spacing-unit);
}

section.light {
  background-color: var(--surface-light);
}

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

section.dark {
  background-color: var(--navy-primary);
  color: var(--white);
}

section.dark h2 {
  color: var(--white);
}

section.dark p {
  color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   CARDS
   ======================================== */

.card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: var(--transition-default);
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.card.with-border-accent {
  border-left: 4px solid var(--gold-accent);
}

.card h3 {
  margin-top: 0;
}

.card-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 0;
}

.card-grid.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card-grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card-grid.cols-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* ========================================
   FEATURE SECTIONS (Zigzag Layout)
   ======================================== */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-content h3 {
  margin-top: 0;
}

.feature-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-frame {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.screenshot-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.methodology-diagram {
  max-width: 700px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
}

.methodology-diagram img {
  width: 100%;
  height: auto;
  display: block;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--gold-accent);
  color: var(--navy-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 2px solid transparent;
  transition: var(--transition-default);
}

.pricing-card.recommended {
  border-color: var(--gold-accent);
  box-shadow: 0 8px 32px rgba(201, 162, 77, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-accent);
  color: var(--navy-text);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy-text);
  margin: 1rem 0 0.5rem;
}

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

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--surface-light);
  color: var(--slate-gray);
}

.pricing-features li::before {
  content: "✓ ";
  color: var(--gold-accent);
  font-weight: 700;
}

.pricing-features li.not-included {
  color: var(--light-gray);
  text-decoration: line-through;
}

.pricing-features li.not-included::before {
  content: "— ";
  color: var(--light-gray);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.template-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: var(--transition-default);
}

.template-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.template-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--navy-primary) 0%, #1a3a55 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  font-size: 2.5rem;
}

.template-card-body {
  padding: 1.5rem;
}

.template-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-text);
}

.pillar-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--gold-accent);
}

.pillar-weight {
  display: inline-block;
  background: var(--navy-primary);
  color: var(--gold-accent);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-zigzag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.feature-zigzag.reverse {
  direction: rtl;
}

.feature-zigzag.reverse > * {
  direction: ltr;
}

/* ========================================
   PRICING TABLE
   ======================================== */

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.pricing-table thead {
  background-color: var(--surface-card);
}

.pricing-table th {
  padding: 1.5rem;
  text-align: left;
  font-weight: var(--font-weight-700);
  color: var(--navy-text);
  border-bottom: 2px solid var(--surface-light);
}

.pricing-table td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--surface-light);
  color: var(--slate-gray);
}

.pricing-table tbody tr:hover {
  background-color: var(--surface-light);
}

.pricing-table tbody tr.recommended {
  background-color: var(--surface-light);
  box-shadow: inset 4px 0 0 0 var(--gold-accent);
}

.pricing-table tbody tr.recommended td {
  font-weight: var(--font-weight-600);
}

/* ========================================
   ACCORDION
   ======================================== */

.accordion-item {
  border-bottom: 1px solid var(--surface-card);
  margin-bottom: 0;
}

.accordion-header {
  background-color: transparent;
  border: none;
  padding: 1.5rem;
  text-align: left;
  font-size: 1.125rem;
  font-weight: var(--font-weight-600);
  color: var(--navy-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
  width: 100%;
}

.accordion-header:hover {
  background-color: var(--surface-light);
}

.accordion-toggle {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold-accent);
  border-bottom: 2px solid var(--gold-accent);
  transform: rotate(-45deg);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.accordion-header.active .accordion-toggle {
  transform: rotate(135deg);
}

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-default);
}

.accordion-content.active {
  padding: 0 1.5rem 1.5rem;
  max-height: 1000px;
}

/* ========================================
   TRUST BADGES
   ======================================== */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.trust-badge {
  text-align: center;
  padding: 2rem;
}

.trust-badge-icon {
  width: 60px;
  height: 60px;
  background-color: var(--surface-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
}

.trust-badge h4 {
  margin-top: 0;
}

.trust-badge p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.trust-badge-icon {
  width: 80px;
  height: 80px;
  font-size: 2.25rem;
}

.trust-badge-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  margin: 0 auto 1rem;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  background-color: var(--navy-dark);
  color: var(--white);
  border-top: 3px solid var(--gold-accent);
  padding: 4rem var(--spacing-unit) 2rem;
}

.footer-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 0.875rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--font-weight-400);
}

.footer-section a:hover {
  color: var(--gold-accent);
}

.footer-logo {
  font-size: 0.95rem;
  font-weight: var(--font-weight-700);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* ========================================
   CONTACT FORM
   ======================================== */

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: var(--font-weight-600);
  color: var(--navy-text);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--surface-card);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--navy-text);
  transition: var(--transition-default);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.1);
}

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

/* ========================================
   ANIMATIONS
   ======================================== */

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

.fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.fade-in.visible {
  opacity: 1;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-row.reverse {
    direction: ltr;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-zigzag {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .feature-zigzag.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding-vertical: 60px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--navy-primary);
    padding: 1rem 1.5rem;
    gap: 0.75rem;
    list-style: none;
  }

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

  .nav-dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    max-height: 0;
    overflow: hidden;
    box-shadow: none;
    margin-top: 0;
    background-color: rgba(0, 0, 0, 0.1);
    transition: max-height 0.3s ease;
  }

  .nav-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
  }

  .nav-hamburger {
    display: flex;
  }


  .btn-group {
    flex-direction: column;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

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

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  section {
    padding: 60px var(--spacing-unit);
  }

  .hero {
    margin-top: 60px;
    padding: calc(60px + 2rem) var(--spacing-unit) 60px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

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

  .feature-image {
    max-height: 300px;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .container {
    padding: 0 1rem;
  }

  .btn-group {
    gap: 0.5rem;
  }

  .card {
    padding: 1.5rem;
  }

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

  .trust-badge {
    padding: 1.5rem;
  }

  .pricing-table {
    font-size: 0.85rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 1rem 0.75rem;
  }

  section {
    padding: 40px var(--spacing-unit);
  }

  .hero {
    padding: calc(40px + 1rem) var(--spacing-unit) 40px;
  }

  .nav-links {
    padding: 1rem;
    top: 55px;
  }

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

/* ========================================
   SCROLLBAR STYLING
   ======================================== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--surface-light);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-accent);
  border-radius: 5px;
}

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