/* Base Styles & Variables */
:root {
  --primary: #5A3DF0;
  --primary-hover: #4a2ecc;
  --secondary: #E94FD8;
  --gradient: linear-gradient(90deg, #F68B4D 0%, #4B2DFF 100%);
  --brand-cta-gradient: linear-gradient(90deg, #F68B4D 0%, #4B2DFF 100%);
  --bg-white: #FFFFFF;
  --bg-light: #F8F9FA;
  --text-dark: #111827;
  --text-muted: #4B5563;
  --border-color: #E5E7EB;
  --border-radius: 22px;
  --border-radius-sm: 14px;
  --container-width: 1280px;
  --spacing-section: 130px; 
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03); 
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.04); 
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.05); 
  --shadow-hover: 0 25px 50px rgba(90, 61, 240, 0.08); 
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --accent-orange: #f97316;
}

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px; 
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

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

.container-cta {
  max-width: 1536px;
}

.section-spacing {
  padding: var(--spacing-section) 0;
}

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

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

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

ul {
  list-style: none;
}

/* Typography */
h1 { font-size: 64px; line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: 48px; line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: 30px; line-height: 1.2; font-weight: 800; letter-spacing: -0.01em; }
h4, h5, h6 { line-height: 1.2; font-weight: 800; }

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

.badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: rgba(90, 61, 240, 0.1);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.badge-left {
  text-align: left;
}

.section-title {
  margin-bottom: 28px;
}

.section-title.large-title {
  font-size: 56px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 48px;
}

.section-header {
  margin-bottom: 72px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 100px;
  transition: var(--transition);
  cursor: pointer;
  font-size: 18px; 
}

.btn-primary {
  background: var(--brand-cta-gradient);
  color: white;
  padding: 18px 36px;
  box-shadow: 0 10px 20px rgba(90, 61, 240, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(90, 61, 240, 0.3);
}

.btn-primary-small {
  background: var(--brand-cta-gradient);
  color: white;
  padding: 12px 28px;
  font-size: 16px;
}

.btn-primary-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(90, 61, 240, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 16px 36px;
}

.btn-outline:hover {
  background: rgba(90, 61, 240, 0.05);
}

.btn-outline-small {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 28px;
  font-size: 16px;
}

.btn-outline-small:hover {
  background: rgba(90, 61, 240, 0.05);
}

.btn-primary-solid {
  background: var(--brand-cta-gradient);
  color: white;
  padding: 20px 40px; 
  font-size: 20px;
  box-shadow: var(--shadow-md);
}

.btn-primary-solid:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 18px 40px; 
  font-size: 20px;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
  transition: padding 0.3s ease;
}

.navbar.scrolled {
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--text-dark);
}

.nav-buttons {
  display: flex;
  gap: 16px;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: var(--spacing-section);
  min-height: 740px;
  display: flex;
  align-items: center;
}

.hero-container {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  width: 55%;
  padding-right: 40px;
}

.hero-title {
  margin-bottom: 28px;
  max-width: 100%;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 95%;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 24px; 
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-image-full {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 45%;
  object-fit: cover;
  object-position: right center;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%);
  mask-image: linear-gradient(to right, transparent, black 10%);
  z-index: 1;
}

/* Impact Section */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.metric-card {
  background: white;
  padding: 56px 32px; 
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(90, 61, 240, 0.3);
}

.metric-icon {
  width: 80px; 
  height: 80px;
  margin: 0 auto 32px;
  background: rgba(90, 61, 240, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-icon svg {
  width: 40px;
  height: 40px;
}

.metric-value {
  font-size: 3.5rem; 
  margin-bottom: 12px;
  color: var(--text-dark);
}

.metric-label {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 1.125rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--bg-light);
  padding: 48px; 
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 1px solid transparent;
  min-height: 380px; 
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-color);
}

.service-icon {
  width: 72px; 
  height: 72px;
  margin-bottom: 32px;
  background: var(--gradient);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-title {
  margin-bottom: 16px;
}

.service-description {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.125rem;
}

.service-list {
  margin-top: auto;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px; 
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1.125rem;
}

.service-list svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Positioning Section */
.positioning-container {
  display: grid;
  grid-template-columns: 55% 45%; 
  gap: 80px;
  align-items: center;
}

.positioning-content {
  /* Natural DOM order places it on the left */
}

.description {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.team-image-wrapper {
  position: relative;
  width: 100%;
}

.team-image {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  display: block;
}

.team-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.label {
  padding: 10px 20px;
  background: white;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.label.highlight {
  background: var(--gradient);
  color: white;
  border: none;
}

.team-caption {
  margin-top: 20px;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
}

.positioning-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.premium-stacked-card {
  background: white;
  padding: 32px 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 24px;
}

.premium-stacked-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(90, 61, 240, 0.3);
}

.stacked-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stacked-card-icon svg {
  width: 100%;
  height: 100%;
  color: var(--primary);
  stroke-width: 1.5;
}

.stacked-card-content {
  flex: 1;
}

.premium-stacked-card h4 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.premium-stacked-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Value Section */
.value-container {
  max-width: 1000px;
}

.value-checklist-wrapper {
  text-align: center;
  margin: 64px 0;
}

.centered-checklist {
  display: inline-block;
  text-align: left;
  max-width: 700px;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.check-item {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px; 
  padding-bottom: 28px; 
  border-bottom: 1px solid var(--border-color);
}

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

.check-item svg {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.value-bottom-text {
  font-size: 1.75rem;
  color: var(--primary);
  margin-top: 48px;
}

/* Why Clients Stay */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-card {
  background: var(--bg-light);
  padding: 56px 40px; 
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
  min-height: 340px; 
}

.why-card:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-color);
}

.why-icon {
  width: 88px; 
  height: 88px;
  margin: 0 auto 32px;
  background: rgba(90, 61, 240, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.why-icon svg {
  width: 40px;
  height: 40px;
}

.why-card:hover .why-icon {
  background: var(--primary);
}

.why-card:hover .why-icon svg {
  stroke: white;
}

.why-title {
  margin-bottom: 16px;
}

.why-description {
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* Tasks Section */
.tasks-container {
  display: grid;
  grid-template-columns: 50% 50%; 
  gap: 80px;
  align-items: center;
}

.tasks-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.task-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px; 
  font-weight: 500;
  color: var(--text-dark);
  font-size: 1.125rem;
}

.task-list svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.tasks-image-wrapper {
  position: relative;
  width: 100%;
}

.tasks-image {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* AI SEO Section */
.ai-seo-container {
  max-width: 1100px;
}

.ai-seo-content {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ai-seo-content p {
  margin-bottom: 20px;
}

.infographic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.infographic-horizontal {
  flex-wrap: nowrap;
}

.info-node {
  background: white;
  padding: 40px 48px; 
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  min-width: 220px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  flex: 1;
}

.info-node:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(90, 61, 240, 0.3);
}

.info-node img {
  width: 64px; 
  height: 64px;
  object-fit: contain;
}

.info-node span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.25rem;
}

.info-arrow {
  font-size: 3rem; 
  color: var(--text-muted);
}

.infographic-horizontal .info-arrow {
  transform: none;
}

/* Testimonials Section */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px; 
}

.testimonial-card {
  background: white;
  padding: 56px 40px; 
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  min-height: 380px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.stars {
  color: #FBBF24;
  font-size: 1.75rem; 
  margin-bottom: 32px;
  letter-spacing: 4px;
}

.quote {
  font-size: 1.25rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 40px;
  flex-grow: 1;
}

.author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author img {
  width: 64px; 
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.author-info p {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Final CTA Section */
.cta-wrapper {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: white;
  border: 1px solid var(--border-color);
}

.cta-banner {
  background: var(--gradient);
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  border-radius: 0;
  overflow: hidden;
}

.cta-image {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 45%;
  object-fit: cover;
  object-position: right center;
  z-index: 1;
}

.cta-banner-content {
  width: 55%;
  padding: 64px 48px;
  color: white;
  z-index: 2;
}

.cta-title {
  margin-bottom: 24px;
  font-size: 48px;
  color: white;
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.95;
  color: white;
}

.cta-buttons {
  display: flex;
  gap: 16px;
}

.cta-buttons .btn {
  font-size: 0.95rem;
  padding: 16px 20px;
  white-space: nowrap;
}

.cta-trust-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 24px 32px;
  background: white;
  border-radius: 0;
  box-shadow: none;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.cta-trust-bar .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-dark);
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 24px;
}

.pricing-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 48px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.best-value-badge {
  position: absolute;
  top: -24px;
  left: 32px;
  background: var(--primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  padding: 12px;
  line-height: 1.2;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.best-value-badge::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: var(--primary) transparent transparent transparent;
}

.pricing-header {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 32px;
}

.plan-name {
  color: var(--primary);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid var(--primary);
  border-radius: 8px;
  display: inline-block;
}

.plan-price {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.plan-price .currency {
  font-size: 2rem;
  margin-top: 8px;
}

.plan-price .period {
  font-size: 1rem;
  color: var(--text-muted);
  align-self: flex-end;
  margin-bottom: 8px;
}

.billed {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.pricing-features {
  margin-bottom: 48px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--text-dark);
}

.pricing-features svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.feature-name {
  flex-grow: 1;
}

.feature-value {
  font-weight: 700;
  text-align: right;
}

.btn-pricing {
  background: var(--brand-cta-gradient);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 100px;
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  transition: var(--transition);
  display: block;
}

.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(75, 45, 255, 0.25);
}

/* Recognition Section */
.recognition-container {
  max-width: 900px;
}

.recognition-content {
  font-size: 1.25rem;
  color: var(--text-dark);
}

.recognition-content p {
  margin-bottom: 24px;
}

.recognition-cta {
  margin-top: 48px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  h1 { font-size: 52px; }
  h2 { font-size: 40px; }
  .section-title.large-title { font-size: 46px; }
  .info-arrow { display: none; }
  .infographic { gap: 24px; }
  .cta-banner-content { width: 65%; }
  .pricing-grid { gap: 20px; }
  .pricing-card { padding: 40px 24px; }
}

@media (max-width: 1024px) {
  .hero-container, .positioning-container, .tasks-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    width: 100%;
    padding-right: 0;
  }
  
  .hero-image-full {
    position: relative;
    width: 100%;
    height: 400px;
    mask-image: none;
    -webkit-mask-image: none;
    margin-top: 40px;
  }

  .positioning-content { order: 1; }
  
  .hero-cta, .cta-buttons, .trust-bar, .team-labels {
    justify-content: center;
  }
  
  .hero-description, .cta-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .metrics-grid, .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tasks-columns {
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-banner {
    background-position: left center;
  }
  
  .cta-banner-content {
    width: 100%;
    padding: 60px 40px;
    background: linear-gradient(90deg, rgba(90, 61, 240, 0.9) 0%, rgba(90, 61, 240, 0.7) 100%);
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-trust-bar {
    flex-wrap: wrap;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .infographic-horizontal {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .nav-buttons { display: none; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .section-title.large-title { font-size: 36px; }
  
  .services-grid, .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-cta, .cta-buttons {
    flex-direction: column;
  }
  
  .tasks-columns {
    grid-template-columns: 1fr;
  }
  
  .cta-banner-content {
    padding: 40px 24px;
  }
  
  .recognition-container {
    text-align: center;
  }
  .badge-left {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .metrics-grid, .why-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .cta-trust-bar .trust-item {
    width: 100%;
    justify-content: center;
  }
}

/* Enquiry Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  width: 90%;
  max-width: 500px;
  border-radius: 16px;
  padding: 32px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-title {
  font-size: 1.75rem;
  margin-bottom: 24px;
  color: var(--text-dark);
  text-align: center;
}

.form-group {
  margin-bottom: 12px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.phone-input-group {
  display: flex;
  gap: 12px;
}

.country-select {
  width: 120px;
  flex-shrink: 0;
}

.recaptcha-placeholder {
  margin: 16px 0;
  display: flex;
  justify-content: center;
}

.rc-box {
  border: 1px solid #d3d3d3;
  background: #f9f9f9;
  border-radius: 3px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.rc-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rc-left label {
  font-size: 14px;
  color: #333;
}

.btn-submit-enquiry {
  background: var(--brand-cta-gradient);
  color: white;
  width: 100%;
  padding: 16px;
  font-size: 1.125rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}
.btn-submit-enquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(75, 45, 255, 0.25);
}

body.modal-open {
  overflow: hidden;
}
