/* ===== Giant Peach — Design Tokens ===== */
:root {
  --gp-coral: #FF8A8A;
  --gp-coral-deep: #FF6B6B;
  --gp-peach: #FFB088;
  --gp-orange: #FF9166;
  --gp-orange-soft: #FFC4A3;
  --gp-leaf: #B8D49B;
  --gp-leaf-deep: #8FB575;
  --gp-cream: #FFF7F1;
  --gp-cream-deep: #FBE9DC;
  --gp-ink: #2A1F1A;
  --gp-ink-soft: #5C4A40;
  --gp-ink-mute: #8A7468;
  --gp-line: #EFD9CB;
  --gp-white: #ffffff;

  --gp-grad: linear-gradient(135deg, #FF8A8A 0%, #FFA378 55%, #FFC58A 100%);
  --gp-grad-soft: linear-gradient(135deg, #FFE0DA 0%, #FFE7D6 100%);
  --gp-grad-warm: linear-gradient(180deg, #FFF7F1 0%, #FFEAD9 100%);

  --gp-radius-sm: 10px;
  --gp-radius: 18px;
  --gp-radius-lg: 28px;
  --gp-radius-xl: 40px;

  --gp-shadow-sm: 0 1px 2px rgba(70, 30, 15, 0.06), 0 4px 12px rgba(70, 30, 15, 0.04);
  --gp-shadow: 0 6px 24px -8px rgba(255, 110, 90, 0.18), 0 2px 6px rgba(70, 30, 15, 0.05);
  --gp-shadow-lg: 0 24px 60px -20px rgba(255, 110, 90, 0.35), 0 8px 24px -12px rgba(70, 30, 15, 0.1);

  --gp-font-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --gp-font-body: 'Inter', system-ui, sans-serif;
  --gp-font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--gp-font-body);
  background: var(--gp-cream);
  color: var(--gp-ink);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  font-size: 16px;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font-family: inherit; }

/* ===== Display type ===== */
.gp-display {
  font-family: var(--gp-font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.98;
}
.gp-display-xl { font-size: clamp(56px, 8.5vw, 132px); line-height: 1.05; }
.gp-display-lg { font-size: clamp(44px, 6vw, 88px); }
.gp-display-md { font-size: clamp(32px, 4vw, 56px); }
.gp-display-sm { font-size: clamp(24px, 2.6vw, 36px); }

.gp-eyebrow {
  font-family: var(--gp-font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gp-ink-soft);
  font-weight: 500;
}

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

/* ===== Layout ===== */
.gp-shell { width: min(1280px, 100% - 48px); margin: 0 auto; }
.gp-shell-narrow { width: min(960px, 100% - 48px); margin: 0 auto; }
.gp-section { padding: clamp(80px, 10vw, 140px) 0; }

/* ===== Buttons ===== */
.gp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.gp-btn-primary {
  background: var(--gp-grad);
  color: var(--gp-white);
  box-shadow: var(--gp-shadow);
}
.gp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--gp-shadow-lg);
}
.gp-btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  color: var(--gp-ink);
  border: 1px solid var(--gp-line);
  backdrop-filter: blur(8px);
}
.gp-btn-ghost:hover { background: var(--gp-white); transform: translateY(-2px); }
.gp-btn-ink { background: var(--gp-ink); color: var(--gp-cream); }
.gp-btn-ink:hover { background: var(--gp-ink-soft); transform: translateY(-2px); }
.gp-btn-sm { padding: 10px 18px; font-size: 13px; }
.gp-btn svg { flex-shrink: 0; display: block; }

/* ===== Nav ===== */
.gp-nav {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1280px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 24px;
  background: rgba(255, 247, 241, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(239, 217, 203, 0.6);
  border-radius: 999px;
  box-shadow: 0 4px 20px -8px rgba(70, 30, 15, 0.1);
}
.gp-nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--gp-font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.gp-nav-brand img { height: 28px; width: auto; display: block; }
.gp-footer-brand img { height: 80px; width: auto; display: block; margin-bottom: 16px; }
.gp-nav-links {
  display: flex; gap: 4px;
}
.gp-nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--gp-ink-soft);
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.gp-nav-links a:hover { background: rgba(255, 255, 255, 0.7); color: var(--gp-ink); }
@media (max-width: 880px) { .gp-nav-links { display: none; } }

/* ===== Logo mark (CSS-drawn peach) ===== */
.gp-mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gp-grad);
  position: relative;
  flex-shrink: 0;
}
.gp-mark::after {
  content: '';
  position: absolute;
  width: 12px; height: 8px;
  background: var(--gp-leaf);
  border-radius: 0 100% 0 100%;
  top: -3px; right: 4px;
  transform: rotate(35deg);
}

/* ===== Hero ===== */
.gp-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.gp-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 145, 102, 0.45), transparent 70%),
    radial-gradient(ellipse 70% 60% at 10% 80%, rgba(255, 138, 138, 0.35), transparent 70%),
    var(--gp-grad-warm);
  z-index: -1;
}
.gp-hero-grain {
  position: absolute; inset: 0;
  opacity: 0.4;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' /><feColorMatrix values='0 0 0 0 0.6  0 0 0 0 0.4  0 0 0 0 0.3  0 0 0 0.08 0' /></filter><rect width='200' height='200' filter='url(%23n)' /></svg>");
}

/* big peach decoration */
.gp-peach-blob {
  position: absolute;
  width: 540px; height: 540px;
  right: -120px; bottom: -120px;
  background: radial-gradient(circle at 35% 35%, #FFC58A 0%, #FF9166 50%, #FF6B6B 100%);
  border-radius: 50%;
  filter: blur(0.5px);
  opacity: 0.85;
  z-index: 0;
}
.gp-peach-blob::after {
  content: '';
  position: absolute;
  width: 110px; height: 70px;
  background: linear-gradient(135deg, var(--gp-leaf) 0%, var(--gp-leaf-deep) 100%);
  border-radius: 0 100% 0 100%;
  top: 30px; right: 90px;
  transform: rotate(35deg);
  box-shadow: -2px 4px 12px rgba(70, 30, 15, 0.15);
}

@media (max-width: 880px) {
  .gp-peach-blob { width: 320px; height: 320px; right: -80px; bottom: -80px; }
  .gp-peach-blob::after { width: 70px; height: 44px; top: 18px; right: 60px; }
}

.gp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.gp-hero h1 {
  margin: 24px 0 24px;
  color: var(--gp-ink);
}
.gp-hero h1 em {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(110deg, #FF6B6B 0%, #FF9166 60%, #FFC58A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  line-height: 1.15;
  padding-bottom: 0.08em;
}
.gp-hero p.lede {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--gp-ink-soft);
  max-width: 600px;
  margin: 0 0 36px;
  line-height: 1.5;
}
.gp-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.gp-hero-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.gp-hero-meta-item .num {
  font-family: var(--gp-font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.gp-hero-meta-item .label {
  font-size: 13px;
  color: var(--gp-ink-soft);
  margin-top: 4px;
}
.gp-hero-meta-divider {
  width: 1px; height: 36px;
  background: var(--gp-line);
}

/* marquee */
.gp-marquee {
  border-top: 1px solid var(--gp-line);
  border-bottom: 1px solid var(--gp-line);
  padding: 18px 0;
  background: var(--gp-cream);
  overflow: hidden;
}
.gp-marquee-track {
  display: flex; gap: 56px;
  animation: gp-marquee 40s linear infinite;
  width: max-content;
}
.gp-marquee-item {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--gp-font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--gp-ink-soft);
  white-space: nowrap;
}
.gp-marquee-item .dot {
  width: 8px; height: 8px;
  background: var(--gp-coral);
  border-radius: 50%;
}
@keyframes gp-marquee {
  to { transform: translateX(-50%); }
}

/* ===== Cards ===== */
.gp-card {
  background: var(--gp-white);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  padding: 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.gp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gp-shadow);
  border-color: rgba(255, 145, 102, 0.4);
}

/* ===== Section header ===== */
.gp-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.gp-section-head .gp-eyebrow { margin-bottom: 16px; display: block; }
.gp-section-head h2 { margin: 0; max-width: 720px; }
.gp-section-head p { color: var(--gp-ink-soft); max-width: 380px; margin: 0; font-size: 17px; }

/* ===== About ===== */
.gp-about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) { .gp-about { grid-template-columns: 1fr; gap: 48px; } }

.gp-about-points { display: grid; gap: 4px; margin-top: 32px; }
.gp-about-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gp-line);
  align-items: center;
}
.gp-about-point:last-child { border-bottom: none; }
.gp-about-point .idx {
  font-family: var(--gp-font-mono);
  font-size: 12px;
  color: var(--gp-coral-deep);
  letter-spacing: 0.1em;
}
.gp-about-point .txt {
  font-family: var(--gp-font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  color: var(--gp-ink);
  letter-spacing: -0.01em;
}

.gp-about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--gp-radius-lg);
  background: var(--gp-grad);
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 32px;
}
.gp-about-visual::before {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle at 30% 30%, #FFE0CC 0%, #FFB088 60%, transparent 100%);
  border-radius: 50%;
  top: -60px; right: -40px;
  opacity: 0.7;
}
.gp-about-visual-stamp {
  position: relative;
  z-index: 2;
  background: rgba(255, 247, 241, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--gp-radius);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  max-width: 320px;
}
.gp-about-visual-stamp .num {
  font-family: var(--gp-font-display);
  font-size: 48px;
  font-weight: 700;
  background: var(--gp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.gp-about-visual-stamp .lab {
  font-size: 13px;
  color: var(--gp-ink-soft);
  line-height: 1.3;
}

/* floating leaves */
.gp-about-visual-leaf {
  position: absolute;
  width: 80px; height: 50px;
  background: linear-gradient(135deg, var(--gp-leaf) 0%, var(--gp-leaf-deep) 100%);
  border-radius: 0 100% 0 100%;
  z-index: 1;
}
.gp-about-visual-leaf.l1 { top: 60px; left: 50px; transform: rotate(-20deg); }
.gp-about-visual-leaf.l2 { top: 200px; right: 60px; transform: rotate(60deg); width: 50px; height: 32px; }

/* ===== Industry pills ===== */
.gp-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.gp-pill {
  padding: 8px 14px;
  border: 1px solid var(--gp-line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--gp-ink-soft);
  background: var(--gp-white);
}

/* ===== Services ===== */
.gp-services-bg {
  background: var(--gp-cream-deep);
  position: relative;
}
.gp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gp-line);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-lg);
  overflow: hidden;
}
@media (max-width: 880px) { .gp-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gp-services-grid { grid-template-columns: 1fr; } }

.gp-service {
  background: var(--gp-cream);
  padding: 36px 32px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
  position: relative;
  transition: background 0.25s;
}
.gp-service:hover { background: var(--gp-white); }
.gp-service.active { background: var(--gp-ink); color: var(--gp-cream); }
.gp-service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gp-grad-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--gp-coral-deep);
}
.gp-service.active .gp-service-icon { background: rgba(255, 138, 138, 0.2); color: var(--gp-orange-soft); }
.gp-service h3 {
  font-family: var(--gp-font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
}
.gp-service p {
  margin: 0;
  font-size: 14px;
  color: var(--gp-ink-soft);
  line-height: 1.5;
}
.gp-service.active p { color: rgba(255, 247, 241, 0.7); }
.gp-service-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--gp-font-mono);
  font-size: 12px;
  color: var(--gp-ink-mute);
  letter-spacing: 0.1em;
}
.gp-service.active .gp-service-num { color: rgba(255, 247, 241, 0.5); }

/* ===== Pricing ===== */
.gp-pricing-toggle {
  display: inline-flex;
  background: var(--gp-white);
  border: 1px solid var(--gp-line);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 56px;
}
.gp-pricing-toggle button {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gp-ink-soft);
  transition: all 0.2s;
}
.gp-pricing-toggle button.on {
  background: var(--gp-ink);
  color: var(--gp-cream);
}

.gp-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .gp-tier-grid { grid-template-columns: 1fr; } }

.gp-tier {
  background: var(--gp-white);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gp-tier:hover { transform: translateY(-6px); box-shadow: var(--gp-shadow); }
.gp-tier.featured {
  background: var(--gp-ink);
  color: var(--gp-cream);
  border-color: var(--gp-ink);
}
.gp-tier.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 32px;
  background: var(--gp-grad);
  color: var(--gp-white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gp-tier-name {
  font-family: var(--gp-font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.gp-tier-price {
  font-family: var(--gp-font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}
.gp-tier-price .currency {
  font-size: 28px;
  vertical-align: super;
  margin-right: 4px;
  font-weight: 500;
}
.gp-tier-price .num { font-size: 64px; }
.gp-tier-price .per { font-size: 16px; font-weight: 400; color: var(--gp-ink-soft); }
.gp-tier.featured .gp-tier-price .per { color: rgba(255, 247, 241, 0.6); }
.gp-tier ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 14px;
}
.gp-tier li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14px;
  line-height: 1.5;
}
.gp-tier li .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gp-grad);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: white;
  margin-top: 2px;
}
.gp-tier .gp-btn { justify-content: center; margin-top: auto; }

/* per-output table */
.gp-per-output {
  display: grid;
  gap: 1px;
  background: var(--gp-line);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-lg);
  overflow: hidden;
}
.gp-per-output-row {
  background: var(--gp-white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 24px 28px;
  align-items: center;
}
.gp-per-output-row:hover { background: var(--gp-cream); }
.gp-per-output-row .gp-eyebrow { display: block; margin-bottom: 6px; }
.gp-per-output-row .name {
  font-family: var(--gp-font-display);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.gp-per-output-row .desc {
  font-size: 14px;
  color: var(--gp-ink-soft);
  margin-top: 4px;
}
.gp-per-output-row .price {
  font-family: var(--gp-font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gp-coral-deep);
  white-space: nowrap;
}
.gp-per-output-row .price .from { font-size: 12px; color: var(--gp-ink-mute); display: block; margin-top: 2px; font-family: var(--gp-font-body); font-weight: 500; letter-spacing: 0; text-align: right; }

/* ===== Quote calculator ===== */
.gp-calc {
  background: linear-gradient(160deg, var(--gp-ink) 0%, #3a2a22 100%);
  color: var(--gp-cream);
  border-radius: var(--gp-radius-xl);
  padding: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 980px) { .gp-calc { grid-template-columns: 1fr; } }

.gp-calc::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: var(--gp-grad);
  filter: blur(80px);
  opacity: 0.4;
  bottom: -200px; right: -100px;
  border-radius: 50%;
}
.gp-calc-fields { position: relative; z-index: 2; display: grid; gap: 28px; }
.gp-calc-field { display: grid; gap: 10px; }
.gp-calc-field label {
  font-size: 13px;
  color: rgba(255, 247, 241, 0.7);
  font-weight: 500;
}
.gp-calc-field-row {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 247, 241, 0.1);
  border-radius: var(--gp-radius);
  padding: 4px;
}
.gp-calc-step {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: grid; place-items: center;
  font-size: 18px;
  color: var(--gp-cream);
  transition: background 0.2s;
}
.gp-calc-step:hover:not(:disabled) { background: rgba(255, 138, 138, 0.2); color: var(--gp-coral); }
.gp-calc-step:disabled { opacity: 0.3; cursor: not-allowed; }
.gp-calc-field-row .val {
  flex: 1;
  text-align: center;
  font-family: var(--gp-font-display);
  font-size: 22px;
  font-weight: 600;
}
.gp-calc-field-row .unit {
  font-size: 13px;
  color: rgba(255, 247, 241, 0.5);
  font-weight: 400;
  margin-left: 6px;
}

.gp-calc-summary {
  position: relative;
  z-index: 2;
  background: rgba(255, 247, 241, 0.04);
  border: 1px solid rgba(255, 247, 241, 0.12);
  border-radius: var(--gp-radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: start;
}
.gp-calc-summary .gp-eyebrow { color: rgba(255, 247, 241, 0.6); }
.gp-calc-summary .total {
  font-family: var(--gp-font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}
.gp-calc-summary .total .currency { font-size: 28px; vertical-align: super; margin-right: 4px; color: var(--gp-coral); }
.gp-calc-summary .total .num { font-size: 64px; background: var(--gp-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gp-calc-summary .total .per { font-size: 14px; font-weight: 400; color: rgba(255, 247, 241, 0.5); display: block; margin-top: 6px; }

.gp-calc-breakdown {
  display: grid; gap: 8px;
  border-top: 1px solid rgba(255, 247, 241, 0.1);
  padding-top: 20px;
  font-size: 13px;
}
.gp-calc-breakdown-row {
  display: flex; justify-content: space-between;
  color: rgba(255, 247, 241, 0.7);
}
.gp-calc-breakdown-row span:last-child { font-family: var(--gp-font-mono); }

/* ===== Process / Why ===== */
.gp-why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 880px) { .gp-why { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gp-why { grid-template-columns: 1fr; } }

.gp-why-card {
  background: var(--gp-white);
  border-radius: var(--gp-radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gp-line);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s, background 0.3s;
  min-height: 240px;
}
.gp-why-card:hover { transform: translateY(-4px); background: var(--gp-grad-soft); }
.gp-why-card .num {
  font-family: var(--gp-font-display);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--gp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 0.9;
}
.gp-why-card h4 {
  font-family: var(--gp-font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}
.gp-why-card p {
  font-size: 14px;
  color: var(--gp-ink-soft);
  margin: 0;
  line-height: 1.5;
}

/* ===== Portfolio ===== */
.gp-portfolio { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.gp-portfolio-item {
  position: relative;
  border-radius: var(--gp-radius-lg);
  overflow: hidden;
  background: var(--gp-cream-deep);
  cursor: pointer;
  transition: transform 0.3s;
  min-height: 280px;
  display: flex;
  align-items: end;
  padding: 24px;
}
.gp-portfolio-item:hover { transform: translateY(-4px); }
.gp-portfolio-item.span6 { grid-column: span 6; }
.gp-portfolio-item.span4 { grid-column: span 4; }
.gp-portfolio-item.span8 { grid-column: span 8; min-height: 320px; }
@media (max-width: 880px) {
  .gp-portfolio-item.span6, .gp-portfolio-item.span4, .gp-portfolio-item.span8 { grid-column: span 12; }
}

/* placeholder pattern */
.gp-portfolio-item .placeholder {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255, 145, 102, 0.08) 0px, rgba(255, 145, 102, 0.08) 1px, transparent 1px, transparent 12px),
    var(--gp-grad-soft);
}
.gp-portfolio-item .placeholder.dark {
  background-image:
    repeating-linear-gradient(45deg, rgba(255, 247, 241, 0.06) 0px, rgba(255, 247, 241, 0.06) 1px, transparent 1px, transparent 12px),
    linear-gradient(135deg, #2A1F1A 0%, #4a3528 100%);
}
.gp-portfolio-item .placeholder.coral {
  background-image:
    repeating-linear-gradient(45deg, rgba(255, 247, 241, 0.12) 0px, rgba(255, 247, 241, 0.12) 1px, transparent 1px, transparent 12px),
    var(--gp-grad);
}

.gp-portfolio-item .meta {
  position: relative; z-index: 2;
  background: rgba(255, 247, 241, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--gp-radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}
.gp-portfolio-item.dark .meta { background: rgba(42, 31, 26, 0.85); color: var(--gp-cream); }
.gp-portfolio-item .meta h5 {
  font-family: var(--gp-font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}
.gp-portfolio-item .meta .tag {
  font-family: var(--gp-font-mono);
  font-size: 11px;
  color: var(--gp-ink-mute);
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.gp-portfolio-item.dark .meta .tag { color: rgba(255, 247, 241, 0.5); }
.gp-portfolio-item .arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gp-ink);
  color: var(--gp-cream);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.gp-portfolio-item:hover .arrow { transform: rotate(-45deg); }
.gp-portfolio-item.dark .arrow { background: var(--gp-grad); }

.gp-portfolio-placeholder-label {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--gp-font-mono);
  font-size: 11px;
  color: var(--gp-ink-mute);
  letter-spacing: 0.1em;
  background: rgba(255, 247, 241, 0.6);
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}
.gp-portfolio-item.dark .gp-portfolio-placeholder-label { background: rgba(255, 247, 241, 0.15); color: rgba(255, 247, 241, 0.7); }

/* ===== Testimonials ===== */
.gp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .gp-testimonials { grid-template-columns: 1fr; } }
.gp-testimonial {
  background: var(--gp-white);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.gp-testimonial .quote-mark {
  font-family: var(--gp-font-display);
  font-size: 64px;
  line-height: 0.5;
  background: var(--gp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  height: 32px;
}
.gp-testimonial blockquote {
  font-family: var(--gp-font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--gp-ink);
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.gp-testimonial-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--gp-line);
  padding-top: 20px;
}
.gp-testimonial-author .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gp-grad);
  display: grid; place-items: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}
.gp-testimonial-author .who { font-weight: 600; font-size: 14px; }
.gp-testimonial-author .role { font-size: 12px; color: var(--gp-ink-mute); margin-top: 2px; }

/* ===== FAQ ===== */
.gp-faq { display: grid; gap: 0; max-width: 820px; margin: 0 auto; }
.gp-faq-item {
  border-bottom: 1px solid var(--gp-line);
  padding: 28px 4px;
  cursor: pointer;
}
.gp-faq-item:first-child { border-top: 1px solid var(--gp-line); }
.gp-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 24px;
  font-family: var(--gp-font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.gp-faq-q .icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gp-line);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.gp-faq-item.open .gp-faq-q .icon { background: var(--gp-grad); color: white; transform: rotate(45deg); border-color: transparent; }
.gp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.3s, opacity 0.3s;
  opacity: 0;
  color: var(--gp-ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
}
.gp-faq-item.open .gp-faq-a {
  max-height: 320px;
  margin-top: 16px;
  opacity: 1;
}

/* ===== Contact ===== */
.gp-contact-bg {
  background: var(--gp-grad);
  position: relative;
  overflow: hidden;
}
.gp-contact-bg::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 247, 241, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px; left: -100px;
}
.gp-contact-bg::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255, 247, 241, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -300px; right: -200px;
}

.gp-contact {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) { .gp-contact { grid-template-columns: 1fr; gap: 48px; } }

.gp-contact-text h2 { color: var(--gp-white); margin: 16px 0 24px; }
.gp-contact-text p { color: rgba(255, 255, 255, 0.85); font-size: 18px; max-width: 480px; }
.gp-contact-info { margin-top: 40px; display: grid; gap: 16px; }
.gp-contact-info-item {
  display: flex; align-items: center; gap: 14px;
  color: var(--gp-white);
  font-weight: 500;
}
.gp-contact-info-item .ico {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255, 247, 241, 0.2);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
}

.gp-form {
  background: var(--gp-cream);
  border-radius: var(--gp-radius-xl);
  padding: 40px;
  display: grid;
  gap: 18px;
  box-shadow: var(--gp-shadow-lg);
}
.gp-form .gp-eyebrow { color: var(--gp-coral-deep); }
.gp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .gp-form-row { grid-template-columns: 1fr; } }
.gp-form label {
  font-size: 12px;
  color: var(--gp-ink-soft);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
  font-family: var(--gp-font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gp-input, .gp-textarea, .gp-select {
  width: 100%;
  background: var(--gp-white);
  border: 1px solid var(--gp-line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--gp-ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gp-input:focus, .gp-textarea:focus, .gp-select:focus {
  border-color: var(--gp-coral);
  box-shadow: 0 0 0 4px rgba(255, 138, 138, 0.15);
}
.gp-textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.gp-chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.gp-chip {
  padding: 8px 14px;
  border: 1px solid var(--gp-line);
  border-radius: 999px;
  background: var(--gp-white);
  font-size: 13px;
  color: var(--gp-ink-soft);
  cursor: pointer;
  transition: all 0.15s;
}
.gp-chip:hover { border-color: var(--gp-coral); color: var(--gp-ink); }
.gp-chip.on { background: var(--gp-ink); color: var(--gp-cream); border-color: var(--gp-ink); }

.gp-form-success {
  text-align: center;
  padding: 40px 20px;
}
.gp-form-success .icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gp-grad);
  display: grid; place-items: center;
  color: white;
}
.gp-form-success h3 { font-family: var(--gp-font-display); font-size: 28px; margin: 0 0 8px; }
.gp-form-success p { color: var(--gp-ink-soft); margin: 0; }

/* ===== Footer ===== */
.gp-footer {
  background: var(--gp-ink);
  color: var(--gp-cream);
  padding: 80px 0 32px;
}
.gp-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 247, 241, 0.1);
}
@media (max-width: 880px) { .gp-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
.gp-footer-brand .gp-mark { width: 36px; height: 36px; }
.gp-footer-brand h3 { font-family: var(--gp-font-display); font-size: 28px; margin: 16px 0 12px; font-weight: 700; letter-spacing: -0.02em; }
.gp-footer-brand p { color: rgba(255, 247, 241, 0.6); font-size: 14px; max-width: 280px; line-height: 1.6; }
.gp-footer-col h5 {
  font-family: var(--gp-font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 247, 241, 0.5);
  margin: 0 0 18px;
  font-weight: 500;
}
.gp-footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.gp-footer-col a { color: rgba(255, 247, 241, 0.85); font-size: 14px; transition: color 0.15s; }
.gp-footer-col a:hover { color: var(--gp-coral); }

.gp-footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  font-size: 13px;
  color: rgba(255, 247, 241, 0.4);
  flex-wrap: wrap;
  gap: 16px;
}

/* big text */
.gp-bigtext {
  font-family: var(--gp-font-display);
  font-size: clamp(80px, 14vw, 240px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.85;
  text-align: center;
  background: var(--gp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 64px;
  user-select: none;
  pointer-events: none;
}

/* utility */
.gp-stack { display: grid; gap: 16px; }
.gp-flex { display: flex; gap: 16px; align-items: center; }
.gp-flex-between { display: flex; gap: 16px; align-items: center; justify-content: space-between; }

/* fade-in */
@keyframes gp-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.gp-reveal {
  animation: gp-fade-up 0.8s ease both;
}

/* dark mode for tweak */
body.gp-dark { --gp-cream: #1F1612; --gp-cream-deep: #2A1F1A; --gp-ink: #FFF7F1; --gp-ink-soft: #D4C5BA; --gp-ink-mute: #9C8A7E; --gp-line: rgba(255, 247, 241, 0.12); --gp-white: #2A1F1A; --gp-grad-warm: linear-gradient(180deg, #1F1612 0%, #2A1F1A 100%); }
body.gp-dark .gp-card,
body.gp-dark .gp-tier:not(.featured),
body.gp-dark .gp-form,
body.gp-dark .gp-testimonial,
body.gp-dark .gp-why-card,
body.gp-dark .gp-pricing-toggle,
body.gp-dark .gp-pill,
body.gp-dark .gp-input, body.gp-dark .gp-textarea, body.gp-dark .gp-chip { background: #2A1F1A; }
body.gp-dark .gp-tier.featured { background: var(--gp-grad); color: white; }
body.gp-dark .gp-service { background: #1F1612; }
body.gp-dark .gp-service:hover { background: #2A1F1A; }

