/* =====================================================
   Eves Systems - Brand stylesheet
   Colours: navy #17305c · teal #0f5d6e · green #21a884
   ===================================================== */

:root {
  --navy: #17305c;
  --navy-deep: #0f2145;
  --teal: #0f5d6e;
  --green: #21a884;
  --green-bright: #27c299;

  --ink: #101a30;
  --body: #47536b;
  --muted: #6b7688;
  --line: #e6e9f0;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --bg-dark: #0f2145;

  --grad: linear-gradient(120deg, var(--navy) 0%, var(--teal) 55%, var(--green) 100%);
  --grad-soft: linear-gradient(120deg, rgba(23,48,92,0.08), rgba(33,168,132,0.08));

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 4px 18px rgba(15, 33, 69, 0.06);
  --shadow: 0 18px 50px rgba(15, 33, 69, 0.12);
  --shadow-lg: 0 34px 80px rgba(15, 33, 69, 0.20);

  --font: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn--sm { padding: 9px 18px; font-size: 0.9rem; }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; }

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 30px rgba(15, 93, 110, 0.35);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(15, 93, 110, 0.45); }

.btn--ghost {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.nav.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.nav__brand { display: inline-flex; align-items: center; gap: 12px; }
.nav__logo { height: 34px; width: auto; }
.nav__name {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav__name--light { color: #fff; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--body);
  transition: color 0.2s ease;
}
.nav__links a:not(.nav__cta):hover { color: var(--teal); }
.nav__links a.nav__cta { color: #fff; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 26px; height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 150px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(33, 168, 132, 0.10), transparent 60%),
    radial-gradient(900px 500px at 5% 10%, rgba(23, 48, 92, 0.08), transparent 55%);
}
.hero__glow {
  position: absolute;
  top: -200px; right: -150px;
  width: 620px; height: 620px;
  background: var(--grad);
  filter: blur(140px);
  opacity: 0.18;
  border-radius: 50%;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}
.pill__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(33, 168, 132, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(33,168,132,0.2); }
  50% { box-shadow: 0 0 0 7px rgba(33,168,132,0.05); }
}

.hero__title {
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  margin-bottom: 22px;
}
.hero__sub {
  font-size: 1.12rem;
  color: var(--body);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero__proof {
  list-style: none;
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
}
.hero__proof li { display: flex; flex-direction: column; }
.hero__proof strong {
  font-family: var(--font);
  font-size: 1.8rem;
  color: var(--navy);
  line-height: 1;
}
.hero__proof span { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

/* Hero visual - browser mock */
.hero__visual { position: relative; }
.browser {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  transform: perspective(1600px) rotateY(-9deg) rotateX(3deg);
  transition: transform 0.5s ease;
}
.hero__visual:hover .browser { transform: perspective(1600px) rotateY(0) rotateX(0); }
.browser__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.browser__dot { width: 11px; height: 11px; border-radius: 50%; background: #d4dae5; }
.browser__dot:nth-child(1) { background: #ff6058; }
.browser__dot:nth-child(2) { background: #ffbe2f; }
.browser__dot:nth-child(3) { background: #29c840; }
.browser__url {
  margin-left: 12px;
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  color: var(--muted);
}
.browser__screen { padding: 30px; }
.mock-logo img { height: 40px; width: auto; margin-bottom: 22px; }
.mock-line { height: 14px; border-radius: 8px; background: var(--grad-soft); margin-bottom: 14px; }
.mock-line--lg { width: 80%; height: 22px; background: var(--grad); opacity: 0.85; }
.mock-line--md { width: 60%; }
.mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 24px 0; }
.mock-card {
  height: 78px;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.mock-card:nth-child(2) { background: rgba(33,168,132,0.10); }
.mock-btn {
  width: 130px; height: 40px; border-radius: 100px;
  background: var(--grad);
}

.float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--navy);
  box-shadow: var(--shadow);
  animation: floaty 4s ease-in-out infinite;
}
.float-badge__icon {
  display: grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad); color: #fff; font-size: 0.75rem;
}
.float-badge--1 { top: 18%; left: -34px; }
.float-badge--2 { bottom: 12%; right: -24px; animation-delay: 1.5s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Trust strip ---------- */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 26px 0;
}
.strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 26px;
  text-align: center;
}
.strip__inner > p { color: var(--muted); font-weight: 600; font-size: 0.9rem; }
.strip__items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
}
.strip__items span {
  font-family: var(--font);
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}
.strip__items span:nth-child(even) { color: var(--green); font-weight: 400; }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-soft); }
.section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section__head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 16px; }
.section__head p { font-size: 1.08rem; color: var(--body); }

.eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--green-bright); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step:hover::before { transform: scaleX(1); }
.step__num {
  font-family: var(--font);
  font-weight: 800;
  font-size: 2.4rem;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 16px;
  opacity: 0.9;
}
.step h3 { font-size: 1.35rem; margin-bottom: 12px; }

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  border-radius: 16px;
  background: var(--grad-soft);
  margin-bottom: 18px;
}
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { font-size: 0.98rem; }

/* ---------- Pricing ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan--featured {
  background: var(--bg-dark);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.plan--featured:hover { transform: scale(1.03) translateY(-6px); }
.plan--featured .plan__name,
.plan--featured .plan__amount { color: #fff; }
.plan--featured .plan__desc { color: rgba(255,255,255,0.7); }
.plan--featured .plan__period { color: rgba(255,255,255,0.6); }
.plan--featured .plan__list li { color: rgba(255,255,255,0.85); }
.plan--featured .plan__list li::before { background: var(--green-bright); }

.plan__badge {
  position: absolute;
  top: 22px; right: 22px;
  background: var(--grad);
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 100px;
}
.plan__name { font-size: 1.4rem; margin-bottom: 6px; }
.plan__desc { font-size: 0.94rem; color: var(--muted); min-height: 44px; }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin: 20px 0 24px; }
.plan__amount { font-family: var(--font); font-weight: 800; font-size: 2.9rem; color: var(--navy); }
.plan__amount--text { font-size: 1.6rem; }
.plan__period { color: var(--muted); font-weight: 600; }
.plan__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; flex: 1; }
.plan__list li { position: relative; padding-left: 28px; font-size: 0.96rem; }
.plan__list li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  width: 18px; height: 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff; font-size: 0.68rem; font-weight: 800;
}
.plan__cta { width: 100%; }
.plans__note { text-align: center; color: var(--muted); font-size: 0.92rem; margin-top: 30px; }

/* ---------- Ownership ---------- */
.section--dark {
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(33,168,132,0.18), transparent 60%),
    var(--bg-dark);
  color: rgba(255,255,255,0.82);
}
.ownership__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.section--dark h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 18px; }
.ownership__lead { font-size: 1.12rem; color: rgba(255,255,255,0.9); margin-bottom: 16px; }
.ownership__content p { margin-bottom: 16px; }
.ownership__content strong { color: var(--green-bright); }
.ownership__content .btn { margin-top: 14px; }

.ownership__cards { display: grid; gap: 20px; }
.own-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(6px);
}
.own-card--accent {
  background: linear-gradient(135deg, rgba(33,168,132,0.22), rgba(15,93,110,0.22));
  border-color: rgba(39,194,153,0.4);
}
.own-card__tag {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 12px;
}
.own-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 10px; }
.own-card p { color: rgba(255,255,255,0.72); font-size: 0.98rem; }

/* ---------- About ---------- */
.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about__visual {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.about__logo { max-width: 320px; }
.about__content h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 18px; }
.about__content p { margin-bottom: 16px; }
.about__points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.about__points li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); }
.about__points span {
  display: grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad); color: #fff; font-size: 0.7rem; flex-shrink: 0;
}

/* ---------- CTA ---------- */
.section--cta {
  background:
    radial-gradient(700px 400px at 10% 90%, rgba(23,48,92,0.06), transparent 60%),
    var(--bg-soft);
}
.cta__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow);
}
.cta__text h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.cta__text p { font-size: 1.05rem; }

.cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font); font-weight: 600; font-size: 0.85rem; color: var(--ink); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15,93,110,0.10);
}
.cta__formnote { grid-column: 1 / -1; font-size: 0.9rem; font-weight: 600; color: var(--green); min-height: 1.2em; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand p { margin-top: 14px; max-width: 260px; font-size: 0.95rem; }
.footer__social { margin-top: 18px; display: flex; gap: 10px; }
.footer__social-link {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.footer__social-link:hover {
  background: var(--grad);
  color: #fff;
  transform: translateY(-3px);
}
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer__col a { display: block; margin-bottom: 10px; font-size: 0.94rem; transition: color 0.2s ease; }
.footer__col a:hover { color: var(--green-bright); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

/* =====================================================
   Subpages (Our work, FAQ)
   ===================================================== */

/* ---------- Page header ---------- */
.page-header {
  position: relative;
  overflow: hidden;
  padding: 150px 0 70px;
  text-align: center;
  background:
    radial-gradient(900px 460px at 80% -20%, rgba(33, 168, 132, 0.12), transparent 60%),
    radial-gradient(800px 460px at 10% 0%, rgba(23, 48, 92, 0.08), transparent 55%);
}
.page-header__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-header h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); margin-bottom: 18px; }
.page-header p { font-size: 1.12rem; color: var(--body); max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--teal); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Work / portfolio ---------- */
.work-featured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.work-featured__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.work-featured__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-featured__tag {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.work-featured h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 8px; }
.work-featured__sub { font-weight: 600; color: var(--muted); margin-bottom: 16px; }
.work-featured p { margin-bottom: 16px; }
.work-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 26px; }
.work-tags span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 100px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.work-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.work-card__media {
  aspect-ratio: 16 / 10;
  background: var(--grad);
  position: relative;
  overflow: hidden;
}
.work-card__media img { width: 100%; height: 100%; object-fit: cover; }
.work-card__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 20px;
}
.work-card__body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.work-card__cat {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.work-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.work-card p { font-size: 0.95rem; flex: 1; }
.work-card__link {
  margin-top: 16px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.work-card__link:hover { color: var(--teal); gap: 10px; }
.work-card--soon { opacity: 0.9; }
.work-card--soon .work-card__media { background: var(--bg-soft); }
.work-card--soon .work-card__placeholder { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq__item.is-open { box-shadow: var(--shadow); border-color: transparent; }
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
}
.faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-soft);
  color: var(--teal);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq__a p { padding: 0 26px 24px; color: var(--body); }

.faq-cta {
  text-align: center;
  margin-top: 50px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 30px;
}
.faq-cta h3 { font-size: 1.5rem; margin-bottom: 10px; }
.faq-cta p { margin-bottom: 22px; color: var(--body); }

/* ---------- Active nav + section CTA ---------- */
.nav__links a.is-active { color: var(--teal); }
.section__cta { text-align: center; margin-top: 44px; }

/* ---------- Home: featured work band ---------- */
.home-work {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 44px 20px 20px;
  box-shadow: var(--shadow);
}
.home-work__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.home-work__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-work__content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 6px 0 14px; }
.home-work__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ---------- Testimonial ---------- */
.testimonial {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 50px 44px;
}
.testimonial__stars { color: #f5a623; letter-spacing: 3px; margin-bottom: 20px; font-size: 1.1rem; }
.testimonial blockquote {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 24px;
}
.testimonial figcaption { display: flex; flex-direction: column; gap: 2px; }
.testimonial__name { font-weight: 700; color: var(--navy); }
.testimonial__role { font-size: 0.9rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  background: var(--grad);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, 0.9); font-size: 1.08rem; max-width: 560px; margin: 0 auto 28px; }
.cta-band .btn--primary {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(15, 33, 69, 0.25);
}
.cta-band .btn--primary:hover { background: #fff; color: var(--teal); }

/* ---------- Timeline (How it works) ---------- */
.timeline { max-width: 760px; margin: 0 auto; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px; top: 10px; bottom: 10px;
  width: 2px;
  background: linear-gradient(var(--teal), var(--green));
  opacity: 0.35;
}
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding-bottom: 34px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__marker {
  position: relative;
  z-index: 1;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(15, 93, 110, 0.3);
}
.timeline__content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}
.timeline__content h3 { font-size: 1.25rem; margin-bottom: 8px; }

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}
.contact-info {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-info h2 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.contact-info > p { margin-bottom: 26px; }
.contact-info__list { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.contact-info__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-info__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.1rem;
}
.contact-info__list strong { display: block; color: #fff; margin-bottom: 3px; }
.contact-info__list a { color: var(--green-bright); }
.contact-info__list a:hover { text-decoration: underline; }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

/* ---------- Case study ---------- */
.case-showcase { padding: 0 0 10px; }
.case-showcase__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.case-showcase__frame img { width: 100%; display: block; }

.case-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px 34px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 50px;
}
.case-meta__item { display: flex; flex-direction: column; gap: 5px; }
.case-meta__label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.case-meta__value { font-family: var(--font); font-weight: 700; color: var(--navy); }
a.case-meta__value { color: var(--teal); }
a.case-meta__value:hover { text-decoration: underline; }

.case-body { max-width: 760px; margin: 0 auto; }
.case-section { margin-bottom: 40px; }
.case-section h2 { font-size: 1.6rem; margin-bottom: 14px; }
.case-section p { margin-bottom: 14px; }
.case-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.case-list li { position: relative; padding-left: 30px; }
.case-list li::before {
  content: "\2713";
  position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff; font-size: 0.7rem; font-weight: 800;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 760px;
  margin: 10px auto 40px;
}
.case-result {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow-sm);
}
.case-result strong {
  display: block;
  font-family: var(--font);
  font-size: 1.7rem;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 6px;
}
.case-result span { font-size: 0.92rem; color: var(--muted); }

.case-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.case-quote blockquote {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 14px;
}
.case-quote figcaption { color: var(--muted); font-size: 0.92rem; }

/* ---------- Legal pages ---------- */
.legal { max-width: 760px; margin: 0 auto; }
.legal__updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; }
.legal__note {
  background: var(--grad-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.92rem;
  color: var(--body);
  margin-bottom: 34px;
}
.legal h2 { font-size: 1.3rem; margin: 30px 0 10px; }
.legal p { margin-bottom: 14px; }
.legal__list { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal__list li { margin-bottom: 8px; }
.legal a { color: var(--teal); font-weight: 600; }
.legal a:hover { text-decoration: underline; }

/* ---------- 404 ---------- */
.notfound {
  position: relative;
  overflow: hidden;
  padding: 170px 0 110px;
  text-align: center;
  background:
    radial-gradient(900px 460px at 80% -20%, rgba(33, 168, 132, 0.12), transparent 60%),
    radial-gradient(800px 460px at 10% 0%, rgba(23, 48, 92, 0.08), transparent 55%);
}
.notfound__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.notfound__code {
  display: block;
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(5rem, 16vw, 9rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.notfound h1 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 16px; }
.notfound p { font-size: 1.08rem; color: var(--body); margin-bottom: 30px; }
.notfound__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 40px; }
.notfound__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: center;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.notfound__links a { font-weight: 600; color: var(--muted); transition: color 0.2s ease; }
.notfound__links a:hover { color: var(--teal); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__inner,
  .ownership__inner,
  .about__inner,
  .cta__inner { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .hero__visual { max-width: 520px; margin: 0 auto; }
  .about__visual { order: -1; }
  .steps,
  .features,
  .plans { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-6px); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .work-featured { grid-template-columns: 1fr; padding: 26px; }
  .work-featured__media { order: -1; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .home-work { grid-template-columns: 1fr; padding: 22px; }
  .home-work__media { order: -1; }
  .contact-layout { grid-template-columns: 1fr; }
  .case-meta { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-140%);
    transition: transform 0.35s ease;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: 12px 4px; }
  .nav__cta { text-align: center; margin-top: 8px; }
  .nav__toggle { display: flex; }
  .cta__form { grid-template-columns: 1fr; }
  .cta__inner { padding: 34px 24px; }
  .footer__inner { grid-template-columns: 1fr; }
  .float-badge--1 { left: 8px; }
  .float-badge--2 { right: 8px; }
  .work-grid { grid-template-columns: 1fr; }
  .page-header { padding-top: 120px; }
  .contact-form { grid-template-columns: 1fr; padding: 28px; }
  .case-results { grid-template-columns: 1fr; }
  .case-meta { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .hero__proof { gap: 22px; }
  .section { padding: 72px 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
