:root {
  --bg: #11161f;
  --bg-deep: #0a0f17;
  --surface: rgba(22, 30, 41, 0.92);
  --surface-soft: rgba(28, 38, 52, 0.72);
  --surface-strong: #1b2430;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f1e8;
  --muted: #b5b7be;
  --soft: #7e8692;
  --primary: #f28b30;
  --primary-strong: #d96b10;
  --secondary: #d8c3a5;
  --accent: #6dc7c1;
  --success: #4fb979;
  --danger: #e67676;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(242, 139, 48, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(109, 199, 193, 0.14), transparent 22%),
    linear-gradient(180deg, #11161f 0%, #0b1119 100%);
  min-height: 100vh;
}

body.cookie-lock {
  overflow: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
  appearance: none;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.site-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: perspective(1200px) skewY(-6deg);
  opacity: 0.35;
}

.site-bg__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
}

.site-bg__glow--left {
  top: -120px;
  left: -120px;
  background: rgba(242, 139, 48, 0.22);
}

.site-bg__glow--right {
  top: 80px;
  right: -120px;
  background: rgba(109, 199, 193, 0.18);
}

.site-header,
.site-footer,
main {
  position: relative;
  z-index: 1;
}

.site-header {
  padding: 28px 20px 0;
}

.site-header__inner,
.hero-section,
.stats-section,
.content-band,
.page-shell,
.site-footer__grid {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 21, 30, 0.72);
  backdrop-filter: blur(14px);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #ffb054);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 12px 30px rgba(242, 139, 48, 0.25);
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong,
h1,
h2,
h3 {
  font-family: 'Sora', sans-serif;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-copy small,
.eyebrow,
.section-heading__eyebrow,
.footer-kicker,
.cookie-eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
}

.site-nav,
.mobile-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a,
.mobile-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 14px 30px rgba(217, 107, 16, 0.3);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
}

.mobile-nav {
  display: none;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 14px auto 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 21, 30, 0.95);
  flex-direction: column;
  align-items: flex-start;
}

.mobile-nav__cta {
  width: 100%;
  margin-top: 6px;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: 44px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 70px;
}

.hero-section__content {
  position: relative;
}

.hero-section__content::before {
  content: "";
  position: absolute;
  top: -44px;
  left: -16px;
  width: 72px;
  height: 72px;
  background:
    linear-gradient(transparent 42%, rgba(242, 139, 48, 0.8) 42% 58%, transparent 58%),
    linear-gradient(90deg, transparent 42%, rgba(242, 139, 48, 0.8) 42% 58%, transparent 58%);
  transform: rotate(22deg);
  opacity: 0.8;
}

.hero-section h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.9rem, 7vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  max-width: 11ch;
}

.hero-copy,
.section-heading p,
.page-intro,
.page-side-note p,
.service-card p,
.highlight-card span,
.process-card p,
.quote-card p,
.faq-card p,
.info-card p,
.project-card span,
.site-footer p,
.contact-form-card,
.detail-list,
.metric-line span,
.stat-card p,
.trust-strip p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy {
  max-width: 620px;
  font-size: 1.05rem;
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
}

.trust-score {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.trust-score span {
  font-family: 'Sora', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.trust-score small {
  color: var(--muted);
}

.hero-visual__panel {
  position: relative;
  min-height: 640px;
  padding: 34px;
  border-radius: 40px;
  background:
    radial-gradient(circle at center, rgba(242, 139, 48, 0.95) 0%, rgba(122, 62, 20, 0.78) 40%, rgba(16, 19, 26, 0.92) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-visual__halo {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 210%;
  height: 210%;
  transform: translate(-50%, -50%);
  background: repeating-conic-gradient(from 0deg, transparent 0deg 14deg, rgba(255, 255, 255, 0.06) 14deg 28deg);
  opacity: 0.8;
}

.hero-visual__structure {
  position: absolute;
  inset: auto 28px 28px 28px;
  height: 68%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  z-index: 1;
}

.hero-visual__structure span {
  flex: 1;
  background: linear-gradient(180deg, rgba(245, 241, 232, 0.18), rgba(12, 16, 23, 0.88));
  border-radius: 18px 18px 0 0;
  position: relative;
}

.hero-visual__structure span:nth-child(1) {
  height: 56%;
}

.hero-visual__structure span:nth-child(2) {
  height: 82%;
}

.hero-visual__structure span:nth-child(3) {
  height: 72%;
}

.hero-visual__structure span:nth-child(4) {
  height: 92%;
}

.hero-visual__card,
.hero-visual__metric,
.stat-card,
.info-card,
.service-card,
.highlight-card,
.process-card,
.quote-card,
.faq-card,
.project-card,
.metric-line,
.page-hero-card,
.contact-form-card,
.contact-summary,
.cta-panel,
.site-footer {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-visual__card {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: min(88%, 360px);
  z-index: 2;
  border-radius: 24px;
  padding: 20px;
}

.hero-visual__card strong,
.hero-visual__metric strong,
.stat-card strong,
.highlight-card strong,
.metric-line strong,
.project-card h3,
.info-card h3,
.service-card h3,
.process-card h3,
.quote-card h3,
.faq-card h3,
.page-hero-card h1,
.site-footer h2,
.site-footer h3,
.contact-summary h2 {
  font-family: 'Sora', sans-serif;
}

.hero-visual__card strong {
  font-size: 1.15rem;
}

.hero-visual__card p {
  margin: 8px 0 14px;
  color: var(--muted);
}

.hero-visual__progress {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-visual__progress span {
  display: block;
  width: 82%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.hero-visual__card small {
  display: block;
  margin-top: 10px;
  color: var(--secondary);
}

.hero-visual__metric {
  position: absolute;
  z-index: 2;
  padding: 16px 18px;
  border-radius: 20px;
  min-width: 170px;
}

.hero-visual__metric--left {
  top: 76px;
  left: -18px;
}

.hero-visual__metric--right {
  top: 160px;
  right: -18px;
}

.hero-visual__metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.stat-card,
.info-card,
.service-card,
.highlight-card,
.process-card,
.quote-card,
.faq-card,
.project-card,
.metric-line {
  border-radius: var(--radius-lg);
  padding: 26px;
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 2rem;
}

.stat-card p {
  margin: 0;
}

.content-band {
  padding: 26px 0;
}

.content-band--soft .content-band__inner,
.content-band--soft > .section-heading,
.content-band--soft > .split-section,
.content-band--soft > .cta-panel,
.content-band--soft > .project-metrics,
.content-band--soft > .service-grid,
.content-band--soft > .testimonial-grid,
.content-band--soft > .faq-grid,
.content-band--soft > .info-grid,
.content-band--soft > .highlight-grid {
  position: relative;
}

.content-band__inner,
.split-section {
  display: grid;
  gap: 26px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.section-heading h2,
.page-hero-card h1,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.section-heading p,
.page-intro {
  margin: 0;
  max-width: 760px;
}

.info-grid,
.service-grid,
.highlight-grid,
.process-grid,
.testimonial-grid,
.faq-grid,
.project-grid {
  display: grid;
  gap: 18px;
}

.info-grid,
.highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid,
.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid--wide,
.testimonial-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.highlight-card,
.project-card {
  min-height: 100%;
}

.service-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--secondary);
  font-weight: 700;
}

.highlight-card p,
.project-card p {
  margin: 0 0 12px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.highlight-card strong,
.project-card h3,
.metric-line strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.split-section {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.project-metrics {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
}

.metric-stack {
  display: grid;
  gap: 14px;
  min-width: min(100%, 380px);
}

.metric-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.metric-line span {
  margin-right: 16px;
}

.page-shell {
  padding: 42px 0 8px;
}

.page-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.7fr);
  gap: 24px;
  padding: 32px;
  border-radius: 34px;
}

.page-side-note {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.page-intro {
  margin-top: 14px;
}

.detail-list {
  margin: 0;
  padding-left: 20px;
}

.detail-list li + li {
  margin-top: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
}

.contact-summary,
.contact-form-card {
  border-radius: 30px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span,
.checkbox-field span {
  color: var(--secondary);
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 14px 16px;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--soft);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-field input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.checkbox-field input:checked {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
}

.notice {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
}

.notice--success {
  color: #dff7e7;
  background: rgba(79, 185, 121, 0.16);
  border: 1px solid rgba(79, 185, 121, 0.3);
}

.notice--error {
  color: #ffdede;
  background: rgba(230, 118, 118, 0.16);
  border: 1px solid rgba(230, 118, 118, 0.28);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 32px;
  border-radius: 32px;
}

.site-footer {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 36px auto 40px;
  padding: 32px;
  border-radius: 34px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
}

.checkbox-field a {
  color: var(--secondary);
}

.cookie-slot {
  width: min(var(--max-width), calc(100% - 40px));
  min-height: 84px;
  margin: 0 auto 12px;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.dialog-box {
  width: min(92vw, 520px);
  background: #17202c;
  color: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dialog-box h2 {
  margin: 0 0 12px;
  font-size: 1.8rem;
  line-height: 1.15;
}

.dialog-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
}

.accept,
.deny {
  border: 0;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
}

.accept {
  background: #f28b30;
  color: #fff;
}

.deny {
  background: #2b3645;
  color: #fff;
}

.policy-link {
  display: inline-block;
  margin-top: 16px;
  color: #d8c3a5;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1080px) {
  .site-nav,
  .site-header__cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .hero-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .stats-section,
  .info-grid,
  .service-grid,
  .highlight-grid,
  .process-grid,
  .process-grid--wide,
  .testimonial-grid,
  .faq-grid,
  .project-grid,
  .site-footer__grid,
  .contact-grid,
  .page-hero-card,
  .split-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-metrics,
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 18px;
  }

  .site-header__inner,
  .hero-section,
  .stats-section,
  .content-band,
  .page-shell,
  .site-footer,
  .mobile-nav {
    width: min(var(--max-width), calc(100% - 24px));
  }

  .site-header__inner {
    padding: 14px 16px;
    border-radius: 26px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-section {
    gap: 28px;
    padding-top: 36px;
    padding-bottom: 42px;
  }

  .hero-section__content::before {
    top: -26px;
    left: 0;
    width: 54px;
    height: 54px;
  }

  .hero-visual__panel {
    min-height: 520px;
    padding: 18px;
    border-radius: 30px;
  }

  .hero-visual__metric--left,
  .hero-visual__metric--right {
    position: static;
    margin-bottom: 12px;
  }

  .hero-visual__metric {
    min-width: 0;
  }

  .hero-visual__card {
    bottom: 18px;
  }

  .stats-section,
  .info-grid,
  .service-grid,
  .highlight-grid,
  .process-grid,
  .process-grid--wide,
  .testimonial-grid,
  .faq-grid,
  .project-grid,
  .site-footer__grid,
  .contact-grid,
  .page-hero-card,
  .split-section,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-card,
  .site-footer,
  .cta-panel {
    padding: 24px;
  }

  .metric-stack {
    width: 100%;
    min-width: 0;
  }

  .cookie-slot {
    width: min(var(--max-width), calc(100% - 24px));
    min-height: 96px;
  }

  .buttons {
    flex-direction: column;
  }
}
