/* ===================================
   GLOBAL RESET & BASE
=================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===================================
   COLORS & TOKENS
=================================== */
:root {
  --primary: #4f8cff;         /* CTA blue */
  --primary-dark: #3c6ed6;
  --accent: #ffb547;          /* Highlight accent */
  --text-dark: #1a1a1a;
  --text-light: #f9f9f9;
  --bg-dark: #0d0f14;         /* Hero / CTA background */
  --section-light: #f7f9fb;
  --radius: 8px;
  --shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* ===================================
   TYPOGRAPHY
=================================== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: inherit;
}

.center { text-align: center; }

@media(max-width:768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
}

/* ===================================
   BUTTONS
=================================== */
.btn {
  display: inline-block;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn.large {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.btn.small {
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
}

/* ===================================
   NAVIGATION
=================================== */
.nav-bar {
  background: transparent;
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
  transition: background 0.3s ease;
}

.nav-bar.scrolled {
  background: rgba(13,15,20,0.85);
  backdrop-filter: blur(6px);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}

.brand .accent {
  color: var(--accent);
}

.nav-links a {
  margin-left: 2rem;
  color: #fff;
  font-weight: 500;
}

.nav-links a.btn-primary.small {
  margin-left: 2rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
}

@media(max-width:768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--bg-dark);
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .nav-links.show {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
}

/* ===================================
   HERO SECTION
=================================== */
.hero {
  background: var(--bg-dark);
  color: var(--text-light);
  padding-top: 100px;  /* account for fixed nav */
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  gap: 2rem;
}

.hero-text h1 {
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-actions .btn + .btn {
  margin-left: 1rem;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius);
}

@media(max-width:768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions .btn + .btn {
    margin-left: 0;
    margin-top: 0.8rem;
  }
}

/* ==========================
   TRUST / SOCIAL PROOF SECTION
========================== */
.social-proof {
  background: var(--section-light);
  padding: 80px 0;
}

.featured-client {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.featured-client .client-logo {
  max-width: 180px;
  margin-bottom: 1rem;
}

.featured-client blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.8rem;
}

.client-name {
  font-weight: 600;
  font-size: 1rem;
  color: #555;
}

.trust-signal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.trust-item {
  background: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 220px;
  text-align: center;
}

.trust-item .icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.5rem;
}


/* ===================================
   VALUE SECTION
=================================== */
.value {
  background: #fff;
  padding: 80px 0;
}

.section-head {
  max-width: 650px;
  margin: 0 auto 3rem auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
}

/* ===================================
   WORKFLOW SECTION (dark)
=================================== */
.workflow {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0;
}

.showcase-content {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 3rem;
  align-items: center;
}

.checklist li {
  margin-bottom: 0.7rem;
  padding-left: 1.5rem;
  position: relative;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

@media(max-width:768px) {
  .showcase-content {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   RESULTS / CASE STUDIES
=================================== */
.results {
  background: #fff;
  padding: 80px 0;
}

.results .cards-grid {
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
}

.results .card {
  text-align: center;
}

.results .card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* ===================================
   FINAL CTA STRIP
=================================== */
.final-cta {
  background: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
  padding: 80px 0;
}

.final-cta .btn {
  margin-top: 1.5rem;
}

/* ===================================
   FOOTER
=================================== */
.footer {
  background: #111;
  color: #ddd;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  margin-bottom: 0.5rem;
}

.copy {
  text-align: center;
  font-size: 0.85rem;
  color: #999;
}

/* ==========================
   HOW-IT-WORKS PAGE
========================== */

/* Page hero for all non-home pages */
.page-hero {
  padding-top: 120px;   /* offset to prevent overlap */
  padding-bottom: 60px;
  text-align: center;
}

.page-hero.dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.page-hero .subtitle {
  margin-top: 0.8rem;
  font-size: 1.1rem;
  opacity: 0.85;
}


/* Steps grid */
.process-steps {
  background: #fff;
  padding: 80px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 2rem;
}

.step-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* FAQ section */
.faq {
  background: var(--section-light);
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 1rem 0;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* ==========================
   PRICING PAGE
========================== */

/* Page hero for all non-home pages */
.page-hero {
  padding-top: 120px;   /* offset to prevent overlap */
  padding-bottom: 60px;
  text-align: center;
}

.page-hero.dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.page-hero .subtitle {
  margin-top: 0.8rem;
  font-size: 1.1rem;
  opacity: 0.85;
}

.pricing-tiers {
  background: #fff;
  padding: 80px 0;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 2rem;
}

.tier-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tier-card h2 {
  margin-bottom: 0.5rem;
}

.tier-price {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.8rem 0 1.2rem 0;
  color: var(--primary);
}

.tier-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
}

.tier-features {
  list-style: none;
  margin: 1rem 0 2rem 0;
  text-align: left;
}

.tier-features li {
  margin-bottom: 0.7rem;
  padding-left: 1.4rem;
  position: relative;
}

.tier-features li::before {
  content: "✔";
  color: var(--accent);
  position: absolute;
  left: 0;
}

.tier-card .badge {
  background: var(--accent);
  color: #000;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.tier-card.featured {
  border: 2px solid var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* ==========================
   ABOUT PAGE
========================== */

/* Page hero for all non-home pages */
.page-hero {
  padding-top: 120px;   /* offset to prevent overlap */
  padding-bottom: 60px;
  text-align: center;
}

.page-hero.dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.page-hero .subtitle {
  margin-top: 0.8rem;
  font-size: 1.1rem;
  opacity: 0.85;
}

.about-story {
  background: #fff;
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 2.5rem;
  align-items: center;
}

.about-text p + p {
  margin-top: 1rem;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Values */
.values {
  background: var(--section-light);
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

/* Team */
.team {
  background: #fff;
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 2rem;
  margin-top: 3rem;
  justify-items: center;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

/* ==========================
   CONTACT PAGE
========================== */

.contact-section {
  background: #fff;
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 3rem;
  align-items: start;
}

.contact-form h2,
.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-form form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.info-list {
  list-style: none;
  margin: 1.5rem 0;
}

.info-list li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.contact-cta p {
  margin-bottom: 0.8rem;
}
