/* ============================================================
   OMNI FOOD — STYLES.CSS
   Design: Premium, warm, modern tiffin service
   ============================================================ */

/* CSS VARIABLES */
:root {
  --primary: #FF6B2C;
  --primary-dark: #E55A1F;
  --primary-light: #FFF3EC;
  --secondary: #2E7D32;
  --secondary-light: #E8F5E9;
  --bg: #F8F9FA;
  --white: #FFFFFF;
  --text: #1A1A2E;
  --text-muted: #666;
  --text-light: #999;
  --border: #E8ECEF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-primary: 0 4px 20px rgba(255,107,44,0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font: 'Poppins', sans-serif;
  --transition: 0.25s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* CONTAINER */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* SECTION */
.section { padding: 80px 0; }
.hidden { display: none !important; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.25; margin-bottom: 12px; color: var(--text); }
.section-desc { font-size: 1rem; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-primary); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text-muted); border-color: var(--border); }
.btn-ghost:hover { color: var(--primary); border-color: var(--primary); background: var(--primary-light); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }
.btn:active { transform: scale(0.97); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 1.5rem; }
.logo-text { font-size: 1.2rem; font-weight: 400; color: var(--text); }
.logo-text strong { font-weight: 700; color: var(--primary); }
.logo--light .logo-text { color: rgba(255,255,255,0.8); }
.logo--light .logo-text strong { color: #fff; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-light); }
.nav-cta { background: var(--primary); color: #fff !important; }
.nav-cta:hover { background: var(--primary-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 4px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
  overflow: hidden;
  padding: 80px 0 0;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,107,44,0.15) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(46,125,50,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding-bottom: 80px; position: relative; }
.hero-content { color: #fff; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.highlight {
  background: linear-gradient(135deg, var(--primary), #FF9557);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 460px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; animation: fadeUp 0.6s 0.3s ease both; }
.hero-trust { display: flex; align-items: center; gap: 24px; animation: fadeUp 0.6s 0.4s ease both; }
.trust-item { display: flex; flex-direction: column; }
.trust-num { font-size: 1.4rem; font-weight: 700; color: #fff; }
.trust-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* HERO VISUAL */
.hero-visual { position: relative; animation: fadeIn 0.8s 0.3s ease both; }
.hero-blob {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,44,0.2) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  color: #fff;
  animation: float 3s ease-in-out infinite;
}
.hero-card--main {
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.meal-emoji { font-size: 3.5rem; }
.meal-info { flex: 1; }
.meal-info strong { display: block; font-size: 1.1rem; margin-bottom: 4px; }
.meal-info span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.meal-badge {
  background: var(--secondary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}
.hero-card--float {
  position: absolute;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
}
.hero-card--a { top: -20px; right: -20px; animation-delay: 0.5s; }
.hero-card--b { bottom: 10px; left: -20px; animation-delay: 1s; }
.hero-wave { margin-top: -2px; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.benefit-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.benefit-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw { background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%); color: #fff; }
.hiw .section-header { color: #fff; }
.hiw .section-tag { background: rgba(255,107,44,0.2); }
.hiw .section-title { color: #fff; }
.hiw-steps { display: flex; align-items: flex-start; gap: 0; }
.hiw-step { flex: 1; text-align: center; padding: 40px 24px; }
.step-num { font-size: 0.75rem; font-weight: 700; color: var(--primary); letter-spacing: 0.1em; margin-bottom: 16px; }
.step-icon { font-size: 2.8rem; margin-bottom: 20px; }
.hiw-step h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; color: #fff; }
.hiw-step p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; max-width: 240px; margin: 0 auto; }
.hiw-connector { display: flex; align-items: center; padding-top: 80px; }
.connector-line { flex: 1; height: 2px; background: linear-gradient(90deg, rgba(255,107,44,0.4), rgba(255,107,44,0.8), rgba(255,107,44,0.4)); }

/* ============================================================
   PLANS
   ============================================================ */
.plans-preview { background: var(--bg); }
.plans-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plans-cards--full { /* same */ }
.plan-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-card--popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255,107,44,0.1), var(--shadow-md);
}
.popular-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.plan-badge-wrap { min-height: 28px; margin-bottom: 4px; }
.plan-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}
.plan-badge--green { background: var(--secondary-light); color: var(--secondary); }
.plan-badge--orange { background: var(--primary-light); color: var(--primary); }
.plan-badge--purple { background: #EDE7F6; color: #6A1B9A; }
.plan-name { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }
.plan-price { font-size: 2rem; font-weight: 800; color: var(--text); line-height: 1; margin: 4px 0; }
.plan-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.plan-per { font-size: 0.8rem; color: var(--secondary); font-weight: 600; margin-bottom: 4px; }
.plan-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; line-height: 1.5; }
.plan-features { display: flex; flex-direction: column; gap: 8px; flex: 1; margin: 12px 0; }
.plan-features li { font-size: 0.85rem; color: var(--text-muted); }
.plans-cta { text-align: center; margin-top: 40px; }

/* ============================================================
   PLAN TOGGLE
   ============================================================ */
.plan-toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 48px; }
.toggle-label { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }
.toggle-switch { position: relative; display: inline-block; width: 52px; height: 28px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; cursor: pointer; inset: 0;
  background: #E0E0E0;
  border-radius: 50px;
  transition: background var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 4px; bottom: 4px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-slider { background: var(--primary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); }
.save-badge {
  display: inline-block;
  background: var(--secondary-light);
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 8px;
}
.plans-group-label { font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; color: var(--text); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: #FFC107; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-light); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; }
.cta-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: #fff; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.85); font-size: 1rem; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-section { margin-top: 80px; }
.table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.comparison-table th, .comparison-table td { padding: 14px 20px; text-align: center; border-bottom: 1px solid var(--border); }
.comparison-table th { background: var(--text); color: #fff; font-weight: 600; font-size: 0.85rem; }
.comparison-table td:first-child { text-align: left; font-weight: 500; color: var(--text); }
.comparison-table th:first-child { text-align: left; }
.comparison-table .highlight-col { background: var(--primary-light); color: var(--primary); font-weight: 600; }
.comparison-table tr:hover td { background: #f9f9f9; }
.comparison-table tr:hover td.highlight-col { background: #FFEDE3; }
.comparison-table tr:last-child td { border-bottom: none; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { margin-top: 80px; max-width: 720px; margin-left: auto; margin-right: auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  font-size: 0.95rem; font-weight: 600; color: var(--text);
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg); }
.faq-question.open { color: var(--primary); }
.faq-icon { font-size: 1.2rem; color: var(--primary); transition: transform var(--transition); flex-shrink: 0; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 18px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.faq-answer.open { display: block; }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  padding: 80px 0 80px;
  text-align: center;
  color: #fff;
  position: relative;
}
.page-hero--sm { padding: 60px 0; }
.page-hero .section-tag { background: rgba(255,107,44,0.2); }
.page-hero-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin: 12px 0 8px; color: #fff; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; }

/* ============================================================
   ORDER PAGE
   ============================================================ */
.order-section { background: var(--bg); }
.order-container { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: flex-start; }
.order-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 40px;
}

/* PROGRESS */
.form-progress {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.progress-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.progress-step.active .progress-dot { background: var(--primary); color: #fff; box-shadow: 0 0 0 4px rgba(255,107,44,0.2); }
.progress-step.done .progress-dot { background: var(--secondary); color: #fff; }
.progress-step span { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); }
.progress-step.active span { color: var(--primary); font-weight: 600; }
.progress-line { flex: 2; height: 2px; background: var(--border); transition: background var(--transition); }
.progress-line.done { background: var(--secondary); }

/* FORM STEPS */
.form-step { display: none; }
.form-step.active { display: block; animation: fadeUp 0.3s ease; }
.form-step-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 28px; color: var(--text); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.required { color: var(--primary); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,107,44,0.12);
}
.form-group input.error, .form-group textarea.error, .form-group select.error {
  border-color: #D32F2F;
}
.form-group textarea { resize: vertical; }
.error-msg { display: block; font-size: 0.78rem; color: #D32F2F; margin-top: 4px; min-height: 18px; }
.form-hint { display: block; font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }
.input-prefix { display: flex; gap: 0; border: 2px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: border-color var(--transition), box-shadow var(--transition); }
.input-prefix:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,107,44,0.12); }
.prefix {
  background: var(--bg);
  padding: 13px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border-right: 2px solid var(--border);
  white-space: nowrap;
}
.input-prefix input { border: none; border-radius: 0; flex: 1; }
.input-prefix input:focus { box-shadow: none; }

/* RADIO CARDS */
.radio-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.radio-card { cursor: pointer; }
.radio-card input { display: none; }
.radio-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition);
}
.radio-content:hover { border-color: var(--primary); background: var(--primary-light); }
.radio-card input:checked + .radio-content { border-color: var(--primary); background: var(--primary-light); box-shadow: 0 0 0 3px rgba(255,107,44,0.12); }
.radio-icon { font-size: 1.5rem; }
.radio-content strong { font-size: 0.85rem; color: var(--text); }
.radio-content small { font-size: 0.75rem; color: var(--text-light); }

/* ORDER SUMMARY */
.order-summary {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.summary-row:last-child { border-bottom: none; }
.summary-row .label { color: var(--text-muted); }
.summary-row .value { font-weight: 600; color: var(--text); }
.order-total {
  background: var(--primary-light);
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 1rem;
}
.order-total .total-label { color: var(--primary); }
.order-total .total-value { font-size: 1.4rem; color: var(--primary); }

/* CHECKBOX */
.checkbox-group { display: flex; flex-direction: column; gap: 4px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 0.88rem; color: var(--text-muted); }
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; accent-color: var(--primary); cursor: pointer; }
.inline-link { color: var(--primary); text-decoration: underline; }

/* PAYMENT NOTE */
.payment-note {
  background: #E8F5E9;
  border: 1px solid var(--secondary-light);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.payment-icon { font-size: 1.5rem; flex-shrink: 0; }
.payment-note strong { display: block; font-size: 0.9rem; color: var(--secondary); margin-bottom: 4px; }
.payment-note p { font-size: 0.83rem; color: var(--text-muted); }

/* FORM NAV */
.form-nav { display: flex; justify-content: flex-end; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }

/* SIDEBAR */
.order-sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-card--contact { background: var(--primary-light); border-color: rgba(255,107,44,0.2); }
.sidebar-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.sidebar-list { display: flex; flex-direction: column; gap: 10px; }
.sidebar-list li { font-size: 0.88rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.sidebar-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; }
.sidebar-testimonial {
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-testimonial p { font-size: 0.85rem; color: rgba(255,255,255,0.8); font-style: italic; margin: 8px 0 12px; }
.sidebar-testimonial strong { font-size: 0.8rem; color: var(--primary); }

/* ============================================================
   PLANS PAGE
   ============================================================ */
.plans-section { background: var(--bg); }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-section {
  min-height: calc(100vh - 68px);
  background: var(--bg);
  padding: 60px 0 80px;
  display: flex;
  align-items: flex-start;
}
.thankyou-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 32px;
  border: 1px solid var(--border);
}
.thankyou-animation { margin-bottom: 32px; position: relative; }
.checkmark-circle {
  width: 80px; height: 80px;
  margin: 0 auto;
  position: relative;
}
.checkmark-svg { width: 80px; height: 80px; }
.checkmark-circle-anim {
  stroke: var(--secondary);
  stroke-width: 2;
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: drawCircle 0.6s 0.2s ease forwards;
}
.checkmark-check {
  stroke: var(--secondary);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: drawCheck 0.4s 0.8s ease forwards;
}
.thankyou-title { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 8px; }
.thankyou-subtitle { font-size: 1.1rem; color: var(--primary); font-weight: 600; margin-bottom: 16px; }
.thankyou-desc { font-size: 0.95rem; color: var(--text-muted); max-width: 500px; margin: 0 auto 32px; line-height: 1.7; }
.thankyou-order-summary {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: left;
  margin-bottom: 32px;
  border: 1px solid var(--border);
}
.ty-step-row { display: flex; gap: 16px; flex-direction: column; }
.thankyou-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
  text-align: left;
}
.ty-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.ty-step:last-child { border-bottom: none; }
.ty-step-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.ty-step strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.ty-step p { font-size: 0.85rem; color: var(--text-muted); }
.thankyou-contact { margin-bottom: 32px; }
.thankyou-contact p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 12px; }
.thankyou-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.share-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.share-card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 16px; }
.share-buttons { display: flex; gap: 12px; justify-content: center; }
.share-btn {
  padding: 10px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.share-btn--whatsapp { background: #25D366; color: #fff; }
.share-btn--whatsapp:hover { background: #1DA851; transform: translateY(-2px); }
.share-btn--copy { background: var(--bg); color: var(--text); border: 2px solid var(--border); }
.share-btn--copy:hover { border-color: var(--primary); color: var(--primary); }

/* CHECKMARK ANIMATIONS */
@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #1A1A2E; padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin: 16px 0; line-height: 1.7; max-width: 300px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact span { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.footer-links a, .footer-links span { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .order-container { grid-template-columns: 1fr; }
  .order-sidebar { grid-row: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .sidebar-testimonial { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 999;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { width: 100%; padding: 14px 16px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { order: 1; }
  .hero-visual { order: 2; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; flex-wrap: wrap; }
  .hero-card--a, .hero-card--b { display: none; }
  .hiw-steps { flex-direction: column; gap: 0; }
  .hiw-connector { display: none; }
  .hiw-step { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .cta-inner { flex-direction: column; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .order-form-wrap { padding: 28px 20px; }
  .order-sidebar { grid-template-columns: 1fr; }
  .radio-group { grid-template-columns: 1fr; }
  .form-nav { flex-direction: column; }
  .thankyou-card { padding: 36px 24px; }
  .thankyou-actions { flex-direction: column; }
  .plans-cards { max-width: 100%; }
  .page-hero { padding: 60px 0 60px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { gap: 16px; }
  .hero-card--main { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .share-buttons { flex-direction: column; align-items: center; }
}
