/**
 * ==========================================================================
 *    MGA Mamun Network Websites Designing
 *    Redesigned to follow a supplied reference template: near-black surface,
 *    a blue → violet gradient as the single accent, a laptop-mockup hero,
 *    an icon feature strip, and a checklist-style services section.
 *    ==========================================================================
 *
 * @format
 */

:root {
  /* Color — sampled from the reference screenshot */
  --bg: #0a0a12;
  --bg-panel: #12121d;
  --bg-panel-2: #181826;
  --blue: #4c6fff;
  --violet: #8b5cf6;
  --gradient: linear-gradient(90deg, var(--blue), var(--violet));
  --text: #f3f4f8;
  --text-dim: #9ba3b8;
  --border: rgba(255, 255, 255, 0.09);
  --danger: #f0645a;
  --success: #4ade80;

  /* Type */
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  /* Layout */
  --wrap: 1180px;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  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;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
}

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

/* ==========================================================================
   Ambient glows (decorative)
   ========================================================================== */

.glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.35;
}
.glow--hero {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -160px;
  background: radial-gradient(circle, var(--violet), transparent 70%);
}
.glow--cta {
  width: 460px;
  height: 460px;
  top: 3200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--blue), transparent 70%);
}

/* ==========================================================================
   Shared: eyebrow labels, section titles, buttons
   ========================================================================== */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
}
.eyebrow--center {
  justify-content: center;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  flex: none;
}

.section-title {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-title--left {
  text-align: left;
}
.services .section-title,
.work .section-title,
.process .section-title,
.pricing .section-title {
  text-align: center;
}

.section-lede {
  color: var(--text-dim);
  max-width: 560px;
  font-size: 16px;
}
.services .section-lede,
.pricing .section-lede {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.services-copy .section-lede {
  margin: 0 0 30px;
  text-align: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 40px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    filter 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    background 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-arrow {
  display: inline-block;
  transition: transform 0.15s ease;
}
.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.btn--solid {
  background: var(--gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.28);
}
.btn--solid:hover {
  filter: brightness(1.08);
}

.btn--line {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--line:hover {
  border-color: var(--violet);
  color: var(--violet);
}

.btn--small {
  padding: 11px 22px;
  font-size: 13px;
}
.btn--full {
  width: 100%;
}

/* ==========================================================================
   Header
   ========================================================================== */

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

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.logo-mark-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.logo--footer .logo-mark-img {
  height: 28px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--text);
  display: flex;
  flex-direction: column;
}
.logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

.site-nav {
  display: flex;
  gap: 30px;
}
.site-nav a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.15s ease-in-out;
}
.site-nav a:hover {
  color: var(--text);
}

.header-tagline {
  flex: none;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-dim);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition:
    transform 0.2s ease,
    opacity 0.2s 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 {
  position: relative;
  z-index: 1;
  padding: 80px 0 90px;
  overflow: hidden;
}

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

.hero-kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(36px, 4.6vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.hero-lede {
  color: var(--text-dim);
  font-size: 16.5px;
  max-width: 460px;
  margin-bottom: 34px;
}

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

/* --- laptop mockup --- */
.hero-visual {
  position: relative;
  padding: 20px 0 40px;
}

.laptop {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}

.laptop__screen {
  position: relative;
  background: #0d0d18;
  border: 1px solid var(--border);
  border-radius: 12px 12px 4px 4px;
  padding: 14px 16px 26px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.laptop__nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  position: relative;
  z-index: 2;
}
.laptop__nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: var(--text);
}
.laptop__nav-links {
  display: flex;
  gap: 8px;
  margin-right: auto;
}
.laptop__nav-links i {
  display: block;
  width: 16px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.16);
}
.laptop__nav-cta {
  font-size: 9px;
  font-family: var(--font-mono);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 10px;
}

.laptop__body {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}
.laptop__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 14px;
  max-width: 220px;
}
.laptop__cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: #ffffff;
  background: var(--gradient);
  border-radius: 20px;
  padding: 7px 14px;
}

.laptop__swirl {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: conic-gradient(
    from 90deg,
    var(--blue),
    var(--violet),
    transparent 70%
  );
  filter: blur(30px);
  opacity: 0.55;
  z-index: 1;
}

.laptop__base {
  height: 14px;
  background: linear-gradient(180deg, #1b1b29, #0a0a12);
  border-radius: 0 0 10px 10px;
  margin: 0 -6px;
  position: relative;
}
.laptop__base::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #26263a;
  border-radius: 0 0 6px 6px;
}

.laptop__shadow {
  height: 30px;
  margin-top: 10px;
  background: radial-gradient(
    ellipse at center,
    rgba(139, 92, 246, 0.35),
    transparent 70%
  );
  filter: blur(10px);
}

.stat-chip {
  position: absolute;
  background: rgba(18, 18, 29, 0.9);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.stat-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-chip span {
  font-size: 10.5px;
  color: var(--text-dim);
  white-space: nowrap;
}
.stat-chip--a {
  left: -10px;
  top: 30%;
}
.stat-chip--b {
  right: -10px;
  bottom: 6%;
}

/* ==========================================================================
   Feature strip
   ========================================================================== */

.feature-strip {
  position: relative;
  z-index: 1;
  padding: 10px 0 90px;
}

.feature-strip__grid {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-panel);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 36px 10px;
}

.feature {
  padding: 0 26px;
}
.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-panel-2);
  color: var(--violet);
  margin-bottom: 16px;
}
.feature__icon svg {
  width: 22px;
  height: 22px;
}
.feature h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.feature p {
  font-size: 13.5px;
  color: var(--text-dim);
}

/* ==========================================================================
   Services — checklist + mockup
   ========================================================================== */

.services {
  position: relative;
  z-index: 1;
  padding: 40px 0 100px;
}

.services-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.checklist {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.checklist li svg {
  width: 20px;
  height: 20px;
  color: var(--violet);
  flex: none;
}

.services-visual {
  position: relative;
  height: 420px;
}

.stack {
  position: absolute;
  width: 82%;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.stack--back {
  background: var(--bg-panel-2);
  right: 0;
  top: 10px;
  height: 250px;
  transform: rotate(6deg);
  padding: 18px;
}
.stack--front {
  background: linear-gradient(155deg, #14142200, #0d0d18);
  background-color: var(--bg-panel);
  left: 0;
  bottom: 0;
  height: 300px;
  transform: rotate(-4deg);
  padding: 22px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.stack__bar {
  width: 40px;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
  margin-bottom: 16px;
}
.stack__line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
}
.stack__line--a {
  width: 70%;
}
.stack__line--b {
  width: 45%;
}
.stack__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 16px;
}
.stack__block {
  height: 90px;
  border-radius: 8px;
  background: var(--gradient);
  opacity: 0.85;
}

.code-chip {
  position: absolute;
  left: -14px;
  top: 40%;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--bg-panel-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  color: var(--violet);
  font-size: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   CTA banner
   ========================================================================== */

.cta-banner {
  position: relative;
  z-index: 1;
  padding: 0 0 90px;
}

.cta-banner__inner {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-panel);
  padding: 46px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner__left {
  display: flex;
  align-items: center;
  gap: 22px;
}
.cta-banner__icon {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(76, 111, 255, 0.35);
}
.cta-banner__icon svg {
  width: 26px;
  height: 26px;
}
.cta-banner__left .eyebrow {
  margin-bottom: 8px;
}

.cta-banner__right {
  text-align: right;
}
.cta-banner__right p {
  color: var(--text-dim);
  font-size: 14.5px;
  margin-bottom: 12px;
}
.cta-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--violet);
  font-weight: 600;
}
.cta-banner__link:hover .btn-arrow {
  transform: translateX(3px);
}

/* ==========================================================================
   Stats bar
   ========================================================================== */

.stats-bar {
  position: relative;
  z-index: 1;
  padding: 0 0 100px;
}

.stats-bar__grid {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
}
.stat svg {
  width: 26px;
  height: 26px;
  color: var(--violet);
  flex: none;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
}
.stat span {
  font-size: 12.5px;
  color: var(--text-dim);
}

/* ==========================================================================
   Work
   ========================================================================== */

.work {
  position: relative;
  z-index: 1;
  padding: 0 0 100px;
}

.work-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--bg-panel);
}

.work-card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 16px;
}

.work-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.work-card p {
  color: var(--text-dim);
  font-size: 14.5px;
  margin-bottom: 20px;
}

.work-card__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.work-card__meta li {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
}

.work-card--placeholder {
  border-style: dashed;
  opacity: 0.75;
}

/* ==========================================================================
   Process
   ========================================================================== */

.process {
  position: relative;
  z-index: 1;
  padding: 90px 0;
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-list {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.process-list li {
  display: flex;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--border);
}
.process-list li:last-child {
  border-bottom: 1px solid var(--border);
}

.process-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--violet);
  flex: none;
  width: 40px;
  padding-top: 2px;
}

.process-list h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.process-list p {
  color: var(--text-dim);
  font-size: 14.5px;
  max-width: 54ch;
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

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

.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  background: var(--bg-panel);
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card--featured {
  border-color: var(--violet);
  background: var(--bg-panel-2);
}

.price-card__flag {
  position: absolute;
  top: -12px;
  left: 30px;
  background: var(--gradient);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.price-card__index {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 14px;
  display: block;
}

.price-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.price-card__price {
  font-family: var(--font-display);
  color: var(--text);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}

.price-card__desc {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 22px;
}

.price-card__meta {
  display: flex;
  list-style: none;
  margin: 0 0 22px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.price-card__meta li {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text);
  padding: 0;
  border: none;
}
.price-card__meta li:not(:last-child) {
  border-right: 1px solid var(--border);
}
.price-card__meta li::before {
  content: none;
}
.price-card__meta span {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.price-card ul {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  flex: 1;
}
.price-card ul li {
  font-size: 13.5px;
  color: var(--text);
  padding: 8px 0 8px 20px;
  border-top: 1px solid var(--border);
  position: relative;
}
.price-card ul li:first-child {
  border-top: none;
}
.price-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}

.pricing-note {
  margin: 40px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  line-height: 1.7;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.contact .section-lede {
  margin-bottom: 34px;
}

.contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  font-size: 15px;
}
.contact-details li:last-child {
  border-bottom: 1px solid var(--border);
}
.contact-details span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.contact-details a:hover {
  color: var(--violet);
}

.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
}

.form-row {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.15s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--violet);
  outline: none;
}
.form-row textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row.has-error input,
.form-row.has-error textarea {
  border-color: var(--danger);
}

.form-error {
  font-size: 12.5px;
  color: var(--danger);
  min-height: 1em;
  font-family: var(--font-mono);
}

.form-status {
  margin-top: 16px;
  font-size: 14px;
  text-align: center;
  color: var(--success);
  min-height: 1.2em;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.logo--footer {
  margin-right: auto;
}
.logo--footer .logo-text {
  font-size: 12px;
}

.footer-nav {
  display: flex;
  gap: 22px;
}
.footer-nav a {
  font-size: 13px;
  color: var(--text-dim);
}
.footer-nav a:hover {
  color: var(--violet);
}

.footer-copy {
  width: 100%;
  font-size: 12.5px;
  color: var(--text-dim);
  padding-top: 24px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
}

/* ==========================================================================
   Scroll reveal (JS toggles .is-visible)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
  .feature-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }
  .services-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .services-visual {
    height: 320px;
    max-width: 420px;
    margin: 0 auto;
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-banner__left {
    flex-direction: column;
    text-align: center;
  }
  .cta-banner__right {
    text-align: center;
  }
  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }
}

@media (max-width: 700px) {
  .site-nav {
    display: none;
  }
  .header-tagline {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-panel);
    border-bottom: 1px solid var(--border);
    padding: 16px 28px 24px;
    gap: 16px;
  }

  .feature-strip__grid {
    grid-template-columns: 1fr;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar__grid {
    grid-template-columns: 1fr;
  }
  .glow {
    display: none;
  }
}
