@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap");

:root {
  /* Plan Colors */
  --color-lite: #4fd1c5;
  --color-plus: #7cb8f7;
  --color-pro: #e6a871;

  /* Text Colors */
  --color-text-primary: #2d3748;
  --color-text-secondary: #718096;
  --color-text-muted: #9d9d9d;

  /* UI Colors */
  --color-border: #e2e8f0;
  --color-primary-blue: #3d8dd7;
  --color-bg-light: #f8f9fa;

  /* Gradients */
  --gradient-hero: linear-gradient(
    rgb(45, 150, 235) 0%,
    rgb(32, 112, 223) 100%
  );
  --gradient-primary: linear-gradient(
    rgb(45, 150, 235) 0%,
    rgb(32, 112, 223) 100%
  );
  --gradient-card: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 50px;

  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-base: all 0.3s ease;

  /* Font Sizes */
  --font-xs: 0.75rem;
  --font-sm: 0.85rem;
  --font-base: 0.9rem;
  --font-lg: 1.5rem;
  --font-xl: 2rem;

  /* Pricing - Central Configuration */
  --initial-price: 4400;
  --initial-price-display: "4 400€";
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Top Header Bar */
.top-header {
  height: 80px;
  background-color: rgb(59, 157, 237);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-header-content {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-box {
  background: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jd-section {
  background: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
}

.jd-section span {
  color: #2d96eb;
  font-weight: 600;
}

.jd-logo {
  height: 32px;
  width: auto;
}

.separator {
  margin: 0 0.5rem;
  font-size: 1.5rem;
  opacity: 0.9;
}

.top-header-logo {
  height: 38px;
  width: auto;
}

body {
  font-family: "Google Sans Flex", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "slnt" 0, "wdth" 100, "GRAD" 0, "ROND" 0;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

/* Hero Section */
.hero {
  background: var(--gradient-primary);
  color: white;
  padding: 2rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Top Bar */
/* Main Title Area */
.hero-main {
  margin-bottom: 3.5rem;
}

.hero-content h1 {
  font-size: 3.75rem;
  font-weight: 700;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats Cards */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 280px;
  transition: all 0.3s ease;
}

.stat-card-highlight {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.stat-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.1rem;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.8;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Main Content */
main {
  max-width: 1600px;
  margin: 0 auto;
  padding: 3rem 0;
}

/* Offers Section */
.offers-section h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5rem;
}

.offers-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  text-align: center;
}

/* Simulator card colors for LITE */
.selectable-card[data-plan="lite"] .simulator-card-title {
  color: var(--color-lite);
}

.selectable-card[data-plan="lite"] .sim-price-main {
  color: var(--color-lite);
}

.selectable-card[data-plan="lite"] .sim-services li i {
  color: var(--color-lite) !important;
}

.selectable-card[data-plan="lite"] .sim-services li i svg {
  stroke: var(--color-lite) !important;
}

.selectable-card[data-plan="lite"] .sim-services li svg * {
  stroke: var(--color-lite) !important;
}

/* Simulator card colors for PLUS */
.recommended-sim .simulator-card-title {
  color: var(--color-plus);
}

.recommended-sim .sim-price-main {
  color: var(--color-plus);
}

.recommended-sim .sim-services li i svg {
  stroke: var(--color-plus) !important;
}

.recommended-sim .sim-services li svg * {
  stroke: var(--color-plus) !important;
}

.recommended-sim .sim-services li i {
  color: var(--color-plus) !important;
}

/* Simulator card colors for PRO */
.pro-sim .simulator-card-title {
  color: var(--color-pro);
}

.pro-sim .sim-price-main {
  color: var(--color-pro);
}

.pro-sim .sim-services li i svg {
  stroke: var(--color-pro) !important;
}

.pro-sim .sim-services li svg * {
  stroke: var(--color-pro) !important;
}

.pro-sim .sim-services li i {
  color: var(--color-pro) !important;
}

/* Contact Footer Section */
.contact-footer {
  background: linear-gradient(
    135deg,
    var(--color-primary-blue) 0%,
    #2d7db8 100%
  );
  padding: 4.5rem 2rem;
  margin: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.contact-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.contact-footer-content {
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-footer h2 {
  font-size: 2.5rem;
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.contact-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-benefits {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.contact-benefit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  white-space: nowrap;
}

.contact-benefit i {
  color: white;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact-benefit span {
  font-size: 0.95rem;
  color: white;
  font-weight: 600;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: white;
  color: var(--color-primary-blue);
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-base);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  background: #f8f9fa;
}

.contact-button i {
  width: 20px;
  height: 20px;
}

.contact-button span {
  font-weight: 700;
}

.contact-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 3rem auto;
}

.contact-question {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.contact-question p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-weight: 500;
}

.contact-email {
  font-size: 1.15rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-base);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.contact-email:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Price Simulator */
.price-simulator {
  background: #f8fafc;
  padding: 3.5rem 2.5rem;
  border-radius: 12px;
  overflow-x: visible;
  max-width: 1400px;
  margin: 0 auto;
}

.simulator-title {
  font-size: 1.75rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
  text-align: center;
}

.simulator-subtitle {
  text-align: center;
  color: #718096;
  margin-bottom: 2rem;
}

/* Pricing Toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0 2rem 0;
}

.toggle-label {
  font-size: 0.95rem;
  color: #718096;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.toggle-label.active {
  color: #3d8dd7;
  font-weight: 700;
}

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e0;
  transition: 0.3s;
  border-radius: 28px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 21px;
  width: 21px;
  left: 3px;
  top: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #3d8dd7;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

/* Inline toggle in recap header */
.pricing-toggle-inline {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 4px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 4px;
  z-index: 10;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.toggle-btn {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  font-size: 0.75rem;
  line-height: 1;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.toggle-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.6);
  color: #475569;
}

.toggle-btn.active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

/* Modern plan card design */
.recap-plan-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1rem;
}

.recap-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem; /* Reduce padding for a more compact appearance */
  font-size: 0.75rem; /* Slightly smaller font size for a more compact look */
  border-width: 1px; /* Make borders less prominent */
  margin-bottom: 0.35rem; /* Add 1px more space between items */
  border-radius: 6px;
  border: 2px solid transparent;
  transition: none; /* Remove hover effect */
  width: auto;
  background: white;
  color: #1e293b;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.8;
}

.service-item i {
  width: 20px;
  height: 20px;
  color: #3d8dd7;
  flex-shrink: 0;
}

.service-item span {
  display: block;
  text-align: center;
}

/* Recap header layout */
.recap-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
  padding-right: 140px;
}

.recap-header-left {
  flex: 1;
}

.recap-header h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
}

.recap-header .recap-subtitle {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

.simulator-grid {
  display: flex;
  gap: 0;
  margin-top: 2rem;
  margin-bottom: 5.5rem;
  align-items: stretch;
  justify-content: center;
  position: relative;
  min-height: 480px;
  padding: 0 150px;
  margin-left: -150px;
  margin-right: -150px;
}

.simulator-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 350px;
  height: 480px;
  box-sizing: border-box;
}

.base-card {
  width: 350px;
  border: 2px solid #e2e8f0;
  height: 480px;
  z-index: 5;
  flex-shrink: 0;
  box-sizing: border-box;
}

.selectable-card {
  cursor: pointer;
  border: 2px solid #e2e8f0;
  width: 350px;
  height: 480px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

/* Plus Separator Between Base and LITE */
.plus-separator {
  font-size: 3.5rem;
  font-weight: 300;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 2rem;
  z-index: 4;
  height: 480px;
  line-height: 1;
}

/* Default state - PLUS highlighted (not selected, just visually prominent) */
/* LITE - Left card */
.selectable-card:nth-of-type(3) {
  z-index: 2;
  margin-right: -90px;
}

/* PLUS - Center card, visually emphasized by default */
.selectable-card:nth-of-type(4) {
  z-index: 3;
  margin-right: -90px;
  transform: scale(1.1);
}

/* Remove scale from PLUS when LITE or PRO is selected */
.simulator-grid:has(.selectable-card:nth-of-type(3).active)
  .selectable-card:nth-of-type(4),
.simulator-grid:has(.selectable-card:nth-of-type(5).active)
  .selectable-card:nth-of-type(4) {
  transform: scale(1);
}

/* Allow PLUS to scale on hover when another offer is selected */
.simulator-grid:has(.selectable-card:nth-of-type(3).active)
  .selectable-card:nth-of-type(4):hover,
.simulator-grid:has(.selectable-card:nth-of-type(5).active)
  .selectable-card:nth-of-type(4):hover {
  transform: scale(1.05);
}

/* PRO - Right card */
.selectable-card:nth-of-type(5) {
  z-index: 2;
}

/* When LITE is selected: LITE > PLUS > PRO */
.selectable-card:nth-of-type(3).active {
  z-index: 10;
  transform: scale(1.1);
}

.selectable-card:nth-of-type(3).active ~ .selectable-card:nth-of-type(4) {
  z-index: 5;
}

.selectable-card:nth-of-type(3).active ~ .selectable-card:nth-of-type(5) {
  z-index: 3;
}

/* When PLUS is selected: PLUS in front, LITE and PRO behind */
.selectable-card:nth-of-type(4).active {
  z-index: 10;
  transform: scale(1.1);
}

/* When PRO is selected: PRO > PLUS > LITE */
.selectable-card:nth-of-type(5).active {
  z-index: 10;
  transform: scale(1.1);
}

.selectable-card:nth-of-type(5).active ~ .selectable-card:nth-of-type(4) {
  z-index: 2;
}

.selectable-card.active {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Hover effect on LITE and PRO when not active */
.selectable-card:nth-of-type(3):not(.active):hover,
.selectable-card:nth-of-type(5):not(.active):hover {
  transform: scale(1.05);
}

/* Bring any hovered card to the top - including active ones */
.selectable-card:hover,
.selectable-card.active:hover {
  z-index: 15 !important;
}

.selectable-card.selected {
  border-color: #3d8dd7;
  background: #f0f9ff;
}

.selectable-card.active.selected {
  outline: 1px solid #3d8dd7;
  outline-offset: 0px;
  border-color: #3d8dd7;
}

.lite-sim.active.selected {
  border-color: var(--color-lite);
  outline: 1px solid var(--color-lite);
}

.recommended-sim.active.selected {
  border-color: var(--color-plus);
  outline: 1px solid var(--color-plus);
}

.pro-sim.active.selected {
  border-color: var(--color-pro);
  outline: 1px solid var(--color-pro);
}

.sim-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-plus) 0%, #5a9de8 100%);
  color: white;
  padding: 0.25rem 0.7rem;
  border-radius: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(124, 184, 247, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-icon {
  width: 11px;
  height: 11px;
  color: #ffd700;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.badge-star {
  width: 14px;
  height: 14px;
  fill: white;
  stroke: white;
}

.annual-discount {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translate(-50%, 50%);
  background: linear-gradient(135deg, #3d8dd7 0%, var(--color-plus) 100%);
  color: white;
  padding: 0.25rem 0.65rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 3px 10px rgba(61, 141, 215, 0.3);
  letter-spacing: 0.3px;
  z-index: 5;
}

.annual-discount.show {
  opacity: 1;
}

.simulator-card-title {
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
  font-weight: 600;
  width: 100%;
  text-align: center;
}

.simulator-card-price {
  text-align: center;
  width: 100%;
  position: relative;
}

.sim-price-monthly,
.sim-price-annual,
.sim-price-wrapper {
  display: block;
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e2e8f0;
  width: 100%;
  position: relative;
}

.sim-price-annual {
  display: none;
}

.sim-price-main {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  display: block;
  margin-bottom: 0;
  line-height: 1.1;
}

.sim-price-sub {
  font-size: 0.9rem;
  color: #9d9d9d;
  display: block;
  line-height: 1.2;
}

.sim-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.75rem;
  text-align: left;
  width: 100%;
}

.sim-price {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  display: block;
}

.sim-period {
  font-size: 1rem;
  font-weight: 400;
  color: #9d9d9d;
  margin: 0 2px;
}

.sim-label {
  display: block;
  font-size: 0.9rem;
  color: #48bb78;
  margin-top: 0.5rem;
  font-weight: 600;
}

/* Base card specific styles - removed, now uses sim-services */

.sim-services {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  flex: 1;
}

.sim-services li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #2d3748;
  padding: 0.5rem 0;
  line-height: 1.3;
}

.sim-services li i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.base-card .sim-services li i svg {
  stroke: #2d3748;
}

.base-card .sim-services li svg * {
  stroke: #2d3748;
}

.select-indicator {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e2e8f0;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transition: all 0.3s ease;
}

.selectable-card.selected .select-indicator {
  opacity: 1;
  background: #3d8dd7;
}

.lite-sim.selected .select-indicator {
  background: var(--color-lite);
}

.recommended-sim.selected .select-indicator {
  background: var(--color-plus);
}

.pro-sim.selected .select-indicator {
  background: var(--color-pro);
}

/* Total Price Display */
.total-price-display {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Modern Pricing Summary */
.pricing-summary-container {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.pricing-toggle-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.pricing-recap-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  border: 1px solid #e2e8f0;
}

.recap-header {
  text-align: left;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.recap-header h4 {
  font-size: 1.5rem;
  color: #2d3748;
  font-weight: 700;
}

.recap-subtitle {
  font-size: 0.9rem;
  color: #9d9d9d;
  margin: 0;
  font-weight: 400;
}

.recap-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.recap-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
}

.recap-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #3d8dd7 0%, var(--color-plus) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Plan-specific icon backgrounds */
.recap-plan-card.plan-lite .recap-icon {
  background: linear-gradient(135deg, var(--color-lite) 0%, #38b2ac 100%);
}

.recap-plan-card.plan-plus .recap-icon {
  background: linear-gradient(135deg, var(--color-plus) 0%, #3b82f6 100%);
}

.recap-plan-card.plan-pro .recap-icon {
  background: linear-gradient(135deg, var(--color-pro) 0%, #d97706 100%);
}

.recap-icon i {
  width: 24px;
  height: 24px;
}

.subscription-icon {
  background: linear-gradient(135deg, var(--color-lite) 0%, #38b2ac 100%);
}

.recap-details {
  flex: 1;
}

.recap-item-title {
  font-size: 1rem;
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.recap-item-desc {
  font-size: 0.85rem;
  color: #9d9d9d;
  line-height: 1.4;
}

.recap-price {
  text-align: right;
}

.recap-amount {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  line-height: 1.2;
}

.recap-amount .annual-discount {
  position: relative;
  transform: none;
  bottom: initial;
  left: inherit;
  box-shadow: none;
  opacity: 1;
}

.recap-period {
  font-size: 0.75rem;
  color: #9d9d9d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.recap-divider {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #e2e8f0 50%,
    transparent 100%
  );
  margin: 0.5rem 0;
}

.recap-total-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.recap-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border-radius: 8px;
}

.recap-total-row.recurring {
  background: #edf7f6;
}

.recap-total-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #2d3748;
}

.recap-total-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3748;
}

.recap-tax {
  font-size: 0.75rem;
  font-weight: 400;
  color: #9d9d9d;
  text-transform: uppercase;
}

.recap-total-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: linear-gradient(135deg, #3d8dd7 0%, var(--color-plus) 100%);
  border-radius: 12px;
  color: white;
  margin-top: 0.5rem;
}

.recap-total-main-label {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.recap-total-main-value {
  text-align: right;
}

.recap-total-main-value span:first-child {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.recap-total-amount {
  text-align: right;
}

.recap-total-amount span:first-child {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.recap-total-period {
  font-size: 0.85rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Year blocks styling */
.recap-years-section {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.year-block {
  flex: 1;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.year-block.year-1 {
  background: linear-gradient(135deg, #3d8dd7 0%, var(--color-plus) 100%);
  color: white;
  border: 2px solid #5ca6e8;
}

.year-block.year-2 {
  background: #f7fafc;
  border: 2px solid #e2e8f0;
  color: #2d3748;
}

.year-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.year-block.year-1 .year-label {
  color: rgba(255, 255, 255, 0.9);
}

.year-block.year-2 .year-label {
  color: #718096;
}

.year-amount {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.total-content {
  text-align: center;
}

.total-label {
  font-size: 1.1rem;
  color: #718096;
  margin-bottom: 1rem;
}

.total-breakdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.total-initial,
.total-monthly {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.total-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  display: block;
}

.total-desc {
  font-size: 0.9rem;
  color: #718096;
  margin-top: 0.25rem;
}

.total-plus {
  font-size: 2rem;
  color: #b8c4d0;
  font-weight: 300;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background-color: #2d3748;
  color: white;
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  /* Price Simulator Responsive */
  .price-simulator {
    padding: 2rem 1rem;
  }

  .simulator-title {
    font-size: 1.5rem;
  }

  .simulator-subtitle {
    font-size: 0.9rem;
  }

  .simulator-grid {
    flex-direction: column;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2rem;
    min-height: auto;
    gap: 1rem;
    align-items: center;
  }

  .simulator-card {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 400px;
    margin: 0 !important;
    transform: none !important;
    z-index: auto !important;
  }

  .base-card {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .selectable-card {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .plus-separator {
    display: block;
    margin: 0;
    position: static;
    transform: none;
    font-size: 2rem;
    height: 40px;
  }

  .recap-header {
    flex-direction: column;
    padding-right: 0;
    gap: 1rem;
  }

  .pricing-toggle-inline {
    position: static;
    align-self: center;
  }

  .recap-plan-card {
    padding: 0.75rem;
  }

  /* Hero Stats Responsive */
  .hero-stats {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 1rem;
  }

  .stat-card {
    width: 100%;
    min-width: auto;
    padding: 1rem 1.25rem;
    gap: 1rem;
  }

  .stat-icon {
    width: 36px;
    height: 36px;
  }

  .stat-icon svg {
    width: 20px;
    height: 20px;
  }

  .stat-value {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* CTA Section Responsive */
  .contact-footer {
    padding: 3.5rem 1.5rem;
  }

  .contact-footer h2 {
    font-size: 1.75rem;
  }

  .contact-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .contact-benefits {
    gap: 2rem;
  }

  .contact-button {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .contact-button span {
    font-size: 0.95rem;
  }

  .contact-divider {
    margin: 2.5rem auto;
  }

  .contact-email {
    font-size: 1rem;
  }
}

/* Utility Classes for Optimization */
.text-muted {
  color: var(--color-text-muted);
}

.text-secondary {
  color: var(--color-text-secondary);
}

.font-weight-normal {
  font-weight: 400;
}

.font-weight-bold {
  font-weight: 700;
}

.period-separator {
  margin: 0 1px;
  display: inline-block;
}

.hidden {
  display: none;
}

.visibility-hidden {
  visibility: hidden;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
