:root {
  --primary-color: #4285f4; /* Google Blue */
  --primary-light: #e8f0fe;
  --primary-dark: #1a73e8;
}

.pricing-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  margin: 0 auto;
}

.left-section {
  padding: 40px 0;
}

.header {
  display: flex;
  flex-direction: column;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.logo .ai {
  color: var(--primary-color);
}

.main-title {
  /* font-size: 26px; */
  font-weight: 600;
  color: #1d1d1f;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
  text-align: center;
}

.subtitle {
  font-size: 16px;
  color: #86868b;
  line-height: 1.4;
  font-weight: 400;
  text-align: left;
}

.calculator-section {
  margin-top: 30px;
}

.section-title {
  font-size: 18px;
  color: #1d1d1f;
  font-weight: 600;
  text-align: left;
}

.slider-container {
  position: relative;
  margin: 20px 0 40px;
}

.slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e5e5e7;
  outline: none;
  appearance: none;
  position: relative;
  cursor: pointer;
}

.slider-milestones span {
  position: absolute;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: #666;
}

.input-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2.2rem;
}

.input-label {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: #424245;
  margin-bottom: 12px;
  text-align: left;
  letter-spacing: -0.01em;
}

.input-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 16px;
  position: relative;
  background: #f2f2f7;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.input-container:hover {
  background: #e8e8ed;
  transform: translateY(-1px);
}

.input-container:focus-within {
  background: #ffffff;
  border-color: #007aff;
  box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1),
    0 4px 16px rgba(0, 122, 255, 0.15);
}

.number-input {
  width: 60%;
  border: none;
  background: transparent;
  font-size: 24px;
  font-weight: 600;
  color: #1d1d1f;
  text-align: center;
  outline: none;
  letter-spacing: -0.02em;
}

.number-input::-webkit-outer-spin-button,
.number-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.number-input[type="number"] {
  -moz-appearance: textfield;
}

.slider::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  border: 3px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
  transition: all 0.2s ease;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  border: 3px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.slider-value {
  text-align: center;
  margin: 20px 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.comparison-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 0;
}

.comparison-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 12px 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.comparison-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    #ff3b30,
    #ff9500,
    #ffcc02,
    #34c759,
    #007aff,
    #5856d6,
    #af52de
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.comparison-card.recommended {
  background: white;
  border-color: #007aff;
  box-shadow: 0 8px 24px rgba(0, 122, 255, 0.15);
}

.comparison-card.recommended::before {
  opacity: 1;
}

.card-header {
  text-align: center;
  margin-bottom: 24px;
}

.card-title {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 600;
  margin-bottom: 8px;
  color: #1d1d1f;
}

.card-subtitle {
  font-size: 14px;
  color: #86868b;
  font-weight: 400;
}

.price {
  text-align: center;
  margin: 32px 0 0;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: #1d1d1f;
  line-height: 1;
  transition: all 0.3s ease;
}

.price-period {
  font-size: 16px;
  color: #86868b;
  font-weight: 500;
}

.savings-badge {
  background: linear-gradient(135deg, #34c759, #30d158);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-top: 16px;
  transition: all 0.3s ease;

  /* Glow Animation */
  animation: pulseGlow 2s infinite;
  box-shadow: 0 0 0 rgba(52, 199, 89, 0.7);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.7);
  }
  50% {
    box-shadow: 0 0 20px 10px rgba(52, 199, 89, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.7);
  }
}

.right-section {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: 24px;
  padding: 48px 40px;
  color: white;
  box-shadow: 0 12px 48px rgba(66, 133, 244, 0.3);
}

.cta-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  color: #ffffff;
}

.cta-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.4;
  color: #ffffff;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-group {
  flex: 1;
}

.form-input {
  width: 100%;
  padding: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
}

.cta-button {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 18px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.activate-windows {
  margin-top: 32px;
  text-align: center;
  opacity: 0.7;
  font-size: 14px;
}

/* Contact Form Section Styling */
.contact-form-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.form-container {
  max-width: 500px;
  margin: 0 auto;
}

.form-container .right-section {
  width: 100%;
}

.plan-info {
  margin-top: 40px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.current-plan {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-label {
  font-size: 14px;
  color: #86868b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.plan-description {
  font-size: 16px;
  color: #86868b;
  font-weight: 400;
  transition: all 0.3s ease;
}

.plan-info-inline {
  margin-top: 16px;
  padding: 16px;
  background: rgba(66, 133, 244, 0.05);
  border-radius: 12px;
  text-align: center;
}

.current-plan-inline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.plan-label-inline {
  font-size: 12px;
  color: #86868b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-name-inline {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.plan-description-inline {
  font-size: 13px;
  color: #86868b;
  font-weight: 400;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .pricing-container {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 2rem;
  }

  .header {
    align-items: center;
    text-align: center;
    margin-bottom: 12px;
  }

  .main-title {
    font-size: 30px;
  }

  .header p {
    font-size: 18px;
    text-align: center;
  }

  .subtitle {
    font-size: 16px;
    text-align: center;
  }

  .comparison-cards {
    display: flex;
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .input-section {
    display: flex;
    flex-direction: column;
  }

  .input-label {
    margin: 0;
    text-align: left;
  }
}
