/* Created: 2026-03-28 20:00 PHT */
:root {
  --blue: #3b7cf5;
  --blue-dark: #2a5fc4;
  --blue-light: #e8f0fe;
  --orange: #f5851f;
  --orange-dark: #d4700a;
  --orange-light: #fef3e8;
  --green: #00c896;
  --green-dark: #00a07a;
  --green-light: #e6f9f3;
  --text: #1a2332;
  --text-light: #5a6578;
  --bg: #ffffff;
  --bg-warm: #fafaf8;
  --bg-hero: #f4f7fb;
  --border: #e2e6ec;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(26,35,50,0.06);
  --shadow-lg: 0 8px 32px rgba(26,35,50,0.10);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Fraunces', serif; line-height: 1.2; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100; padding: 0 24px;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
}
.nav-logo img { height: 38px; }
.nav-logo span { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.25rem; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-light);
  font-size: 0.92rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-cta {
  background: var(--blue); color: #fff;
  padding: 9px 20px; border-radius: 8px;
  text-decoration: none; font-weight: 600;
  font-size: 0.88rem; transition: background 0.2s;
}
.nav-cta:hover { background: var(--blue-dark); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; }

/* SECTIONS */
section { padding: 80px 24px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--blue); margin-bottom: 12px;
}

/* HERO — two column layout */
.hero {
  background: var(--bg-hero);
  padding: 80px 24px 40px;
}
.hero-split {
  display: flex; align-items: center;
  gap: 40px; padding-top: 40px;
}
.hero-text { flex: 1; min-width: 280px; }
.hero-image { flex: 1; min-width: 280px; }
.hero-image img {
  width: 100%; max-width: 100%;
  max-height: 300px; object-fit: contain;
  border-radius: 12px;
  display: block; margin: 0 auto;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 20px; font-weight: 700;
  color: #000; text-align: left;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero .section-label { font-weight: 700; color: #000; }
.hero-bottom {
  text-align: center; max-width: 700px;
  margin: 40px auto 20px;
}
.hero-bottom p {
  font-size: 1.15rem; color: #000;
  font-weight: 500; margin-bottom: 32px;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue); color: #fff;
  padding: 14px 32px; border-radius: 10px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  transition: all 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-secondary {
  background: #fff; color: var(--text);
  padding: 14px 32px; border-radius: 10px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  border: 1.5px solid var(--border); transition: all 0.2s; display: inline-block;
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }

/* VIDEO */
.video-section { background: var(--bg); padding: 60px 24px; }
.video-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.video-inner h2 { font-size: 1.8rem; margin-bottom: 28px; }
.video-placeholder {
  background: var(--bg-hero); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
}
.video-embed {
  position: relative; padding-bottom: 56.25%; height: 0;
}
.video-embed iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.video-coming-soon {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--text-light); gap: 12px;
}
.video-coming-soon svg { opacity: 0.4; }
.video-coming-soon p { font-size: 0.95rem; }

/* HOW IT WORKS */
.how-it-works { background: var(--bg); }
.how-it-works h2 { text-align: center; font-size: 2rem; margin-bottom: 48px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.feature-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px; transition: all 0.25s;
}
.feature-card:hover {
  border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px);
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon.blue { background: var(--blue-light); color: var(--blue); }
.feature-icon.orange { background: var(--orange-light); color: var(--orange); }
.feature-icon.green { background: var(--green-light); color: var(--green); }
.feature-icon.purple { background: #ddd6fe; color: #7c3aed; }
.feature-card h3 { font-family: 'DM Sans', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-light); font-size: 0.95rem; }

/* DIFFERENCE */
.difference { background: var(--bg-warm); }
.difference-inner { max-width: 750px; margin: 0 auto; text-align: center; }
.difference h2 { font-size: 2rem; margin-bottom: 20px; }
.difference p { font-size: 1.08rem; color: var(--text-light); line-height: 1.8; }

/* PRICING */
.pricing { background: var(--bg); }
.pricing h2 { text-align: center; font-size: 2rem; margin-bottom: 16px; }
.pricing > .container > p { text-align: center; color: var(--text-light); margin-bottom: 48px; font-size: 1.05rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.pricing-card {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 36px 28px; position: relative; transition: all 0.25s;
}
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  padding-top: 48px;
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff;
  padding: 3px 14px;
  border-radius: 20px; font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  white-space: nowrap;
  line-height: 1.4;
}
.pricing-card h3 { font-family: 'DM Sans', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.pricing-amount { font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 700; margin-bottom: 4px; }
.pricing-amount span { font-size: 1rem; color: var(--text-light); font-family: 'DM Sans', sans-serif; }
.pricing-card ul { list-style: none; margin: 20px 0; }
.pricing-card li {
  padding: 6px 0; font-size: 0.92rem; color: var(--text-light);
  display: flex; align-items: flex-start; gap: 8px;
}
.pricing-card li::before { content: "\2713"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-note { font-size: 0.82rem; color: var(--text-light); font-style: italic; }

/* ABOUT THE FOUNDER */
.about-founder {
  background: linear-gradient(135deg, #1a2332 0%, #243044 100%);
  color: #fff;
}
.about-founder .about-inner { max-width: 750px; margin: 0 auto; }
.about-founder .section-label { color: rgba(255,255,255,0.7); }
.about-founder h2 { font-size: 2rem; margin-bottom: 20px; color: #fff; }
.about-founder p { font-size: 1.05rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 16px; }

/* CONTACT / INTRO CALL */
.contact { background: linear-gradient(135deg, #e8edf4 0%, #dde4ef 100%); }
.contact-inner { max-width: 620px; margin: 0 auto; }
.contact h2 { font-size: 2rem; margin-bottom: 12px; }
.contact-inner > p { color: var(--text-light); margin-bottom: 20px; font-size: 1.02rem; line-height: 1.7; }
.form-box {
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 8px 32px rgba(59,124,245,0.12);
  margin-top: 8px;
}
.form-box-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 20px;
  text-align: center;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--text); background: #fff; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  background: var(--blue); color: #fff; padding: 14px 32px;
  border-radius: 10px; border: none; font-weight: 600; font-size: 1rem;
  cursor: pointer; width: 100%; margin-top: 8px;
  font-family: 'DM Sans', sans-serif; transition: all 0.2s;
}
.btn-submit:hover { background: var(--blue-dark); }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success h3 { font-family: 'DM Sans', sans-serif; font-size: 1.3rem; margin-bottom: 10px; color: var(--green-dark); }
.form-success p { color: var(--text-light); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { text-align: center; padding: 16px; }
.step-num {
  width: 32px; height: 32px; background: var(--blue-light); color: var(--blue);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; margin-bottom: 10px;
}
.step h4 { font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; }
.step p { font-size: 0.82rem; color: var(--text-light); }

/* WHY SERVICEFLOW / OBJECTIONS */
.why-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
}
.why-section h2 {
  text-align: center;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 2em;
  margin-bottom: 8px;
}
.why-section .section-label {
  color: rgba(255,255,255,0.7);
}
.objections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.objection-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px;
}
.objection-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2em;
  color: #f4b87a;
  margin-bottom: 12px;
}
.objection-card p {
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 0.95em;
}
.objection-card strong {
  color: #fff;
}
.objection-answer {
  color: #7edcb5 !important;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 0;
}
.objection-sources {
  text-align: center;
  margin-top: 36px;
  font-size: 0.8em;
  color: rgba(255,255,255,0.4);
}

/* FOOTER */
.footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 48px 24px; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: 32px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { height: 30px; filter: brightness(10); }
.footer-brand span { font-family: 'Fraunces', serif; font-weight: 700; color: #fff; }
.footer-contact-form h4 {
  color: #fff; font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 600; margin-bottom: 12px;
}
.general-form { display: flex; flex-direction: column; gap: 8px; max-width: 280px; }
.general-form input,
.general-form textarea {
  padding: 8px 12px; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px; background: rgba(255,255,255,0.08);
  color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
}
.general-form input::placeholder,
.general-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.general-form input:focus,
.general-form textarea:focus { outline: none; border-color: var(--blue); }
.btn-footer-submit {
  background: var(--blue); color: #fff; border: none;
  padding: 8px 16px; border-radius: 6px; font-size: 0.85rem;
  font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}
.btn-footer-submit:hover { background: var(--blue-dark); }
.general-form-success { display: none; }
.general-form-success p { color: var(--green); font-size: 0.85rem; }
.footer-info { text-align: right; font-size: 0.85rem; line-height: 1.8; }
.footer-info a { color: var(--blue); text-decoration: none; }
.footer-info a:hover { text-decoration: underline; }

/* MOBILE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; padding: 20px 24px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
  }
  .hero { padding: 80px 24px 40px; }
  .hero-split { flex-direction: column; gap: 24px; }
  .hero h1 { font-size: 1.8rem; text-align: center; }
  .hero .section-label { text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-info { text-align: center; }
  .footer-contact-form { width: 100%; }
  .general-form { max-width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; }
  .objections-grid { grid-template-columns: 1fr; }
  .why-section h2 { font-size: 1.5em; }
  .form-box { padding: 24px 18px; }
}
