@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap");

:root {
  --color-lite: #4fd1c5;
  --color-plus: #7cb8f7;
  --color-pro: #e6a871;
}

* {
  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;
  gap: 0.75rem;
}

.jd-section span {
  color: #1e293b;
  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: linear-gradient(rgb(45, 150, 235) 0%, rgb(32, 112, 223) 100%);
  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 */
.hero-top-bar {
  margin-bottom: 4rem;
}

.partner-logos {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.logo-item {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.logo-item:hover {
  background: white;
}

.logo-item:first-child {
  border-radius: 16px 0 0 16px;
}

.logo-item:last-child {
  border-radius: 0 16px 16px 0;
}

.partner-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.logo-separator {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 0, 0, 0.1),
    transparent
  );
}

/* Main Title Area */
.hero-main {
  margin-bottom: 3.5rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5rem;
}

.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;
}

.hero-content h1 {
  font-size: 3.75rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* 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 2rem;
}

/* 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;
}

.offers-grid {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 3rem;
  align-items: stretch;
}

.offers-grid-no-separators {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: stretch;
}

.plus-separator {
  font-size: 3.5rem;
  font-weight: 300;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 2.5rem;
  z-index: 4;
  height: 480px;
}

.ou-separator {
  font-size: 1.2rem;
  font-weight: 600;
  color: #b8c4d0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.5rem;
}

/* Offer Card */
.offer-card {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.offer-card-recommended {
  transform: scale(1.02);
}

.recommended-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--color-plus);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.offer-card-pro {
  transform: scale(1.02);
}

/* PLUS card colors */
.offer-card-recommended .offer-title {
  color: var(--color-plus);
}

.offer-card-recommended .price-initial {
  color: var(--color-plus);
}

.offer-card-recommended .offer-features li i {
  color: var(--color-plus);
}

/* PRO card colors */
.offer-card-pro .offer-title {
  color: var(--color-pro);
}

.offer-card-pro .price-initial {
  color: var(--color-pro);
}

.offer-card-pro .offer-features li i {
  color: var(--color-pro);
}

/* 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;
}

.offer-title {
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.includes-badge {
  display: inline-block;
  font-size: 0.85rem;
  color: #667eea;
  background: #f0f4ff;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-weight: 500;
}

.offer-card-recommended .includes-badge {
  color: var(--color-plus);
  background: #f0f7ff;
}

.offer-card-pro .includes-badge {
  color: var(--color-pro);
  background: #fff8f0;
}

.offer-subtitle {
  color: #718096;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.offer-price {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.price-initial {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  display: block;
  margin-bottom: 0;
}

.price-then {
  display: block;
  font-size: 0.9rem;
  color: #718096;
  margin: 1rem 0 0.5rem 0;
  font-style: italic;
}

.price-period {
  font-size: 1.25rem;
  font-weight: 400;
  color: #2d3748;
}

.price-label {
  font-size: 1rem;
  color: #718096;
  display: block;
  margin-top: -0.65rem;
}

.offer-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.offer-features li {
  padding: 0.5rem 0;
  padding-left: 0;
  position: relative;
  color: #4a5568;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.1;
}

.offer-features li i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #667eea;
}

.offer-features li::before {
  content: none;
}

.offer-button {
  width: 100%;
  padding: 0.9rem 1.5rem;
  border: 2px solid #667eea;
  background: white;
  color: #667eea;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.offer-button:hover {
  background: #667eea;
  color: white;
}

.offer-button-primary {
  background: #667eea;
  color: white;
}

.offer-button-primary:hover {
  background: #5568d3;
  border-color: #5568d3;
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-section h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.cta-section p {
  font-size: 1.1rem;
  color: #718096;
  margin-bottom: 2rem;
}

.cta-button {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #3d8dd7 0%, var(--color-plus) 100%);
  color: white;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(61, 141, 215, 0.4);
  background: linear-gradient(135deg, #357ab8 0%, #6aa8e8 100%);
}

/* Price Simulator */
.price-simulator {
  background: #f8fafc;
  padding: 3.5rem 2.5rem;
  border-radius: 12px;
  overflow-x: visible;
}

.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: linear-gradient(rgb(45, 150, 235) 0%, rgb(32, 112, 223) 100%);
  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;
}

/* Default state - PLUS in front */
/* LITE - Left card */
.selectable-card:nth-of-type(3) {
  z-index: 2;
  margin-right: -90px;
}

/* PLUS - Center card, overlaps both 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;
}

.recommended-sim.selected {
  border-color: var(--color-plus);
}

.pro-sim.selected {
  border-color: 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;
}

.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: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  line-height: 1.2;
}

.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-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;
  }

  .hero-indicators {
    gap: 2rem;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offer-card-recommended {
    transform: scale(1);
  }
}
