/* styles.css — global design tokens & layout */
/* NOTE: Replace hero-image URL with your exported Figma artboard image named hero.jpg in same folder. */

:root{
  --bg: #fbf8f6;         /* page background */
  --card: #ffffff;
  --muted: #8a8682;
  --accent: #0f0f0f;
  --soft-shadow: 0 10px 25px rgba(20,20,20,0.08);
  --strong-shadow: 0 20px 40px rgba(20,20,20,0.12);
  --rounded: 22px;
  --container: 1180px;
}

/* Dark Mode Variables */
body.dark-mode {
  --bg: #121212;         /* dark background */
  --card: #1e1e1e;       /* dark card background */
  --muted: #a0a0a0;      /* light grey text */
  --accent: #ffffff;     /* white text */
  --soft-shadow: 0 10px 25px rgba(0,0,0,0.3);
  --strong-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

body.dark-mode .site-header {
  background: rgba(18,18,18,0.95);
  border-bottom-color: rgba(255,255,255,0.1);
}

body.dark-mode .nav-link:hover {
  background: rgba(255,255,255,0.1);
}

body.dark-mode .btn-outline {
  border-color: rgba(255,255,255,0.2);
  color: #ffffff;
}

body.dark-mode .card.light {
  background: #1e1e1e;
  color: #ffffff;
}

body.dark-mode .service-card {
  background: #1e1e1e;
  color: #ffffff;
}

body.dark-mode .service-card .badge {
  background: #2a2a2a;
}

body.dark-mode .feature-card {
  background: #1e1e1e;
  color: #ffffff;
}

body.dark-mode .step-card {
  background: #1e1e1e;
  color: #ffffff;
}

body.dark-mode .faq-q {
  background: #1e1e1e;
  border-color: rgba(255,255,255,0.1);
  color: #ffffff;
}

body.dark-mode .faq-q .plus {
  color: #ffffff;
}

body.dark-mode .answer {
  color: #a0a0a0;
}

/* Dark mode toggle button */
.dark-mode-toggle {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
}

.dark-mode-toggle:hover {
  background: rgba(0,0,0,0.05);
}

body.dark-mode .dark-mode-toggle:hover {
  background: rgba(255,255,255,0.1);
}

.dark-mode-toggle.dark {
  color: #ffd700;
}

.dark-mode-toggle.light {
  color: #333;
}

/* reset */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--bg);
  color:var(--accent);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
  font-size:18px;
}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  backdrop-filter: blur(6px);
  background:rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(0,0,0,0.03);
  z-index:100;
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}
.logo{
  font-family: "Playfair Display", serif;
  font-weight:700;
  font-size:28px;
  letter-spacing:-0.5px;
}
.logo-img {
  height: 54px;       /* keeps logo the same visual scale as original text logo */
  display: block;
}

.logo-tag {
  font-family: "Poppins", sans-serif;
  font-size:12px;           /* very small as you requested */
  font-weight:600;
  color:var(--muted);
  margin-top:4px;
  line-height:1;
  letter-spacing:0.2px;
}
.main-nav{
  display:flex;
  gap:22px;
}
.nav-link{
  color:var(--accent);
  text-decoration:none;
  font-weight:600;
  padding:8px;
  border-radius:8px;
}
.nav-link:hover{ background: rgba(0,0,0,0.03) }

/* Buttons */
.btn{
  font-weight:700;
  border:0;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn-pill{
  padding:10px 18px;
  border-radius:999px;
  background:var(--accent);
  color:#fff;
}
.btn-ghost{
  background:transparent;
  border:1px solid rgba(0,0,0,0.06);
  color:var(--accent);
}
.btn-primary{
  background:#0f0f0f;
  color:#fff;
  padding:18px 28px;
  border-radius:30px;
  box-shadow: var(--soft-shadow);
  text-decoration:none;
}
.btn-primary.large{ padding:18px 50px; font-size:18px; }
/* spacing for Start Your Journey button */
.start-journey-wrap {
  margin-top: 28px; /* moves the whole wrapper down - change value to suit */
  display: flex;
  justify-content: center;
}

/* extra safety so the button keeps its look and spacing */
.start-btn {
  margin-top: 0; /* ensures no double margin if existing rules exist */
}

.btn-outline{
  background:transparent;
  border-radius:28px;
  padding:16px 26px;
  border:2px solid rgba(0,0,0,0.08);
  color:var(--accent);
  margin-left:16px;
  text-decoration:none;
}

/* HERO */
.hero{
  padding:64px 0 36px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr 480px;
  gap:40px;
  align-items:center;
}
.hero-title{
  font-family:"Poppins", "Playfair Display", serif;
  font-weight:800;
  font-size:64px;
  margin:0 0 18px;
  line-height:0.95;
  letter-spacing:-1px;
}
.hero-sub{
  color:var(--muted);
  font-size:18px;
  max-width:620px;
  margin-bottom:26px;
}
.hero-ctas{display:flex;gap:12px}
.hero-right{ display:flex; justify-content:center; align-items:center; }
.hero-image{
  width:420px;
  height:520px;
  border-radius:18px;
  background-image: url('assets/hero.png');
  background-size: cover;
  background-position: 60% 30%;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  transform: translateY(0px);
}

/* arrow central */
.scroll-arrow{ display:flex; justify-content:center; margin-top:30px; margin-bottom:20px; }
.circle-btn{
  background:#0f0f0f; color:#fffffff1; width:72px; height:72px; border-radius:50%;
  border:0; font-size:22px; box-shadow: var(--strong-shadow); cursor:pointer;
}
.circle-btn:hover{ transform:translateY(-4px) }

/* Section titles */
.section-title{ font-family:"Poppins"; font-weight:800; font-size:40px; margin:28px 0 8px; }
.centered{ text-align:center }
.lead{ color:var(--muted); max-width:920px; margin:0 auto 26px; }

/* split card */
.split-card{ display:flex; gap:28px; align-items:stretch; margin-top:28px; }
.card{ flex:1; border-radius:28px; padding:34px; box-shadow: var(--soft-shadow); overflow:hidden; }
.card.dark{ background:#0f0f0f; color:#fff; position:relative; }
.card.light{ background:var(--card); }
/* Solution image inside the right card */
.solution-center {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* actual image */
.solution-img {
  width: 140px;     /* adjust as needed: 120-200px are typical values */
  height: auto;
  display: block;
  object-fit: contain;
}


/* pill items inside */
.pill{ background:rgba(255,255,255,0.03); border-radius:12px; padding:16px; display:inline-block; margin:10px; border:1px solid rgba(255,255,255,0.06); }
.problem-grid{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:18px }

/* bullet lists */
.bullet-list{ margin:18px 0 0 18px; color:inherit; }
.bullet-list li{ margin:8px 0; }

/* services grid */
.card-grid{ display:grid; gap:26px; margin-top:36px }
.card-grid.three{ grid-template-columns: repeat(3, 1fr); }
.service-card{
  background:var(--card);
  border-radius:18px;
  padding:28px;
  box-shadow: var(--soft-shadow);
  transition: transform .24s ease, box-shadow .24s ease;
}
.service-card .badge{
  width:52px;height:52px;border-radius:10px;background:#faf7f5;display:flex;align-items:center;justify-content:center;font-size:18px;box-shadow: 0 6px 12px rgba(0,0,0,0.06);
  margin-bottom:12px;
}
.service-card h4{ margin:6px 0 12px; font-size:22px; }
.service-list{ margin:12px 0; color:var(--muted) }
.learn-more{ color:var(--accent); font-weight:700; text-decoration:none; cursor:pointer; display:inline-block; margin-top:18px; }

/* feature grid */
/* feature grid — fixed 3 columns on desktop, wraps extra cards below */
.feature-grid{
  display: grid;
  gap: 26px;
  margin-top: 28px;
  grid-template-columns: repeat(3, 1fr);   /* always 3 per row */
}

.feature-card{ background:var(--card); border-radius:18px; padding:28px; box-shadow: var(--soft-shadow); transition: transform .18s ease, box-shadow .18s ease; }

/* steps */
.steps-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap:20px; margin-top:22px; align-items:stretch; }
.step-card{ background:var(--card); border-radius:16px; padding:22px; text-align:center; box-shadow: var(--soft-shadow); }
.step-badge{ width:48px;height:48px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:#0f0f0f;color:#fff;margin-bottom:12px }

/* faq */
.faq-list{ max-width:900px; margin:26px auto; }
.faq-item{ margin-bottom:12px; }
.faq-q{
  width:100%;
  text-align:left;
  padding:18px 20px;
  font-weight:700;
  font-size:22px;
  border-radius:12px;
  background:var(--card);
  border:1px solid rgba(0,0,0,0.03);
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.faq-q .plus{ font-size:36px; opacity:0.75 }
.answer{
  max-height:0;
  overflow:hidden;
  transition: max-height .32s ease, padding .24s ease;
  padding:0 20px;
  background:transparent;
}

/* footer */
.site-footer{ background:#0f0f0f; color:#fff; padding:60px 0; margin-top:40px; }
.footer-inner{ display:flex; gap:40px; align-items:flex-start; justify-content:space-between; }
.footer-inner .col{ flex:1; max-width:360px; }

/* hover effects used in many places */
.hover-scale:hover{ transform: translateY(-6px); box-shadow: var(--strong-shadow) }
.hover-raise:hover{ transform: translateY(-8px); box-shadow: var(--strong-shadow) }

/* responsiveness */
@media (max-width:1100px){
  .hero-grid{ grid-template-columns: 1fr 360px }
  .hero-title{ font-size:64px }
  .card-grid.three{ grid-template-columns: repeat(2,1fr) }
  .steps-grid{ grid-template-columns: repeat(2, 1fr) }
}
@media (max-width:760px){
  .hero-grid{ grid-template-columns: 1fr; gap:22px; text-align:center }
  .hero-image{ margin:0 auto; width:320px; height:420px; }
  .hero-title{ font-size:42px }
  .nav-inner{ gap:12px }
  .main-nav{ display:none }
  .card-grid.three{ grid-template-columns: 1fr }
  .feature-grid{ grid-template-columns: 1fr }
  .steps-grid{ grid-template-columns: 1fr }
  .footer-inner{ flex-direction:column; gap:22px }
}
@media (max-width:1100px){
  .feature-grid{
    grid-template-columns: repeat(2, 1fr);  /* 2 cards per row on tablet */
  }
}

@media (max-width:760px){
  .feature-grid{
    grid-template-columns: 1fr;  /* 1 card per row on mobile */
  }
}
