/* ============================================================
   DIGITAL PEACOCK — Hand-Drawn Design System
   Kalam headings · Patrick Hand body · wobbly borders · hard shadows
============================================================ */

/* ──────────────────────────────────────────
   IMPORTS & ROOT TOKENS
────────────────────────────────────────── */
:root {
  --bg:         #fdfbf7;
  --fg:         #2d2d2d;
  --muted:      #e5e0d8;
  --accent:     #ff4d4d;
  --accent-dark:#cc2200;
  --blue:       #2d5da1;
  --blue-dark:  #1a3f75;
  --border:     #2d2d2d;
  --paper:      #ffffff;
  --postit-y:   #fff9c4;
  --postit-b:   #d0e8ff;
  --postit-p:   #ffd0e8;
  --font-head:  'Kalam', cursive;
  --font-body:  'Patrick Hand', cursive;
  --shadow:     4px 4px 0px 0px #2d2d2d;
  --shadow-lg:  8px 8px 0px 0px #2d2d2d;
  --shadow-sm:  2px 2px 0px 0px #2d2d2d;
  --radius-wobbly:    255px 15px 225px 15px / 15px 225px 15px 255px;
  --radius-wobbly-md: 15px 255px 15px 225px / 225px 15px 255px 15px;
  --radius-wobbly-sm: 120px 8px 100px 8px / 8px 100px 8px 120px;
}

/* ──────────────────────────────────────────
   RESET
────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  background-image: radial-gradient(var(--muted) 1px, transparent 1px);
  background-size: 24px 24px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--blue);
  text-decoration: underline;
}
a:hover { color: var(--accent); }

ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ──────────────────────────────────────────
   KEYFRAMES
────────────────────────────────────────── */
@keyframes bounce-float {
  0%,100% { transform: translateY(0) rotate(6deg); }
  50%      { transform: translateY(-14px) rotate(6deg); }
}

@keyframes jiggle {
  0%,100% { transform: rotate(0deg); }
  25%     { transform: rotate(-2deg); }
  75%     { transform: rotate(2deg); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .bounce, .tilt-pos, .tilt-neg { animation: none !important; }
}

/* ──────────────────────────────────────────
   TILT UTILITIES
────────────────────────────────────────── */
.tilt-pos { transform: rotate(1deg); }
.tilt-neg { transform: rotate(-1.5deg); }

/* ──────────────────────────────────────────
   BUTTONS
────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--fg);
  background: var(--paper);
  border: 3px solid var(--border);
  border-radius: var(--radius-wobbly);
  box-shadow: var(--shadow);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.12s ease;
  user-select: none;
  white-space: nowrap;
}
.btn:hover {
  background: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
  transform: translate(2px, 2px);
  text-decoration: none;
}
.btn:active {
  box-shadow: none;
  transform: translate(4px, 4px);
}
.btn:focus-visible {
  outline: 3px dashed var(--blue);
  outline-offset: 3px;
}

.btn-accent {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent-dark);
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

.btn-secondary {
  background: var(--muted);
  color: var(--fg);
}
.btn-secondary:hover {
  background: var(--blue);
  color: #ffffff;
}

.btn-lg  { font-size: 18px; padding: 12px 28px; }
.btn-xl  { font-size: 20px; padding: 14px 34px; }
.btn-sm  { font-size: 14px; padding: 7px 16px; }
.btn-full { display: block; width: 100%; text-align: center; }

/* ──────────────────────────────────────────
   TAPE & TACK DECORATIONS
────────────────────────────────────────── */
.tack {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2.5px solid var(--fg);
  box-shadow: 1px 1px 0 #00000055;
  z-index: 5;
}
.tack-red  { background: var(--accent); }
.tack-blue { background: var(--blue); }

.tape {
  position: absolute;
  width: 64px;
  height: 22px;
  background: rgba(200, 200, 200, 0.45);
  border: 1px solid rgba(0,0,0,0.12);
  transform: rotate(-3deg);
  z-index: 3;
}
.tape-1 { top: -8px; left: 16%; }
.tape-2 { top: -8px; right: 16%; transform: rotate(3deg); }

.tape-card {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 56px;
  height: 20px;
  background: rgba(200,200,200,0.5);
  border: 1px solid rgba(0,0,0,0.1);
  z-index: 5;
}

/* ──────────────────────────────────────────
   STICKY LABEL
────────────────────────────────────────── */
.sticky-label {
  display: inline-block;
  background: var(--postit-y);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 4px 14px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  transform: rotate(-1.5deg);
  border-radius: 4px 14px 10px 6px / 12px 6px 14px 4px;
  margin-bottom: 12px;
}

/* ──────────────────────────────────────────
   SECTION HEADERS
────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-heading {
  font-size: clamp(32px, 5vw, 52px);
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}
.heading-underline {
  display: block;
  width: 100%;
  height: 12px;
  margin-top: -4px;
}
.section-sub {
  font-size: 18px;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
}

/* ──────────────────────────────────────────
   CARDS
────────────────────────────────────────── */
.card {
  position: relative;
  background: var(--paper);
  border: 3px solid var(--border);
  border-radius: var(--radius-wobbly-md);
  box-shadow: var(--shadow);
  padding: 28px 24px 24px;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: rotate(0deg) translateY(-3px);
}

.card-icon {
  font-size: 36px;
  margin-bottom: 10px;
}
.card-title {
  font-family: var(--font-head);
  font-size: 22px;
  margin-bottom: 10px;
}
.card-body {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 14px;
}
.card-featured {
  background: var(--postit-y);
}

/* Post-it cards */
.postit {
  position: absolute;
  padding: 12px 14px;
  border: 2.5px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 6px 16px 10px 4px / 14px 4px 16px 6px;
  text-align: center;
  min-width: 80px;
  z-index: 4;
}
.postit-yellow { background: var(--postit-y); }
.postit-blue   { background: var(--postit-b); }
.postit-pink   { background: var(--postit-p); }
.stat-postit .stat-num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}
.stat-postit .stat-lbl {
  font-size: 12px;
  color: #666;
  line-height: 1.3;
}

/* ──────────────────────────────────────────
   SKETCH LIST
────────────────────────────────────────── */
.sketch-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.sketch-list li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 22px;
  position: relative;
}
.sketch-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ──────────────────────────────────────────
   SQUIGGLE DIVIDER
────────────────────────────────────────── */
.squiggle-divider {
  width: 100%;
  height: 40px;
  overflow: hidden;
  margin: 8px 0;
}
.squiggle-divider svg {
  width: 100%;
  height: 100%;
}
.squiggle-flip { transform: scaleY(-1); }

/* ──────────────────────────────────────────
   SECTION BASE
────────────────────────────────────────── */
.section { padding: 64px 0; }

/* ──────────────────────────────────────────
   NAVIGATION
────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 3px solid var(--border);
  box-shadow: 0 3px 0 0 var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-bird { font-size: 28px; }
.logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--fg);
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 8px;
  flex: 1;
  flex-wrap: wrap;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg);
  text-decoration: none;
  padding: 4px 10px;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.15s ease;
  border-radius: 2px;
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-link:hover { color: var(--accent); text-decoration: none; }
.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.2s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 20px;
  border-top: 2px dashed var(--muted);
}
.mobile-menu.open { display: flex; }

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 72px 24px 64px;
  max-width: 1100px;
  margin: 0 auto;
  overflow: visible;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text { position: relative; }

.hero-heading {
  font-size: clamp(48px, 7vw, 88px);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-accent {
  color: var(--accent);
}
.hero-accent em { font-style: normal; text-decoration: underline wavy var(--accent); text-underline-offset: 5px; }

.hero-bang {
  display: inline-block;
  color: var(--blue);
  font-size: 1.1em;
  animation: jiggle 2s ease-in-out infinite;
  transform-origin: bottom;
  margin-left: 4px;
}

.hero-sub {
  font-size: 18px;
  color: #555;
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.65;
}
.hero-sub strong { color: var(--accent); }

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.arrow-annotation {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.annotation-text {
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--accent);
  transform: rotate(-4deg);
  display: inline-block;
}

/* Hero visual area */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}

.hero-card {
  position: relative;
  background: var(--postit-b);
  border: 3px solid var(--border);
  border-radius: var(--radius-wobbly);
  box-shadow: var(--shadow-lg);
  padding: 40px 32px 32px;
  text-align: center;
  width: 240px;
}
.hero-peacock {
  font-size: 72px;
  margin-bottom: 12px;
}
.hero-card-tagline {
  font-family: var(--font-head);
  font-size: 16px;
  line-height: 1.4;
  color: var(--fg);
}

.doodle-circle {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--postit-y);
  border: 3px solid var(--border);
  box-shadow: var(--shadow-sm);
  animation: bounce-float 3s ease-in-out infinite;
}

/* ──────────────────────────────────────────
   SERVICES GRID
────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 740px;
  margin: 0 auto;
}

/* ──────────────────────────────────────────
   RESULTS / STATS
────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.stat-bubble {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  border: 3px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.1s, box-shadow 0.1s;
}
.stat-bubble:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px) rotate(0deg);
}

/* Alternating wobbly shapes */
.bubble-1 { background: var(--postit-y); border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px; transform: rotate(-1.5deg); }
.bubble-2 { background: var(--postit-b); border-radius: 15px 255px 15px 225px / 225px 15px 255px 15px; transform: rotate(1deg); }
.bubble-3 { background: var(--postit-p); border-radius: 225px 15px 255px 15px / 15px 255px 15px 225px; transform: rotate(-1deg); }
.bubble-4 { background: #dff5e3;         border-radius: 15px 225px 15px 255px / 255px 15px 225px 15px; transform: rotate(1.5deg); }

.bubble-num {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--fg);
  display: block;
}
.bubble-lbl {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
  display: block;
}

/* Case study grid */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.case-card {
  position: relative;
  background: var(--paper);
  border: 3px solid var(--border);
  border-radius: var(--radius-wobbly-sm);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: transform 0.1s, box-shadow 0.1s;
}
.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: rotate(0deg) translateY(-3px);
}

.case-tag {
  font-size: 12px;
  font-weight: 700;
  background: var(--muted);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 40px 6px 40px 6px / 6px 40px 6px 40px;
  border: 1.5px solid var(--border);
  margin-bottom: 8px;
}
.case-channel {
  font-size: 13px;
  color: var(--blue);
  margin-bottom: 12px;
  font-weight: 700;
  font-family: var(--font-head);
}
.case-result {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  font-size: 14px;
}
.case-before { color: #999; text-decoration: line-through; }
.case-arrow  { color: var(--accent); font-weight: 700; font-size: 16px; }
.case-after  { color: var(--fg); font-weight: 700; font-family: var(--font-head); font-size: 16px; }
.case-growth {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--accent);
  font-weight: 700;
}

/* Testimonials */
.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.speech-bubble {
  position: relative;
  background: var(--paper);
  border: 3px solid var(--border);
  border-radius: var(--radius-wobbly-md);
  box-shadow: var(--shadow);
  padding: 20px 20px 16px;
}
.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 28px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 6px solid transparent;
  border-top: 16px solid var(--border);
}
.speech-bubble::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 5px solid transparent;
  border-top: 13px solid var(--paper);
  z-index: 1;
}
.speech-bubble p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 10px;
  font-style: italic;
}
.speech-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
}
.speech-stars {
  color: #f0b400;
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ──────────────────────────────────────────
   ABOUT / WHY GRID
────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.why-card {
  background: var(--paper);
  border: 3px solid var(--border);
  border-radius: var(--radius-wobbly-md);
  box-shadow: var(--shadow);
  padding: 24px;
  transition: transform 0.1s, box-shadow 0.1s;
}
.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: rotate(0deg) translateY(-3px);
}
.why-icon { font-size: 32px; margin-bottom: 10px; }
.why-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  margin-bottom: 8px;
}
.why-card p { font-size: 14px; color: #555; line-height: 1.6; }

/* Process steps */
.process-wrapper { max-width: 1000px; margin: 0 auto; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}
.process-step { flex: 1; min-width: 200px; }
.step-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.step-connector {
  flex-shrink: 0;
  width: 80px;
  padding-top: 60px;
}
.step-connector svg { width: 100%; }

/* ──────────────────────────────────────────
   CTA BANNER
────────────────────────────────────────── */
.cta-banner {
  padding: 56px 24px;
  background: var(--bg);
}
.cta-inner {
  position: relative;
  background: var(--postit-y);
  border: 4px solid var(--border);
  border-radius: var(--radius-wobbly);
  box-shadow: var(--shadow-lg);
  padding: 52px 40px 44px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.cta-heading {
  font-size: clamp(36px, 6vw, 72px);
  margin-bottom: 16px;
  color: var(--fg);
}
.cta-sub {
  font-size: 18px;
  color: #555;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.65;
}
.cta-sub strong { color: var(--accent); }
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.cta-fine {
  font-size: 13px;
  color: #888;
}

/* ──────────────────────────────────────────
   CONTACT
────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 560px;
  margin: 0 auto;
}

.contact-info { padding: 32px 24px; }
.contact-info .card-title { margin-bottom: 20px; }

.info-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.info-item  { display: flex; align-items: flex-start; gap: 12px; }
.info-icon  { font-size: 22px; flex-shrink: 0; }
.info-label { font-size: 12px; color: #888; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.info-value { font-size: 15px; color: var(--fg); text-decoration: none; }
a.info-value:hover { color: var(--accent); }

.social-row { display: flex; gap: 8px; flex-wrap: wrap; }

/* Form */
.contact-form-wrap { padding: 32px 28px; }
.contact-form-wrap .card-title { margin-bottom: 16px; font-size: 18px; }

.setup-notice {
  background: #fffbe6;
  border: 2px dashed #c8a400;
  border-radius: 8px 20px 8px 20px / 20px 8px 20px 8px;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1.6;
  color: #665500;
  margin-bottom: 16px;
}
.setup-notice code {
  background: #fff3c0;
  border: 1px solid #ccaa00;
  padding: 1px 4px;
  border-radius: 3px;
  font-size: 11px;
}
.setup-notice strong { color: #884400; }
.setup-notice.hidden { display: none; }
.setup-notice a { color: var(--blue); }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; flex-direction: column; gap: 5px; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}
.form-input {
  background: var(--paper);
  border: 2.5px solid var(--border);
  border-radius: 15px 120px 15px 90px / 90px 15px 120px 15px;
  padding: 9px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  width: 100%;
  outline: none;
  transition: border-color 0.12s, box-shadow 0.12s;
}
.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(45,93,161,0.15);
}
.form-input::placeholder { color: #b0b0b0; }
.form-textarea  { resize: vertical; min-height: 90px; border-radius: 15px 40px 15px 40px / 40px 15px 40px 15px; }

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.footer {
  background: var(--muted);
  border-top: 3px solid var(--border);
  padding: 52px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo  { display: flex; align-items: center; gap: 10px; }
.footer-logo span:first-child { font-size: 32px; }
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline { font-size: 14px; color: #666; line-height: 1.5; }
.footer-certs   { display: flex; flex-direction: column; gap: 4px; }
.cert {
  font-size: 12px;
  background: #d9f5e4;
  border: 1.5px solid #2d2d2d;
  border-radius: 6px 16px 6px 16px;
  padding: 3px 10px;
  display: inline-block;
}
.footer-col-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  text-decoration: underline wavy var(--accent);
  text-underline-offset: 4px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links-col a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
}
.footer-links-col a:hover {
  text-decoration: line-through;
  color: var(--accent);
}
.footer-contact-col p { font-size: 14px; margin-bottom: 6px; }
.footer-contact-col a { color: var(--fg); text-decoration: none; }
.footer-contact-col a:hover { color: var(--accent); }

.footer-squiggle {
  width: 100%;
  height: 20px;
  overflow: hidden;
  margin-bottom: 16px;
}
.footer-squiggle svg { width: 100%; height: 100%; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 24px;
}
.footer-copy { font-size: 13px; color: #888; }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 13px; color: #888; text-decoration: none; }
.footer-legal a:hover { color: var(--accent); text-decoration: underline; }

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner      { grid-template-columns: 1fr; text-align: center; }
  .hero-visual     { justify-content: center; margin-top: 32px; }
  .hero-cta-row    { justify-content: center; }
  .arrow-annotation{ justify-content: center; }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-row       { grid-template-columns: repeat(2, 1fr); }
  .cases-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonials-row{ grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: repeat(2, 1fr); }
  .process-steps   { flex-direction: column; }
  .step-connector  { display: none; }
  .contact-grid    { grid-template-columns: 1fr; }
  .footer-top      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-heading    { font-size: 44px; }
  .services-grid   { grid-template-columns: 1fr; }
  .stats-row       { grid-template-columns: 1fr 1fr; }
  .cases-grid      { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: 1fr; }
  .form-row-2      { grid-template-columns: 1fr; }
  .footer-top      { grid-template-columns: 1fr; }
  .footer-bottom   { flex-direction: column; align-items: flex-start; }
  .cta-inner       { padding: 40px 20px 32px; }
  .hero            { padding: 48px 20px 40px; }
  .postit          { display: none; }
}
.logo-img {
    height: 50px;
    width: auto;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}
.nav-logo{
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img{
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;   /* halka rounded */
    background: transparent;
}

.logo-text{
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    font-family: "Comic Sans MS", cursive;
}