:root { --frontpage-pricing-hex-fff: #fff; --frontpage-pricing-hex-000: #000; --frontpage-pricing-rgb-37-99-235-0-4: rgba(22, 78, 166, 0.4); --frontpage-pricing-rgb-37-99-235-0-5: rgba(22, 78, 166, 0.5); --frontpage-pricing-rgb-34-197-94-0-1: rgba(34, 197, 94, 0.1); --frontpage-pricing-rgb-37-99-235-0-15: rgba(22, 78, 166, 0.15); --frontpage-pricing-rgb-37-99-235-0-2: rgba(22, 78, 166, 0.2); --frontpage-pricing-rgb-37-99-235-0-1: rgba(22, 78, 166, 0.1); --frontpage-pricing-rgb-255-255-255-0-9: rgba(255, 255, 255, 0.9); }

:root {
  --blue-primary: #164EA6;
  --blue-dark: #0D3A83;
  --blue-accent: #2F6FD1;
  --black: #0f172a;
  --gray-900: #0A0E1A;
  --gray-700: #334155;
  --gray-500: #5A6478;
  --gray-300: #cbd5e1;
  --gray-100: #F6F8FB;
  --line: #E5E9F2;
  --white: #ffffff;
  --green: #22c55e;
  --gradient-blue: linear-gradient(135deg, #2F6FD1 0%, #0D3A83 100%);
}

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

html {
  scroll-behavior: smooth;
}

#plans {
  scroll-margin-top: 140px;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--black);
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--frontpage-pricing-hex-fff);
  border-bottom: 1px solid var(--gray-100);
}

.nav-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  position: relative;
  height: 120px;
}

.logo {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  text-decoration: none;
  position: absolute;
  left: 0;
}

.logo img {
  height: 120px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: var(--frontpage-pricing-hex-000);
  font-weight: 500;
  font-size: 24px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--blue-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
}

.btn-primary {
  background: var(--gradient-blue);
  color: var(--white);
  box-shadow: 0 4px 14px var(--frontpage-pricing-rgb-37-99-235-0-4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--frontpage-pricing-rgb-37-99-235-0-5);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  padding: 10px 20px;
}

/* Hero Section */
.pricing-hero {
  padding: 180px 0 60px;
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
  text-align: center;
}

.pricing-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.pricing-hero h1 span {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-hero p {
  font-size: 20px;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 40px;
}

.savings-badge {
  display: inline-block;
  background: var(--frontpage-pricing-rgb-34-197-94-0-1);
  color: var(--green);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
}

.pricing-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  border: 2px solid var(--gray-100);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--blue-primary);
  box-shadow: 0 30px 60px var(--frontpage-pricing-rgb-37-99-235-0-15);
  transform: translateY(-8px);
}

.pricing-card.popular {
  border-color: var(--blue-primary);
  box-shadow: 0 20px 50px var(--frontpage-pricing-rgb-37-99-235-0-2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 40px;
  background: var(--gradient-blue);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-subtitle {
  color: var(--gray-500);
  font-size: 15px;
  margin-bottom: 24px;
}

.price {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--black);
}

.price-period {
  font-size: 18px;
  color: var(--gray-500);
  margin-left: 8px;
}

.price-savings {
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.features-list {
  list-style: none;
  margin: 32px 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
}

.features-list svg {
  width: 20px;
  height: 20px;
  color: var(--blue-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.cta-button {
  width: 100%;
}

/* What's Included Section */
.whats-included {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-primary);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--gray-500);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--gray-100);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: var(--white);
  box-shadow: 0 20px 40px var(--frontpage-pricing-rgb-37-99-235-0-1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.7;
}

/* Value Props Section */
.value-props {
  padding: 100px 0;
  background: var(--gray-100);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  gap: 24px;
}

.value-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.value-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-content p {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.7;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: var(--white);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--gray-100);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 16px;
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: var(--gradient-blue);
  text-align: center;
}

.cta-section h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 20px;
  color: var(--frontpage-pricing-rgb-255-255-255-0-9);
  margin-bottom: 40px;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--blue-primary);
}

.cta-section .btn-primary:hover {
  background: var(--gray-100);
}

/* Footer */
footer {
  background: var(--black);
  padding: 40px 0;
  text-align: center;
}

footer p {
  color: var(--gray-500);
  font-size: 14px;
}
