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

/* ==========================================================================
   CSS DESIGN SYSTEM VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-dark: #090d16;
  --bg-dark-secondary: #0f172a;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-light: #94a3b8;
  --text-dark-bg: #f8fafc;
  --text-dark-bg-muted: #cbd5e1;
  
  --brand-primary: #2563eb;
  --brand-secondary: #4f46e5;
  --brand-hover: #1d4ed8;
  --brand-light: #eff6ff;
  --brand-gradient: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  --brand-gradient-hover: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
  --brand-glow: 0 0 25px rgba(37, 99, 235, 0.25);
  
  --success: #10b981;
  --success-light: #ecfdf5;
  --error: #ef4444;
  --error-light: #fef2f2;
  --warning: #f59e0b;
  
  --border-color: #e2e8f0;
  --border-focus: #3b82f6;
  
  /* Typography */
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Layout spacing */
  --container-max-width: 1200px;
  --section-padding: 5rem 1.5rem;
  --section-padding-mobile: 3.5rem 1rem;
  
  /* Shadows & Borders */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

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

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

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

button {
  cursor: pointer;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* ==========================================================================
   COMMON COMPONENT STYLES
   ========================================================================== */
/* Section Header */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem auto;
}

.section-subtitle {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.section-description {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  text-align: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--brand-gradient);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: var(--brand-gradient-hover);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
  transform: translateY(-2px);
}

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

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

.btn-white {
  background: #ffffff;
  color: var(--brand-primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--brand-light);
  transform: translateY(-2px);
}

/* Cards */
.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.25);
}

/* Badge/Icon container */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--brand-light);
  color: var(--brand-primary);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}

.card:hover .icon-badge {
  background: var(--brand-gradient);
  color: #ffffff;
  transform: scale(1.05);
}

/* ==========================================================================
   NAVIGATION BAR (STICKY & GLASS)
   ========================================================================== */
.header-nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: padding var(--transition-fast), background var(--transition-fast);
}

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

.logo-link {
  display: flex;
  align-items: center;
  height: 44px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-link-item a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link-item a:hover,
.nav-link-item.active a {
  color: var(--brand-primary);
}

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

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

.nav-cta {
  display: flex;
  align-items: center;
}

.nav-cta .btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 8rem 0 6rem 0;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 0) 50%),
              radial-gradient(circle at bottom left, rgba(79, 70, 229, 0.03) 0%, rgba(255, 255, 255, 0) 50%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-headline {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-headline span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-contact-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.hero-contact-info a {
  font-weight: 600;
  color: var(--brand-primary);
  border-bottom: 1px dotted var(--brand-primary);
}

.hero-contact-info a:hover {
  color: var(--brand-hover);
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   TRUST HIGHLIGHTS (STAT CARDS)
   ========================================================================== */
.trust-highlights {
  padding: 2.5rem 0 5rem 0;
}

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

.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
}

.stat-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1.25rem auto;
  background: var(--brand-light);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border-radius: var(--radius-full);
}

.stat-card:hover .stat-icon {
  background: var(--brand-gradient);
  color: #ffffff;
}

.stat-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

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

.disclaimer-text {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 2rem;
  line-height: 1.5;
}

/* ==========================================================================
   WHY NEED D-U-N-S SECTION
   ========================================================================== */
.why-need-duns {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.why-card {
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  border-color: rgba(226, 232, 240, 0.6);
}

.why-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

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

/* ==========================================================================
   HOW IT WORKS (PROCESS STEPS)
   ========================================================================== */
.how-it-works {
  padding: var(--section-padding);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

/* Connector line between steps (desktop only) */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--bg-secondary);
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.step-card:hover .step-number {
  background: var(--brand-gradient);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: var(--brand-glow);
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

.process-cta {
  text-align: center;
  margin-top: 4rem;
}

/* ==========================================================================
   WHY CHOOSE INCOGNISOFT SECTION
   ========================================================================== */
.why-choose {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.choose-card {
  background: var(--bg-primary);
  border-color: rgba(226, 232, 240, 0.6);
}

.choose-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

/* ==========================================================================
   FINAL CTA SECTION (DARK NAVY GRADIENT)
   ========================================================================== */
.final-cta {
  padding: var(--section-padding);
  background-color: var(--bg-primary);
}

.cta-box {
  background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.15), transparent),
              var(--bg-dark-secondary);
  border-radius: var(--radius-lg);
  padding: 5rem 3rem;
  text-align: center;
  color: var(--text-dark-bg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.125rem;
  color: var(--text-dark-bg-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta-email {
  font-size: 1.05rem;
  color: var(--text-dark-bg-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-email a {
  font-weight: 600;
  color: #ffffff;
  border-bottom: 1px dotted #ffffff;
}

.cta-email a:hover {
  color: #60a5fa;
  border-color: #60a5fa;
}

/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */
.about-hero {
  padding: 8rem 0 4rem 0;
  text-align: center;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.04) 0%, transparent 60%);
}

.about-hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
}

.about-hero-title span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero-desc {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 750px;
  margin: 0 auto;
}

.about-intro {
  padding: 4rem 0 var(--section-padding);
}

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

.about-intro-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.about-intro-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-mv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mv-card {
  padding: 2.5rem;
}

.mv-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

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

.values-section {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.value-card {
  padding: 2rem 1.5rem;
  text-align: center;
}

.value-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-light);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border-radius: var(--radius-full);
  margin: 0 auto 1.25rem auto;
}

.value-card:hover .value-icon {
  background: var(--brand-gradient);
  color: #ffffff;
}

.value-name {
  font-weight: 700;
  font-size: 1.1rem;
}

/* ==========================================================================
   SERVICES PAGE STYLES
   ========================================================================== */
.services-hero {
  padding: 8rem 0 4rem 0;
  text-align: center;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.04) 0%, transparent 60%);
}

.primary-service-section {
  padding: 2rem 0 var(--section-padding) 0;
}

.primary-service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.service-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--brand-light);
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.primary-service-info h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.primary-service-info p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.service-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  list-style: none;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.service-feature-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--success);
  margin-top: 2px;
}

.additional-services {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.add-service-card {
  padding: 2.5rem;
}

.add-service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.add-service-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   D-U-N-S ASSISTANCE / REQUEST PAGE & FORM
   ========================================================================== */
.request-form-section {
  padding: 4rem 0 var(--section-padding) 0;
}

.form-layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.form-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-label span.required {
  color: var(--error);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: var(--bg-primary);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--border-focus);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

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

.checkbox-group {
  margin-bottom: 2rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--brand-primary);
}

.submit-btn-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.submit-btn-container button {
  width: 100%;
  padding: 1rem;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
  text-align: center;
}

/* Form success, loading, error alerts */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  display: none;
  align-items: flex-start;
  gap: 0.75rem;
}

.alert-success {
  background-color: var(--success-light);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-error {
  background-color: var(--error-light);
  color: var(--error);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
  to { transform: rotate(360deg); }
}

/* Side trust info card next to form */
.form-side-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.side-highlight-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.side-hl-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
}

.side-hl-title svg {
  color: var(--brand-primary);
}

.side-hl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.side-hl-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.side-hl-item svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Honeypot field (anti-spam) */
.hp-field {
  display: none !important;
}

/* FAQ SECTION */
.faq-section {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

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

.faq-trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 700;
  font-size: 1.05rem;
  background: none;
  outline: none;
}

.faq-icon-svg {
  transition: transform var(--transition-normal);
  color: var(--text-secondary);
}

.faq-item.active {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow-sm);
  background: #ffffff;
}

.faq-item.active .faq-icon-svg {
  transform: rotate(180deg);
  color: var(--brand-primary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.faq-content-inner {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   CONTACT US PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  padding: 2.5rem;
}

.contact-info-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--brand-light);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-detail-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-detail-value a:hover {
  color: var(--brand-primary);
}

/* ==========================================================================
   FOOTER (PREMIUM DARK SYSTEM)
   ========================================================================== */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-dark-bg);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand-logo {
  height: 44px;
  align-self: flex-start;
}

.footer-brand-desc {
  font-size: 0.95rem;
  color: var(--text-dark-bg-muted);
  line-height: 1.6;
}

.footer-links-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.footer-links-list a {
  color: var(--text-dark-bg-muted);
  font-size: 0.95rem;
}

.footer-links-list a:hover {
  color: #60a5fa;
  transform: translateX(2px);
  display: inline-block;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-dark-bg-muted);
  font-size: 0.95rem;
}

.footer-contact-item svg {
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: #ffffff;
  font-weight: 600;
  border-bottom: 1px dotted #ffffff;
}

.footer-contact-item a:hover {
  color: #60a5fa;
  border-color: #60a5fa;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-disclaimers {
  margin-bottom: 2rem;
}

.footer-disclaimer-p {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.footer-meta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #64748b;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-legal-links a {
  font-size: 0.85rem;
  color: #64748b;
}

.footer-legal-links a:hover {
  color: var(--text-dark-bg-muted);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 2.75rem;
  }
  .hero-grid {
    gap: 2rem;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
  .steps-grid::before {
    display: none;
  }
  .primary-service-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem;
  }
  .form-layout-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  
  /* Navigation Mobile */
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: #ffffff;
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2rem;
    align-items: flex-start;
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    overflow-y: auto;
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-links .nav-cta {
    width: 100%;
    margin-top: 1.5rem;
  }
  
  .nav-links .nav-cta .btn {
    width: 100%;
    padding: 0.875rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-headline {
    font-size: 2.25rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-contact-info {
    justify-content: center;
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .about-mv-cards {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .additional-grid {
    grid-template-columns: 1fr;
  }
  
  /* Menu toggle animations */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .choose-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .form-box {
    padding: 1.5rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-meta-flex {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
