/**
 * Homepage Styles
 * 
 * BREAKPOINTS:
 * - Mobile: 0-599px
 * - Tablet: 600-1023px  
 * - Desktop: 1024px+
 * - Large Desktop: 1280px+
 */

/* ========== GLOBAL UTILITIES ========== */
.homepage {
  overflow-x: hidden;
}

/* ========== HERO SECTION ========== */
.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 2rem 0 1rem;
  background: linear-gradient(135deg, var(--background) 0%, var(--accent) 50%, var(--primary-light) 100%);
}

.hero-section__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

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

.hero-section__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-section__heading-accent {
  display: block;
  color: var(--primary);
  margin-top: 0.5rem;
}

.hero-section__description {
  font-size: clamp(1.0625rem, 2.5vw, 1rem);
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-section__stats {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.hero-section__stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-section__stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  flex-shrink: 0;
}

.hero-section__stat-text {
  font-size: clamp(0.9375rem, 2vw, 1rem);
  color: var(--foreground);
}

.hero-section__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-section__image-wrapper {
  position: relative;
}

.hero-section__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--primary-light), var(--accent), var(--primary-light));
}

.hero-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  text-align: center;
  color: var(--primary);
}

.hero-section__placeholder svg {
  margin-bottom: 1.5rem;
}

.hero-section__placeholder p {
  font-weight: 500;
  color: var(--muted-foreground);
}

.hero-section__badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--card);
  border-radius: calc(var(--radius) - 0.125rem);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.hero-section__badge-icon {
  font-size: 2rem;
  line-height: 1;
}

.hero-section__badge-rating {
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}

.hero-section__badge-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.2;
}

/* ========== TRUST BAR ========== */
/* ========== TRUST BAR (Marquee) ========== */
.trust-bar {
  background: var(--navy);
  padding: 1.5rem 0;
  overflow: hidden;
  position: relative;
}

.trust-bar__track {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.trust-bar__content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}

.trust-bar__item {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--background);
  padding: 0 2rem;
  display: inline-block;
}

.trust-bar__dot {
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 600px) {
  .trust-bar {
    padding: 1rem 0;
  }
  
  .trust-bar__item {
    font-size: 1rem;
    padding: 0 1.5rem;
  }
  
  .trust-bar__dot {
    font-size: 1.25rem;
  }
}

/* ========== MAIN SERVICES (Wyróżnione usługi) ========== */
.main-services-section {
  padding: var(--section-padding) 0;
  background: var(--background);
}

.main-services-section__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.main-services-section__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.main-services-section__subheading {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.main-services-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* MS Card */
.ms-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.ms-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.ms-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: calc(var(--radius) - 0.125rem);
  background: var(--primary-light);
  color: var(--primary);
  flex-shrink: 0;
}

.ms-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.ms-card__titles {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.ms-card__name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.25;
}

.ms-card__subtitle {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
}

.ms-card__description {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.ms-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.ms-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: var(--foreground);
  line-height: 1.5;
}

.ms-card__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.ms-card__feature-icon svg {
  width: 0.75rem;
  height: 0.75rem;
}

.ms-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
}

/* ========== SERVICES SECTION ========== */
.services-section {
  padding: var(--section-padding) 0;
  background: var(--background);
}

.services-section__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services-section__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.services-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

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

.service-card--premium {
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold-light) 100%);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}

.service-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-dark);
  color: var(--coral-foreground);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: calc(var(--radius) - 0.125rem);
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.service-card--premium .service-card__icon {
  background: var(--gold-light);
  color: var(--gold-dark);
}

.service-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}

.service-card__heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card__description {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--foreground);
}

.service-card__feature-bullet {
  color: var(--primary);
  margin-top: 0.125rem;
  font-weight: 700;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: gap var(--transition-normal);
}

.service-card__link:hover {
  gap: 0.75rem;
}

.service-card__link-icon {
  width: 1rem;
  height: 1rem;
}

/* ========== STATS SECTION ========== */
.stats-section {
  background: var(--navy);
  padding: 4rem 0;
  color: var(--primary-foreground);
}

.stats-section__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.stats-section__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-foreground);
  text-align: center;
  margin-bottom: 3rem;
}

.stats-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

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

.stat-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: calc(var(--radius) - 0.125rem);
  background: var(--primary-light);
  color: var(--primary-original);
  margin-bottom: 1rem;
}

.stat-item__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-item__label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
}

.stat-item__sublabel {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.stats-section__footer {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 40rem;
  margin: 0 auto;
}

/* ========== WHY US SECTION ========== */
.why-us {
  padding: var(--section-padding) 0;
  background: var(--background);
}

.why-us__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.why-us__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.why-us__item {
  position: relative;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.why-us__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-us__item--premium {
  background: linear-gradient(315deg, var(--background) 0%, var(--accent) 50%, var(--primary-light) 100%);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}

.why-us__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-dark);
  color: var(--coral-foreground);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.why-us__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: calc(var(--radius) - 0.125rem);
  background: hsl(var(--primary-hsl) / 0.1);
  margin-bottom: 1.5rem;
}

.why-us__item--premium .why-us__icon {
  background: var(--gold-light);
}

.why-us__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
  flex-shrink: 0;
}

.why-us__item--premium .why-us__icon svg {
  color: var(--gold-dark);
}

.why-us__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.why-us__text {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* ========== PROCESS SECTION ========== */
.process {
  padding: var(--section-padding) 0;
  background: var(--accent);
}

.process__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.process__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

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

.process__step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.process__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}

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

.process__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.process__text {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* Process CTA Bar */
.process__cta-bar {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.process__cta-content {
  flex: 1;
}

.process__cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.process__cta-subheading {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.process__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--coral);
  color: var(--coral-foreground);
  font-weight: 600;
  font-size: 1.0625rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-coral);
  white-space: nowrap;
}

.process__cta-button:hover {
  background: var(--coral-accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(214, 70, 35, 0.35);
}

.process__cta-icon {
  width: 20px;
  height: 20px;
}

/* ========== AREAS SECTION ========== */
.areas {
  padding: var(--section-padding) 0;
  background: linear-gradient(315deg, var(--background) 0%, var(--accent) 40%, var(--primary-light) 100%);
}

.areas__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.areas__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

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

.areas__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.areas__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 0.25rem);
  font-weight: 600;
  color: var(--navy);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  font-size: 0.9375rem;
  min-width: 0;
  word-break: break-word;
}

@media (max-width: 405px) {
  .areas__item {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    gap: 0.75rem;
  }
  
  .areas__item-icon {
    width: 2rem;
    height: 2rem;
  }
  
  .areas__item-icon svg {
    width: 1rem;
    height: 1rem;
  }
}

.areas__item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.areas__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsl(var(--primary-hsl) / 0.1);
  color: var(--primary);
  flex-shrink: 0;
}

.areas__item-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Map Visualization */
.areas__map {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 32rem;
  margin: 0 auto;
}

.areas__map-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px dashed hsl(var(--primary-hsl) / 0.2);
  pointer-events: none;
}

.areas__map-circle:nth-child(1) {
  width: 100%;
  height: 100%;
}

.areas__map-circle--2 {
  width: calc(100% - 4rem);
  height: calc(100% - 4rem);
  border-color: hsl(var(--primary-hsl) / 0.3);
}

.areas__map-circle--3 {
  width: calc(100% - 8rem);
  height: calc(100% - 8rem);
  border-color: hsl(var(--primary-hsl) / 0.4);
}

.areas__map-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.areas__map-center-pulse {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.areas__map-center-outer {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: hsl(14, 77%, 49%, 0.1);
  animation: pulseSoft 3s ease-in-out infinite;
  position: absolute;
}

.areas__map-center-inner {
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-coral);
  z-index: 2;
}

.areas__map-center-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--coral-foreground);
}

.areas__map-center-label {
  text-align: center;
  margin-top: 2.5rem;
}

.areas__map-center-city {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.25rem;
  margin: 0 0 0.25rem;
}

.areas__map-center-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* Satellite Cities */
.areas__map-satellite {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 5;
  white-space: nowrap;
}

.areas__map-dot {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.areas__map-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Initial positions - will be animated */
.areas__map-satellite--1 {
  top: 0;
  left: 0;
}

.areas__map-satellite--2 {
  top: 0;
  left: 0;
}

.areas__map-satellite--3 {
  top: 0;
  left: 0;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
  padding: var(--section-padding) 0;
  background: linear-gradient(225deg, var(--background) 0%, var(--accent) 40%, var(--primary-light) 100%);
}

.testimonials__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.testimonials__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.testimonials__content {
  max-width: 72rem;
  margin: 0 auto;
}

/* Style Trustindex widgets */
.testimonials__content iframe,
.testimonials__content .ti-widget {
  max-width: 100%;
}

/* ========== CTA SECTION ========== */
.cta {
  padding: var(--section-padding) 0;
  background: var(--navy);
  color: var(--primary-foreground);
}

.cta__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta__header {
  text-align: center;
  margin-bottom: 3rem;
}

.cta__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

.cta__subheading {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

/* Benefits List */
.cta__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta__benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cta__benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.cta__benefit-icon svg {
  width: 1rem;
  height: 1rem;
}

.cta__benefit-text {
  color: var(--primary-foreground);
  font-size: 1.0625rem;
  line-height: 1.5;
  margin: 0;
}

/* Image below benefits */
.cta__image {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta__image img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
  object-position: top;
}

/* Form Container */
.cta__form {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.cta__form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  text-align: left;
}

/* WPForms Styling Override */
.cta__form .wpforms-container {
  margin: 0;
}

.cta__form .wpforms-field-label {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.cta__form .wpforms-field-required {
  color: var(--coral);
}

.cta__form input[type="text"],
.cta__form input[type="email"],
.cta__form input[type="tel"],
.cta__form select,
.cta__form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 0.25rem);
  font-size: 0.9375rem;
  transition: border-color var(--transition-normal);
}

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

.cta__form .wpforms-submit-container {
  margin-top: 1.5rem;
}

.cta__form button[type="submit"] {
  width: 100%;
  background: var(--coral);
  color: var(--coral-foreground);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: calc(var(--radius) - 0.25rem);
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-coral);
}

.cta__form button[type="submit"]:hover {
  background: var(--coral-accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(214, 70, 35, 0.35);
}

.cta__form .wpforms-confirmation-container {
  background: hsl(var(--primary-hsl) / 0.1);
  border: 2px solid var(--primary);
  color: var(--navy);
  padding: 1.5rem;
  border-radius: var(--radius);
}

/* ========== CONTACT FORM 7 STYLES ========== */
.cta__form .wpcf7 {
  width: 100%;
}

/* Remove CF7 auto-generated BR and P margins */
.cta__form .wpcf7 br {
  display: none;
}

.cta__form .wpcf7 p {
  margin: 0;
}

/* Base styles */
.cta__form .cf7-row {
  margin-bottom: 1rem;
}

.cta__form .cf7-row:last-child {
  margin-bottom: 0;
  margin-top: 1.5rem;
}

.cta__form label {
  display: block;
  width: 100%;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.cta__form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.cta__form .cf7-field {
  width: 100% !important;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 0.25rem);
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color var(--transition-normal);
  background: var(--background);
}

.cta__form .cf7-field:focus {
  outline: none;
  border-color: var(--primary);
}

.cta__form textarea.cf7-field,
.cta__form .cf7-textarea {
  min-height: 100px !important;
  height: 100px;
  max-height: 300px;
  resize: vertical;
  line-height: 1.5;
}

.cta__form .cf7-submit {
  width: 100%;
  background: var(--coral);
  color: var(--coral-foreground);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: calc(var(--radius) - 0.25rem);
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-coral);
  font-family: inherit;
}

.cta__form .cf7-submit:hover {
  background: var(--coral-accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(214, 70, 35, 0.35);
}

/* Validation */
.cta__form .wpcf7-not-valid-tip {
  color: var(--coral);
  font-size: 0.875rem;
  margin-top: 0.375rem;
  display: block;
}

.cta__form .wpcf7-not-valid {
  border-color: var(--coral) !important;
}

/* Messages */
.cta__form .wpcf7-response-output {
  margin: 1.5rem 0 0;
  padding: 1rem 1.5rem;
  border-radius: calc(var(--radius) - 0.25rem);
  font-size: 0.9375rem;
  border: 2px solid;
}

.cta__form .wpcf7-mail-sent-ok {
  background: hsl(var(--primary-hsl) / 0.1);
  border-color: var(--primary);
  color: var(--navy);
}

.cta__form .wpcf7-mail-sent-ng,
.cta__form .wpcf7-validation-errors {
  background: hsl(14, 77%, 95%);
  border-color: var(--coral);
  color: var(--coral);
}

.cta__form .wpcf7-spinner {
  margin-left: 1rem;
}

/* Desktop (1024px+) - Equal height columns */
@media (min-width: 1024px) {
  .cta__benefits-wrapper,
  .cta__form {
    display: flex;
    flex-direction: column;
  }
  
  .cta__benefits {
    flex: 1;
  }
  
  .cta__form {
    display: flex;
    flex-direction: column;
  }
  
  .cta__form .wpcf7-form {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .cta__form .cf7-form-grid {
    flex: 1;
  }
  
  .cta__form .cf7-row:last-child {
    margin-top: auto;
  }
}

/* Tablet landscape (698px - 1023px) - Two column form */
@media (min-width: 698px) and (max-width: 1023px) {
  .cta__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta__benefits-wrapper {
    display: inline-flex;
    justify-content: space-around;
    align-items: center;
  }
  
  /* Image max height */
  .cta__image {
    max-height: 400px;
    overflow: hidden;
  }
  
  .cta__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  
  /* Two column grid */
  .cta__form .cf7-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .cta__form .cf7-col-left {
    grid-column: 1;
  }
  
  .cta__form .cf7-col-right {
    grid-column: 2;
  }
  
  /* Button outside grid - full width */
  .cta__form .wpcf7-form > .cf7-row:last-child {
    margin-top: 1rem;
  }
}

/* Tablet portrait (600px - 697px) - Image below benefits */
@media (min-width: 600px) and (max-width: 697px) {
  .cta__content {
    grid-template-columns: 1fr;
  }
  
  .cta__benefits-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .cta__benefits {
    width: 100%;
    max-width: 32rem;
  }
  
  .cta__image {
    width: 100%;
    max-width: 32rem;
    max-height: 400px;
    overflow: hidden;
  }
  
  .cta__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
}

/* Mobile (below 600px) - Single column everything */
@media (max-width: 599px) {
  .cta__content {
    grid-template-columns: 1fr;
  }
  
  .cta__benefits-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .cta__benefits {
    width: 100%;
  }
  
  .cta__image {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
  }
  
  .cta__image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseSoft {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

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

@keyframes bounceGentle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
  opacity: 0;
}

.animate-pulse-soft {
  animation: pulseSoft 2s ease-in-out infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* ========== RESPONSIVE - TABLET (600px+) ========== */
@media (min-width: 600px) {
  .hero-section__cta {
    flex-direction: row;
  }
  
  .hero-section__scroll {
    bottom: 3rem;
  }
  
  .trust-bar__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .services-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .main-services-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .stats-section__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process__cta-bar {
    flex-direction: row;
    text-align: left;
    padding: 2.5rem;
  }
  
  .process__cta-content {
    padding-right: 2rem;
  }
  
  .areas__list {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 1rem;
  }
  
  .areas__item {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .areas__item:hover {
    transform: translateY(-4px);
  }
}

/* ========== RESPONSIVE - AREAS SPLIT (855px+) ========== */
@media (min-width: 855px) {
  .areas__content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .areas__item {
    flex-direction: row;
    text-align: left;
  }
  
  .areas__item:hover {
    transform: translateX(8px);
  }
}

/* ========== RESPONSIVE - DESKTOP (1024px+) ========== */
@media (min-width: 1024px) {
  .hero-section__grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
  }
  
  .hero-section__content {
    order: 1;
  }
  
  .hero-section__image-wrapper {
    order: 2;
  }
  
  .trust-bar__grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .services-section__grid {
    gap: 2rem;
  }
  
  .process__steps {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .areas__item {
    flex-direction: row;
    text-align: left;
  }
  
  .areas__item:hover {
    transform: translateX(8px);
  }
  
  .why-us__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .areas__list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta__content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* ========== RESPONSIVE - LARGE DESKTOP (1280px+) ========== */
@media (min-width: 1280px) {
  .hero-section__container,
  .trust-bar__container,
  .main-services-section__container,
  .services-section__container,
  .stats-section__container,
  .why-us__container,
  .process__container,
  .areas__container,
  .cta__container {
    padding: 0 2rem;
  }
}

/* ========== UTILITY CLASSES ========== */
.container-main {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.card-hover {
  transition: all var(--transition-normal);
}

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