@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --background: hsl(210, 40%, 98%);
  --foreground: hsl(210, 50%, 10%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(210, 50%, 10%);
  --primary: hsl(199, 89%, 48%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(199, 30%, 95%);
  --secondary-foreground: hsl(199, 89%, 30%);
  --muted: hsl(210, 40%, 96%);
  --muted-foreground: hsl(210, 20%, 45%);
  --accent: hsl(199, 100%, 45%);
  --accent-foreground: hsl(0, 0%, 100%);
  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(0, 0%, 100%);
  --border: hsl(210, 30%, 90%);
  --radius: 0.75rem;
  --gradient-hero: linear-gradient(135deg, hsl(199, 89%, 48%) 0%, hsl(199, 100%, 35%) 100%);
  --gradient-cta: linear-gradient(135deg, hsl(199, 89%, 48%) 0%, hsl(199, 100%, 40%) 100%);
  --shadow-soft: 0 4px 20px -4px hsla(199, 50%, 30%, 0.15);
  --shadow-card: 0 10px 40px -10px hsla(199, 50%, 30%, 0.2);
  --shadow-cta: 0 8px 30px -5px hsla(199, 89%, 48%, 0.5);
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utilities */
.text-gradient {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-hero {
  background: var(--gradient-hero);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.shadow-card {
  box-shadow: var(--shadow-card);
}

.shadow-cta {
  box-shadow: var(--shadow-cta);
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-hero {
  background: var(--primary-foreground);
  color: var(--primary);
  border-color: var(--primary-foreground);
}

.btn-hero:hover {
  background: transparent;
  color: var(--primary-foreground);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta);
}

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { 
    opacity: 0; 
    transform: translateY(30px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulseSoft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse-soft {
  animation: pulseSoft 2s ease-in-out infinite;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-section .bg-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-section .bg-decoration .circle {
  position: absolute;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.05);
  filter: blur(60px);
}

.hero-section .bg-decoration .circle-1 {
  width: 500px;
  height: 500px;
  top: -160px;
  right: -160px;
}

.hero-section .bg-decoration .circle-2 {
  width: 600px;
  height: 600px;
  bottom: -160px;
  left: -160px;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    padding: 7rem 0;
  }
}

.hero-text {
  text-align: center;
  color: var(--primary-foreground);
}

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

.hero-badge {
  display: inline-block;
  background: hsla(0, 0%, 100%, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.125rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-cta {
    justify-content: flex-start;
  }
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  font-size: 0.875rem;
  opacity: 0.8;
}

@media (min-width: 1024px) {
  .hero-features {
    justify-content: flex-start;
  }
}

.hero-features .feature {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3));
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
}

/* ==================== PROBLEM SECTION ==================== */
.problem-section {
  background: var(--background);
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .problem-section {
    padding: 7rem 0;
  }
}

.section-header {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto 3rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.section-badge.destructive {
  background: hsla(0, 84%, 60%, 0.1);
  color: var(--destructive);
}

.section-badge.primary {
  background: hsla(199, 89%, 48%, 0.1);
  color: var(--primary);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.problems-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .problems-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.problem-card:hover {
  border-color: hsla(0, 84%, 60%, 0.3);
  box-shadow: var(--shadow-card);
}

.problem-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: hsla(0, 84%, 60%, 0.1);
  color: var(--destructive);
  transition: all 0.3s ease;
}

.problem-card:hover .problem-icon {
  background: var(--destructive);
  color: var(--destructive-foreground);
}

.problem-card p {
  font-size: 0.875rem;
  font-weight: 500;
}

/* ==================== AGITATION SECTION ==================== */
.agitation-section {
  background: var(--secondary);
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .agitation-section {
    padding: 7rem 0;
  }
}

.pain-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  max-width: 56rem;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px hsla(199, 50%, 30%, 0.25);
}

.pain-card .emoji {
  font-size: 1.875rem;
}

.pain-card p {
  font-size: 1.125rem;
  font-weight: 500;
}

.agitation-cta {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem;
  border: 2px solid hsla(199, 89%, 48%, 0.2);
  border-radius: 1rem;
  background: var(--card);
  text-align: center;
}

.agitation-cta p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

.agitation-cta .highlight {
  font-weight: 600;
  color: var(--foreground);
}

.agitation-cta .solution {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

/* ==================== SOLUTION SECTION ==================== */
.solution-section {
  background: var(--background);
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .solution-section {
    padding: 7rem 0;
  }
}

.solution-content {
  max-width: 56rem;
  margin: 0 auto;
}

.solution-box {
  background: var(--secondary);
  border-radius: 1rem;
  padding: 2rem;
  text-align: left;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .solution-box {
    padding: 3rem;
  }
}

.solution-box p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.solution-box .highlight {
  font-weight: 600;
  color: var(--foreground);
}

.solution-features {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .solution-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.solution-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.solution-features .feature .check {
  color: var(--primary);
}

.solution-cta-box {
  border: 2px solid var(--primary);
  border-radius: 1rem;
  background: var(--gradient-hero);
  padding: 2rem;
  text-align: center;
  color: var(--primary-foreground);
}

@media (min-width: 768px) {
  .solution-cta-box {
    padding: 3rem;
  }
}

.solution-cta-box p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.solution-cta-box .final {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

/* ==================== ADVANTAGES SECTION ==================== */
.advantages-section {
  background: var(--secondary);
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .advantages-section {
    padding: 7rem 0;
  }
}

.advantages-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.advantage-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  background: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px hsla(199, 50%, 30%, 0.25);
}

.advantage-card .number {
  position: absolute;
  top: -1rem;
  right: -1rem;
  font-size: 5rem;
  font-weight: 700;
  color: hsla(199, 89%, 48%, 0.05);
  transition: color 0.3s ease;
}

.advantage-card:hover .number {
  color: hsla(199, 89%, 48%, 0.1);
}

.advantage-card .content {
  position: relative;
  z-index: 10;
}

.advantage-card .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: hsla(199, 89%, 48%, 0.1);
  color: var(--primary);
  transition: all 0.3s ease;
}

.advantage-card:hover .icon-box {
  background: var(--primary);
  color: var(--primary-foreground);
}

.advantage-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.advantage-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ==================== PACKAGE SECTION ==================== */
.package-section {
  background: var(--background);
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .package-section {
    padding: 7rem 0;
  }
}

.package-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-card {
  padding: 1.5rem;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.package-card:hover {
  border-color: hsla(199, 89%, 48%, 0.3);
  box-shadow: var(--shadow-card);
}

.package-card .header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.package-card .header .emoji {
  font-size: 1.875rem;
}

.package-card .header h3 {
  font-size: 0.875rem;
  font-weight: 700;
}

.package-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.package-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.package-card li .check {
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: var(--primary);
}

/* ==================== COMPARISON SECTION ==================== */
.comparison-section {
  background: var(--secondary);
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .comparison-section {
    padding: 7rem 0;
  }
}

.comparison-table {
  max-width: 56rem;
  margin: 0 auto;
  background: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comparison-header {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1rem;
  background: var(--gradient-hero);
  color: var(--primary-foreground);
  font-weight: 600;
}

.comparison-header > div:not(:first-child) {
  text-align: center;
}

.comparison-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1rem;
}

.comparison-row:nth-child(even) {
  background: hsla(199, 30%, 95%, 0.5);
}

.comparison-row .feature {
  font-weight: 500;
}

.comparison-row .designer,
.comparison-row .template {
  text-align: center;
}

.comparison-row .designer {
  color: var(--muted-foreground);
}

.comparison-row .template {
  font-weight: 500;
  color: var(--primary);
}

.comparison-row .icon-x {
  color: var(--destructive);
}

.comparison-row .icon-check {
  color: var(--primary);
}

.comparison-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.comparison-footer .highlight {
  font-weight: 700;
  color: var(--primary);
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
  background: var(--background);
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .testimonials-section {
    padding: 7rem 0;
  }
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  background: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px hsla(199, 50%, 30%, 0.25);
}

.testimonial-card .quote-icon {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  color: hsla(199, 89%, 48%, 0.05);
  transition: color 0.3s ease;
}

.testimonial-card:hover .quote-icon {
  color: hsla(199, 89%, 48%, 0.1);
}

.testimonial-card .content {
  position: relative;
  z-index: 10;
}

.testimonial-card .stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-card .stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--primary);
  color: var(--primary);
}

.testimonial-card .quote {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card .author .avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: hsla(199, 89%, 48%, 0.1);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-card .author .name {
  font-weight: 600;
}

.testimonial-card .author .role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ==================== TARGET AUDIENCE SECTION ==================== */
.target-section {
  background: var(--secondary);
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .target-section {
    padding: 7rem 0;
  }
}

.target-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .target-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.target-card {
  padding: 2rem;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 1rem;
}

.target-card.for-you {
  border-color: hsla(199, 89%, 48%, 0.2);
}

.target-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.target-card.for-you h3 {
  color: var(--primary);
}

.target-card.not-for-you h3 {
  color: var(--muted-foreground);
}

.target-card ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.target-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.target-card li .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  border-radius: 50%;
}

.target-card.for-you li .icon-box {
  background: hsla(199, 89%, 48%, 0.1);
  color: var(--primary);
}

.target-card.not-for-you li .icon-box {
  background: var(--muted);
  color: var(--muted-foreground);
}

.target-card.not-for-you li span {
  color: var(--muted-foreground);
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  background: var(--background);
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .faq-section {
    padding: 7rem 0;
  }
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  background: var(--card);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: hsla(199, 89%, 48%, 0.3);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--muted-foreground);
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==================== GUARANTEE SECTION ==================== */
.guarantee-section {
  background: var(--secondary);
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .guarantee-section {
    padding: 7rem 0;
  }
}

.guarantee-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: hsla(199, 89%, 48%, 0.1);
}

.guarantee-icon svg {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
}

.guarantee-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--card);
  border-radius: 9999px;
  box-shadow: var(--shadow-soft);
  font-weight: 500;
}

.guarantee-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.guarantee-box {
  padding: 2rem;
  background: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
}

.guarantee-box p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

.guarantee-box .highlight {
  font-weight: 600;
  color: var(--foreground);
}

.guarantee-box .cta {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  background: var(--gradient-hero);
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 7rem 0;
  }
}

.cta-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  color: var(--primary-foreground);
}

.cta-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .cta-content h2 {
    font-size: 3rem;
  }
}

.cta-content .subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.cta-content .description {
  font-size: 1.125rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.cta-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(0, 0%, 100%, 0.1);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.cta-summary {
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-button-wrapper {
  margin-bottom: 2rem;
}

.cta-price {
  margin-top: 1rem;
}

.cta-price .price {
  font-size: 1.5rem;
  font-weight: 700;
}

.cta-price .note {
  font-size: 0.875rem;
  opacity: 0.7;
}

.cta-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.cta-benefits span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: hsla(0, 0%, 100%, 0.1);
  border-radius: 0.75rem;
}

.cta-urgency svg {
  width: 1.5rem;
  height: 1.5rem;
}

.cta-urgency .urgency-text {
  text-align: left;
}

.cta-urgency .urgency-text p {
  font-weight: 600;
}

.cta-urgency .urgency-text .sub {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
  background: var(--background);
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .about-section {
    padding: 7rem 0;
  }
}

.about-content {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  max-width: 56rem;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-avatar {
  display: flex;
  justify-content: center;
}

.about-avatar .avatar-wrapper {
  position: relative;
}

.about-avatar .avatar-ring {
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: var(--gradient-hero);
  padding: 0.25rem;
}

.about-avatar .avatar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--secondary);
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--primary);
}

.about-avatar .avatar-badge {
  position: absolute;
  bottom: -0.5rem;
  right: -0.5rem;
  padding: 0.5rem 1rem;
  background: var(--card);
  border-radius: 9999px;
  box-shadow: var(--shadow-card);
  font-size: 0.875rem;
  font-weight: 600;
}

.about-text h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .about-text h2 {
    font-size: 2.25rem;
  }
}

.about-text p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.about-text .intro {
  font-size: 1.125rem;
}

.about-text .intro .name {
  font-weight: 600;
  color: var(--foreground);
}

.about-text .label {
  font-weight: 600;
  color: var(--foreground);
}

.about-text ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.about-text li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.about-text li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.about-text .specialized {
  font-weight: 600;
  color: var(--foreground);
}

.about-text .mission-box {
  padding: 1rem;
  background: var(--secondary);
  border-radius: 0.75rem;
}

.about-text .mission-box p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.about-text .mission-box .mission-label {
  font-weight: 600;
  color: var(--primary);
}

/* ==================== FOOTER SECTION ==================== */
.footer-section {
  background: var(--foreground);
  padding: 3rem 0;
  color: hsla(0, 0%, 100%, 0.8);
  text-align: center;
}

.footer-section .copyright {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-section .disclaimer {
  font-size: 0.75rem;
  opacity: 0.6;
}

/* ==================== ICONS (SVG inline) ==================== */
.icon {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  vertical-align: middle;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-xl {
  width: 3rem;
  height: 3rem;
}
