/* ============ Tokens ============ */
:root {
  --bg: #0a0a0d;
  --bg-raised: #131217;
  --bg-raised-2: #1a1920;
  --border: #262530;
  --text: #f5f4f7;
  --text-muted: #a6a3b2;
  --text-faint: #6f6c7c;

  --brand-orange: #ff5a1e;
  --brand-red: #ff3b3b;
  --brand-pink: #ff1c64;
  --gradient: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-red) 50%, var(--brand-pink) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(255,90,30,0.16) 0%, rgba(255,28,100,0.16) 100%);

  --success: #3ddc84;

  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-glow: 0 8px 40px rgba(255, 60, 80, 0.25);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-color-scheme: light) {
  :root[data-theme="light"] {
    --bg: #faf9fb;
    --bg-raised: #ffffff;
    --bg-raised-2: #f1eff4;
    --border: #e7e5ec;
    --text: #17151d;
    --text-muted: #55515f;
    --text-faint: #8b8794;
  }
}
:root[data-theme="light"] {
  --bg: #faf9fb;
  --bg-raised: #ffffff;
  --bg-raised-2: #f1eff4;
  --border: #e7e5ec;
  --text: #17151d;
  --text-muted: #55515f;
  --text-faint: #8b8794;
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, textarea { font: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.2rem; }

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title--center { text-align: center; max-width: 720px; margin: 0 auto var(--space-2); }
.section-sub { color: var(--text-muted); max-width: 620px; margin-top: var(--space-2); font-size: 1.05rem; }
.section-sub--center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--brand-orange); margin-bottom: var(--space-2);
}
.eyebrow--center { display: flex; justify-content: center; width: 100%; }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gradient); flex-shrink: 0; }

section { padding: var(--space-7) 0; position: relative; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 15px 28px; border-radius: var(--radius-full);
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), opacity 200ms var(--ease);
  white-space: nowrap; cursor: pointer;
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--gradient); color: #fff; box-shadow: var(--shadow-glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 48px rgba(255, 60, 80, 0.35); }
.btn--ghost {
  background: var(--bg-raised-2); color: var(--text); border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--brand-orange); transform: translateY(-2px); }
.btn--small { padding: 10px 20px; font-size: 0.9rem; }
.btn--full { width: 100%; }

/* ============ Nav ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: var(--space-3); }
.nav__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; flex-shrink: 0; }
.nav__logo {
  width: 38px; height: 38px; border-radius: 50%; object-fit: cover;
  transform: scale(1.12); /* crops the white square corners out of the circular badge */
}
.nav__menu { display: flex; align-items: center; gap: var(--space-4); margin-left: auto; }
.nav__links { display: flex; gap: var(--space-4); }
.nav__links a { color: var(--text-muted); font-weight: 500; font-size: 0.95rem; transition: color 180ms var(--ease); }
.nav__links a:hover { color: var(--text); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 32px; height: 32px; align-items: center; justify-content: center; }
.nav__toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 200ms var(--ease), opacity 200ms var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Hero ============ */
.hero { padding-top: var(--space-6); padding-bottom: var(--space-6); overflow: hidden; }
.hero__glow {
  position: absolute; top: -220px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 620px; background: var(--gradient); opacity: 0.22;
  filter: blur(120px); border-radius: 50%; pointer-events: none; z-index: 0;
}
.hero__inner { position: relative; z-index: 1; text-align: center; max-width: 880px; }
.hero__inner .eyebrow { display: inline-flex; margin-left: auto; margin-right: auto; }
.hero h1 { margin-bottom: var(--space-3); }
.hero__sub { font-size: 1.2rem; color: var(--text-muted); max-width: 620px; margin: 0 auto var(--space-4); }
.hero__ctas { display: flex; gap: var(--space-2); justify-content: center; flex-wrap: wrap; margin-bottom: var(--space-6); }

/* ============ Problem ============ */
.problem { background: var(--bg-raised); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.problem h2 { max-width: 620px; }
.problem__lede { font-weight: 600; color: var(--text); font-size: 1.05rem; max-width: 620px; margin-top: var(--space-2); }
.problem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-top: var(--space-5); }
.problem__card { background: var(--bg-raised-2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-4); }
.problem__num { font-family: var(--font-display); font-weight: 700; color: var(--brand-pink); font-size: 0.9rem; }
.problem__card h3 { margin: var(--space-2) 0 8px; }
.problem__card p { color: var(--text-muted); font-size: 0.95rem; }

/* ============ Services ============ */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-top: var(--space-5); }
.service-card {
  background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: var(--space-4); transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.service-card:hover { border-color: var(--brand-orange); transform: translateY(-4px); }
.service-card__icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--gradient-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-2);
  position: relative;
}
.service-card__icon::before { content: ''; width: 22px; height: 22px; background: var(--gradient); -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; }
.service-card__icon[data-icon="layout"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cpath d='M3 9h18M9 21V9'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cpath d='M3 9h18M9 21V9'/%3E%3C/svg%3E"); }
.service-card__icon[data-icon="target"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='12' cy='12' r='0.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='12' cy='12' r='0.5'/%3E%3C/svg%3E"); }
.service-card__icon[data-icon="map"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 21s7-6.1 7-11.5A7 7 0 0 0 5 9.5C5 14.9 12 21 12 21z'/%3E%3Ccircle cx='12' cy='9.5' r='2.3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 21s7-6.1 7-11.5A7 7 0 0 0 5 9.5C5 14.9 12 21 12 21z'/%3E%3Ccircle cx='12' cy='9.5' r='2.3'/%3E%3C/svg%3E"); }
.service-card__icon[data-icon="star"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E"); }
.service-card__icon[data-icon="chart"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 21V9M10 21V3M17 21v-7'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 21V9M10 21V3M17 21v-7'/%3E%3C/svg%3E"); }
.service-card__icon[data-icon="chat"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'/%3E%3C/svg%3E"); }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ============ Platform Flexibility ============ */
.platform__inner { max-width: 720px; text-align: center; }
.platform__example { color: var(--text-muted); margin-top: var(--space-3); font-size: 0.98rem; }
.platform__tags { display: flex; justify-content: center; gap: var(--space-2); flex-wrap: wrap; margin-top: var(--space-4); }
.platform__tags .tag { font-size: 0.85rem; padding: 6px 16px; }

/* ============ Work / Portfolio ============ */
.work { background: var(--bg-raised); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.work__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); margin-top: var(--space-5); }
.work__grid--two { grid-template-columns: repeat(2, 1fr); max-width: 780px; margin-left: auto; margin-right: auto; }
.work__grid--two .work-card__thumb { aspect-ratio: 16/9; }
.work-card { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); background: var(--bg-raised-2); transition: transform 200ms var(--ease); height: 100%; }
.work-card:hover { transform: translateY(-4px); }
.work-card__thumb { aspect-ratio: 4/3; display: flex; align-items: flex-end; padding: var(--space-2); position: relative; flex-shrink: 0; overflow: hidden; }
.work-card__thumb span { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 0.95rem; position: relative; z-index: 1; }
.work-card__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; z-index: 0; }
.work-card__thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent 60%); }
.work-card__thumb--1 { background: linear-gradient(135deg, #ff5a1e, #ff8a3d); }
.work-card__thumb--2 { background: linear-gradient(135deg, #ff3b3b, #ff6b6b); }
.work-card__thumb--3 { background: linear-gradient(135deg, #d61ee0, #ff1c64); }
.work-card__thumb--4 { background: linear-gradient(135deg, #ff1c64, #ff5a1e); }
.work-card__link { display: flex; flex-direction: column; height: 100%; color: inherit; text-decoration: none; }
.work-card__body { padding: var(--space-2) var(--space-3) var(--space-3); display: flex; flex-direction: column; flex: 1; }
.work-card__body p { color: var(--text-faint); font-size: 0.85rem; margin: 2px 0 var(--space-1); }
.work-card__visit {
  display: flex; align-items: center; gap: 4px; margin-top: auto; padding-top: var(--space-2);
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; color: var(--brand-orange);
}
.work-card__arrow { transition: transform 200ms var(--ease); display: inline-block; }
.work-card:hover .work-card__arrow { transform: translate(2px, -2px); }
.tag { display: inline-block; font-size: 0.78rem; font-weight: 600; color: var(--brand-orange); background: var(--gradient-soft); padding: 4px 10px; border-radius: var(--radius-full); }
.work__note { color: var(--text-faint); font-size: 0.85rem; margin-top: var(--space-4); text-align: center; }

/* ============ Why choose us ============ */
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: center; }
.checklist { margin-top: var(--space-4); display: flex; flex-direction: column; gap: var(--space-2); }
.checklist li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-muted); }
.check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--gradient);
  position: relative; margin-top: 2px;
}
.check::after {
  content: ''; position: absolute; left: 50%; top: 46%; width: 5px; height: 9px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: translate(-50%, -50%) rotate(45deg);
}
.why__table { background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-2); overflow-x: auto; }
.why__table table { width: 100%; border-collapse: collapse; min-width: 480px; table-layout: fixed; }
.why__table col.why__table-label { width: 34%; }
.why__table col.why__table-value { width: 22%; }
.why__table th, .why__table td { text-align: left; padding: 14px 6px; font-size: 0.88rem; border-bottom: 1px solid var(--border); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.why__table td:first-child { white-space: normal; }
.why__table th { color: var(--text-faint); font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.02em; }
.why__table tr:last-child td { border-bottom: none; }
.why__table td.yes { color: var(--success); font-weight: 600; }
.why__table td.no { color: var(--text-faint); }
.why__table td.maybe { color: var(--brand-orange); }

/* ============ About ============ */
.about { background: var(--bg-raised); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about__inner { max-width: 720px; }
.about h2 { max-width: 640px; }
.about__copy { margin-top: var(--space-4); display: flex; flex-direction: column; gap: var(--space-2); }
.about__copy p { color: var(--text-muted); font-size: 1.05rem; }
.about__copy p:first-child { color: var(--text); font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; }

/* ============ Process ============ */
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); margin-top: var(--space-5); }
.process-step { position: relative; padding-top: var(--space-3); border-top: 2px solid var(--border); }
.process-step__num { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.process-step h3 { margin: var(--space-1) 0 8px; }
.process-step p { color: var(--text-muted); font-size: 0.92rem; }

/* ============ Pricing ============ */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-top: var(--space-5); align-items: stretch; }
.price-card {
  background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-4); display: flex; flex-direction: column; position: relative;
}
.price-card--featured { border-color: var(--brand-orange); background: var(--bg-raised-2); box-shadow: var(--shadow-glow); }
.price-card__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 5px 14px; border-radius: var(--radius-full); white-space: nowrap;
}
.price-card__desc { color: var(--text-muted); font-size: 0.92rem; margin: 8px 0 var(--space-3); min-height: 44px; }
.price-card__price { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; margin-bottom: var(--space-3); }
.price-card__price span { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text-faint); font-family: var(--font-body); }
.price-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--space-4); flex: 1; }
.price-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--text-muted); }
.price-card .check { width: 18px; height: 18px; }
.price-card .check::after { width: 4px; height: 7px; }

/* ============ FAQ ============ */
.faq__inner { max-width: 760px; }
.accordion { margin-top: var(--space-4); border-top: 1px solid var(--border); }
.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-3) 0; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
}
.accordion__icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.accordion__icon::before, .accordion__icon::after {
  content: ''; position: absolute; background: var(--text); border-radius: 2px; top: 50%; left: 50%;
  transform: translate(-50%, -50%); transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}
.accordion__icon::before { width: 14px; height: 2px; }
.accordion__icon::after { width: 2px; height: 14px; }
.accordion__trigger[aria-expanded="true"] .accordion__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.accordion__panel { max-height: 0; overflow: hidden; transition: max-height 280ms var(--ease); }
.accordion__panel p { color: var(--text-muted); padding-bottom: var(--space-3); max-width: 620px; }

/* ============ Contact ============ */
.contact__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--space-6); }
.contact__details { margin-top: var(--space-4); display: flex; flex-direction: column; gap: var(--space-2); }
.contact__details li { color: var(--text-muted); font-size: 0.98rem; }
.contact__details li a { display: flex; align-items: center; gap: 12px; color: inherit; transition: color 180ms var(--ease); }
.contact__details li a:hover { color: var(--brand-orange); }
.contact__icon { width: 20px; height: 20px; flex-shrink: 0; position: relative; }
.contact__icon::before { content: ''; position: absolute; inset: 0; background: var(--gradient); -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; }
.contact__icon[data-icon="phone"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); }
.contact__icon[data-icon="mail"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m2 7 10 6 10-6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m2 7 10 6 10-6'/%3E%3C/svg%3E"); }
.contact__icon[data-icon="map"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 21s7-6.1 7-11.5A7 7 0 0 0 5 9.5C5 14.9 12 21 12 21z'/%3E%3Ccircle cx='12' cy='9.5' r='2.3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 21s7-6.1 7-11.5A7 7 0 0 0 5 9.5C5 14.9 12 21 12 21z'/%3E%3Ccircle cx='12' cy='9.5' r='2.3'/%3E%3C/svg%3E"); }

.contact__form { background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
.form-field { margin-bottom: var(--space-2); display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.form-field input, .form-field textarea {
  background: var(--bg-raised-2); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 14px; color: var(--text); transition: border-color 180ms var(--ease);
  resize: vertical;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--brand-orange); }
.form-error { display: none; color: var(--brand-pink); font-size: 0.8rem; }
.form-field.invalid input, .form-field.invalid textarea { border-color: var(--brand-pink); }
.form-field.invalid .form-error { display: block; }
.form-success { display: none; text-align: center; color: var(--success); margin-top: var(--space-2); font-weight: 600; }
.form-success.visible { display: block; }
.form-success.form-success--error { color: var(--brand-pink); }

.form-field--checkbox { margin-bottom: var(--space-3); }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-muted); cursor: pointer; }
.checkbox-label input[type="checkbox"] {
  flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--brand-orange); cursor: pointer;
}
.form-field--checkbox.invalid .checkbox-label { color: var(--brand-pink); }
.contact__form button[type="submit"] { margin-top: 8px; }

/* ============ CTA band ============ */
.cta-band { background: var(--bg-raised); border-top: 1px solid var(--border); }
.cta-band__inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--space-3); }
.cta-band h2 { max-width: 640px; }

/* ============ Footer ============ */
.footer { padding: var(--space-4) 0; border-top: 1px solid var(--border); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-2); }
.footer__links { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.footer__links a { color: var(--text-muted); font-size: 0.9rem; }
.footer__links a:hover { color: var(--text); }

.footer__social { display: flex; gap: var(--space-2); }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--bg-raised-2); position: relative; transition: border-color 180ms var(--ease), transform 180ms var(--ease);
}
.social-icon:hover { border-color: var(--brand-orange); transform: translateY(-2px); }
.social-icon::before {
  content: ''; position: absolute; top: 50%; left: 50%; width: 16px; height: 16px;
  transform: translate(-50%, -50%); background: var(--text-muted); -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center;
  transition: background 180ms var(--ease);
}
.social-icon:hover::before { background: var(--brand-orange); }
.social-icon[data-icon="facebook"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M13.5 21v-7.5h2.5l.5-3h-3V8.5c0-.9.3-1.5 1.6-1.5H16.5V4.3C16 4.2 15 4 13.9 4c-2.3 0-3.9 1.4-3.9 4v2.5H7.5v3H10V21h3.5z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M13.5 21v-7.5h2.5l.5-3h-3V8.5c0-.9.3-1.5 1.6-1.5H16.5V4.3C16 4.2 15 4 13.9 4c-2.3 0-3.9 1.4-3.9 4v2.5H7.5v3H10V21h3.5z'/%3E%3C/svg%3E"); }
.social-icon[data-icon="instagram"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1'/%3E%3C/svg%3E"); }
.footer__copy { color: var(--text-faint); font-size: 0.85rem; }

/* ============ Reveal on scroll ============ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ Responsive ============ */
@media (max-width: 1160px) {
  .why__grid { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .contact__inner { grid-template-columns: 1fr; }
  .services__grid, .problem__grid { grid-template-columns: repeat(2, 1fr); }
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .work__grid--two { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__menu { display: none; }
  .nav__toggle { display: flex; }
  .nav.nav--open .nav__menu {
    display: flex; position: absolute; top: 76px; left: 0; right: 0;
    background: var(--bg-raised); border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; padding: var(--space-3); gap: var(--space-3); margin-left: 0;
  }
  .nav.nav--open .nav__links { flex-direction: column; gap: var(--space-2); }
  .nav.nav--open .nav__cta { display: inline-flex; }
  .services__grid, .problem__grid, .work__grid, .process__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: var(--space-6) 0; }
  .hero { padding-top: var(--space-4); padding-bottom: var(--space-5); }
  .hero h1 { margin-bottom: var(--space-2); }
  .hero__sub { font-size: 1.05rem; margin-bottom: var(--space-3); }
  .hero__ctas { margin-bottom: var(--space-4); }
}
