
* {
  box-sizing: border-box;
}

:root {
  --bg: #090909;
  --bg-soft: #111111;
  --surface: #ffffff;
  --surface-soft: #fbfaf6;
  --surface-tint: #f5f1e4;
  --text: #111111;
  --text-soft: #5e5e5e;
  --line: #ece6d8;
  --brand: #caa53a;
  --brand-dark: #aa8520;
  --brand-soft: #f4ead0;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0,0,0,0.10);
  --shadow-strong: 0 30px 80px rgba(0,0,0,0.24);
  --radius: 24px;
  --radius-lg: 30px;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0c0c0c, #caa53a);
  color: white;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.brand-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  color: white;
  font-weight: 800;
  font-size: 18px;
}

.brand-subtitle {
  color: rgba(255,255,255,0.58);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 28px;
}

.desktop-nav a {
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  font-size: 14px;
}

.desktop-nav a:hover {
  color: var(--brand);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 14px;
  background: var(--brand);
  color: #171717;
  border: 1px solid var(--brand);
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #d9b653;
}

.button-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.16);
}

.button-secondary:hover {
  background: rgba(255,255,255,0.06);
  color: white;
}

.button-light {
  background: white;
  color: #111111;
  border-color: white;
}

.button-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.18);
}

.button-ghost:hover {
  background: rgba(255,255,255,0.06);
}

.full {
  width: 100%;
}

.hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at 80% 15%, rgba(202,165,58,0.18), transparent 22%),
    linear-gradient(180deg, #090909 0%, #111111 100%);
  color: white;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}

.eyebrow.light {
  color: #f1ddb0;
}

.hero h1,
.section-heading h2,
.split-grid h2,
.cta-copy h2 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  max-width: 760px;
}

.hero h1 span {
  color: var(--brand);
}

.hero-lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 600;
}

.hero-showcase {
  position: relative;
}

.showcase-card {
  background: linear-gradient(180deg, #181818, #0f0f0f);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.showcase-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.showcase-bar span,
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  background: rgba(255,255,255,0.2);
}

.showcase-body {
  background: linear-gradient(180deg, #111111, #1a1a1a 30%, #0d0d0d 100%);
  padding: 34px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.fake-logo {
  color: white;
  font-size: 20px;
  font-weight: 800;
}

.fake-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(202,165,58,0.16);
  border: 1px solid rgba(202,165,58,0.34);
  color: #f5ddb2;
  font-size: 12px;
  font-weight: 700;
}

.showcase-body h3 {
  margin: 28px 0 0;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 420px;
}

.showcase-body p {
  color: rgba(255,255,255,0.74);
  margin: 16px 0 0;
}

.fake-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.fake-actions span {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--brand);
  color: #111111;
  font-size: 13px;
  font-weight: 800;
}

.fake-actions span:last-child {
  background: rgba(255,255,255,0.07);
  color: white;
}

.floating-chip {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 700;
  color: #111111;
}

.chip-one {
  left: -16px;
  top: 50px;
}

.chip-two {
  right: -10px;
  bottom: 34px;
  background: var(--brand-soft);
}

.credibility-strip {
  padding: 0 0 40px;
  background: linear-gradient(180deg, #111111 0, #ffffff 100%);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cred-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.cred-item strong {
  display: block;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.cred-item span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 14px;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.split-grid h2,
.cta-copy h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.section-heading p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 18px;
}

.services-section {
  background: var(--surface);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.price-card,
.process-card,
.portfolio-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card {
  padding: 30px;
  box-shadow: var(--shadow);
}

.service-card.featured {
  background: linear-gradient(180deg, #fffdf7, #ffffff);
  border-color: #ead7a1;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: #6f560f;
  font-weight: 800;
  margin-bottom: 22px;
}

.service-card h3,
.process-card h3,
.portfolio-copy h3 {
  margin: 0;
  font-size: 23px;
}

.service-card p,
.process-card p,
.portfolio-copy p,
.benefit-item p,
.plan-desc,
.cta-copy p {
  color: var(--text-soft);
}

.service-card ul,
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.service-card li,
.price-card li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
  color: #444444;
  font-size: 14px;
}

.service-card li::before,
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-dark);
  font-weight: 900;
}

.dark-section {
  background: linear-gradient(180deg, #0c0c0c, #111111);
  color: white;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.benefit-item {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.benefit-item h3 {
  margin: 0 0 8px;
  color: #f4e1a6;
}

.benefit-item p {
  color: rgba(255,255,255,0.72);
  margin: 0;
}

.pricing-section {
  background: var(--surface-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.featured-price {
  border: 2px solid var(--brand);
  background: linear-gradient(180deg, #fffef8, #ffffff);
}

.popular-tag {
  position: absolute;
  top: -14px;
  right: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #111111;
  color: #f4ddb2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-label {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.price-card h3 {
  margin: 0;
  font-size: 38px;
  letter-spacing: -0.04em;
}

.price-card h3 span,
.monthly span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
}

.monthly {
  margin-top: 10px;
  font-size: 28px;
  font-weight: 800;
}

.plan-desc {
  min-height: 72px;
}

.price-card ul {
  flex: 1;
}

.pricing-note {
  margin-top: 24px;
  text-align: center;
  color: var(--text-soft);
  font-size: 13px;
}

.process-section {
  background: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  padding: 26px;
}

.step {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-section {
  background: var(--surface-soft);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}

.portfolio-card {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.portfolio-card.large {
  grid-row: span 1;
}

.portfolio-visual {
  min-height: 240px;
  padding: 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.visual-dark {
  background: linear-gradient(135deg, #0d0d0d, #2a2214);
  color: white;
}

.visual-light {
  background: linear-gradient(135deg, #ffffff, #f8f1e0);
}

.visual-gold {
  background: linear-gradient(135deg, #f1dfae, #fffaf0);
}

.visual-top {
  display: flex;
  gap: 8px;
}

.visual-content h3 {
  margin: 12px 0 0;
  font-size: 30px;
  line-height: 1.14;
  letter-spacing: -0.03em;
  max-width: 420px;
}

.visual-label {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-light .visual-label,
.visual-gold .visual-label {
  background: rgba(17,17,17,0.08);
}

.portfolio-copy {
  padding: 24px;
}

.quote-section {
  padding-top: 40px;
  padding-bottom: 40px;
  background: white;
}

.quote-box {
  border-radius: 28px;
  padding: 36px;
  background: linear-gradient(135deg, #111111, #1d1d1d);
  color: white;
  border: 1px solid rgba(255,255,255,0.06);
}

.quote-text {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: center;
}

.cta-section {
  background: linear-gradient(180deg, #0d0d0d, #111111);
}

.cta-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: stretch;
}

.cta-copy {
  padding: 10px 0;
  color: white;
}

.cta-copy p {
  color: rgba(255,255,255,0.76);
  max-width: 620px;
  font-size: 18px;
}

.cta-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.footer {
  background: #090909;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 26px 0 34px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 4px;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .credibility-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid,
  .pricing-grid,
  .portfolio-grid,
  .cta-box,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .header-button {
    display: none;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding-top: 64px;
  }

  .section {
    padding: 74px 0;
  }

  .credibility-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .price-card,
  .process-card,
  .portfolio-copy,
  .cta-panel,
  .quote-box {
    padding-left: 22px;
    padding-right: 22px;
  }

  .showcase-body {
    min-height: 360px;
    padding: 24px;
  }

  .showcase-body h3 {
    font-size: 28px;
  }

  .floating-chip {
    display: none;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    text-align: left;
  }
}
