/* 
 * CLINICA · FUND - Premium Pink & Rose Gold Design System
 * Extended with specialists cards, mission statements, and custom footer styles.
 * Refined with softer interactive calculator components and "Free Consultation" highlights.
 */

:root {
  --radius: 1rem;
  --background: oklch(0.985 0.008 340);       /* Pale rose-tinted white */
  --foreground: oklch(0.18 0.03 330);         /* Elegant deep slate-maroon text */
  --brand: oklch(0.65 0.19 340);              /* Luxury vibrant rose pink */
  --brand-foreground: oklch(0.99 0 0);        /* Crisp white */
  
  --fund: oklch(0.65 0.19 340);               /* Beautiful rose pink */
  --tax: oklch(0.72 0.10 20);                 /* Warm glowing coral blush */
  --supplies: oklch(0.62 0.08 280);           /* Soft lavender / orchid orchid */
  
  --card: oklch(1 0 0);                       /* Pure white */
  --card-foreground: oklch(0.18 0.03 330);
  --secondary: oklch(0.96 0.015 340);         /* Pastel rose blush */
  --muted: oklch(0.96 0.015 340);
  --muted-foreground: oklch(0.48 0.06 330);   /* Soft dusty rose-gray */
  --border: oklch(0.92 0.02 340);             /* Soft delicate rose-gray border */
  
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-sans: "Raleway", system-ui, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(220, 100, 150, 0.04);
  --shadow-md: 0 10px 30px rgba(220, 100, 150, 0.08);
  --shadow-lg: 0 20px 50px rgba(220, 100, 150, 0.12);
  --shadow-glow: 0 0 30px rgba(220, 100, 150, 0.2);
}

/* Base Reset & Typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

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

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

/* Interactive Elements */
a, button {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Main Layout & Sections */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

/* Header component */
header {
  border-bottom: 2px solid var(--border);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.logo-dot {
  display: inline-block;
  height: 0.875rem;
  width: 0.875rem;
  background-color: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--foreground);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
}

.nav-links a {
  font-weight: 600;
  color: var(--muted-foreground);
}

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

.btn-header {
  background-color: var(--brand);
  color: var(--brand-foreground);
  padding: 0.625rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  opacity: 0.95;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--border);
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.hero-grid {
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.badge-pill {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--brand);
  background-color: rgba(220, 100, 150, 0.06);
  color: var(--brand);
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 100px;
}

.badge-dot {
  display: inline-block;
  height: 0.5rem;
  width: 0.5rem;
  background-color: var(--brand);
  border-radius: 50%;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--foreground);
}

.text-brand {
  color: var(--brand);
  position: relative;
  display: inline-block;
}

.text-brand::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: rgba(220, 100, 150, 0.15);
  z-index: -1;
  border-radius: 4px;
}

.hero-description {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.hero-list {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.hero-list-item {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.list-dot {
  margin-top: 0.5rem;
  display: inline-block;
  height: 0.5rem;
  width: 0.5rem;
  flex-shrink: 0;
  background-color: var(--brand);
  border-radius: 50%;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background-color: var(--brand);
  color: var(--brand-foreground);
  padding: 1.125rem 2.25rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  opacity: 0.95;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--foreground);
  padding: 1.125rem 2.25rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  background-color: transparent;
}

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

.hero-note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--brand);
}

/* Hero Image & Stats Styling */
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--card);
  animation: floatEffect 6s ease-in-out infinite;
}

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

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.03);
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(220, 100, 150, 0) 60%, rgba(220, 100, 150, 0.15) 100%);
  pointer-events: none;
}

.hero-stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  padding: 1.5rem;
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.stat-card.highlight {
  background-color: var(--brand);
  color: var(--brand-foreground);
  border: none;
  box-shadow: var(--shadow-glow);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  font-weight: 600;
}

.stat-card.highlight .stat-label {
  color: var(--brand-foreground);
  opacity: 0.95;
}

/* Benefits Section */
.benefits {
  border-bottom: 2px solid var(--border);
  background-color: var(--secondary);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-tag {
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--brand);
}

.section-title {
  max-width: 48rem;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.2;
}

.benefits-grid {
  margin-top: 3rem;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.benefit-card {
  background-color: var(--card);
  padding: 2.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}

.benefit-line {
  margin-bottom: 1.25rem;
  display: inline-block;
  height: 0.375rem;
  width: 2.5rem;
  background-color: var(--brand);
  border-radius: 10px;
}

.benefit-title {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
}

.benefit-desc {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Mission Section (Charity description without listing specific fund) */
.mission {
  border-bottom: 2px solid var(--border);
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--card);
}

.mission-grid {
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.mission-content {
  display: flex;
  flex-direction: column;
}

.mission-title {
  font-size: 2rem;
  font-weight: 800;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.mission-text {
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.mission-accent-card {
  background-color: var(--secondary);
  border-left: 4px solid var(--brand);
  padding: 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1rem;
}

.mission-accent-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.mission-accent-desc {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
}

/* Specialists Section */
.specialists {
  border-bottom: 2px solid var(--border);
  background-color: var(--secondary);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.specialists-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-top: 0.5rem;
  margin-bottom: 3.5rem;
}

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

.specialist-card {
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.specialist-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}

.specialist-img-container {
  width: 100%;
  height: 24rem;
  overflow: hidden;
  position: relative;
}

.specialist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.specialist-card:hover .specialist-img {
  transform: scale(1.04);
}

.specialist-info {
  padding: 2rem;
  text-align: center;
}

.specialist-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--foreground);
}

.specialist-role {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand);
  font-weight: 700;
}

.specialist-bio {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
}

/* Price List Section */
.prices {
  border-bottom: 2px solid var(--border);
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.prices-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.prices-title {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.2;
}

.prices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.price-group {
  border: 1px solid var(--border);
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-group-header {
  border-bottom: 1px solid var(--border);
  background-color: var(--secondary);
  padding: 1.25rem 2rem;
}

.price-group-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--foreground);
}

.price-list {
  list-style: none;
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 2rem;
  border-bottom: 1px solid var(--border);
}

.price-item:last-child {
  border-bottom: none;
}

.price-item:hover {
  background-color: rgba(220, 100, 150, 0.02);
}

.price-name {
  font-size: 0.9375rem;
  font-weight: 500;
}

.price-val {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--brand);
}

.price-val.free {
  color: oklch(0.60 0.16 140); /* Soft emerald green for FREE */
  font-weight: 800;
}

.prices-footer-note {
  margin-top: 2.5rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  text-align: center;
}

/* Transparent Receipt Section - Reworked to be soft and elegant (less eye-screaming) */
.check-section {
  background-color: var(--background);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.check-desc {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  max-width: 38rem;
  line-height: 1.6;
}

.check-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  padding: 1rem 1.5rem;
  background-color: var(--card);
  color: var(--foreground);
  text-align: left;
  cursor: pointer;
  border-radius: var(--radius);
  box-shadow: none; /* Removed heavy shadow */
}

.service-btn:hover {
  border-color: var(--brand);
  transform: translateX(3px);
}

.service-btn.active {
  border-color: var(--brand);
  background-color: rgba(220, 100, 150, 0.06); /* Soft blush-pink background tint */
  color: var(--foreground);
  box-shadow: none; /* Completely removed screaming glow */
}

.service-btn-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
}

.service-btn-desc {
  margin-top: 0.15rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  font-weight: 600;
}

.service-btn.active .service-btn-desc {
  color: var(--brand); /* elegant pink tint for secondary text */
}

.service-btn-amount {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
}

/* SVG Chart Calculator Card - Thinner, more premium and elegant */
.chart-block {
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm); /* Softer card depth */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.chart-svg-container {
  height: 9rem; /* Slightly smaller and compact */
  width: 9rem;
  flex-shrink: 0;
  transform: rotate(-90deg);
  filter: drop-shadow(0 2px 8px rgba(220, 100, 150, 0.05));
}

.chart-svg-container circle {
  fill: none;
  stroke-width: 12; /* Elegant thin line instead of chunkier 40! */
  transition: stroke-dasharray 0.5s cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-rows {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.chart-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8125rem;
}

.chart-row-label-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chart-row-dot {
  display: inline-block;
  height: 0.625rem;
  width: 0.625rem;
  border-radius: 50%;
}

.chart-row-label {
  font-weight: 600;
}

.chart-row-amount {
  font-family: var(--font-display);
  font-weight: 700;
}

.chart-row-bar-bg {
  margin-top: 0.375rem;
  height: 0.375rem;
  width: 100%;
  background-color: var(--secondary);
  border-radius: 10px;
  overflow: hidden;
}

.chart-row-bar-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 0.5s ease;
}

.chart-row-percentage {
  margin-top: 0.15rem;
  font-size: 0.7rem;
  color: var(--muted-foreground);
  font-weight: 600;
}

.chart-footer {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  gap: 1rem;
}

.chart-footer-name {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  font-weight: 700;
}

.chart-footer-amount {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--brand);
}

.check-helper {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--muted-foreground);
}

/* Trust & Partnership Section */
.trust {
  border-bottom: 2px solid var(--border);
  background-color: var(--secondary);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.trust-title {
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 3.5rem;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.2;
}

.trust-visual-wrapper {
  max-width: 36rem;
  margin: 0 auto 3.5rem auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--card);
}

.trust-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.logo-grid {
  display: grid;
  grid-template-columns: 1fr;
  background-color: var(--border);
  gap: 1px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background-color: var(--card);
  padding: 3rem;
  text-align: center;
}

.logo-block-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--brand);
}

.logo-block-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  font-weight: 700;
}

.logo-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--card);
  padding: 1.5rem;
}

.logo-divider-line-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand);
}

.logo-divider-line {
  display: inline-block;
  height: 2px;
  width: 2rem;
  background-color: var(--brand);
}

.trust-footer-note {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* FAQ Accordions */
.faq {
  border-bottom: 2px solid var(--border);
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.faq-title {
  font-size: 1.875rem;
  font-weight: 800;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}

.faq-container {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-item {
  padding: 1.5rem 0.5rem;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-toggle-icon {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  color: var(--brand);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item[open] .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Contact Form Section */
.contact-section {
  background-color: var(--foreground);
  color: var(--background);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

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

.contact-section-inner {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.contact-desc {
  margin-top: 1rem;
  font-size: 1.0625rem;
  opacity: 0.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-label {
  display: block;
}

.form-label-text {
  display: block;
  margin-bottom: 0.625rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
  font-weight: 700;
}

.form-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1.125rem;
  color: var(--background);
  outline: none;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: var(--background);
  opacity: 0.35;
}

.form-input:focus {
  border-color: var(--brand);
}

.btn-submit {
  width: 100%;
  background-color: var(--brand);
  color: var(--brand-foreground);
  padding: 1.25rem 2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(220, 100, 150, 0.3);
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 100, 150, 0.5);
  opacity: 0.95;
}

.btn-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.agree-label {
  display: flex;
  align-items: start;
  gap: 0.875rem;
  font-size: 0.875rem;
  opacity: 0.85;
  cursor: pointer;
  line-height: 1.5;
}

.agree-checkbox {
  margin-top: 0.25rem;
  height: 1.125rem;
  width: 1.125rem;
  flex-shrink: 0;
  accent-color: var(--brand);
}

.form-error {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: oklch(0.65 0.13 20);
}

/* Custom Styled Footer area (Love Laser branding) */
.tp-footer-area {
  background-color: var(--foreground);
  color: var(--background);
  position: relative;
  border-top: 2px solid var(--border);
}

.tp-footer-wrapper {
  padding-top: 5rem;
  padding-bottom: 3.5rem;
  position: relative;
}

.tp-footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 10, 15, 0.92);
  z-index: 1;
}

.container-fluid {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.tp-footer-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.tp-footer-widget-1, 
.tp-footer-widget-2, 
.tp-footer-widget-4 {
  display: flex;
  flex-direction: column;
}

.tp-footer-widget-1 span, 
.tp-footer-widget-2 span, 
.tp-footer-widget-4 span {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand);
  margin-bottom: 1.5rem;
  display: block;
}

.tp-footer-list-float {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.tp-footer-list-float a, 
.tp-footer-widget-4 a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  font-weight: 500;
}

.tp-footer-list-float a:hover, 
.tp-footer-widget-4 a:hover {
  color: var(--brand);
  transform: translateX(3px);
}

.tp-footer-widget-contact {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tp-footer-widget-contact:last-child {
  margin-bottom: 0;
}

.tp-footer-widget-contact .icon {
  color: var(--brand);
  font-size: 1rem;
  margin-top: 0.25rem;
}

.contact-inner {
  display: flex;
  flex-direction: column;
}

.contact-inner a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  font-weight: 600;
}

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

.tp-footer-widget-4 ul {
  list-style: none;
}

/* Footer Copyright */
.tp-footer-copyright {
  background-color: oklch(0.12 0.02 330);
  padding: 1.5rem 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tp-footer-copyright p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  font-weight: 500;
}

.tp-footer-copyright a {
  font-weight: 700;
  transition: color 0.2s ease;
}

.poweredBB {
  color: #f7c324 !important;
}

.poweredBB:hover {
  color: oklch(0.85 0.15 80) !important;
}

/* Responsive Media Queries */
@media (min-width: 576px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .header-inner {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  
  .nav-links {
    display: flex;
  }
  
  .btn-header {
    padding: 0.75rem 1.5rem;
    font-size: 0.8125rem;
  }
  
  .hero {
    padding-top: 6rem;
    padding-bottom: 7rem;
  }
  
  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
  }
  
  .hero-left {
    grid-column: span 7;
  }
  
  .hero-right {
    grid-column: span 5;
  }
  
  .hero-title {
    font-size: 3.5rem;
    line-height: 1.05;
  }
  
  .hero-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-value {
    font-size: 2.25rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .prices-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  
  .prices-title {
    font-size: 3rem;
  }
  
  .prices-footer-note {
    font-size: 1rem;
  }
  
  .check-desc {
    font-size: 1.125rem;
  }
  
  .logo-grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
  }
  
  .logo-block {
    padding: 3rem;
  }
  
  .logo-block-title {
    font-size: 2.25rem;
  }
  
  .logo-divider {
    padding: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .specialists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mission-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
  }
  
  .mission-content {
    grid-column: span 12;
  }
  
  .tp-footer-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  
  .prices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .check-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
  }
  
  .services-list {
    grid-column: span 7;
  }
  
  .chart-block {
    grid-column: span 5;
  }
  
  .chart-content {
    flex-direction: column;
  }
  
  .mission-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  
  .mission-content {
    grid-column: span 12;
  }
}
