/* Walsh Marketing — Global Styles */
:root {
  --bg:         #0d0d1a;
  --surface:    #16162a;
  --surface-2:  #1e1e36;
  --accent:     #f0a500;
  --accent-dk:  #c88a00;
  --text:       #ffffff;
  --muted:      #8888aa;
  --border:     rgba(255,255,255,0.07);
  --radius:     10px;
  --max-w:      1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Typography ── */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--muted); line-height: 1.75; }

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

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #000; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 13, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 72px;
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #000;
  font-weight: 900;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-login { font-size: 0.9rem; color: var(--muted); font-weight: 500; }
.nav-login:hover { color: var(--text); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 20px 24px;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu a { font-size: 1rem; color: var(--muted); font-weight: 500; padding: 8px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:hover { color: var(--text); }
.mobile-menu .btn { text-align: center; margin-top: 8px; }
.mobile-menu.open { display: flex; }

/* ── Hero ── */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(240,165,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,165,0,0.12);
  border: 1px solid rgba(240,165,0,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero p { font-size: 1.05rem; margin-bottom: 32px; max-width: 500px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-social-proof {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.proof-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}
.proof-badge .stars { color: var(--accent); font-size: 0.75rem; }
.proof-badge .source { color: var(--muted); font-weight: 400; }
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  max-width: 380px;
  width: 100%;
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hc-dot { width: 12px; height: 12px; border-radius: 50%; }
.stat-row { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.stat-box {
  flex: 1;
  background: var(--surface-2);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
}
.stat-box .num { font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.stat-box .lbl { font-size: 0.7rem; color: var(--muted); margin-top: 2px; }
.lead-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-2);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.lead-item:last-child { margin-bottom: 0; }
.lead-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.lead-text { font-size: 0.85rem; flex: 1; }
.lead-time { font-size: 0.75rem; color: var(--muted); }
.pulse { animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

/* ── Social Proof Bar ── */
.proof-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
}
.proof-bar p { color: var(--muted); font-size: 0.9rem; margin-bottom: 16px; }
.proof-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.proof-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}
.proof-logo-item .icon-wrap {
  width: 28px; height: 28px;
  background: var(--surface-2);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.proof-logo-item .rating { color: var(--accent); font-size: 0.8rem; }

/* ── Section heading ── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ── Features / Services ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(240,165,0,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.stars-row { color: var(--accent); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}
.author-info .name { font-weight: 700; font-size: 0.9rem; }
.author-info .company { font-size: 0.8rem; color: var(--muted); }

/* ── Process steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.6% + 10px);
  right: calc(16.6% + 10px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0, var(--accent) 8px,
    transparent 8px, transparent 16px
  );
}
.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-num {
  width: 72px; height: 72px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: #000;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.step h3 { margin-bottom: 12px; font-size: 1.2rem; }
.step p { font-size: 0.9rem; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(240,165,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p { margin-bottom: 28px; }

/* ── Pricing ── */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 24px 0 48px;
  font-size: 0.9rem;
  font-weight: 600;
}
.toggle-switch {
  position: relative;
  width: 50px; height: 26px;
  background: var(--accent);
  border-radius: 100px;
  cursor: pointer;
}
.toggle-switch::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  background: #000;
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: 0.2s;
}
.toggle-switch.right::after { left: 27px; }
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--accent);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  position: relative;
}
.pricing-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 8px;
}
.pricing-card h3 { color: #000; font-size: 1.5rem; margin-bottom: 4px; }
.pricing-price { font-size: 3rem; font-weight: 900; color: #000; line-height: 1; margin: 16px 0 8px; }
.pricing-price span { font-size: 1rem; font-weight: 600; }
.pricing-features {
  list-style: none;
  margin: 24px 0 32px;
  text-align: left;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  font-size: 0.95rem;
  color: #000;
  font-weight: 600;
}
.pricing-features li::before { content: '✓'; font-weight: 900; flex-shrink: 0; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-card .btn {
  background: #000;
  color: var(--accent);
  width: 100%;
  font-size: 1rem;
}
.pricing-card .btn:hover { background: #7a4d00; color: #fff; }

/* Accordion */
.accordion-section { margin-top: 60px; }
.accordion-section h3 { text-align: center; margin-bottom: 28px; }
.accordion-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.accordion-group h4 {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 12px;
  text-align: center;
}
.accordion-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 8px;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}
.accordion-header:hover { color: var(--text); }
.accordion-header .chevron { transition: transform 0.2s; font-size: 0.75rem; }
.accordion-body {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--muted);
}
.accordion-item.open .accordion-header { color: var(--text); }
.accordion-item.open .chevron { transform: rotate(180deg); }
.accordion-item.open .accordion-body { display: block; }

/* ── Our Work grid ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.work-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.work-item:hover { border-color: var(--accent); transform: translateY(-4px); }
.work-thumb {
  aspect-ratio: 16/10;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.work-thumb-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a2a1a 0%, #0a1a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.work-thumb-bg .site-mock {
  width: 80%;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.site-mock-bar { height: 8px; background: #333; display: flex; align-items: center; gap: 3px; padding: 0 6px; }
.site-mock-dot { width: 4px; height: 4px; border-radius: 50%; background: #666; }
.site-mock-body { background: #1a2a1a; height: 70px; padding: 6px; }
.site-mock-h { height: 8px; background: #4a7c4a; border-radius: 2px; margin-bottom: 4px; width: 60%; }
.site-mock-p { height: 5px; background: #333; border-radius: 2px; margin-bottom: 3px; width: 90%; }
.work-info { padding: 18px 20px; }
.work-info h4 { margin-bottom: 4px; }
.work-info .work-tag {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── About page ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.about-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}
.about-visual .big-stat { font-size: 4rem; font-weight: 900; color: var(--accent); }
.about-visual .big-label { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.about-visual .divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.value-num { font-size: 2rem; font-weight: 900; color: var(--accent); margin-bottom: 8px; }
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; }

/* ── Footer ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .tagline { font-size: 0.9rem; color: var(--muted); margin: 12px 0 20px; max-width: 280px; }
.footer-cta-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
footer h5 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 16px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul li a { font-size: 0.9rem; color: var(--muted); transition: color 0.2s; }
footer ul li a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--muted); }
.footer-bottom-links a:hover { color: var(--text); }
.footer-phone { color: var(--accent); font-weight: 600; }

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: 140px 0 70px;
  text-align: center;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ── Shane photo ── */
.shane-photo-wrap {
  position: relative;
  display: inline-block;
}
.shane-photo {
  width: 300px;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  filter: grayscale(100%) contrast(1.1);
  display: block;
  border: 3px solid var(--accent);
  box-shadow: 8px 8px 0 var(--accent);
}
.shane-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(240,165,0,0.2);
  border-radius: 20px;
  pointer-events: none;
}

/* ── Phone Mockup ── */
.phone-mockup {
  position: relative;
  width: 220px;
  margin: 40px auto;
}
.phone-shell {
  background: #1a1a2e;
  border: 3px solid #333355;
  border-radius: 32px;
  padding: 14px 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}
.phone-notch {
  width: 60px;
  height: 8px;
  background: #333355;
  border-radius: 10px;
  margin: 0 auto 10px;
}
.phone-screen {
  background: #0d1117;
  border-radius: 18px;
  overflow: hidden;
  min-height: 340px;
}
.phone-screen-header {
  background: var(--accent);
  padding: 10px 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.phone-screen-body {
  padding: 12px;
}
.phone-hero-bar {
  height: 10px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  margin-bottom: 6px;
  width: 80%;
}
.phone-hero-bar.short { width: 55%; }
.phone-btn-mock {
  width: 70px;
  height: 18px;
  background: var(--accent);
  border-radius: 4px;
  margin-top: 10px;
}

/* Notification cards */
.phone-notif {
  position: absolute;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 210px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: floatIn 0.6s ease both;
}
.notif-icon { font-size: 1.1rem; flex-shrink: 0; }
.notif-title { font-size: 0.7rem; font-weight: 700; color: var(--text); }
.notif-sub { font-size: 0.62rem; color: var(--muted); margin-top: 1px; }

.notif-1 { right: -120px; top: 40px; animation-delay: 0.2s; }
.notif-2 { left: -110px; top: 130px; animation-delay: 0.5s; }
.notif-3 { right: -120px; bottom: 80px; animation-delay: 0.8s; }

@keyframes floatIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .accordion-cols { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-login { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn { display: none; }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 60px; }
  .cta-banner { padding: 40px 24px; }
  .pricing-card { padding: 28px 20px; }
  .section { padding: 60px 0; }
}
