/* Prazion Website - Premium Stylesheet */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");

:root {
  --primary: #1a3a6b;
  --primary-dark: #112850;
  --primary-light: #1a6bb8;
  --secondary: #1a2d4a;
  --accent: #1ab8d4;
  --tertiary: #4b5563;
  --tertiary-light: #a4a6a8eb;

  --text-main: #121826;
  --text-muted: #6b7280;
  --text-light: #94a3b8;

  --bg-main: #ffffff;
  --bg-surface: #ffffff;
  --bg-band: #f4f7fc;
  --bg-gradient: linear-gradient(135deg, #e8f0fb 0%, #ddeaf8 100%);

  --border: #e2e8f0;
  --border-light: #f1f5f9;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --shadow-glow: 0 0 30px rgba(26, 58, 107, 0.15);

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;

  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--secondary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 3.5rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw + 1rem, 1.75rem);
}

p {
  /* margin-bottom: 1.25rem; */
  color: var(--tertiary);
  font-size: clamp(1rem, 1vw + 0.75rem, 1.125rem);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition-fast);
}

.mt-1 {
  margin-top: 1rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

/* Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  /* padding: 0 2rem; */
}

.section {
  padding: 6rem 0;
  position: relative;
}

.custom-section {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2.5rem 0 !important;
}

.text-center {
  text-align: center;
  line-height: 2.5;
}

.text-center h2 {
  color: var(--primary);
}

.mb-4 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 3rem;
}

/* Header/Nav - Glassmorphism */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  transition: height 0.3s ease;
}

@media (min-width: 768px) {
  .logo-img {
    height: 50px;
  }
}

@media (min-width: 1201px) {
  .logo-img {
    height: 50px;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 1.7rem;
  list-style: none;
}

.nav-menu-login {
  display: none;
  /* show only in mobile menu */
}

.nav-link {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-surface);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
  list-style: none;
  border: 1px solid var(--border-light);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  padding: 0.75rem 1.5rem;
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
  background: var(--bg-band);
  color: var(--primary);
  padding-left: 1.75rem;
}

/* Chevron Icon */
.nav-dropdown > .nav-link {
  gap: 0.4rem;
}

.nav-dropdown .fa-chevron-down {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
  margin-top: 1px;
}

/* Desktop Only Hover Rotation */
@media (min-width: 1281px) {
  .nav-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
  }
}

@media (max-width: 1280px) {
  .mobile-menu-toggle {
    display: flex; /* Using flex for perfect center alignment */
    align-items: center;
    justify-content: center;
    width: 44px; /* Larger hit area */
    height: 44px;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    background: transparent;
    border: none;
  }

  .nav-actions {
    display: none !important;
  }

  .btn-desktop-only {
    display: none !important;
  }

  .nav-menu {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    position: absolute;
    top: 100%; /* Perfectly touches the header bottom */
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0); /* Removed vertical gap transform */
    transition: var(--transition);
  }

  .nav-dropdown > .nav-link {
    gap: 0.75rem; /* More gap on mobile for better touch target */
  }

  .nav-dropdown .fa-chevron-down {
    font-size: 0.85rem; /* Larger arrow for easier interaction on mobile */
    padding: 0.5rem; /* Extra padding around the icon to make it a better click target */
  }

  .nav.menu-open .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu-login {
    display: block !important;
    border-top: 1.5px solid var(--border-light);
    width: 100%;
    padding-top: 1.5rem;
    margin-top: 1rem;
    text-align: left;
  }

  .nav-menu-login .nav-link {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--primary);
    color: white !important;
    border-radius: var(--radius-md);
    width: 100%;
    font-weight: 600;
    text-align: center; /* Center the text inside the button */
  }

  @media (min-width: 577px) {
    .nav-menu-login .nav-link {
      width: fit-content;
      min-width: 180px;
      padding: 0.75rem 2.5rem;
    }
  }

  .nav-menu-login .nav-link::after {
    display: none; /* Hide standard underline effect for the button */
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 0 0 0 1.5rem;
    display: none;
  }

  /* On mobile, only open via the .open class (controlled by JS) to allow toggling */
  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-dropdown.open .fa-chevron-down {
    transform: rotate(180deg);
  }

  .btn-desktop-only {
    display: none !important;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .nav-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .nav {
    height: 70px;
  }

  .logo-img {
    height: 42px; /* Keeping the logo prominent as requested */
  }

  .nav-actions .btn-outline {
    display: none; /* Hide login button on very small screens to fit logo */
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(26, 58, 107, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(26, 58, 107, 0.35);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover,
.btn-outline:focus {
  background: rgba(26, 58, 107, 0.05);
}

.btn-white {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-white:hover,
.btn-white:focus {
  background: rgba(26, 58, 107, 0.05);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

/* Keep contact submit button readable when disabled (Sending… state) */
.btn-primary:disabled,
.contact-submit-btn:disabled {
  background: var(--primary) !important;
  color: white !important;
  opacity: 1;
  cursor: not-allowed;
}

/* Hero Section */
.hero {
  padding: 4rem 6rem;
  background: linear-gradient(160deg, #f0f5fd 0%, #ffffff 60%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-cta-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 0 2.5rem;
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.hero-cta-wrapper .btn {
  flex-shrink: 0;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  font-weight: 800;
  color: var(--primary);
  /* margin-bottom: 1.5rem; */
  /* line-height: 1.1; */
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 0;
  /* margin: 0 auto 2.5rem; */
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  /* margin-top: 2rem; */
  line-height: 1.5;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* Grids & Cards */
.benefits-grid,
.features-grid,
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.benefit-item,
.feature-card,
.testimonial-card {
  width: calc(33.333% - 1.34rem);
  min-width: 290px;
}

@media (max-width: 992px) {
  .benefit-item,
  .feature-card,
  .testimonial-card {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .benefit-item,
  .feature-card,
  .testimonial-card {
    width: 100%;
  }
}

/* Utility for 2-column centered layout */
.responsive-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.responsive-grid > .feature-card {
  width: calc(50% - 1.5rem);
  min-width: 290px;
}

@media (max-width: 992px) {
  .responsive-grid > .feature-card {
    width: 100%;
    max-width: 600px;
  }
}

.benefit-item,
.feature-card,
.testimonial-card {
  background: var(--bg-surface);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-benefits .benefit-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-item p {
  margin-bottom: 0;
}

.feature-card:hover,
.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--tertiary-light);
}

.benefit-icon,
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(26, 184, 212, 0.12),
    rgba(26, 107, 184, 0.12)
  );
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  /* margin-bottom: 1.5rem; */
  transition: var(--transition);
}

.feature-card:hover .feature-icon,
.benefit-item:hover .benefit-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.card-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  /* margin-bottom: 1rem; */
  /* margin-top: 0.5rem; */
}

.feature-card p {
  font-size: 1rem;
  margin: 0;
}

/* Benefits (alternate sections) */
.benefits {
  background: var(--bg-surface);
  /* border-top: 1px solid var(--border-light); */
  border-bottom: 1px solid var(--border-light);
}

/* Stats */
.stats {
  background: var(--bg-band);
  color: var(--text-main);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="%23ffffff" fill-opacity="0.1"/></svg>');
}

.stats-grid,
.stats-grid-home {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.stat-item {
  background: var(--bg-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  width: calc(25% - 2.25rem);
  flex-grow: 0;
  flex-shrink: 0;
  min-width: 200px;
}

@media (max-width: 992px) {
  .stat-item {
    width: calc(50% - 1.5rem);
  }
}

@media (max-width: 480px) {
  .stat-item {
    width: 100%;
    max-width: 300px;
  }
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.stat-item p {
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

/* Testimonials */
.testimonials {
  background: var(--bg-band);
  /* padding-top: 2rem; */
  /* padding-bottom: 4rem; */
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--text-main);
  line-height: 1.8;
  /* margin-bottom: 2rem; */
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: rgba(26, 58, 107, 0.1);
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: serif;
  line-height: 1;
}

.author-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.author-info h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  background: radial-gradient(
    circle at center,
    #e8f0fb 0%,
    var(--bg-surface) 100%
  );
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 3rem;
  /* margin-bottom: 1.5rem; */
}

/* Table */
.table-container {
  width: 100%;
  overflow-x: auto;
  /* margin-bottom: 2rem; */
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.table th,
.table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.table th {
  background: var(--bg-main);
  font-weight: 600;
  color: var(--text-main);
}

.table tr:last-child td {
  border-bottom: none;
}

/* Pricing */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: stretch;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(33.333% - 1.34rem);
  min-width: 290px;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
  z-index: 10;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-header {
  text-align: center;
  /* margin-bottom: 2rem; */
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.pricing-header h3 {
  font-size: 1.5rem;
  /* margin-bottom: 1rem; */
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-main);
  /* margin-bottom: 0.5rem; */
  line-height: 1.1;
  min-width: 0;
}

.pricing-price span {
  display: block;
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 500;
  /* margin-top: 0.125rem; */
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--secondary);
}

.pricing-cta {
  width: 100%;
  margin-top: auto;
}

/* Sections */
.section-sm {
  padding: 4rem 0;
  position: relative;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background-color: var(--bg-surface);
  color: var(--text-main);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* Form Validation Styles */
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.1) !important;
}

.error-message {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.5rem;
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact form status */
.form-status {
  margin-bottom: 1rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.form-status.show {
  display: flex;
}

.form-status--sending {
  background: rgba(26, 58, 107, 0.08);
  color: var(--primary);
  border: 1px solid rgba(26, 58, 107, 0.2);
}

.form-status--success {
  background: rgba(5, 150, 105, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(5, 150, 105, 0.25);
}

.form-status--error {
  background: rgba(244, 63, 94, 0.08);
  color: var(--accent);
  border: 1px solid rgba(244, 63, 94, 0.2);
}

.form-status-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

/* Footer */
turbo-footer,
.footer {
  position: relative;
  z-index: 99999999;
  background: var(--secondary);
  color: white;
  padding: 5rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.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;
}

.footer-cta {
  margin-bottom: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-cta-text {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-cta-text a {
  color: white;
  font-weight: 600;
  text-decoration: underline;
}

.footer-newsletter {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 360px;
  margin: 0 auto;
}

.footer-newsletter input[type="email"] {
  flex: 1;
  min-width: 180px;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.95rem;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.footer-section h4 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: #94a3b8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #94a3b8;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #64748b;
}

/* Animations */
.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1280px) {
  .container {
    max-width: 1140px;
    padding: 0 2rem;
  }

  .custom-section {
    padding: 2.5rem 2rem !important;
  }

  .hero h1 {
    font-size: clamp(3rem, 7vw, 4rem);
  }

  .responsive-grid {
    gap: 2.5rem;
  }

  .footer-content {
    gap: 3rem;
  }
}

@media (max-width: 1024px) {
  .responsive-grid {
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
  }

  .pricing-grid {
    gap: 1.5rem;
  }

  .pricing-card {
    width: calc(50% - 1rem);
    padding: 2.5rem 1.5rem;
  }

  .pricing-price {
    font-size: 2.5rem;
  }
}

@media (max-width: 1200px) {
  .nav {
    position: static;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    z-index: 999;
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
    border-top: 1px solid var(--border-light);
  }

  .nav.menu-open .nav-menu {
    display: flex;
    animation: slideDown 0.3s ease-out forwards;
  }

  .nav-menu-login {
    display: list-item;
  }

  .nav-link {
    font-size: 1.1rem;
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-link::after {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-actions {
    display: none !important;
  }

  .btn-desktop-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .benefit-item,
  .feature-card,
  .testimonial-card,
  .pricing-card {
    padding: 1.5rem;
  }

  .hero {
    padding: clamp(4rem, 10vw, 6rem) 0 clamp(5rem, 12vw, 8rem);
  }

  .hero-cta-wrapper {
    position: relative;
    flex-direction: column;
    padding: 0 1.5rem 3rem;
    align-items: center;
  }

  .hero-cta-wrapper .btn {
    width: 100%;
    max-width: 260px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .footer {
    padding-bottom: 3rem;
    padding-top: 3.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-section:first-child {
    grid-column: 1 / -1;
  }

  .pricing-grid {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card {
    width: 100%;
    padding: 1.5rem;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

  .responsive-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .signup-wrapper {
    padding: 1.5rem;
  }

  .signup-form-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .custom-section {
    padding: 2.5rem 1.25rem !important;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-section {
    text-align: center;
  }

  .footer-links li {
    margin-bottom: 0.75rem;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }

  .subdomain-input-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .subdomain-input-wrap input {
    width: 100%;
  }

  .hero-benefits-list {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem !important;
  }

  .footer-newsletter {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .footer-newsletter input[type="email"],
  .footer-newsletter .btn {
    width: 100% !important;
  }

  /* Re-enable active link indicator for small screens as requested */
  .nav-link::after {
    display: block !important;
  }
}

/* Utilities */
.full-width {
  width: 100% !important;
  grid-column: 1 / -1 !important;
}

.border-none {
  border: none !important;
}

.shadow-none {
  box-shadow: none !important;
}

.footer-logo {
  height: 55px;
  width: auto;
  margin-bottom: 1.5rem;
  /* filter: brightness(0) invert(1); */
  cursor: pointer;
}

/* Legal Pages Styling */
.legal-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  /* margin-top: 2rem; */
}

.legal-hero {
  display: flex;
  flex-direction: column;
  gap: 1.5rem 24px;
}

.legal-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.legal-nav {
  list-style: none;
  background: var(--bg-surface);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.legal-nav li {
  margin-bottom: 0.75rem;
}

.legal-nav li:last-child {
  margin-bottom: 0;
}

.legal-nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  text-align: left !important;
}

.legal-nav a:hover,
.legal-nav a.active {
  color: var(--primary);
  background: rgba(26, 58, 107, 0.05);
}

.legal-content {
  background: var(--bg-surface);
  padding: 3.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.legal-content h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legal-content h2::before {
  content: "";
  width: 4px;
  height: 24px;
  background: var(--primary);
  border-radius: 2px;
}

.legal-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.page-header {
  background: var(--secondary);
  padding: 6rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="%23ffffff" fill-opacity="0.05"/></svg>');
  pointer-events: none;
}

.page-header h1 {
  color: white;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .legal-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .legal-sidebar {
    position: static;
    order: -1;
  }

  .legal-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem;
    gap: 1rem;
    border-radius: var(--radius-lg);
  }

  .legal-nav li {
    margin-bottom: 0;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .legal-nav a {
    white-space: nowrap;
  }

  .legal-content {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .legal-container {
    gap: 1.5rem;
    /* margin-top: 1rem; */
  }

  .legal-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
    margin: 0;
    border-radius: var(--radius-md);
  }

  .legal-nav li {
    margin-bottom: 0;
  }

  .legal-nav a {
    font-size: 0.875rem;
    padding: 0.6rem 0.875rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .legal-content {
    padding: 1.75rem 1.5rem;
  }

  .legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
  }
}

@media (max-width: 480px) {
  .legal-container {
    gap: 1.25rem;
  }

  .legal-sidebar {
    width: 100%;
    min-width: 0;
  }

  .legal-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow-x: visible;
    white-space: normal;
    scroll-snap-type: none;
    padding: 1rem;
    gap: 0.5rem;
  }

  .legal-nav li {
    scroll-snap-align: none;
  }

  .legal-nav a {
    white-space: normal;
    font-size: 0.8125rem;
    padding: 0.5rem 0.75rem;
    min-height: 44px;
    text-align: center;
    justify-content: center;
  }

  .legal-content {
    padding: 1.25rem 1rem;
  }

  .legal-content h2 {
    font-size: 1.35rem;
  }
}

/* Signup page */
.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin-right: 0.5rem;
}

.signup-wrapper {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-surface);
  padding: clamp(1.5rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.signup-step {
  display: none;
}

.signup-step.active {
  display: block;
}

.signup-step h3 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.signup-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.signup-form-grid .form-group.full-width {
  grid-column: 1 / -1;
}

.signup-form-grid .form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
  color: var(--text-main);
}

.signup-form-grid .form-group input[type="text"],
.signup-form-grid .form-group input[type="email"],
.signup-form-grid .form-group input[type="tel"],
.signup-form-grid .form-group input[type="password"] {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

.signup-form-grid .form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.1);
}

.required {
  color: var(--accent);
}

.subdomain-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.subdomain-input-wrap input {
  flex: 1;
  padding: 0.75rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

.subdomain-suffix {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
}

.form-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.875rem;
}

.login-url-preview {
  margin: 1.5rem 0;
  font-size: 0.95rem;
  padding: 1rem;
  background: var(--bg-band);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--primary-light);
  color: var(--text-main);
}

.signup-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.signup-actions .btn {
  flex: 1;
}

.signup-review {
  background: var(--bg-band);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.signup-review p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 0.5rem;
}

.signup-review p:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.4;
}

.checkbox-label input {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
}

.signup-error {
  color: white;
  background: var(--accent);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin: 1rem 0;
  font-size: 0.95rem;
}

.signup-success {
  background: var(--secondary);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin: 1rem 0;
  font-size: 0.95rem;
}

.signup-spinner {
  text-align: center;
  padding: 3rem 1rem;
}

.signup-spinner .spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Logo Slider Section */
.logo-slider-section {
  padding: 4rem 0;
  background-color: var(--bg-surface);
  overflow: hidden;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.slider {
  width: 100%;
  height: var(--height);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10% 90%, transparent);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 10% 90%,
    transparent
  );
}

.slider .list {
  display: flex;
  width: 100%;
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
}

.slider .list .item {
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: 100%;
  animation: autoRun 25s linear infinite;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  max-width: 200px;
  max-height: 150px;
}

.slider .list .item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: all 0.3s ease;
}

.slider .list .item:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
}

@keyframes autoRun {
  from {
    left: 100%;
  }
  to {
    left: calc(var(--width) * -1);
  }
}

.slider:hover .item {
  animation-play-state: paused !important;
}

.slider .list .item {
  animation-delay: calc(
    (25s / var(--quantity)) * (var(--position) - 1) - 25s
  ) !important;
}

@media (max-width: 768px) {
  .logo-slider-section {
    padding: 4rem 0;
  }
  .slider {
    --height: 80px !important;
    --width: 180px !important;
  }
  .slider .list .item img {
    max-width: 160px;
    max-height: 120px;
  }
}
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2147483647; /* Maximum possible z-index */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1rem;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--bg-surface);
  margin: auto;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: modalSlideUp 0.4s ease-out;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
}

.close-modal:hover {
  color: var(--text-main);
  background: var(--bg-band);
  border-color: var(--text-light);
}

.modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-content .form-label {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.modal-content .form-input,
.modal-content .form-select,
.modal-content .form-textarea {
  font-size: 0.95rem;
  padding: 0.65rem 0.8rem;
}

.modal-content .form-textarea {
  min-height: 100px;
}

.modal-content .btn {
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .modal-form-grid {
    grid-template-columns: 1fr;
  }
  .modal-content {
    padding: 1.5rem;
  }
}

body.modal-open {
  overflow: hidden;
}

/* Prazion premium corporate refresh */
:root {
  --primary-rgb: 26, 58, 107;
  --accent-rgb: 26, 184, 212;
  --surface-soft: #f7faff;
  --surface-strong: #edf4fb;
  --text-soft: #52627d;
  --hero-grid:
    radial-gradient(circle at 15% 20%, rgba(var(--accent-rgb), 0.14), transparent 18%),
    radial-gradient(circle at 85% 10%, rgba(var(--primary-rgb), 0.12), transparent 22%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 62%);
}

body {
  background:
    linear-gradient(180deg, #fbfdff 0%, #f7fbff 26%, #ffffff 44%);
}

.container {
  padding: 0 2rem;
}

.section {
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
}

.custom-section {
  gap: 3rem;
  padding: clamp(4rem, 7vw, 5.75rem) 0 !important;
}

.text-center {
  line-height: 1.65;
}

.header {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(26, 58, 107, 0.08);
  box-shadow: 0 18px 42px rgba(17, 40, 80, 0.06);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(17, 40, 80, 0.1);
}

.nav {
  height: 88px;
}

.logo {
  gap: 0.9rem;
}

.logo-img {
  height: 58px;
}

.nav-menu {
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  color: var(--text-soft);
}

.nav-link::after {
  height: 3px;
  border-radius: 999px;
}

.dropdown-menu {
  top: calc(100% + 0.9rem);
  min-width: 250px;
  padding: 0.6rem;
  border-radius: 1rem;
  border: 1px solid rgba(26, 58, 107, 0.08);
  box-shadow:
    0 22px 44px rgba(17, 40, 80, 0.12),
    0 10px 18px rgba(17, 40, 80, 0.06);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 1.4rem;
  width: 14px;
  height: 14px;
  background: var(--bg-surface);
  border-left: 1px solid rgba(26, 58, 107, 0.08);
  border-top: 1px solid rgba(26, 58, 107, 0.08);
  transform: rotate(45deg);
}

.dropdown-menu li a {
  border-radius: 0.8rem;
}

.dropdown-menu li a:hover {
  background: var(--surface-soft);
  padding-left: 1.5rem;
}

.btn {
  border-radius: 999px;
  padding: 0.92rem 1.7rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  box-shadow:
    0 18px 30px rgba(var(--primary-rgb), 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-primary:hover,
.btn-primary:focus {
  box-shadow:
    0 22px 36px rgba(var(--primary-rgb), 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-outline,
.btn-white {
  border-width: 1.5px;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.72);
}

.btn-outline:hover,
.btn-outline:focus,
.btn-white:hover,
.btn-white:focus {
  background: white;
  box-shadow: 0 14px 28px rgba(var(--primary-rgb), 0.1);
}

.btn-lg {
  padding: 1.05rem 2.15rem;
}

.hero {
  padding: clamp(5.5rem, 9vw, 8rem) 0 clamp(4.5rem, 7vw, 6rem);
  background: var(--hero-grid);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto 6% 6%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.18), transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 14%;
  right: 8%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12), transparent 72%);
  pointer-events: none;
}

.hero-content {
  max-width: 980px;
}

.hero-container {
  gap: 1.15rem;
}

.hero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1.02;
}

.hero p {
  max-width: 760px;
  color: var(--text-soft);
}

.hero-cta {
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.65rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary) !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(var(--primary-rgb), 0.06);
}

.hero-supporting {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
}

.section-soft {
  background: var(--surface-soft) !important;
}

.section-intro {
  max-width: 820px;
  margin: 0 auto 3.25rem;
}

.section-intro h2 {
  margin-bottom: 0.9rem;
}

.section-intro p {
  font-size: 1.08rem;
  color: var(--text-soft);
}

.section-heading {
  text-align: center;
  margin-bottom: 0;
}

/* Home: denser vertical rhythm; core offerings use full content width */
.home .section {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.home .custom-section {
  gap: 2rem;
  padding: clamp(2.75rem, 5vw, 4rem) 0 !important;
}

.home .hero {
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4.5rem);
}

.home .hero-content {
  max-width: 1080px;
}

.home .hero p {
  max-width: 820px;
}

.home .section-intro {
  margin-bottom: 2rem;
}

.home .responsive-grid {
  gap: 2rem;
}

.home .cta-section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

/* ─── Section differentiation ─────────────────────────────── */

/* Stronger tint so soft sections are clearly different from white */
.home .section-soft {
  background: #ddeaf8 !important;
}

/* White sections get a hairline rule top and bottom to demarcate them */
.section-white {
  background: #ffffff;
  border-top: 1px solid rgba(26, 58, 107, 0.09);
  border-bottom: 1px solid rgba(26, 58, 107, 0.09);
}

/* When section-white is used without .section, ensure vertical padding */
.section-white:not(.section) .custom-section {
  padding-top: clamp(2.75rem, 5vw, 4rem) !important;
  padding-bottom: clamp(2.75rem, 5vw, 4rem) !important;
}

/* Dark primary band — Connected ecosystem / How we work */
.section-dark-band {
  background: linear-gradient(135deg, #0f2040 0%, #1a3a6b 100%);
  position: relative;
  overflow: hidden;
  /* Override CSS variables so inline-styled children adapt automatically */
  --bg-main: rgba(255, 255, 255, 0.1);
  --bg-band: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.18);
  --border-light: rgba(255, 255, 255, 0.12);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
  --primary: rgba(255, 255, 255, 0.92);
  --primary-light: rgba(255, 255, 255, 0.45);
  --secondary: rgba(255, 255, 255, 0.92);
  --text-main: rgba(255, 255, 255, 0.92);
  --text-muted: rgba(255, 255, 255, 0.72);
  --tertiary: rgba(255, 255, 255, 0.72);
}

.section-dark-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="%23ffffff" fill-opacity="0.04"/></svg>');
  pointer-events: none;
}

.section-dark-band .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.section-dark-band h2 {
  color: #ffffff;
}

.section-dark-band p,
.section-dark-band .hero-supporting {
  color: rgba(255, 255, 255, 0.75) !important;
}

.section-dark-band .section-intro p {
  color: rgba(255, 255, 255, 0.7);
}

.section-dark-band .process-step {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.section-dark-band .process-step i,
.section-dark-band .process-step span {
  color: rgba(255, 255, 255, 0.9);
}

.section-dark-band .process-arrow i {
  color: rgba(255, 255, 255, 0.35);
}

/* Primary gradient band — Mid-funnel CTA */
.section-brand-mid {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.section-brand-mid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="%23ffffff" fill-opacity="0.05"/></svg>');
  pointer-events: none;
}

.section-brand-mid .section-label {
  color: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.2);
}

.section-brand-mid h2 {
  color: #ffffff;
}

.section-brand-mid p,
.section-brand-mid .section-intro p {
  color: rgba(255, 255, 255, 0.8);
}

.section-brand-mid .btn-primary {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.section-brand-mid .btn-primary:hover,
.section-brand-mid .btn-primary:focus {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.core-offerings-grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  width: 100%;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .core-offerings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Global .feature-card uses ~33% width for 3-col grids; fill grid cells here */
.core-offerings-grid .feature-card {
  width: 100%;
  max-width: none;
  min-width: 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.positioning-strip {
  padding: 1.1rem 0;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.positioning-strip p {
  color: white;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.benefit-item,
.feature-card,
.testimonial-card {
  padding: 2rem;
  border: 1px solid rgba(26, 58, 107, 0.08);
  box-shadow:
    0 20px 38px rgba(17, 40, 80, 0.07),
    0 8px 16px rgba(17, 40, 80, 0.03);
}

.feature-card::before,
.benefit-item::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover::before,
.benefit-item:hover::before {
  opacity: 1;
}

.feature-card:hover,
.benefit-item:hover {
  transform: translateY(-10px);
  border-color: rgba(var(--primary-rgb), 0.16);
}

.card-container {
  gap: 1.15rem;
}

.feature-card h3 {
  color: var(--secondary);
}

.feature-card p,
.benefit-item p {
  color: var(--text-soft);
}

.feature-icon,
.benefit-icon {
  width: 72px;
  height: 72px;
  border-radius: 1.15rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.check-list,
.pain-list,
.info-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  max-width: 720px;
  margin: 1.5rem auto 0;
  padding: 0;
}

.check-list li,
.pain-list li,
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0;
  color: var(--text-soft);
}

.check-list li i,
.pain-list li i,
.info-list li i {
  margin-top: 0.18rem;
  flex-shrink: 0;
}

.pain-list {
  max-width: 620px;
}

.pain-list li {
  padding: 1rem 1.1rem !important;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(26, 58, 107, 0.08);
  box-shadow: 0 10px 26px rgba(17, 40, 80, 0.05);
}

.pain-list li i {
  color: var(--accent) !important;
}

.check-list li i {
  color: var(--primary) !important;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 58, 107, 0.1);
  background: white;
  box-shadow: 0 10px 24px rgba(17, 40, 80, 0.05);
  color: var(--secondary);
  font-weight: 700;
}

.process-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.65rem;
  max-width: 1080px;
  margin: 0 auto 2rem;
}

.process-step {
  min-width: 142px;
  padding: 1.15rem 1.1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(26, 58, 107, 0.08);
  background: white;
  box-shadow: 0 18px 34px rgba(17, 40, 80, 0.06);
  text-align: center;
}

.process-step i {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.3rem;
  color: var(--primary);
}

.process-step span {
  display: block;
  color: var(--secondary);
  font-size: 0.92rem;
  font-weight: 700;
}

.process-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1rem;
  padding: 0 0.2rem;
}

.surface-panel {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(26, 58, 107, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 22px 42px rgba(17, 40, 80, 0.06);
}

.section-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.section-card-grid .mini-card {
  padding: 1.35rem 1.4rem;
  border-radius: 1.15rem;
  background: white;
  border: 1px solid rgba(26, 58, 107, 0.08);
  box-shadow: 0 14px 30px rgba(17, 40, 80, 0.05);
  text-align: center;
}

.section-card-grid .mini-card i {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
  color: var(--primary);
}

.section-card-grid .mini-card strong,
.section-card-grid .mini-card span {
  color: var(--secondary);
}

.cta-section {
  background:
    radial-gradient(circle at top, rgba(var(--accent-rgb), 0.12), transparent 28%),
    linear-gradient(180deg, #edf5ff 0%, #ffffff 100%);
  padding: clamp(4rem, 8vw, 5.5rem) 0;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 760px;
  margin: 0 auto 2rem;
  color: var(--text-soft);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid rgba(26, 58, 107, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.95rem 1rem;
  color: var(--secondary);
  transition: var(--transition-fast);
  box-shadow: inset 0 1px 2px rgba(17, 40, 80, 0.03);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(var(--primary-rgb), 0.45);
  box-shadow:
    0 0 0 4px rgba(var(--accent-rgb), 0.12),
    inset 0 1px 2px rgba(17, 40, 80, 0.03);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--secondary);
}

.modal {
  background: rgba(10, 22, 43, 0.55);
  backdrop-filter: blur(8px);
}

.modal-content {
  border-radius: 1.75rem;
  border: 1px solid rgba(26, 58, 107, 0.08);
  box-shadow: 0 30px 70px rgba(10, 22, 43, 0.28);
}

.close-modal {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
}

.footer {
  background:
    radial-gradient(circle at 15% 20%, rgba(var(--accent-rgb), 0.18), transparent 24%),
    linear-gradient(180deg, #172847 0%, #10203b 100%);
  padding: 5.5rem 0 2rem;
}

.footer-content {
  gap: 3rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.52);
}

.footer-logo {
  height: 58px;
}

.footer-brand-mark {
  display: inline-flex;
  padding: 0.6rem 0.85rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-section-title {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.contact-layout {
  align-items: start;
}

.contact-panel {
  padding: 2rem;
}

.contact-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(26, 58, 107, 0.08);
  box-shadow: 0 20px 40px rgba(17, 40, 80, 0.06);
}

.contact-stack {
  display: grid;
  gap: 1.5rem;
}

.contact-item {
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  background: var(--surface-soft);
  border: 1px solid rgba(26, 58, 107, 0.08);
}

.contact-item h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.contact-item p,
.contact-item li,
.contact-item a {
  color: var(--text-soft);
}

.contact-item ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.contact-item li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.contact-item li i {
  margin-top: 0.2rem;
  color: var(--primary);
}

.center-card {
  text-align: center;
}

.compact-p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 1.75rem;
  }

  .nav {
    height: 82px;
  }

  .nav-menu {
    top: 88px;
    max-height: calc(100vh - 88px);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero {
    padding: 5rem 0 4.5rem;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 10vw, 3.35rem);
  }

  .hero-eyebrow {
    font-size: 0.76rem !important;
    letter-spacing: 0.1em !important;
  }

  .pain-list li,
  .chip,
  .process-step {
    border-radius: 1rem;
  }

  .process-flow {
    gap: 0.9rem;
  }

  .process-arrow {
    width: 100%;
    transform: rotate(90deg);
  }

  .contact-panel {
    padding: 1.5rem;
  }
}
