:root {
  --primary: #E07A3A;
  --primary-dark: #C4652E;
  --secondary: #1E293B;
  --navy: #273549;
  --accent: #334155;
  --bg: #fafaf9;
  --bg-dark: #1E293B;
  --text: #2c2c2c;
  --text-light: #64748b;
  --text-muted: #a8a29e;
  --border: #e7e5e4;
  --white: #fff;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text); line-height: 1.6; background: var(--bg); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
a { color: var(--primary); text-decoration: none; }

/* Nav */
.nav { position: sticky; top: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); z-index: 100; padding: 14px 0; }
.nav .container { display: flex; justify-content: space-between; align-items: center; }
.nav-brand { font-size: 1.3rem; font-weight: 700; color: var(--secondary); }
.nav-brand span { color: var(--primary); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text-light); font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover { color: var(--primary); }
.btn { display: inline-block; padding: 10px 24px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; border: none; cursor: pointer; transition: all 0.2s; text-align: center; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--secondary); color: var(--secondary); background: transparent; }
.btn-outline:hover { background: var(--secondary); color: var(--white); }
.btn-large { padding: 16px 40px; font-size: 1.05rem; border-radius: 10px; }
.btn-block { width: 100%; display: block; }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero { padding: 80px 0 60px; background: linear-gradient(135deg, rgba(30,41,59,0.88) 0%, rgba(39,53,73,0.85) 50%, rgba(51,65,85,0.82) 100%), url('/images/hero-palawan.jpg') center/cover no-repeat; color: var(--white); text-align: center; overflow: hidden; position: relative; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(180deg, transparent, var(--bg)); }
.hero h1 { font-size: 3.2rem; line-height: 1.15; max-width: 750px; margin: 0 auto 20px; font-weight: 800; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero .subtitle { font-size: 1.2rem; color: rgba(255,255,255,0.8); max-width: 650px; margin: 0 auto 36px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-mock { max-width: 500px; margin: 0 auto; background: rgba(255,255,255,0.1); border-radius: 16px; padding: 32px; backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.15); position: relative; z-index: 1; }
.mock-days { font-size: 4rem; font-weight: 800; color: var(--primary); line-height: 1; }
.mock-label { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-top: 4px; }
.mock-bar { height: 6px; background: rgba(255,255,255,0.15); border-radius: 3px; margin: 20px 0 8px; }
.mock-bar-fill { height: 100%; width: 35%; background: var(--primary); border-radius: 3px; }
.mock-phase { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* Social Proof */
.proof { padding: 50px 0; text-align: center; border-bottom: 1px solid var(--border); }
.proof-stats { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.proof-stat .num { font-size: 2rem; font-weight: 700; color: var(--secondary); }
.proof-stat .label { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }

/* How It Works */
.how-section { padding: 70px 0; }
.how-section h2, .features h2, .countries-section h2, .pricing-section h2, .report-section h2 { text-align: center; font-size: 2rem; color: var(--secondary); margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--text-light); margin-bottom: 40px; font-size: 1.05rem; }
.steps { display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; }
.step { flex: 1; min-width: 200px; max-width: 250px; text-align: center; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 700; margin: 0 auto 14px; }
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: 0.9rem; color: var(--text-light); }

/* Features */
.features { padding: 70px 0; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feature-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.feature-card .icon { font-size: 2rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--secondary); }
.feature-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }

/* Countries Grid */
.countries-section { padding: 70px 0; }
.countries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.country-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; transition: all 0.2s; cursor: default; }
.country-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.country-card .flag { font-size: 2.5rem; }
.country-card h3 { font-size: 1rem; margin: 8px 0 4px; }
.country-card .meta { font-size: 0.8rem; color: var(--text-muted); }
.country-card .cost { font-weight: 600; color: var(--primary); font-size: 0.9rem; margin-top: 4px; }

/* Report Section */
.report-section { padding: 70px 0; background: linear-gradient(135deg, var(--secondary) 0%, var(--navy) 100%); color: var(--white); }
.report-section h2 { color: var(--white); }
.report-section .section-sub { color: rgba(255,255,255,0.7); }
.report-form { max-width: 640px; margin: 0 auto; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 36px; backdrop-filter: blur(4px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 5px; color: rgba(255,255,255,0.8); }
.form-group input, .form-group select { width: 100%; padding: 11px 14px; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; font-size: 0.95rem; font-family: inherit; color: var(--white); background: rgba(255,255,255,0.08); }
.form-group input::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--primary); }
.form-group select option { color: var(--text); background: var(--white); }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 8px; }
.checkbox-label { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; cursor: pointer; background: rgba(255,255,255,0.06); padding: 7px 12px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }
.checkbox-label:has(input:checked) { background: rgba(233,69,96,0.15); border-color: var(--primary); }
.checkbox-label input { accent-color: var(--primary); }
.form-footer { text-align: center; margin-top: 10px; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* Pricing */
.pricing-section { padding: 70px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; }
.pricing-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius); padding: 32px; text-align: center; position: relative; }
.pricing-card.featured { border-color: var(--primary); }
.pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary); color: var(--white); font-size: 0.75rem; font-weight: 600; padding: 4px 16px; border-radius: 20px; }
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.pricing-card .price { font-size: 2.5rem; font-weight: 700; color: var(--secondary); }
.pricing-card .price-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.pricing-card .best-for { font-size: 0.85rem; color: var(--text-light); font-style: italic; margin-bottom: 20px; }
.pricing-card ul { list-style: none; text-align: left; margin-bottom: 24px; }
.pricing-card li { padding: 6px 0; font-size: 0.9rem; color: var(--text-light); padding-left: 24px; position: relative; }
.pricing-card li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* Email Capture */
.email-section { padding: 60px 0; background: var(--secondary); color: var(--white); text-align: center; }
.email-section h2 { font-size: 1.6rem; margin-bottom: 8px; color: var(--white); }
.email-section p { color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.email-row { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.email-row input { flex: 1; min-width: 250px; padding: 14px 16px; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; font-size: 1rem; background: rgba(255,255,255,0.08); color: var(--white); }
.email-row input::placeholder { color: rgba(255,255,255,0.4); }
.email-row button { padding: 14px 28px; background: var(--primary); color: var(--white); border: none; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; }

/* Footer */
.footer { padding: 40px 0; text-align: center; font-size: 0.85rem; color: var(--text-muted); border-top: 1px solid var(--border); }
.footer a { color: var(--text-light); margin: 0 12px; }
.footer .disclaimer { font-size: 0.75rem; margin-top: 12px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero .subtitle { font-size: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .proof-stats { gap: 24px; }
  .steps { flex-direction: column; align-items: center; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px; border-bottom: 1px solid var(--border); }
  .mobile-toggle { display: block; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
}
