/* NeoWebSystems Core Styles - Premium Minimal Aesthetic */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #1e1e1e;
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --accent: #00e5ff;
  --accent-glow: rgba(0, 229, 255, 0.4);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

/* Premium SaaS Typography */
h1 {
  font-size: 72px;
  letter-spacing: -2px;
}

h2 {
  font-size: 40px;
  letter-spacing: -1px;
}

h3 {
  font-size: 24px;
}

p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 1.5rem 0;
}

.micro {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 0 15px var(--accent-glow);
}

/*
.btn-primary:hover {
  background-color: #fff;
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-2px);
}
*/
.btn-primary:hover {
  border: 1px solid var(--accent);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  transform: translateY(-2px);
}


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

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled {
  padding: 1rem 5%;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}

.logo span {
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent-glow);
}

.logo .systems {
  color: #94a3b8;
  text-shadow: none;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.5rem;
}

nav a.active {
  color: var(--accent);
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--accent-glow);
  transition: all 0.3s ease;
}

/* HERO INTRO SECTION */
.hero-wrapper {
  height: 140vh;
  /* Increased hero visual presence */
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

/* Smooth gradient fade to cinematicly transition into the trust strip */
.hero-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px;
  background: linear-gradient(to bottom, transparent, #0a0a0a);
  pointer-events: none;
}

.hero-content-inner {
  max-width: 680px;
  /* Increased for better hero text balance */
  position: relative;
  z-index: 10;
  transform: translateY(-20vh);
  /* visually center within the viewport */
}

.hero-eyebrow {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-content-inner h1 {
  margin-bottom: 2rem;
}

.hero-content-inner p {
  margin-bottom: 3rem;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* PERSISTENT HERO BACKGROUND */
.hero-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.5s ease;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 10, 10, 0.35), rgba(10, 10, 10, 0.8));
}

@media (max-width: 768px) {
  .hero-video {
    opacity: 0.40;
    /* Lower opacity on mobile for readability */
  }
}

@media (max-height: 900px) {
  .hero-wrapper {
    min-height: 70vh;
  }
}


/* Trust Strip */
.trust-strip {
  background-color: #111111;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-container {
  display: flex;
  justify-content: space-around;
}

.trust-item {
  text-align: left;
  flex: 1;
  padding: 0 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item:first-child {
  border-left: none;
}

.trust-item h4 {
  font-size: 18px;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.trust-item p {
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}


/* Section Structural Standardization */
.section {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  z-index: 2;
}

/* Alternating Section Backgrounds for Separation/Flow */
#journey {
  background-color: transparent;
}

#services {
  background-color: #111111;
}

#process {
  background-color: transparent;
}

#pricing {
  background-color: #111111;
}

#contact {
  background-color: #111111;
  padding-bottom: 60px;
}

.section-divider {
  height: 120px;
  background: linear-gradient(to bottom, transparent, #0a0a0a);
  pointer-events: none;
}

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

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

.section-header .large-p {
  max-width: 800px;
  margin: 0 auto;
}

/* JOURNEY SECTION STYLES */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.journey-card {
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-left: 4px solid #ff4d4d;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.journey-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 77, 77, 0.05);
}

.journey-card p {
  font-size: 16px;
  margin: 0;
}

/* SERVICES SECTION STYLES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  padding: 3rem;
  background: rgba(30, 30, 30, 0.4);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  background: rgba(30, 30, 30, 0.8);
  border-color: rgba(0, 229, 255, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(0, 229, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--accent);
  font-size: 20px;
  font-weight: 800;
  border: 1px solid rgba(0, 229, 255, 0.1);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.5rem;
  }
}

/* PROCESS SECTION STYLES */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, rgba(0, 229, 255, 0.5), rgba(0, 229, 255, 0.05));
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -3.45rem;
  top: 0.25rem;
  width: 16px;
  height: 16px;
  background: var(--bg-primary);
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--accent-glow);
  z-index: 2;
}

.timeline-content {
  background: var(--bg-secondary);
  padding: 2rem 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(10px);
  border-color: rgba(0, 229, 255, 0.2);
}

/* Material Symbols icon styling */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
  font-family: 'Material Symbols Outlined', sans-serif;
  display: inline-block;
  vertical-align: middle;
}

.icon-red {
  color: #fb7185;
}

.icon-xl {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  display: inline-block;
}

/* PRICING SECTION STYLES */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: center;
}

.pricing-card {
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.popular {
  border: 1px solid var(--accent);
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 229, 255, 0.2) inset;
  z-index: 2;
  background: linear-gradient(180deg, #1e1e1e 0%, #111 100%);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.price {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  margin: 1.5rem 0;
  letter-spacing: -2px;
}

.price span {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0;
}

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

.features li {
  margin-bottom: 1.25rem;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
  font-size: 18px;
}

/* FAQ SECTION STYLES */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.faq-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 1.3rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.faq-card:hover {
  border-color: rgba(255, 77, 77, 0.2);
  transform: translateY(-3px);
}

.faq-card p {
  font-size: 16px;
  margin: 0;
}

/* CONTACT SECTION STYLES */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.form-box {
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

input,
textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.25rem;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
  background: rgba(0, 0, 0, 0.8);
}

/* Fix browser autofill background changing to white */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff !important;
  -webkit-box-shadow: 0 0 0px 1000px #1a1a1a inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* FOOTER STYLES */
.site-footer {
  background-color: var(--bg-primary);
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  padding: 24px 0 16px;
  position: relative;
  z-index: 20;
}

.footer-main {
  text-align: center;
  margin-bottom: 18px;
}

.footer-logo p {
  font-size: 14px;
  margin-top: 0.25rem;
  color: var(--text-secondary);
  line-height: 1.2;
}

.footer-line-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.footer-nav {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
}

.footer-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

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

.legal-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}

.legal-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

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

.footer-line-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
  flex: none;
  text-align: left;
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.dba-text {
  font-size: 12px;
  color: var(--text-secondary);
  opacity: 0.55;
  margin: 0;
}

@media screen and (max-width: 768px) {

  .footer-line-1,
  .footer-line-2 {
    flex-direction: column;
    align-items: center;
    border-top: none;
    padding-top: 0;
    margin-bottom: 0;
  }

  .footer-main {
    margin-bottom: 18px;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 8px;
  }

  .legal-links {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 12px;
  }

  .footer-line-2 {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
    width: 100%;
    margin-bottom: 0;
  }

  .copyright {
    text-align: center;
    margin-bottom: 2px;
  }

  .dba-text {
    text-align: center;
    margin-bottom: 0;
  }
}

/* SCROLL ENTRANCE ANIMATIONS */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(8px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

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

/* Animation Delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

.delay-7 {
  transition-delay: 0.7s;
}

/* =========================================
   LEGAL PAGES STYLES
   ========================================= */

.legal-page-body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.8;
}

.legal-header {
  padding: 180px 5% 60px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-header h1 {
  font-size: 56px;
  margin-bottom: 1rem;
}

.legal-header .last-updated {
  color: var(--accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  display: block;
  margin-bottom: 1.5rem;
}

.legal-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 20px;
}

.legal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 120px;
  display: flex;
  gap: 4rem;
  position: relative;
}

/* Sidebar Navigation */
.legal-sidebar {
  width: 250px;
  flex-shrink: 0;
}

.legal-nav-sticky {
  position: sticky;
  top: 120px;
}

.legal-nav-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-nav-ul li a {
  display: block;
  font-size: 15px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 16px;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
}

.legal-nav-ul li a:hover,
.legal-nav-ul li a.active {
  color: var(--text-primary);
  border-left-color: var(--accent);
  background: rgba(255, 255, 255, 0.02);
}

/* Main Content */
.legal-content {
  flex: 1;
  max-width: 800px;
}

.legal-section {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.legal-section h2 {
  font-size: 28px;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.legal-section p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.legal-section ul {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  padding-left: 1.5rem;
}

.legal-section ul li {
  margin-bottom: 0.75rem;
}

/* Mobile Dropdown */
.mobile-toc-toggle {
  display: none;
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 2rem;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
}

.mobile-toc-toggle .material-symbols-outlined {
  transition: transform 0.3s ease;
}

.mobile-toc-toggle.expanded .material-symbols-outlined {
  transform: rotate(180deg);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--accent-glow);
}

@media (max-width: 991px) {
  .legal-container {
    flex-direction: column;
    gap: 0;
  }

  .legal-sidebar {
    width: 100%;
    margin-bottom: 2rem;
  }

  .mobile-toc-toggle {
    display: flex;
  }

  .legal-nav-sticky {
    position: static;
    display: none;
  }

  .legal-nav-sticky.show {
    display: block;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    margin-top: -1rem;
    margin-bottom: 2rem;
  }

  .legal-nav-ul li a {
    padding: 12px 16px;
  }
}

/* Animation Variations */
.fade-up {
  transform: translateY(40px);
}

.fade-up.is-visible {
  transform: translateY(0);
}

.fade-left {
  transform: translateX(-40px);
}

.fade-left.is-visible {
  transform: translateX(0);
}

.fade-right {
  transform: translateX(40px);
}

.fade-right.is-visible {
  transform: translateX(0);
}

.scale-in {
  transform: scale(0.95);
  filter: blur(10px);
}

.scale-in.is-visible {
  transform: scale(1);
  filter: blur(0);
}

.fade-in {
  transform: none;
}

.fade-in.is-visible {
  transform: none;
}


/* Responsive */
@media (max-width: 1200px) {
  h1 {
    font-size: 56px;
  }

  .hero-sticky {
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    grid-column: 1 / -1;
    padding: 0 2rem;
  }

  .hero-visuals {
    width: 100vw;
    right: 0;
    opacity: 0.4;
    z-index: 0;
  }

  .hero-actions {
    justify-content: center;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .trust-container {
    flex-direction: column;
    gap: 2rem;
  }

  .trust-item {
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0 0 2rem 0;
    text-align: center;
  }

  .trust-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .timeline {
    padding-left: 2rem;
  }

  .timeline-dot {
    left: -2.4rem;
  }

  .footer-main {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .footer-bottom {
    padding-top: 40px;
    padding-bottom: 40px;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .copyright {
    text-align: center;
  }

  .legal-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* =========================================
   Contact form Responsive STYLES
   ========================================= */
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .form-box {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    overflow: hidden;
  }

  .contact-info .btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .fade-left,
  .fade-right {
    transform: none;
  }
}

/* =========================================
   Recaptcha STYLES
   ========================================= */
.recaptcha-wrapper {
  width: 100%;
  overflow: hidden;
}

.g-recaptcha {
  transform: scale(0.85);
  transform-origin: left top;
}

@media (max-width: 768px) {
  .form-box {
    padding: 1.5rem;
  }
}

/* =========================================
   CONFIRMATION PAGES STYLES
   ========================================= */

.confirmation-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 120px 24px 100px;
  text-align: left;
}

.confirmation-container header {
  position: static;
  background: transparent;
  padding: 0;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.confirmation-container .logo {
  font-size: 28px;
}

.success-icon {
  color: #28a745;
  font-size: 80px;
  text-align: center;
  display: block;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(40, 167, 69, 0.4);
}

.confirmation-header {
  text-align: center;
  margin-bottom: 4rem;
}

.confirmation-header h1 {
  font-size: 36px;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.confirmation-header p {
  font-size: 18px;
  color: var(--text-secondary);
}

.confirmation-section {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.confirmation-section h2 {
  font-size: 20px;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.confirmation-section h2 .material-symbols-outlined {
  color: var(--accent);
}

.confirmation-section ul,
.confirmation-section ol {
  padding-left: 1.5rem;
  margin-bottom: 0;
  color: var(--text-secondary);
}

.confirmation-section ul li,
.confirmation-section ol li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.confirmation-section p {
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

.highlight-box {
  background: rgba(255, 204, 0, 0.05);
  border-left: 4px solid #ffcc00;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  margin: 3rem 0;
}

.highlight-box p {
  color: var(--text-primary);
  margin: 0;
  font-weight: 500;
  font-size: 16px;
}

.cta-section {
  text-align: center;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-section p {
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.confirmation-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 14px;
}

.confirmation-footer a {
  color: var(--text-secondary);
  margin: 0 10px;
  text-decoration: none;
}

.confirmation-footer a:hover {
  color: var(--text-primary);
}