/*
Theme Name: Digital 2 Doorstep
Theme URI: https://digital2doorstep.com
Author: Steven Beeler
Author URI: https://digital2doorstep.com
Description: Custom theme for Digital 2 Doorstep — built for the WordPress.com Business plan. Replaces the static digital2doorstep HTML site with real WordPress templates (header.php, footer.php, page templates) instead of pasted Custom HTML blocks.
Version: 1.0
Requires PHP: 7.4
Text Domain: digital2doorstep
*/

/* ============================================================
   DOORSTEP DIGITAL — Shared Stylesheet
   Design: Clean & Modern · White + Electric Blue + Teal
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --blue:        #0A66F5;
  --blue-dark:   #0850C8;
  --blue-light:  #EBF2FF;
  --teal:        #06B6D4;
  --teal-light:  #E0F7FA;
  --grad:        linear-gradient(135deg, #0A66F5 0%, #06B6D4 100%);
  --grad-soft:   linear-gradient(135deg, rgba(10,102,245,0.08) 0%, rgba(6,182,212,0.08) 100%);
  --dark:        #0F172A;
  --dark-2:      #1E2A3A;
  --text:        #1A202C;
  --text-muted:  #64748B;
  --text-light:  #94A3B8;
  --border:      #E2E8F0;
  --surface:     #F8FAFC;
  --white:       #FFFFFF;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.10), 0 8px 20px rgba(0,0,0,0.06);
  --shadow-blue: 0 8px 30px rgba(10,102,245,0.25);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --nav-h:       72px;
  --max-w:       1200px;
  --transition:  all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ── Typography ───────────────────────────────────────────── */
.display-xl { font-size: clamp(2.8rem, 6vw, 5rem);  font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; }
.display-lg { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; line-height: 1.1;  letter-spacing: -0.025em; }
.display-md { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2;  letter-spacing: -0.02em; }
.display-sm { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; line-height: 1.3;  letter-spacing: -0.015em; }
.body-lg    { font-size: 1.125rem; line-height: 1.75; color: var(--text-muted); }
.body-md    { font-size: 1rem;     line-height: 1.7;  color: var(--text-muted); }
.body-sm    { font-size: 0.875rem; line-height: 1.6;  color: var(--text-muted); }
.label      { font-size: 0.75rem;  font-weight: 600;  letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); }
.gradient-text { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── Layout Utilities ─────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.section    { padding: clamp(60px, 8vw, 100px) 0; }
.section-sm { padding: clamp(40px, 6vw, 70px) 0; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header .label { margin-bottom: 12px; display: block; }
.section-header .display-md { margin-bottom: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr)); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }
.gap-4  { gap: 16px; }
.gap-6  { gap: 24px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-md);
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); border: none; white-space: nowrap;
}
.btn-primary {
  background: var(--grad); color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(10,102,245,0.35); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  background: var(--white); color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-secondary:hover { background: var(--blue-light); }
.btn-ghost {
  background: rgba(255,255,255,0.1); color: var(--white);
  border: 2px solid rgba(255,255,255,0.3); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: var(--radius-md); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; border-radius: var(--radius-sm); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-gradient {
  background: var(--grad); color: var(--white);
  border: none; box-shadow: var(--shadow-blue);
}
.card-surface { background: var(--surface); border-color: transparent; }

/* ── Badge / Chip ─────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600;
}
.badge-blue { background: var(--blue-light); color: var(--blue); }
.badge-teal { background: var(--teal-light); color: #0E7490; }
.badge-dark { background: rgba(255,255,255,0.15); color: var(--white); }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border-bottom: 1px solid rgba(226,232,240,0.6);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.2rem; font-weight: 800; color: var(--dark);
  letter-spacing: -0.02em; flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.nav-logo-icon svg { width: 20px; height: 20px; fill: none; stroke: white; stroke-width: 2.2; }
.nav-logo-img { height: 42px; width: auto; display: block; }
.footer-logo-badge { display: inline-flex; background: var(--white); padding: 10px 16px; border-radius: var(--radius-md); }
.footer-logo-badge .nav-logo-img { height: 36px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  transition: var(--transition);
}
.nav-link:hover { color: var(--text); background: var(--surface); }
.nav-link.active { color: var(--blue); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.nav-mobile { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px; box-shadow: var(--shadow-md); z-index: 999; flex-direction: column; gap: 4px; }
.nav-mobile .nav-link { padding: 12px 16px; font-size: 1rem; }
.nav-mobile .btn { width: 100%; justify-content: center; margin-top: 8px; }
.nav-mobile.open { display: flex; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; padding-top: var(--nav-h);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--dark);
  overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, #0A66F5, transparent 70%); top: -200px; right: -100px; animation-delay: 0s; }
.hero-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, #06B6D4, transparent 70%); bottom: -100px; left: -100px; animation-delay: -4s; }
.hero-orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, #7C3AED, transparent 70%); top: 50%; left: 30%; opacity: 0.2; animation-delay: -2s; }
@keyframes float { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(20px, -30px) scale(1.05); } 66% { transform: translate(-15px, 20px) scale(0.97); } }
.hero-content { position: relative; z-index: 1; padding: 80px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-text .label { color: var(--teal); margin-bottom: 20px; display: block; }
.hero-text .display-xl { color: var(--white); margin-bottom: 24px; }
.hero-text .body-lg { color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat-value { font-size: 1.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* Browser mockup */
.browser-mockup {
  background: #1E293B; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.4s ease;
}
.browser-mockup:hover { transform: perspective(1000px) rotateY(-2deg) rotateX(1deg); }
.browser-bar {
  background: #0F172A; padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-dot:nth-child(1) { background: #FF5F57; }
.browser-dot:nth-child(2) { background: #FFBD2E; }
.browser-dot:nth-child(3) { background: #28CA41; }
.browser-url {
  flex: 1; background: rgba(255,255,255,0.07); border-radius: 6px;
  padding: 6px 12px; font-size: 0.75rem; color: rgba(255,255,255,0.4);
  display: flex; align-items: center; gap: 6px;
}
.browser-screen { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.browser-screen-inner { width: 100%; height: 100%; background: #F8FAFC; }
.mock-nav { background: white; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #E2E8F0; }
.mock-logo-bar { display: flex; gap: 6px; }
.mock-logo-pill { height: 8px; background: #0A66F5; border-radius: 4px; }
.mock-logo-pill:first-child { width: 24px; }
.mock-logo-pill:last-child { width: 60px; background: #0F172A; }
.mock-links { display: flex; gap: 10px; }
.mock-link { height: 6px; background: #CBD5E1; border-radius: 3px; }
.mock-btn-pill { height: 22px; width: 64px; background: linear-gradient(135deg, #0A66F5, #06B6D4); border-radius: 11px; }
.mock-hero-area { padding: 28px 20px 20px; }
.mock-h1 { height: 14px; background: #0F172A; border-radius: 4px; width: 70%; margin-bottom: 8px; }
.mock-h1-2 { height: 14px; background: #0F172A; border-radius: 4px; width: 50%; margin-bottom: 12px; }
.mock-sub { height: 7px; background: #CBD5E1; border-radius: 3px; margin-bottom: 6px; }
.mock-sub-2 { height: 7px; background: #CBD5E1; border-radius: 3px; width: 75%; margin-bottom: 18px; }
.mock-cta-row { display: flex; gap: 8px; margin-bottom: 20px; }
.mock-cta { height: 28px; width: 100px; background: linear-gradient(135deg, #0A66F5, #06B6D4); border-radius: 7px; }
.mock-cta-ghost { height: 28px; width: 100px; border: 2px solid #0A66F5; border-radius: 7px; }
.mock-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; padding: 0 20px 20px; }
.mock-card { background: white; border: 1px solid #E2E8F0; border-radius: 8px; padding: 12px; }
.mock-card-icon { width: 24px; height: 24px; border-radius: 6px; background: linear-gradient(135deg, #EBF2FF, #E0F7FA); margin-bottom: 8px; }
.mock-card-line { height: 6px; background: #0F172A; border-radius: 3px; width: 60%; margin-bottom: 6px; }
.mock-card-text { height: 5px; background: #E2E8F0; border-radius: 3px; margin-bottom: 4px; }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: var(--dark); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 60% 50%, rgba(10,102,245,0.15) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; }
.page-hero .label { color: var(--teal); margin-bottom: 16px; display: block; }
.page-hero .display-lg { color: var(--white); margin-bottom: 20px; }
.page-hero .body-lg { color: rgba(255,255,255,0.65); }

/* ── Section Divider ──────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── Steps ────────────────────────────────────────────────── */
.step-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0; position: relative; }
.step-list::before { content: ''; position: absolute; top: 28px; left: 14%; right: 14%; height: 2px; background: linear-gradient(90deg, var(--blue), var(--teal)); z-index: 0; }
.step-item { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad); color: var(--white);
  font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: var(--shadow-blue);
}
.step-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }

/* ── Feature Icon ─────────────────────────────────────────── */
.feat-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--grad-soft); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
}
.feat-icon svg { width: 24px; height: 24px; stroke: var(--blue); stroke-width: 2; fill: none; }
.feat-title { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }

/* ── Pricing Cards ────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; align-items: stretch; }
.pricing-card { border-radius: var(--radius-xl); padding: 36px; border: 2px solid var(--border); background: var(--white); position: relative; transition: var(--transition); }
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--blue); background: var(--dark); }
.pricing-card .popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: white; padding: 5px 18px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700; white-space: nowrap; letter-spacing: 0.05em;
}
.pricing-name { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.pricing-card.featured .pricing-name { color: var(--teal); }
.pricing-card.featured .body-md { color: rgba(255,255,255,0.6); }
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.1); }
.pricing-card.featured .pricing-feature svg { stroke: var(--teal); }
.pricing-price { font-size: 3rem; font-weight: 800; color: var(--dark); line-height: 1; margin: 16px 0 4px; }
.pricing-card.featured .pricing-price { color: white; }
.pricing-period { font-size: 0.85rem; color: var(--text-muted); }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }
.pricing-divider { height: 1px; background: var(--border); margin: 24px 0; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text); }
.pricing-feature svg { width: 18px; height: 18px; stroke: var(--blue); flex-shrink: 0; margin-top: 1px; }
.pricing-card.featured .btn-primary { background: white; color: var(--blue); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.pricing-card.featured .btn-primary:hover { background: var(--blue-light); }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial-quote { font-size: 1.05rem; line-height: 1.7; color: var(--text); margin-bottom: 24px; font-style: italic; }
.testimonial-quote::before { content: '"'; font-size: 3rem; color: var(--blue); line-height: 0; vertical-align: -0.6em; margin-right: 4px; opacity: 0.3; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center;
  justify-content: center; font-weight: 800; color: white; font-size: 0.9rem;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }
.stars { color: #FBBF24; font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  background: var(--dark); padding: 80px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(10,102,245,0.2) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 600px; margin: 0 auto; }
.cta-inner .display-md { color: var(--white); margin-bottom: 16px; }
.cta-inner .body-lg { color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; text-align: center; }
.stat-value { font-size: 2.4rem; font-weight: 800; color: var(--dark); line-height: 1; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 6px; font-weight: 500; }

/* ── Logo Strip ───────────────────────────────────────────── */
.logo-strip { padding: 36px 0; border-bottom: 1px solid var(--border); }
.logo-strip-label { text-align: center; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 28px; }
.logo-strip-items { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.logo-strip-item { font-size: 0.85rem; font-weight: 700; color: var(--text-light); letter-spacing: -0.01em; padding: 6px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); transition: var(--transition); }
.logo-strip-item:hover { color: var(--text-muted); border-color: var(--text-light); }

/* ── Portfolio ────────────────────────────────────────────── */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.portfolio-card { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); background: var(--white); }
.portfolio-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.portfolio-thumb { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.portfolio-thumb-inner { width: 100%; height: 100%; }
.portfolio-info { padding: 24px; }
.portfolio-category { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); margin-bottom: 8px; }
.portfolio-title { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.portfolio-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.portfolio-tag { font-size: 0.75rem; padding: 4px 10px; border-radius: 100px; background: var(--surface); color: var(--text-muted); border: 1px solid var(--border); }

/* ── Filters ──────────────────────────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 48px; }
.filter-btn { padding: 8px 20px; border-radius: 100px; font-size: 0.875rem; font-weight: 500; cursor: pointer; border: 1.5px solid var(--border); background: var(--white); color: var(--text-muted); transition: var(--transition); }
.filter-btn.active, .filter-btn:hover { background: var(--blue); color: white; border-color: var(--blue); }

/* ── Contact ──────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); font-size: 0.95rem; color: var(--text);
  background: var(--white); transition: var(--transition); outline: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(10,102,245,0.1); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 40px; }
.contact-info { padding: 8px 0; }
.contact-info-title { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.contact-info-body { color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-item-icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--grad-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 2; }
.contact-item-label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); margin-bottom: 2px; }
.contact-item-value { font-size: 0.95rem; font-weight: 500; color: var(--dark); }
.contact-guarantee { background: var(--grad-soft); border: 1px solid rgba(10,102,245,0.15); border-radius: var(--radius-md); padding: 20px; margin-top: 32px; display: flex; align-items: flex-start; gap: 12px; }
.contact-guarantee-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--grad); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-guarantee-icon svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2.2; }
.contact-guarantee-text { font-size: 0.875rem; color: var(--text); line-height: 1.6; }
.contact-guarantee-text strong { color: var(--dark); font-weight: 700; display: block; margin-bottom: 2px; }
.contact-success-banner { background: linear-gradient(135deg, #10B981, #059669); color: white; border-radius: var(--radius-md); padding: 18px 22px; margin-bottom: 24px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.contact-success-banner svg { width: 22px; height: 22px; flex-shrink: 0; }
.contact-error-banner { background: #FEF2F2; color: #B91C1C; border: 1px solid #FCA5A5; border-radius: var(--radius-md); padding: 18px 22px; margin-bottom: 24px; font-weight: 600; }

/* ── About ────────────────────────────────────────────────── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--dark); padding: 32px; }
.about-values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-value { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; transition: var(--transition); }
.about-value:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.about-value-icon { font-size: 1.5rem; margin-bottom: 10px; }
.about-value-title { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.about-value-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.team-card { text-align: center; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 16px; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; color: white; }
.team-name { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.team-role { font-size: 0.875rem; color: var(--blue); font-weight: 600; margin-top: 4px; }
.team-bio { font-size: 0.875rem; color: var(--text-muted); margin-top: 10px; line-height: 1.6; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--blue); }
.faq-question { width: 100%; background: none; border: none; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; text-align: left; }
.faq-question-text { font-size: 0.975rem; font-weight: 600; color: var(--dark); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--grad-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { background: var(--grad); }
.faq-icon svg { width: 14px; height: 14px; stroke: var(--blue); transition: var(--transition); }
.faq-item.open .faq-icon svg { stroke: white; transform: rotate(180deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--dark); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .nav-logo-icon { background: var(--grad); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; margin-top: 8px; }
.footer-col-title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-link:hover { color: var(--white); }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-badges { display: flex; gap: 8px; }
.footer-badge { font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Scroll Reveal Animations ─────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Portfolio mini site mockups (was a page-level <style> tag) ─ */
.thumb-restaurant { background: linear-gradient(145deg, #1a0a00, #3D1C02); }
.thumb-salon      { background: linear-gradient(145deg, #1a0a1a, #4A1942); }
.thumb-hvac       { background: linear-gradient(145deg, #001a33, #003366); }
.thumb-bakery     { background: linear-gradient(145deg, #1a1000, #3D2800); }
.thumb-yoga       { background: linear-gradient(145deg, #001a0d, #003320); }
.thumb-auto       { background: linear-gradient(145deg, #0d0d0d, #1a1a2e); }

.mock-site { width:100%; height:100%; padding:14px; position:relative; }
.mock-site-nav { display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; padding-bottom:8px; border-bottom:1px solid rgba(255,255,255,0.1); }
.mock-site-logo { display:flex; align-items:center; gap:6px; }
.mock-site-logo-dot { width:8px; height:8px; border-radius:50%; }
.mock-site-logo-text { width:52px; height:6px; border-radius:3px; opacity:.8; }
.mock-site-nav-links { display:flex; gap:6px; }
.mock-site-nav-link { width:24px; height:4px; border-radius:2px; background:rgba(255,255,255,0.25); }
.mock-site-hero { margin-bottom:10px; }
.mock-site-h { height:10px; border-radius:3px; margin-bottom:5px; }
.mock-site-h2 { height:7px; border-radius:3px; width:60%; margin-bottom:5px; }
.mock-site-sub { height:5px; border-radius:3px; opacity:.5; margin-bottom:3px; }
.mock-site-btn { height:16px; width:64px; border-radius:6px; margin-top:8px; }
.mock-site-cards { display:grid; grid-template-columns:1fr 1fr 1fr; gap:5px; }
.mock-site-card { border-radius:5px; padding:6px; }
.mock-site-card-line { height:4px; border-radius:2px; margin-bottom:3px; opacity:.7; }
.mock-site-card-dot { width:14px; height:14px; border-radius:4px; margin-bottom:5px; }
.mock-site-img-row { display:grid; grid-template-columns:1fr 1fr; gap:5px; margin-top:8px; }
.mock-site-img { height:28px; border-radius:5px; opacity:.6; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .browser-mockup { transform: none; max-width: 600px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .step-list::before { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta .btn:not(.btn-sm) { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .about-values-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}
