/* ============================= */
/* Root Variables & Base Styles  */
/* ============================= */

:root {
  --red: #e60023;
  --red-600: #c3001d;
  --bg: #ffffff;
  --ink: #111111;
  --muted: #6b7280;
  --ring: rgba(230,0,35,.25);
  --radius: 16px;
}
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================= */
/* Navbar                        */
/* ============================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #eee;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: relative;
}

/* Brand / Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
}
.logo-icon {
  width: 50px;
  height: 50px;
  display: block;
}


.menu {
  display: flex;
  gap: 20px;
  align-items: center;
}
.menu a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}
.mobile-toggle {
  display: none !important;
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 999px;
  outline: none;
}

/* ============================= */
/* Buttons                       */
/* ============================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.btn-primary {
  background: var(--red);
  color: white;
}

a.btn-primary {
    color: white;
}

.btn-primary:hover {
  background: var(--red-600);
}
.btn-outline {
  border: 1px solid var(--red);
  color: var(--red);
  background: transparent;
}

/* ============================= */
/* Hero Section                  */
/* ============================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 64px);
  padding: 60px 0;
  background: url(/images/city.webp) no-repeat center center / cover;
  text-align: center;
  position: relative;
}


.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 12px;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.75) 0%,
    rgba(255, 255, 255, 0.55) 100%
  );
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: -1;
}

@media (max-width: 640px) {
  .hero-content::before {
    border-radius: 0px;
  }
}

.hero h1 {
  font-size: clamp(28px, 6vw, 52px);
  line-height: 1.2;
  margin: 0 0 20px;
  color: #111;
}

.hero p.lead {
  font-size: clamp(16px, 2.8vw, 20px);
  margin: 0 0 24px;
  color: #222;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}



/* ============================= */
/* Cards & Grid                  */
/* ============================= */
.grid {
  display: grid;
  gap: 20px;
}
.cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.03);
}
.card h3 {
  margin: 0 0 6px;
}
.kicker {
  color: var(--red);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}

/* ============================= */
/* Benefits                      */
/* ============================= */
.benefits {
  padding: 48px 0;
}

/* ============================= */
/* Process Steps                 */
/* ============================= */
.process {
  padding: 60px 0;
  background: #fff;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.step {
  background: #fafafa;
  border-radius: var(--radius);
  padding: 30px 20px;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

/* Heart logo badge with number */
.step-badge {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.badge-logo {
  width: 100%;
  height: 100%;
  display: block;
}
.badge-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 1px 1px rgba(0,0,0,.25);
}

.step h3 {
  margin: 0 0 10px;
  font-size: 18px;
}
.step p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}


/* ============================= */
/* Use Cases                     */
/* ============================= */
.usecases {
  padding: 60px 0;
  background: #ffffff;
}
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.usecase-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
.usecase-top {
  padding: 18px;
  background: linear-gradient(180deg, #fff, #f8f8f8);
  border-bottom: 1px solid #f0f0f0;
}
.usecase-bottom {
  padding: 20px;
}
.usecase-bottom h3 {
  margin: 0 0 10px;
  font-size: 18px;
}
.usecase-bottom ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
}

/* Chat avatar using logo */
.avatar.va {
  background: rgba(230,0,35,0.10);
  border: 1px solid rgba(230,0,35,0.25);
}
.logo-badge {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}


/* ============================= */
/* Phone Mockups (Chat)          */
/* ============================= */
.phone {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  border: 1px solid #e7e7e7;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #ffffff, 0 6px 16px rgba(0,0,0,.06);
  position: relative;
}
.phone-notch {
  width: 96px;
  height: 16px;
  background: #e9e9e9;
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.phone-screen {
  padding: 28px 14px 14px 14px;
  border-radius: 24px;
  overflow: hidden;
}
.chat-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 10px;
}
.chat-row.left {
  flex-direction: row;
}
.chat-row.right {
  flex-direction: row-reverse;
}
.avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.avatar.va {
  background: #ffe6ea;
}
.bubble {
  max-width: 78%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid #eaeaea;
  background: #ffffff;
  font-size: 14px;
  line-height: 1.45;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.chat-row.right .bubble {
  background: #fff5f6;
  border-color: #ffd5db;
}
.chat-meta {
  text-align: center;
  color: #98a2b3;
  font-size: 12px;
  margin-top: 6px;
}

/* ============================= */
/* Packages & Pricing            */
/* ============================= */
.packages {
  padding: 48px 0;
}
.price {
  font-size: 28px;
  font-weight: 900;
  margin: 8px 0 16px;
  color: var(--ink);
}
.badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
}

/* ============================= */
/* Testimonials                  */
/* ============================= */
.testimonials {
  padding: 48px 0;
  background: #fafafa;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.quote {
  font-size: 16px;
  color: #333;
}

/* ============================= */
/* Footer                        */
/* ============================= */
.footer {
  padding: 36px 0;
  color: #555;
  border-top: 1px solid #eee;
  margin-top: 40px;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer a {
    color: var(--red);
}

/* ============================= */
/* FAQ                           */
/* ============================= */
.faq {
  padding: 60px 0;
  background: #fafafa;
}
.faq h2 {
  margin: 0 0 24px;
  font-size: 28px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow .3s ease;
}
.faq-item[open] {
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  font-size: 18px;
  transition: transform .2s ease;
}
.faq-item[open] summary::after {
  content: "–";
  transform: translateY(-50%);
}
.faq-item p {
  padding: 0 20px 20px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================= */
/* One Hour Section              */
/* ============================= */
.onehour {
  padding: 72px 0;
  background: radial-gradient(1200px 600px at 10% -10%, rgba(230,0,35,0.06), transparent 60%), radial-gradient(900px 500px at 100% 0%, rgba(230,0,35,0.05), transparent 60%), #ffffff;
}
.onehour-title {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 1.15;
}
.onehour-sub {
  margin: 0 0 28px;
  color: var(--muted, #6b7280);
  font-size: 16px;
}
.onehour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.oh-card {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 10px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #eee;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.oh-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  border-color: rgba(230,0,35,0.25);
}
.oh-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(230,0,35,0.08);
  color: var(--red, #e60023);
}
.oh-heading {
  margin: 6px 0 2px;
  font-size: 18px;
  line-height: 1.25;
}
.oh-text {
  margin: 0;
  color: var(--muted, #6b7280);
  font-size: 14px;
  line-height: 1.6;
}
.onehour-note {
  margin: 16px 0 0;
  color: var(--muted, #6b7280);
  font-size: 12px;
}

/* ============================= */
/* Homepage Contact Form         */
/* ============================= */

.contact-home {
  padding: 80px 0;
  background: #f9fafb;
}

.contact-wrap {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}

.contact-title {
  margin: 0 0 8px;
  font-size: 32px;
}

.contact-sub {
  margin: 0 0 32px;
  color: var(--muted, #6b7280);
  font-size: 16px;
}

.contact-form {
  background: #ffffff;
  padding: 36px;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  min-width: 0;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  min-width: 0;
}

.form-field label {
  font-weight: 600;
  font-size: 14px;
  color: #111;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--red, #e60023);
  box-shadow: 0 0 0 3px rgba(230,0,35,0.2);
  outline: none;
}

.btn-submit {
  align-self: center;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  background: var(--red, #e60023);
  transition: background .2s ease, transform .2s ease;
}

.btn-submit:hover {
  background: var(--red-600, #c3001d);
  transform: translateY(-2px);
}

.form-note {
  font-size: 13px;
  color: var(--muted, #6b7280);
  margin: 0;
  text-align: center;
}

/* Mobile fix */
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}



/* ============================= */
/* About Page (Company + Founder)*/
/* ============================= */
.founder {
  padding: 80px 0;
  background: #f9fafb;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}
.founder-photo {
  display: flex;
  justify-content: center;
}
.photo-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 260px;
}
.founder-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}

/* Wings closer to portrait */
.wing {
  position: absolute;
  top: 50%;
  width: 140px; /* slightly smaller for balance */
  transform: translateY(-50%);
  z-index: 1;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.08));
}
.wing-left {
  left: -20px; /* tightened */
}
.wing-right {
  right: -20px; /* tightened */
}

.founder-info h2 {
  margin: 0 0 10px;
  font-size: 28px;
}
.founder-info h3 {
  margin: 0 0 20px;
  font-size: 20px;
  color: #e60023;
}
.founder-info p {
  margin-bottom: 16px;
  color: #444;
}

/* Responsive */
@media (max-width: 960px) {
  .founder-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .wing {
    width: 100px;
  }
  .wing-left {
    left: -10px;
  }
  .wing-right {
    right: -10px;
  }
}
@media (max-width: 640px) {
  .photo-wrapper {
    width: 230px;
    height: 230px;
  }
  .founder-img {
    width: 190px;
    height: 190px;
  }
  .wing {
    width: 80px;
  }
  .wing-left {
    left: -0px;
  }
  .wing-right {
    right: -0px;
  }
}



/* ============================= */
/* Responsive                    */
/* ============================= */
@media (max-width: 1024px) {
  .onehour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 960px) {
  .usecase-grid {
    grid-template-columns: 1fr 1fr;
  }
  .founder-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 720px) {
  .menu {
    display: none;
    flex-direction: column;
    gap: 14px;
    background: #ffffff;
    padding: 20px;
    position: absolute;
    top: 64px;
    right: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
  }
  .mobile-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--red);
    color: var(--red);
    background: transparent;
  }
  .usecase-grid {
    grid-template-columns: 1fr;
  }
  .contact-title {
    font-size: 26px;
  }
  .contact-form {
    padding: 24px;
  }
}
@media (max-width: 640px) {
  .onehour {
    padding: 56px 0;
  }
  .onehour-title {
    font-size: 26px;
  }
  .onehour-grid {
    grid-template-columns: 1fr;
  }
}
