/* ============================================================
   NY Digital — style.css
   A clean, professional, no-animation stylesheet
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #2d2d3a;
  background: #ffffff;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --blue:         #2563eb;
  --blue-dark:    #1d4ed8;
  --blue-light:   #eff6ff;
  --orange:       #f97316;
  --orange-dark:  #ea580c;
  --orange-light: #fff7ed;
  --orange-mid:   #fed7aa;
  --green:        #10b981;
  --green-light:  #d1fae5;
  --wa-green:     #25D366;
  --wa-dark:      #128C7E;
  --navy:         #0f172a;
  --text:         #2d2d3a;
  --text-mid:     #4b5563;
  --text-light:   #6b7280;
  --border:       #e5e7eb;
  --bg-light:     #f8fafc;
  --white:        #ffffff;

  --radius:      8px;
  --radius-lg:   12px;
  --shadow:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg:   0 10px 25px rgba(0,0,0,.08);

  --max-w:       1160px;
  --section-pad: 80px;
}

/* ── Utilities ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: var(--section-pad) 0; }

.bg-light { background: var(--bg-light); }

.section-header {
  max-width: 620px;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-mid);
  font-size: 1.0625rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 14px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

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

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

.btn-whatsapp {
  background: var(--wa-green);
  color: var(--white);
  border-color: var(--wa-green);
}
.btn-whatsapp:hover { background: var(--wa-dark); border-color: var(--wa-dark); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover { background: var(--blue-light); }

.btn-sm { padding: 9px 18px; font-size: 0.875rem; }

.btn-full { width: 100%; justify-content: center; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -.02em;
}

.main-nav { margin-left: auto; }

.main-nav ul {
  display: flex;
  gap: 4px;
}

.main-nav a {
  display: block;
  padding: 6px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius);
}

.main-nav a:hover { color: var(--blue); background: var(--blue-light); }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 96px 0 80px;
}

.hero-label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}

.hero-content h1 br { display: block; }

.hero-sub {
  font-size: 1.125rem;
  color: #cbd5e1;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero .btn-primary { background: var(--blue); border-color: var(--blue); }
.hero .btn-outline  { color: var(--white); border-color: rgba(255,255,255,.35); }
.hero .btn-outline:hover { background: rgba(255,255,255,.07); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}

.stat-item { text-align: left; }

.stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.8125rem;
  color: #94a3b8;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  background: var(--bg-light);
}

.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-light);
  flex-shrink: 0;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.tech-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 600;
}

.tech-badge img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .7;
}

/* ── About ────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.about-text .lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 18px;
}

.about-text p { color: var(--text-mid); margin-bottom: 16px; }

.about-highlight {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 3px solid var(--blue);
  background: var(--blue-light);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about-highlight blockquote {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--blue-dark);
  font-weight: 500;
}

.founder-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.founder-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.founder-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.founder-info > p {
  font-size: 0.875rem;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 10px;
}

.founder-bio {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.pillar-list { display: flex; flex-direction: column; gap: 10px; }

.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
}

.pillar-icon { font-size: 1.1rem; }

/* ── Services ─────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card > p { color: var(--text-mid); font-size: 0.9375rem; margin-bottom: 18px; }

.service-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-features li {
  font-size: 0.875rem;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

/* ── Products ─────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
}

.product-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.product-desc {
  color: var(--text-mid);
  font-size: 0.9375rem;
  margin-bottom: 20px;
  line-height: 1.65;
}

.product-items {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-items li {
  font-size: 0.875rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}

.product-items li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.875rem;
}

.product-featured {
  border-color: var(--blue);
  border-width: 2px;
  box-shadow: var(--shadow-lg);
}

.product-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 14px;
}

.product-tag-green {
  background: #16a34a;
}

.product-inhouse {
  border-color: #16a34a;
  border-width: 2px;
}

.product-inhouse h3 {
  color: #15803d;
}

/* ── Process ──────────────────────────────────────────────── */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 16px;
  background: var(--blue-light);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--blue);
}

.step-content { padding: 0 20px; }

.step-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-content p { color: var(--text-mid); font-size: 0.9375rem; }

.process-connector {
  width: 80px;
  height: 2px;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 32px;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-tag { margin-bottom: 14px; }

.contact-info h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.contact-info > p { color: var(--text-mid); margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item div { display: flex; flex-direction: column; gap: 2px; }
.contact-item strong { font-size: 0.8125rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: .04em; }
.contact-item a, .contact-item span { color: var(--navy); font-weight: 500; font-size: 0.9375rem; }
.contact-item a:hover { color: var(--blue); }

/* ── Contact Form ─────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.form-group label span { color: var(--blue); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

.form-group textarea { resize: vertical; }

.form-success {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 0.9375rem;
  font-weight: 500;
}

.form-errors {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fca5a5;
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 0.875rem;
}

.form-errors p { margin-bottom: 4px; }
.form-errors p:last-child { margin-bottom: 0; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }

.footer-tagline {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #93c5fd;
}

.footer-linkedin:hover { color: var(--white); }

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 0.875rem;
  color: #94a3b8;
}

.footer-col a:hover { color: var(--white); }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px !important; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
}

.footer-contact-list svg { flex-shrink: 0; margin-top: 2px; color: #4f8ef7; }

.footer-contact-list a { color: #94a3b8; }
.footer-contact-list a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.8125rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid     { grid-template-columns: 1fr; }
  .about-sidebar  { order: -1; }
  .founder-card   { max-width: 420px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .header-cta { display: none; }

  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
    margin-left: 0;
  }

  .main-nav.is-open { display: block; }

  .main-nav ul { flex-direction: column; gap: 2px; }

  .services-grid  { grid-template-columns: 1fr; }
  .products-grid  { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .process-connector {
    width: 2px;
    height: 32px;
    margin-top: 0;
  }

  .hero-stats {
    gap: 24px;
  }

  .trust-bar .container { flex-direction: column; align-items: flex-start; gap: 20px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .hero { padding: 64px 0 56px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* ── Active Nav Link ──────────────────────────────────────── */
.main-nav a.active {
  color: var(--blue);
  background: var(--blue-light);
  font-weight: 600;
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 56px;
}

.page-hero .section-tag { margin-bottom: 16px; }

.page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 18px;
  color: var(--white);
}

.page-hero-sub {
  font-size: 1.0625rem;
  color: #cbd5e1;
  max-width: 620px;
  line-height: 1.7;
}

/* ── Home Summary Cards ───────────────────────────────────── */
.home-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.home-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--text);
}

.home-card:hover { border-color: var(--blue); }

.home-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.home-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
}

.home-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
}

.home-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 4px;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: 56px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.cta-banner-inner p {
  color: #94a3b8;
  font-size: 0.9375rem;
}

/* ── Service h2 override (on services page h2 acts as card title) */
.service-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

/* ── Product h2 override */
.product-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

/* ── Process Detail (process page) ───────────────────────── */
.process-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.process-detail-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  align-items: start;
}

.process-detail-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  padding-top: 4px;
}

.process-detail-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-detail-lead {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}

.process-detail-content p {
  color: var(--text-mid);
  margin-bottom: 16px;
}

.process-detail-content h3 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-light);
  margin-bottom: 10px;
  margin-top: 20px;
}

.process-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.process-checklist li {
  font-size: 0.9375rem;
  color: var(--text);
  padding-left: 22px;
  position: relative;
}

.process-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.process-output {
  background: var(--blue-light);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* ── Responsive additions ─────────────────────────────────── */
@media (max-width: 1024px) {
  .home-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .home-cards     { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
  .process-detail-card { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .process-detail-number { font-size: 1.75rem; }
}

/* ── Print ────────────────────────────────────────────────── */
@media print {
  .site-header, .hero-cta, .contact-form-wrap, .nav-toggle { display: none; }
  body { color: #000; background: #fff; }
  .hero { background: #000; color: #fff; -webkit-print-color-adjust: exact; }
}

/* ════════════════════════════════════════════════════════════
   HOMEPAGE REVAMP — SMB-Focused Sections
   ════════════════════════════════════════════════════════════ */

/* ── Home Hero ────────────────────────────────────────────── */
.home-hero {
  background: linear-gradient(160deg, #fff7ed 0%, #fffbeb 60%, #f0fdf4 100%);
  padding: 88px 0 72px;
  border-bottom: 2px solid var(--orange-mid);
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}
.home-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  border: 1px solid var(--orange-mid);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--orange-dark);
  margin-bottom: 22px;
}
.home-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--navy);
  margin-bottom: 20px;
}
.highlight-orange { color: var(--orange); }
.home-hero-sub {
  font-size: 1.125rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.home-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.home-hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .875rem;
  color: var(--text-light);
}
.home-hero-proof strong { color: var(--text); }
.home-hero-visual {
  background: var(--white);
  border: 2px solid var(--orange-mid);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-stat-box {
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
}
.hero-stat-box.orange { background: var(--orange-light); border: 1px solid var(--orange-mid); }
.hero-stat-box.blue   { background: var(--blue-light); border: 1px solid #bfdbfe; }
.hero-stat-box.green  { background: var(--green-light); border: 1px solid #6ee7b7; }
.hero-stat-box.navy   { background: var(--navy); }
.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.orange .hero-stat-num { color: var(--orange-dark); }
.blue   .hero-stat-num { color: var(--blue); }
.green  .hero-stat-num { color: var(--green); }
.navy   .hero-stat-num { color: var(--white); }
.hero-stat-label { font-size: .75rem; font-weight: 600; color: var(--text-mid); }
.navy .hero-stat-label { color: rgba(255,255,255,.7); }

/* ── Local Trust Bar ──────────────────────────────────────── */
.local-trust { padding: 24px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.local-trust-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.local-trust-label { font-size: .8125rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; flex-shrink: 0; }
.city-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.city-badge {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 20px;
  background: var(--orange-light); border: 1px solid var(--orange-mid);
  font-size: .8125rem; font-weight: 600; color: var(--orange-dark);
}

/* ── Pain Points ──────────────────────────────────────────── */
.pain-section { background: var(--bg-light); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pain-card {
  background: var(--white);
  border: 2px solid var(--orange-mid);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.pain-card:hover { border-color: var(--orange); }
.pain-emoji { font-size: 2rem; margin-bottom: 14px; }
.pain-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.0625rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.pain-card p { font-size: .9rem; color: var(--text-mid); line-height: 1.65; }

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar-section { background: var(--orange); padding: 52px 0; }
.stats-bar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center;
}
.stats-bar-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem; font-weight: 800;
  color: var(--white); line-height: 1;
}
.stats-bar-label { font-size: .875rem; color: rgba(255,255,255,.85); margin-top: 6px; font-weight: 500; }

/* ── WhatsApp Feature ─────────────────────────────────────── */
.wa-feature-section {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 60%, #047857 100%);
  padding: 80px 0; color: var(--white);
}
.wa-feature-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.wa-feature-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px; padding: 6px 14px;
  font-size: .75rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: #6ee7b7; margin-bottom: 18px;
}
.wa-feature-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; margin-bottom: 16px; line-height: 1.15;
}
.wa-feature-section p { color: rgba(255,255,255,.8); font-size: 1.0625rem; margin-bottom: 28px; }
.wa-feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.wa-feature-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9375rem; color: rgba(255,255,255,.9);
}
.wa-feature-list li::before { content: '✓'; color: #6ee7b7; font-weight: 700; flex-shrink: 0; }
.wa-feature-visual {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  min-height: 300px; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 40px 32px; color: rgba(255,255,255,.4);
}
.wa-feature-visual svg { opacity: .5; margin: 0 auto 14px; }
.wa-feature-visual p { font-size: .875rem; }

/* ── Why Us ───────────────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.why-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 28px; border: 1px solid var(--border);
  border-radius: var(--radius-lg); background: var(--white);
  box-shadow: var(--shadow);
}
.why-card:hover { border-color: var(--orange); }
.why-icon {
  width: 50px; height: 50px; border-radius: var(--radius);
  background: var(--orange-light); color: var(--orange);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.0625rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.why-card p { font-size: .875rem; color: var(--text-mid); line-height: 1.65; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { background: var(--bg-light); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 0;
}
.testimonial-card:hover { border-color: var(--orange-mid); box-shadow: var(--shadow-md); }
.star-rating { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-quote {
  font-size: .9375rem; color: var(--text);
  line-height: 1.7; font-style: italic;
  margin-bottom: 20px; flex: 1;
}
.testimonial-quote::before { content: '\201C'; font-size: 1.5rem; color: var(--orange); font-style: normal; line-height: 0; vertical-align: -.25em; margin-right: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange-light); color: var(--orange-dark);
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: .875rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 2px solid var(--orange-mid);
}
.testimonial-author strong { display: block; font-size: .9rem; font-weight: 700; color: var(--navy); }
.testimonial-author span   { font-size: .8125rem; color: var(--text-light); }

/* ── Header WhatsApp Link ─────────────────────────────────── */
.header-wa {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: var(--radius);
  background: var(--wa-green); color: var(--white);
  font-size: .8125rem; font-weight: 600; flex-shrink: 0;
}
.header-wa:hover { background: var(--wa-dark); }

/* ── Responsive — new sections ────────────────────────────── */
@media (max-width: 1024px) {
  .home-hero-grid { grid-template-columns: 1fr; }
  .home-hero-visual { display: none; }
  .wa-feature-grid { grid-template-columns: 1fr; }
  .wa-feature-visual { display: none; }
}
@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .home-hero-btns { flex-direction: column; }
  .home-hero-btns .btn { width: 100%; justify-content: center; }
  .local-trust-inner { gap: 12px; }
}

/* ── Service Category Section ─────────────────────────────── */
.service-category { margin-bottom: 64px; }
.service-category:last-child { margin-bottom: 0; }
.service-category-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px; padding-bottom: 16px;
  border-bottom: 2px solid var(--orange-mid);
}
.service-category-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--orange-light); color: var(--orange);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.service-category-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.375rem; font-weight: 800; color: var(--navy);
}
.service-category-header p { font-size: .875rem; color: var(--text-mid); margin-top: 2px; }

/* ── Price Badge on Service Cards ─────────────────────────── */
.service-card { position: relative; }
.price-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--orange); color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: .75rem; font-weight: 700;
  padding: 4px 10px; border-radius: 6px;
  letter-spacing: .02em;
}
.price-badge-green { background: var(--wa-green); }
.price-badge-blue  { background: var(--blue); }

/* ── Popular service card ─────────────────────────────────── */
.service-card-popular {
  border-color: var(--orange) !important;
  border-width: 2px !important;
}
.service-card-popular .popular-ribbon {
  position: absolute; top: -1px; left: 20px;
  background: var(--orange); color: var(--white);
  font-size: .6875rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; padding: 3px 10px;
  border-radius: 0 0 6px 6px;
}

/* ── Founder card update ──────────────────────────────────── */
.founder-exp-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange-light); border: 1px solid var(--orange-mid);
  border-radius: 20px; padding: 4px 12px;
  font-size: .75rem; font-weight: 700; color: var(--orange-dark);
  margin-bottom: 10px;
}

/* ── Pricing Table (products page) ───────────────────────── */
.pricing-section { background: var(--bg-light); }
.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 48px;
}
.pkg-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  position: relative;
}
.pkg-card-popular { border-color: var(--orange); border-width: 2px; }
.pkg-icon { font-size: 2rem; margin-bottom: 14px; }
.pkg-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 6px;
}
.pkg-price {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 4px;
}
.pkg-price span { font-size: .9rem; font-weight: 500; color: var(--text-mid); }
.pkg-period { font-size: .8rem; color: var(--text-light); margin-bottom: 18px; }
.pkg-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; flex: 1; }
.pkg-features li { font-size: .875rem; color: var(--text); padding-left: 20px; position: relative; }
.pkg-features li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.pkg-btn { display: block; text-align: center; padding: 11px 20px; border-radius: var(--radius); font-weight: 700; font-size: .875rem; border: 2px solid var(--orange); color: var(--orange-dark); }
.pkg-btn:hover { background: var(--orange-light); }
.pkg-btn-filled { background: var(--orange); color: var(--white); }
.pkg-btn-filled:hover { background: var(--orange-dark); }

/* ── Contact Page Improvements ────────────────────────────── */
.contact-whatsapp-bar {
  background: linear-gradient(135deg, #064e3b, #065f46);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 40px;
}
.contact-whatsapp-bar h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 4px;
}
.contact-whatsapp-bar p { font-size: .9rem; color: rgba(255,255,255,.75); }

@media (max-width: 768px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .service-category-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .contact-whatsapp-bar { flex-direction: column; }
}

/* ── Products Page Redesign & Coming Soon SaaS Tools ──────── */
.coming-soon-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.coming-soon-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(37, 99, 235, 0.12);
  pointer-events: none;
}

.coming-soon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff7ed;
  color: var(--orange-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--orange-mid);
}

.coming-soon-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.btn-waitlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
  text-align: center;
  margin-top: 16px;
  transition: all 0.2s ease;
}

.btn-waitlist:hover {
  background: var(--blue-light);
  border-color: var(--blue-dark);
  color: var(--blue-dark);
}

.services-redirect-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1e293b 100%);
  border-radius: var(--radius-lg);
  padding: 48px 24px;
  color: var(--white);
  text-align: center;
  margin-top: 56px;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--orange);
  box-shadow: var(--shadow-lg);
}

.services-redirect-content {
  max-width: 680px;
  margin: 0 auto;
}

.services-redirect-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.services-redirect-content p {
  color: #cbd5e1;
  font-size: 0.9375rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ── Homepage Mission Section ──────────────────────────────── */
.home-mission-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .home-mission-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

