/* style.css – Modern, professional, responsive */
:root {
  --primary: #e67e22;
  --primary-dark: #b85e0a;
  --secondary: #1e2a3e;
  --accent: #f39c12;
  --gray-100: #f8fafc;
  --gray-200: #e9eef3;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  --radius-lg: 1rem;
  --radius-md: 0.75rem;

  --ff-display: "Fraunces", Georgia, serif;
  --ff-body: "DM Sans", sans-serif;
  --ink-faint: #9a9a94;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--ff-body);
  background-color: var(--white);
  color: var(--gray-900);
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* demo banner */
.demo-banner {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: var(--primary);
  padding: 0.75rem 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-direction: row;
  align-items: center;
}
.demo-banner a {
  color: #ffedd5;
  text-decoration: none;
  margin-left: 0.5rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: all 0.2s ease-in-out;
}
.demo-banner a:hover {
  border-bottom: 1px solid #e67e22;
}
.demo-banner i {
  margin-right: 0.4rem;
}

/* navbar sticky */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  padding: 0.8rem 0;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo {
  font-size: 1.6rem;
  /* font-weight: 800; */
  letter-spacing: -0.02em;
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 800;
}
.logo .accent {
  color: var(--primary);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-phone {
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  font-size: 1rem;
}
.nav-phone i {
  color: var(--primary);
  margin-right: 0.4rem;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.cta-nav {
  font-size: 0.86rem;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(97deg, #0a1c2f, #1b3b4f), url("/image/hero.jpg");
  background-size: cover;
  background-position: right center; /* ← Keeps the right part visible */
  background-blend-mode: overlay;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero-container {
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: white;
  max-width: 800px;
}
.hero-content .accent {
  color: var(--accent);
}
.hero-subhead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 1.5rem 0 2rem;
  max-width: 600px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-large {
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-primary {
  background: var(--primary);
  border: none;
  color: white;
  font-weight: 700;
  border-radius: 2.5rem;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border: 1px solid white;
  color: white;
}
.btn-secondary:hover {
  background: white;
  color: var(--secondary);
}

/* Trust bar */
.trust-bar {
  background: var(--gray-100);
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.trust-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

/* form card */
.form-section {
  padding: 4rem 0;
  background: var(--gray-100);
}
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding-bottom: 20px;
}
.form-header {
  background: var(--secondary);
  color: white;
  padding: 1.8rem 2rem;
}
.form-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.form-badge {
  display: inline-block;
  background: var(--primary);
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  margin-top: 0.8rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2rem;
}
.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.input-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.input-group input,
.input-group select {
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--ff-body);
  transition: 0.2s;
}
.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
}
.radio-group .radio-options {
  display: flex;
  gap: 1rem;
  margin-top: 0.3rem;
}
.file-group input {
  padding: 0.5rem;
}
.photo-preview {
  margin-top: 0.5rem;
  max-width: 120px;
}
.photo-preview img {
  width: 100%;
  border-radius: 0.5rem;
}
.form-footer {
  padding: 0 2rem 2rem 2rem;
}
.btn-full {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}
.form-note {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 1rem;
  color: #5b6e8c;
}
.form-status {
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
}

/* services grid */
.services {
  padding: 4rem 0;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.subtitle {
  text-align: center;
  color: var(--accent);
  margin-bottom: 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--gray-100);
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  /* text-align: center; */
  transition: 0.2s;
}
.service-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* how it works */
.how-it-works {
  background: var(--secondary);
  color: white;
  padding: 4rem 0;
}
.steps {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.step {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  flex: 1;
  text-align: center;
}
.step h3 {
  font-size: 1.5rem;
  color: white;
  font-family: var(--ff-display);
}
.step-number {
  background: var(--primary);
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.ai-tag {
  display: inline-block;
  background: var(--accent);
  color: #1e293b;
  font-size: 0.75rem;
  padding: 0.2rem 0.8rem;
  border-radius: 2rem;
  margin-top: 0.5rem;
}
.ai-advantage {
  text-align: center;
  margin-top: 2.5rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 3rem;
}

/* testimonials */
.testimonials {
  padding: 4rem 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testi-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: 0.2s;
}
.stars {
  color: #f4b836;
  margin-bottom: 0.6rem;
}
.before-after {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.before-after img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.5rem;
}
.client {
  margin-top: 0.8rem;
  font-weight: 600;
}

/* footer */
.footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.6);
  padding: 2.5rem 0;
  
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-col a {
  color: #94a3b8;
  text-decoration: none;
  display: block;
  margin: 0.5rem 0;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.agency-credit {
  margin-top: 1rem;
  font-size: 0.8rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand {
  max-width: 280px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
}
.footer-info {
  font-size: 13px;
  line-height: 2;
}
.footer-info a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}
.footer-info a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 36px;
  padding-top: 24px;
   margin-bottom: 36px;
  padding-bottom: 24px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-credit {
  color: rgba(255, 255, 255, 0.35);
}
.footer-credit a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s;
}
.footer-credit a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ─────────────────────────────
       TOAST NOTIFICATION
    ───────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--secondary);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  opacity: 0;
  transition:
    transform 0.3s,
    opacity 0.3s;
  z-index: 999;
  pointer-events: none;
  max-width: 320px;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.agency {
  padding-top: 1.5rem; /* 24px */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem; /* 12px */
  font-size: 11px;
  font-weight: 700;
  color: rgb(156, 163, 175);
  letter-spacing: -0.025em;
}
.agency a {
   color: rgb(156, 163, 175);
  text-decoration: none;
  margin-left: 0.5rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: all 0.2s ease-in-out;
}
.agency a:hover {
  border-bottom: 1px solid #e67e22;
}

/* md:flex-row */
@media (min-width: 768px) {
  .agency {
    flex-direction: row;
  }
}

.agency-span {
  /* text-gray-300: sets text color to light gray */
  color: #d1d5db; 

  /* hidden: hides element by default (mobile-first) */
  display: none;
}

/* md: breakpoint (typically 768px in Tailwind) */
@media (min-width: 768px) {
  .agency-span {
    /* md:inline: displays as inline from 768px onwards */
    display: inline;
  }
}



@media (max-width: 900px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  /* .nav-container {
    flex-direction: column;
    gap: 0.8rem;
  } */
  .cta-nav {
    font-size: 0.75rem;
  }
  .nav-phone {
    font-size: 0.75rem;
  }

  .steps {
    flex-direction: column;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-card {
    display: none;
  }
  .form-section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hiw-steps::before {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .demo-banner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}
@media (max-width: 640px) {
  .nav-container {
    flex-direction: column;
    gap: 0.8rem;
  }
  .nav-actions {
    flex-direction: column;
    gap: 0.8rem;
  }
  .cta-nav {
    font-size: 0.85rem;
  }
  .nav-phone {
    font-size: 0.85rem;
    margin-right: 0;
  }

  .btn-outline {
    padding: 0.5rem 1.25rem;
  }
  .btn-full {
    padding: 0.7rem;
    font-size: 0.8rem;
  }
  .container {
    padding: 0 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
  .toggle-group {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
  }
  .hero {
    background-position: 85% center; /* or 'right center' but slightly offset if needed */
  }
}

/* from other */
.section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-headline {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-body {
  font-size: 16px;
  color: var(--gray-200);
  line-height: 1.7;
  margin-bottom: 32px;
  text-align: center;
}
.pitch-steps {
  list-style: none;
}
.pitch-step {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.pitch-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(217, 92, 40, 0.3);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.pitch-step-text {
  font-size: 15px;
  color: var(--gray-200);
  line-height: 1.5;
}
.pitch-step-text strong {
  color: var(--gray-100);
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.opt {
  color: var(--ink-faint);
  font-weight: 400;
}

.service-body {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
}

/* Modal overlay (full screen, click-outside to close) */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.75); /* semi-transparent dark overlay */
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  font-family: var(--ff-body);
  color: var(--gray-700);
  line-height: 1.5;
}

/* Modal container (relative for close button positioning) */
.modal-container {
  position: relative;
  max-width: 920px;
  width: 90%;
  margin: 1rem;
}

/* Close button (X) - positioned top-right relative to modal-container */
.modal-close-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--white);
  border: none;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-700);
  font-size: 1.1rem;
  transition: all 0.2s ease;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  background-color: var(--white);
  border: 1px solid var(--gray-200);
}

.modal-close-btn:hover {
  background-color: var(--gray-100);
  color: var(--primary);
  transform: scale(1.02);
}

/* Original card design (sleek, modern) */
.modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem 2rem 2.25rem 2rem;
  transition: all 0.2s ease;
  width: 100%;
}

/* Headline */
.modal-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.85rem;
  line-height: 1.25;
  color: var(--gray-900);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  border-left: 4px solid var(--primary);
  padding-left: 1.25rem;
}

/* Features list */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.25rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 0.1rem;
}

.feature-text {
  flex: 1;
}

.feature-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 0.3rem;
  font-family: var(--ff-body);
  letter-spacing: -0.2px;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.5;
}

/* CTA Block */
.cta-block {
  background-color: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin-top: 0.5rem;
  border: 1px solid var(--gray-200);
}

.cta-headline {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cta-headline i {
  color: var(--primary);
  font-size: 1.5rem;
}

.cta-body p {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 0;
  line-height: 1.5;
}

.cta-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed var(--primary);
  transition: all 0.2s;
  display: inline-block;
}

.cta-link:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary-dark);
}

/* Responsive (mobile friendly) */
@media (max-width: 640px) {
  .modal-card {
    padding: 1.5rem;
  }
  .modal-title {
    font-size: 1.5rem;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
  }
  .feature-item {
    gap: 0.85rem;
  }
  .feature-icon {
    width: 2rem;
    font-size: 1.25rem;
  }
  .feature-title {
    font-size: 1rem;
  }
  .feature-desc {
    font-size: 0.9rem;
  }
  .cta-block {
    padding: 1.25rem;
  }
  .cta-headline {
    font-size: 1.2rem;
  }
  .modal-close-btn {
    top: 0.5rem;
    right: 0.5rem;
    width: 2rem;
    height: 2rem;
  }
}

/* Hover effect on card */
.modal-card:hover {
  box-shadow:
    var(--shadow-lg),
    0 20px 35px -12px rgba(0, 0, 0, 0.12);
}

.how-step {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: white;
  line-height: 1.6;
}

.small {
  font-size: 0.75rem;
  color: var(--gray-800);
  font-style: italic;
  margin-top: 0.5rem;
}
