/* ============================================================
   DESIGN TOKENS - SOFT PASTEL MODERN
   Blush Rose, Sage Green, Sky Blue, Cream
   ============================================================ */
:root {
  --rose:         #F4D9D6;
  --rose-dark:    #E8B9B3;
  --rose-text:    #C85A4A;
  --sage:         #D4E8E0;
  --sage-dark:    #B8D8CC;
  --sage-text:    #5C8A7B;
  --sky:          #D9E8F5;
  --sky-dark:     #B3D4E8;
  --sky-text:     #4A75C8;
  --cream:        #FBF9F6;
  --off-white:    #FDFBF9;
  --text:         #4A4A4A;
  --text-muted:   #7A7A7A;
  --white:        #FFFFFF;
  --shadow:       rgba(138, 120, 110, 0.08);
  --shadow-hover: rgba(138, 120, 110, 0.12);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 400;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  border: none;
}

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

/* ============================================================
   TYPOGRAPHY - WARM & FRIENDLY
   ============================================================ */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--text);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
}

h1 em {
  font-style: italic;
  color: var(--rose-text);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.25rem;
  font-weight: 650;
}

h4 {
  font-size: 1.05rem;
  font-weight: 600;
}

p {
  line-height: 1.8;
  color: var(--text-muted);
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose-text);
  margin-bottom: 16px;
}

/* ============================================================
   BUTTONS - SOFT & INVITING
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose) 100%);
  color: var(--white);
  padding: 14px 38px;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 8px 24px var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px var(--shadow-hover);
  background: linear-gradient(135deg, #E0A89F 0%, #E8C1BE 100%);
}

.btn-primary.btn-large {
  padding: 16px 48px;
  font-size: 16px;
}

.btn-primary.btn-full {
  width: 100%;
  text-align: center;
}

.btn-outline {
  display: inline-block;
  background: var(--white);
  color: var(--sage-text);
  padding: 14px 38px;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 600;
  border: 2.5px solid var(--sage-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow);
}

/* ============================================================
   NAVBAR - SOFT & MINIMAL
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(251, 249, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 232, 224, 0.4);
  height: 76px;
  box-shadow: 0 4px 16px var(--shadow);
}

.navbar-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--rose-text);
  text-transform: capitalize;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 44px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s ease;
  text-transform: capitalize;
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  color: var(--sage-text);
}

.nav-cta {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 24px;
  font-weight: 600 !important;
  box-shadow: 0 6px 18px rgba(180, 216, 204, 0.3);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(180, 216, 204, 0.4);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================================
   FEATURES - ORGANIC & CURVED
   ============================================================ */
.features {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
  margin-top: 76px;
}

.features-header {
  text-align: center;
  margin-bottom: 68px;
}

.features-header h2 {
  margin-bottom: 16px;
  color: var(--text);
}

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

.feature-card {
  padding: 48px 36px;
  background: linear-gradient(135deg, rgba(244, 217, 214, 0.25) 0%, rgba(212, 232, 224, 0.25) 100%);
  border: none;
  border-radius: 36px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  text-align: center;
  box-shadow: 0 6px 20px var(--shadow);
}

.feature-card:hover {
  transform: translateY(-12px);
  background: linear-gradient(135deg, rgba(232, 185, 179, 0.35) 0%, rgba(180, 216, 204, 0.35) 100%);
  box-shadow: 0 12px 40px var(--shadow-hover);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--sky) 100%);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(232, 185, 179, 0.3);
}

.feature-icon svg {
  width: 36px;
  height: 36px;
}

.feature-card h3 {
  font-size: 19px;
  margin-bottom: 14px;
  color: var(--text);
}

.feature-card p {
  font-size: 15px;
  line-height: 1.8;
}

/* ============================================================
   HERO - WELCOMING & OPEN
   ============================================================ */
.hero {
  padding: 100px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--sky) 50%, var(--cream) 100%);
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 232, 224, 0.5);
  border: 2.5px solid var(--sage-dark);
  color: var(--sage-text);
  padding: 10px 20px;
  border-radius: 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.hero-badge:hover {
  background: var(--sage);
}

.hero-content h1 {
  margin-bottom: 20px;
  color: var(--text);
}

.hero-content > p {
  font-size: 17px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-img {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 16px 48px var(--shadow);
}

.hero-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   STATS - GRADIENT SOFT
   ============================================================ */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--rose) 0%, var(--sage) 50%, var(--sky) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-divider {
  display: none !important;
}

.stat-number {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.95;
  margin-top: 8px;
}

/* ============================================================
   PRICING - WARM & ACCESSIBLE
   ============================================================ */
.pricing {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
}

.pricing-header {
  text-align: center;
  margin-bottom: 68px;
}

.pricing-header h2 {
  margin-bottom: 16px;
  color: var(--text);
}

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

.pricing-card {
  padding: 52px 44px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, var(--cream) 100%);
  border: none;
  border-radius: 32px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  box-shadow: 0 8px 24px var(--shadow);
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px var(--shadow-hover);
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sky) 100%);
  box-shadow: 0 12px 36px rgba(180, 216, 204, 0.3);
}

.pricing-card.featured:hover {
  box-shadow: 0 16px 52px rgba(180, 216, 204, 0.4);
}

.badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 16px rgba(232, 185, 179, 0.3);
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text);
}

.pricing-card.featured h3 {
  color: var(--white);
}

.price {
  font-size: 32px;
  font-weight: 800;
  color: var(--rose-text);
  margin-bottom: 24px;
}

.pricing-card.featured .price {
  color: var(--white);
}

.price span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-card.featured .price span {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-card ul {
  margin-bottom: 32px;
}

.pricing-card li {
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 232, 224, 0.3);
  color: var(--text);
}

.pricing-card.featured li {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-card li::before {
  content: '✓ ';
  color: var(--sage-text);
  font-weight: 700;
  margin-right: 8px;
}

.pricing-card.featured li::before {
  color: var(--white);
}

.pricing-card button {
  width: 100%;
}

/* ============================================================
   PROCESS - FLOWING & ORGANIC
   ============================================================ */
.process {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
}

.process-header {
  text-align: center;
  margin-bottom: 68px;
}

.process-header h2 {
  margin-bottom: 16px;
  color: var(--text);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step {
  padding: 44px 36px;
  background: linear-gradient(135deg, rgba(244, 217, 214, 0.3) 0%, rgba(217, 232, 245, 0.3) 100%);
  border: none;
  border-radius: 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 6px 20px var(--shadow);
}

.step:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(232, 185, 179, 0.4) 0%, rgba(180, 216, 204, 0.4) 100%);
  box-shadow: 0 12px 36px var(--shadow-hover);
}

.step-number {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--rose-text) 0%, var(--sage-text) 50%, var(--sky-text) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text);
}

.step p {
  font-size: 14px;
  line-height: 1.8;
}

/* ============================================================
   CONTACT - WARM GRADIENT
   ============================================================ */
.contact {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--rose) 0%, var(--sage) 50%, var(--sky) 100%);
  text-align: center;
  color: var(--white);
}

.contact-header {
  margin-bottom: 52px;
}

.contact-header .section-label {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-header h2 {
  color: var(--white);
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-header p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 52px;
}

.contact-item { }

.contact-item h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
}

.contact-item a {
  color: var(--white);
  font-weight: 700;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  text-decoration: underline;
  opacity: 0.9;
}

/* ============================================================
   MODAL - SOFT & INVITING
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(74, 74, 74, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.modal-content {
  background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
  border-radius: 36px;
  padding: 52px 48px;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 24px 56px rgba(74, 74, 74, 0.15);
  position: relative;
}

.modal-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text);
}

.modal-content > p {
  margin-bottom: 28px;
  color: var(--text-muted);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.modal-close:hover {
  color: var(--text);
  background: var(--sage);
}

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

.modal-content input,
.modal-content select {
  padding: 12px 16px;
  border: 2px solid var(--sage);
  border-radius: 16px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--text);
}

.modal-content input:focus,
.modal-content select:focus {
  outline: none;
  border-color: var(--rose-dark);
  box-shadow: 0 4px 12px rgba(232, 185, 179, 0.2);
}

/* ============================================================
   FOOTER - SOFT & WARM
   ============================================================ */
.footer {
  background: linear-gradient(180deg, #5A5A5A 0%, #4A4A4A 100%);
  color: #D0D0D0;
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  color: var(--cream);
  font-size: 15px;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #B0B0B0;
}

.footer-col ul { }

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #D0D0D0;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--rose);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px;
  font-size: 13px;
  text-align: center;
  color: #A0A0A0;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; padding: 80px 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .contact-info { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  body { font-size: 15px; }
  h1 { font-size: 1.8rem; }
  .navbar { height: 70px; }
  .navbar-content { padding: 0 20px; }
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--cream); border-bottom: 1px solid var(--sage); padding: 12px 0; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 14px 28px; color: var(--text); }
  .nav-links li a:hover { color: var(--sage-text); }
  .burger { display: flex; }
  .features { padding: 80px 0; margin-top: 70px; }
  .features-grid { grid-template-columns: 1fr; gap: 24px; }
  .feature-card { padding: 36px 24px; }
  .hero { padding: 80px 20px; }
  .hero-img img { height: 300px; }
  .stats { padding: 60px 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .pricing { padding: 80px 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process { padding: 80px 0; }
  .process-steps { grid-template-columns: 1fr; }
  .contact { padding: 80px 0; }
  .contact-info { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .modal-content { padding: 40px 32px; }
}
