/* Write Your Lawmaker - Patriotic Landing Page */

:root {
  --flag-red: #B22234;
  --flag-blue: #3C3B6E;
  --flag-white: #FFFFFF;
  --cream: #FAF8F5;
  --navy: #1a2332;
  --gold: #C5A572;
  --text-dark: #2c2c2c;
  --text-medium: #555555;
  --text-light: #777777;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

.shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Patriotic Header */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: var(--flag-white);
  border-bottom: 4px solid var(--flag-red);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--flag-blue);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--flag-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logo-icon {
  width: 40px;
  height: 40px;
  color: var(--flag-red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Patriotic Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  border: 2px solid transparent;
  background: transparent;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  border-radius: 4px;
}

.btn:hover {
  transform: translateY(-2px);
}

.nav-links a.btn.white {
  border: 1px solid var(--flag-blue) !important;
}

.btn.primary {
  background: var(--flag-red);
  color: white;
  border-color: var(--flag-red);
  box-shadow: 0 4px 12px rgba(178, 34, 52, 0.3);
}

.btn.primary:hover {
  background: #8B1A28;
  border-color: #8B1A28;
  box-shadow: 0 6px 16px rgba(178, 34, 52, 0.4);
}

.btn.secondary {
  border: 2px solid var(--flag-blue);
  color: var(--flag-blue);
  background: white;
}

.btn.secondary:hover {
  background: var(--flag-blue);
  color: white;
}

.btn.large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

/* Hero Section - Stars & Stripes Background */
.hero {
  position: relative;
  padding: 6rem 3rem 5rem;
  background: var(--flag-white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      0deg,
      var(--flag-red),
      var(--flag-red) 30px,
      var(--flag-white) 30px,
      var(--flag-white) 60px
    );
  opacity: 0.08;
  pointer-events: none;
}

.hero::after {
  content: '★ ★ ★ ★ ★';
  position: absolute;
  top: 2rem;
  left: 3rem;
  font-size: 1.5rem;
  color: var(--flag-blue);
  opacity: 0.3;
  letter-spacing: 0.5rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.price-sticker {
  padding: 0.75rem 1.75rem;
  background: var(--flag-red);
  color: white;
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  box-shadow: 0 6px 20px rgba(178, 34, 52, 0.5);
  border: 4px solid white;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.price-sticker-desktop {
  position: absolute;
  top: -1rem;
  right: 1rem;
  transform: rotate(3deg);
  z-index: 10;
}

.price-sticker-desktop:hover {
  transform: rotate(1deg) scale(1.05);
}


.badge {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  background: var(--flag-blue);
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  box-shadow: 0 3px 10px rgba(60, 59, 110, 0.3);
  border-left: 4px solid var(--flag-red);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
  color: var(--flag-blue);
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.05);
}

.gradient-text {
  display: block;
  color: var(--flag-red);
  margin-top: 0.5rem;
  position: relative;
}

.gradient-text::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 120px;
  height: 4px;
  background: var(--gold);
}

.hero-subtitle {
  font-size: 1.375rem;
  color: var(--text-medium);
  margin: 2rem 0 2.5rem 0;
  max-width: 600px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-left: 3px solid var(--flag-red);
  padding-left: 1.5rem;
}

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-medium);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
}

.trust-badges span::before {
  content: '★';
  color: var(--flag-blue);
  font-size: 1.25rem;
}

/* Hero Visual - American Flag Inspired */
.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  width: 600px;
  max-width: 100%;
  height: auto;
  border: 4px solid var(--flag-blue);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 1;
  transition: transform 0.4s ease;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  height: 10px;
  background: var(--flag-red);
  border-radius: 4px 4px 0 0;
}

.hero-image:hover {
  transform: translateX(-50%) rotate(0deg) translateY(-4px);
}

.floating-card {
  position: absolute;
  background: white;
  border: 3px solid var(--flag-blue);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border-radius: 2px;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.floating-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  height: 8px;
  background: var(--flag-red);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(var(--rotation));
  }
  50% {
    transform: translateY(-10px) rotate(var(--rotation));
  }
}

.floating-card.card-1 {
  top: 280px;
  left: 2%;
  --rotation: -3deg;
}

.floating-card.card-2 {
  top: 280px;
  right: 10%;
  --rotation: 2deg;
}

.floating-card.card-3 {
  top: 280px;
  right: 35%;
  --rotation: -2deg;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.card-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--flag-blue);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* How It Works - Striped Background */
.how-it-works {
  padding: 6rem 3rem;
  background: var(--flag-blue);
  color: white;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.03) 40px,
      rgba(255, 255, 255, 0.03) 80px
    );
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.how-it-works .section-header h2 {
  color: white;
}

.how-it-works .section-header h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--flag-red);
  margin: 1.5rem auto 0;
}

.section-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.step {
  text-align: center;
  position: relative;
  background: white;
  padding: 3rem 2rem 2.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--flag-red);
}

.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--flag-red);
  border: 4px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  box-shadow: 0 4px 12px rgba(178, 34, 52, 0.4);
}

.step-icon {
  font-size: 3.5rem;
  margin: 1.5rem 0 1.5rem;
}

.step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--flag-blue);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.step p {
  color: var(--text-medium);
  font-size: 1.0625rem;
  margin: 0;
  font-family: Georgia, serif;
  line-height: 1.7;
  flex: 1;
}

.step-connector {
  display: none;
}

/* Features Section */
.features {
  padding: 6rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--cream);
}

.features .section-header h2 {
  color: var(--flag-blue);
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.features .section-header h2::before {
  content: '★';
  position: absolute;
  left: -50px;
  color: var(--flag-red);
}

.features .section-header h2::after {
  content: '★';
  position: absolute;
  right: -50px;
  color: var(--flag-red);
}

.features .section-header p {
  color: var(--text-medium);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-card {
  background: white;
  border: 2px solid var(--flag-blue);
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 2px;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 60px;
  height: 6px;
  background: var(--flag-red);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--flag-red);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--flag-blue);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.feature-card p {
  color: var(--text-medium);
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* Pricing - Patriotic Box */
.pricing {
  padding: 6rem 3rem;
  background: var(--flag-white);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    to right,
    var(--flag-red) 0,
    var(--flag-red) 40px,
    white 40px,
    white 80px,
    var(--flag-blue) 80px,
    var(--flag-blue) 120px
  );
}

.pricing .section-header h2 {
  color: var(--flag-blue);
  text-transform: uppercase;
}

.pricing .section-header p {
  color: var(--text-medium);
}

.pricing-card {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border: 4px solid var(--flag-blue);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 12px;
  background: var(--flag-red);
}

.pricing-badge {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--flag-blue);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  box-shadow: 0 4px 12px rgba(60, 59, 110, 0.3);
}

.pricing-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.5rem 0 3rem;
  flex-wrap: wrap;
}

.base-price {
  font-size: 4rem;
  font-weight: 800;
  color: var(--flag-blue);
}

.plus {
  font-size: 2.5rem;
  color: var(--text-medium);
  font-weight: 300;
}

.variable-price {
  font-size: 4rem;
  font-weight: 800;
  color: var(--flag-red);
}

.per {
  color: var(--text-medium);
  font-size: 1.125rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-examples {
  background: var(--cream);
  border: 2px solid var(--flag-blue);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  border-radius: 2px;
}

.example {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 2px dashed rgba(60, 59, 110, 0.2);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.example:last-child {
  border-bottom: none;
}

.example-size {
  color: var(--text-medium);
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.example-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--flag-blue);
  font-family: Georgia, serif;
}

.pricing-note {
  color: var(--text-medium);
  font-size: 1rem;
  margin: 2rem 0 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.pricing-card .btn {
  margin: 1.5rem 0;
}

/* CTA Section - Bold Patriotic */
.cta {
  padding: 6rem 3rem;
  background: var(--flag-blue);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★';
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.1);
  font-size: 2rem;
  letter-spacing: 2rem;
  white-space: nowrap;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 1.5rem 0;
  color: white;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta p {
  font-size: 1.375rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 2.5rem 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}

.cta .btn.primary {
  background: var(--flag-red);
  border-color: var(--flag-red);
  box-shadow: 0 6px 20px rgba(178, 34, 52, 0.5);
  font-size: 1.25rem;
  padding: 1.25rem 3rem;
}

.cta .btn.primary:hover {
  background: #8B1A28;
  box-shadow: 0 8px 28px rgba(178, 34, 52, 0.6);
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 3rem 2rem;
  border-top: 4px solid var(--flag-red);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
    gap: 2rem;
  }

  .hero-visual {
    display: none;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .steps {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
    width: 100%;
    max-width: 100%;
  }

  .brand {
    font-size: 1rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }

  .nav-links {
    gap: 0.5rem;
  }

  .nav-links .btn {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }

  .hero {
    padding: 3rem 1.5rem;
  }

  .hero::after {
    font-size: 1rem;
    left: 1.5rem;
    letter-spacing: 0.25rem;
  }

  .badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin: 1.5rem 0 2rem 0;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }

  .trust-badges {
    padding-left: 1rem;
    border-left-width: 2px;
  }

  .trust-badges span {
    font-size: 0.875rem;
  }

  .how-it-works,
  .features,
  .pricing,
  .cta {
    padding: 4rem 1.5rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .step {
    padding: 2.5rem 1.5rem 2rem;
  }

  .step-icon {
    font-size: 3rem;
    margin: 1rem 0 1rem;
  }

  .step h3 {
    font-size: 1.25rem;
  }

  .step p {
    font-size: 0.9375rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .feature-card h3 {
    font-size: 1.25rem;
  }

  .feature-card p {
    font-size: 0.9375rem;
  }

  .features .section-header h2::before,
  .features .section-header h2::after {
    display: none;
  }

  .pricing-card {
    padding: 3rem 1.5rem;
  }

  .pricing-badge {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }

  .pricing-formula {
    gap: 1rem;
    margin: 2rem 0;
  }

  .base-price,
  .variable-price {
    font-size: 3rem;
  }

  .plus {
    font-size: 2rem;
  }

  .per {
    font-size: 1rem;
  }

  .pricing-examples {
    padding: 1.5rem;
  }

  .example {
    padding: 1rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .example-size {
    font-size: 1rem;
  }

  .example-price {
    font-size: 1.5rem;
  }

  .pricing-note {
    font-size: 0.875rem;
  }

  .cta::before {
    font-size: 1.5rem;
    letter-spacing: 1rem;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }

  .cta .btn.primary {
    font-size: 1.125rem;
    padding: 1rem 2rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 1rem;
  }

  .brand {
    font-size: 0.75rem;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }

  .nav-links .btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .hero::after {
    display: none;
  }

  .badge {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.9375rem;
  }

  .hero-actions .btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
  }

  .trust-badges span {
    font-size: 0.8125rem;
  }

  .how-it-works,
  .features,
  .pricing,
  .cta {
    padding: 3rem 1rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .section-header p {
    font-size: 0.9375rem;
  }

  .step {
    padding: 2rem 1rem 1.5rem;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }

  .step-icon {
    font-size: 2.5rem;
  }

  .step h3 {
    font-size: 1.125rem;
  }

  .step p {
    font-size: 0.875rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .feature-icon {
    font-size: 2.25rem;
  }

  .feature-card h3 {
    font-size: 1.125rem;
  }

  .feature-card p {
    font-size: 0.875rem;
  }

  .pricing-card {
    padding: 2rem 1rem;
  }

  .pricing-card::before {
    width: 150px;
    height: 10px;
  }

  .base-price,
  .variable-price {
    font-size: 2.5rem;
  }

  .plus {
    font-size: 1.5rem;
  }

  .pricing-examples {
    padding: 1rem;
  }

  .example-size {
    font-size: 0.9375rem;
  }

  .example-price {
    font-size: 1.25rem;
  }

  .cta::before {
    display: none;
  }

  .cta h2 {
    font-size: 1.75rem;
  }

  .cta p {
    font-size: 1rem;
  }

  .cta .btn.primary {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }

  .trust-badges {
    padding-left: 0.75rem;
  }
}

@media (max-width: 320px) {
  .brand {
    font-size: 0.65rem;
  }

  .logo-icon {
    width: 24px;
    height: 24px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .cta h2 {
    font-size: 1.5rem;
  }
}

/* Recent News Widget */
.recent-news-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 350px;
  background: white;
  border: 4px solid var(--flag-blue);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.recent-news-widget::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  height: 8px;
  background: var(--flag-red);
  z-index: 1;
}

.recent-news-widget:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.25),
    0 6px 16px rgba(0, 0, 0, 0.15);
}

.news-widget-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-widget-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}

.news-widget-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-widget-link:hover .news-widget-image img {
  transform: scale(1.05);
}

.news-widget-content {
  padding: 1.5rem;
}

.news-widget-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--flag-blue);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  border-left: 3px solid var(--flag-red);
}

.news-widget-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.75rem 0;
  color: var(--flag-blue);
}

.news-widget-cta {
  display: inline-block;
  color: var(--flag-red);
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease;
}

.news-widget-link:hover .news-widget-cta {
  transform: translateX(4px);
}

.news-widget-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 32px;
  height: 32px;
  background: white;
  border: 2px solid var(--flag-blue);
  border-radius: 50%;
  color: var(--flag-blue);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.news-widget-close:hover {
  background: var(--flag-red);
  color: white;
  border-color: var(--flag-red);
  transform: rotate(90deg);
}

/* Mobile styles for news widget */
@media (max-width: 768px) {
  .recent-news-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }

  .recent-news-widget::before {
    left: 0;
    right: 0;
  }

  .news-widget-image {
    display: none;
  }

  .news-widget-content {
    padding: 1rem 3rem 1rem 1rem;
  }

  .news-widget-badge {
    display: none;
  }

  .news-widget-title {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
  }

  .news-widget-cta {
    font-size: 0.8125rem;
  }

  .news-widget-close {
    width: 28px;
    height: 28px;
    font-size: 1.25rem;
  }
}
