/* ============================================================
   Fina Desk Hub — Shared Stylesheet
   ============================================================ */

:root {
  --bg-cream: #f6f0e6;
  --bg-white: #ffffff;
  --bg-pale: #f1ebdc;
  --bg-soft: #fbf9f5;
  --green-dark: #304d3b;
  --green-dark-2: #253d2f;
  --green-mid: #3c6049;
  --green-accent: #304d3b;
  --green-pale: #e7ece8;
  --blush: #e8a9b5;
  --blush-deep: #dd8fa0;
  --text-dark: #252525;
  --text-body: #4a4a49;
  --text-muted: #78766f;
  --border-light: #eae3d3;
  --border-mid: #dbd2bc;
  --cream-on-dark: #f6f0e6;
  --green-on-dark-muted: #bcc9c1;

  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-btn: 14px;
  --radius-pill: 999px;

  --shadow-card: 0 1px 2px rgba(48, 77, 59, 0.03), 0 16px 36px -22px rgba(48, 77, 59, 0.16);
  --shadow-card-hover: 0 1px 2px rgba(48, 77, 59, 0.04), 0 24px 48px -20px rgba(48, 77, 59, 0.22);
  --container: 1160px;
}

* {
  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-cream);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.015em;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

:focus-visible {
  outline: 2px solid var(--green-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Card hover polish (shared) ---------- */
.feature-card,
.service-card,
.portfolio-card,
.step-card,
.pricing-card,
.value-card,
.coming-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.step-card:hover,
.value-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-mid);
  box-shadow: var(--shadow-card);
}

.service-card:hover,
.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.pricing-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.pricing-card.featured:hover {
  box-shadow: 0 28px 56px -20px rgba(48, 77, 59, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .feature-card, .service-card, .portfolio-card, .step-card, .pricing-card, .value-card, .coming-card {
    transition: none;
  }
}

/* ---------- Eyebrow / label pill ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-mid);
  background: var(--bg-white);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(0);
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--blush);
  color: var(--text-dark);
}

.btn-primary:hover {
  background: var(--green-dark);
  color: var(--cream-on-dark);
  box-shadow: 0 8px 20px -8px rgba(48, 77, 59, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-secondary:hover {
  background: var(--green-dark);
  color: var(--cream-on-dark);
}

.btn-on-dark {
  background: var(--blush);
  color: var(--text-dark);
}

.btn-on-dark:hover {
  background: var(--blush-deep);
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.3);
}

.btn-ghost-on-dark {
  background: transparent;
  color: var(--cream-on-dark);
  border-color: rgba(246, 240, 230, 0.4);
}

.btn-ghost-on-dark:hover {
  border-color: var(--cream-on-dark);
  background: rgba(246, 240, 230, 0.1);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 242, 234, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-dark);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-dark);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand em, .brand .accent {
  font-style: normal;
  color: var(--green-accent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav ul {
  display: flex;
  gap: 36px;
}

.main-nav a {
  font-size: 15px;
  color: var(--text-body);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--text-dark);
}

.main-nav a[aria-current="page"] {
  color: var(--green-dark);
  font-weight: 600;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--text-dark);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  display: none;
}

@media (max-width: 900px) {
  .main-nav > ul {
    display: none;
  }
  .header-cta .btn-primary {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .site-header .container {
    height: 72px;
  }
  .mobile-nav {
    display: block;
    max-height: 0;
    overflow: hidden;
    background: var(--bg-cream);
    border-bottom: 1px solid var(--border-light);
    transition: max-height 0.3s ease;
  }
  .mobile-nav.open {
    max-height: 420px;
  }
  .mobile-nav ul {
    display: flex;
    flex-direction: column;
    padding: 8px 32px 20px;
    gap: 4px;
  }
  .mobile-nav a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-body);
  }
  .mobile-nav a[aria-current="page"] {
    color: var(--green-dark);
    font-weight: 600;
  }
  .mobile-nav .btn {
    margin-top: 14px;
    width: 100%;
  }
}

/* ---------- Sections generic ---------- */
section {
  padding: 112px 0;
}

@media (max-width: 700px) {
  section {
    padding: 72px 0;
  }
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.section-head h2 {
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.15;
}

.section-head p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
}

.section-alt {
  position: relative;
  background: var(--bg-white);
}

.section-pale {
  position: relative;
  background: var(--bg-pale);
}

.section-alt::before,
.section-alt::after,
.section-pale::before,
.section-pale::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(70%, 760px);
  height: 1px;
  background: linear-gradient(to right, rgba(48, 77, 59, 0), rgba(48, 77, 59, 0.08) 50%, rgba(48, 77, 59, 0));
}

.section-alt::before,
.section-pale::before {
  top: 0;
}

.section-alt::after,
.section-pale::after {
  bottom: 0;
}

/* ---------- Soft curved hero → section transition ---------- */
/* The hero's own cream background is clipped into a wide, shallow
   concave curve along its bottom edge (no line, no border, no
   overlay shape) — the warm off-white section beneath shows through
   the clipped-away area, which is what creates the visible curve. */
.home-hero {
  position: relative;
  z-index: 2;
  background: var(--bg-cream);
  clip-path: polygon(0% 0%, 100% 0%, 100.00% 100%, 95.83% calc(100% - 5.7px), 91.67% calc(100% - 11.4px), 87.50% calc(100% - 16.8px), 83.33% calc(100% - 22.0px), 79.17% calc(100% - 26.8px), 75.00% calc(100% - 31.1px), 70.83% calc(100% - 34.9px), 66.67% calc(100% - 38.1px), 62.50% calc(100% - 40.7px), 58.33% calc(100% - 42.5px), 54.17% calc(100% - 43.6px), 50.00% calc(100% - 44.0px), 45.83% calc(100% - 43.6px), 41.67% calc(100% - 42.5px), 37.50% calc(100% - 40.7px), 33.33% calc(100% - 38.1px), 29.17% calc(100% - 34.9px), 25.00% calc(100% - 31.1px), 20.83% calc(100% - 26.8px), 16.67% calc(100% - 22.0px), 12.50% calc(100% - 16.8px), 8.33% calc(100% - 11.4px), 4.17% calc(100% - 5.7px), 0.00% 100%);
}

.section-soft {
  position: relative;
  z-index: 1;
  background: var(--bg-soft);
  overflow-x: hidden;
  margin-top: -44px;
  padding-top: 64px;
}

.section-soft .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 1100px) and (min-width: 901px) {
  .home-hero {
    clip-path: polygon(0% 0%, 100% 0%, 100.00% 100%, 95.83% calc(100% - 4.0px), 91.67% calc(100% - 8.0px), 87.50% calc(100% - 11.9px), 83.33% calc(100% - 15.5px), 79.17% calc(100% - 18.9px), 75.00% calc(100% - 21.9px), 70.83% calc(100% - 24.6px), 66.67% calc(100% - 26.8px), 62.50% calc(100% - 28.6px), 58.33% calc(100% - 29.9px), 54.17% calc(100% - 30.7px), 50.00% calc(100% - 31.0px), 45.83% calc(100% - 30.7px), 41.67% calc(100% - 29.9px), 37.50% calc(100% - 28.6px), 33.33% calc(100% - 26.8px), 29.17% calc(100% - 24.6px), 25.00% calc(100% - 21.9px), 20.83% calc(100% - 18.9px), 16.67% calc(100% - 15.5px), 12.50% calc(100% - 11.9px), 8.33% calc(100% - 8.0px), 4.17% calc(100% - 4.0px), 0.00% 100%);
  }
  .section-soft {
    margin-top: -31px;
    padding-top: 51px;
  }
}

@media (max-width: 900px) {
  .home-hero {
    clip-path: polygon(0% 0%, 100% 0%, 100.00% 100%, 95.83% calc(100% - 2.2px), 91.67% calc(100% - 4.4px), 87.50% calc(100% - 6.5px), 83.33% calc(100% - 8.5px), 79.17% calc(100% - 10.3px), 75.00% calc(100% - 12.0px), 70.83% calc(100% - 13.5px), 66.67% calc(100% - 14.7px), 62.50% calc(100% - 15.7px), 58.33% calc(100% - 16.4px), 54.17% calc(100% - 16.9px), 50.00% calc(100% - 17.0px), 45.83% calc(100% - 16.9px), 41.67% calc(100% - 16.4px), 37.50% calc(100% - 15.7px), 33.33% calc(100% - 14.7px), 29.17% calc(100% - 13.5px), 25.00% calc(100% - 12.0px), 20.83% calc(100% - 10.3px), 16.67% calc(100% - 8.5px), 12.50% calc(100% - 6.5px), 8.33% calc(100% - 4.4px), 4.17% calc(100% - 2.2px), 0.00% 100%);
  }
  .section-soft {
    margin-top: -17px;
    padding-top: 37px;
  }
}

/* ---------- Hero (inner pages) ---------- */
.page-hero {
  padding: 80px 0 56px;
  text-align: center;
}

.page-hero .hero-inner {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.page-hero h1 {
  font-size: clamp(38px, 5.8vw, 64px);
  line-height: 1.1;
}

.page-hero .lede {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 620px;
  line-height: 1.6;
}

/* ---------- Home Hero ---------- */
.home-hero {
  padding: 44px 0 64px;
}

.home-hero .container {
  max-width: 1200px;
  width: min(1200px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(520px, 0.9fr);
  gap: 64px;
  align-items: center;
}

.home-hero h1 {
  font-size: clamp(40px, 5.2vw, 60px);
  line-height: 1.12;
  margin: 22px 0 24px;
}

.home-hero h1 .accent {
  color: var(--green-accent);
}

.home-hero p.lede {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
  max-width: 445px;
  margin-bottom: 32px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.hero-check svg {
  width: 16px;
  height: 16px;
  color: var(--green-accent);
  flex-shrink: 0;
}

.hero-media {
  position: relative;
  width: 100%;
  max-width: 560px;
  min-width: 520px;
  aspect-ratio: 6 / 5;
  justify-self: end;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  box-shadow: 0 20px 44px -24px rgba(48, 77, 59, 0.3);
}

@media (max-width: 1100px) and (min-width: 901px) {
  .home-hero .container {
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
    gap: 40px;
  }
  .hero-media {
    max-width: 480px;
    min-width: 420px;
    aspect-ratio: 6 / 5;
  }
}

@media (max-width: 900px) {
  .home-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .home-hero {
    padding: 48px 0 64px;
  }
  .home-hero p.lede {
    max-width: none;
  }
  .hero-media {
    max-width: 360px;
    min-width: 0;
    aspect-ratio: 9 / 10;
    margin: 0 auto;
    justify-self: center;
  }
}

/* ---------- Feature grid (Why Fina Desk Hub) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-badge svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Service cards ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card > p.desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.service-card .check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 6px;
  flex-grow: 1;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-body);
}

.check-list li svg {
  width: 17px;
  height: 17px;
  color: var(--green-accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.check-list .more {
  color: var(--text-muted);
  padding-left: 27px;
  font-size: 14px;
}

button.more-btn {
  display: block;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 6px;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.price-clarify {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 14px;
}

.service-card .price-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.price-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--green-accent);
  margin-bottom: 4px;
}

.view-details {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 14px;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}

.view-details svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.service-card:hover .view-details svg {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.starting-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 32px;
}

/* ---------- Coming soon ---------- */
.coming-soon-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 72px 0 28px;
}

.coming-soon-head h3 {
  font-size: 26px;
  white-space: nowrap;
}

.coming-soon-head .rule {
  height: 1px;
  background: var(--border-mid);
  flex-grow: 1;
}

.coming-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.coming-card {
  border: 1px dashed var(--border-mid);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  color: var(--text-muted);
}

.coming-card .lock-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-body);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
}

.coming-card .lock-title svg {
  width: 17px;
  height: 17px;
}

.coming-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  margin-bottom: 16px;
}

.coming-card .tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 700px) {
  .coming-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CTA panel (light) ---------- */
.cta-panel {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.cta-panel h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 14px;
}

.cta-panel p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* ---------- Currency toggle ---------- */
.currency-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 8px 8px 8px 20px;
  margin-top: 8px;
}

.currency-toggle .ct-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.currency-toggle .ct-options {
  display: flex;
  gap: 6px;
}

.currency-toggle button {
  border: 1px solid var(--border-mid);
  background: transparent;
  color: var(--text-body);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.currency-toggle button.active {
  background: var(--green-dark);
  color: var(--cream-on-dark);
  border-color: var(--green-dark);
}

/* ---------- Pricing tiers ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: var(--green-dark);
  color: var(--cream-on-dark);
  border-color: var(--green-dark);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -20px rgba(48, 77, 59, 0.5);
}

.pricing-card.featured h3 {
  color: var(--cream-on-dark);
}

.pricing-card.featured ul li {
  color: var(--cream-on-dark);
}

.pricing-card .tier-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.pricing-card h3 {
  font-size: 22px;
}

.badge-popular {
  background: var(--blush);
  color: var(--green-dark-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.pricing-card .tier-desc {
  font-size: 14.5px;
  margin-bottom: 20px;
  opacity: 0.85;
}

.pricing-card.featured .tier-desc,
.pricing-card.featured .price-from {
  color: var(--green-on-dark-muted);
}

.price-from {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--green-accent);
  margin-bottom: 22px;
}

.pricing-card.featured .price-from {
  color: var(--cream-on-dark);
}

.pricing-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  margin-bottom: 26px;
}

.pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
}

.pricing-card ul li svg {
  width: 16px;
  height: 16px;
  color: var(--green-accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-card.featured ul li svg {
  color: var(--cream-on-dark);
}

.pricing-card .btn {
  width: 100%;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 32px;
}

/* ---------- Steps (How it works) ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 26px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--green-accent);
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Portfolio ---------- */
.filter-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-pill {
  border: 1px solid var(--border-mid);
  background: var(--bg-white);
  color: var(--text-body);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-pill.active {
  background: var(--green-dark);
  color: var(--cream-on-dark);
  border-color: var(--green-dark);
}

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

.portfolio-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.portfolio-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--green-pale);
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--green-dark);
  color: var(--cream-on-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.portfolio-body {
  padding: 22px 24px 26px;
}

.portfolio-cat {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.portfolio-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.portfolio-body p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.similar-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.similar-cta p {
  font-family: var(--font-display);
  font-size: 20px;
}

/* ---------- Service details modal / drawer ---------- */
body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 26, 22, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.service-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(520px, 100%);
  background: var(--bg-cream);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -16px 0 40px -20px rgba(0, 0, 0, 0.3);
}

.service-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-cream);
  flex-shrink: 0;
}

.drawer-header h3 {
  font-size: 24px;
  line-height: 1.2;
}

.drawer-close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
}

.drawer-close svg {
  width: 18px;
  height: 18px;
}

.drawer-close:hover {
  border-color: var(--green-dark);
}

.drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px 28px;
}

.drawer-intro {
  color: var(--text-body);
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.drawer-price-row {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 26px;
}

.drawer-price-row .price-label {
  margin-bottom: 6px;
}

.drawer-price-row .price-amount {
  font-size: 24px;
  margin-bottom: 4px;
}

.drawer-group {
  margin-bottom: 24px;
}

.drawer-group h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.drawer-group ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.drawer-group li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-body);
}

.drawer-group li svg {
  width: 16px;
  height: 16px;
  color: var(--green-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.drawer-note {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.6;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
  margin-top: 4px;
}

.drawer-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 14.5px;
  margin-top: 18px;
  background: none;
  border: none;
  padding: 0;
}

.drawer-footer {
  flex-shrink: 0;
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border-light);
  background: var(--bg-cream);
}

.drawer-footer .btn {
  width: 100%;
}

@media (max-width: 700px) {
  .service-drawer {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 88vh;
    border-radius: 22px 22px 0 0;
    transform: translateY(100%);
  }
  .service-drawer.open {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-drawer,
  .modal-overlay {
    transition: none;
  }
}

/* ---------- FAQ accordion ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--border-light);
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  padding: 26px 4px;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--green-accent);
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: "";
  position: absolute;
  background: var(--text-dark);
  transition: transform 0.2s ease;
}

.faq-toggle-icon::before {
  width: 12px;
  height: 1.5px;
}

.faq-toggle-icon::after {
  width: 1.5px;
  height: 12px;
}

.faq-item.open .faq-toggle-icon::after {
  transform: scaleY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.7;
  padding: 0 4px 28px;
  max-width: 640px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-cta {
  text-align: center;
  margin-top: 48px;
}

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  align-items: start;
}

.contact-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.field label .req {
  color: var(--green-accent);
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  background: var(--bg-cream);
  color: var(--text-dark);
  width: 100%;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-accent);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(47, 107, 79, 0.12);
}

.field input:invalid:not(:placeholder-shown),
.field.field-error input,
.field.field-error select,
.field.field-error textarea {
  border-color: #b3453b;
}

.field-error-msg {
  color: #b3453b;
  font-size: 13px;
  display: none;
}

.field.field-error .field-error-msg {
  display: block;
}

.form-status {
  margin-top: 18px;
  font-size: 14.5px;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: none;
}

.form-status.visible {
  display: block;
}

.form-status.success {
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid #cfe0c9;
}

.form-status.error {
  background: #fbeceb;
  color: #8a332b;
  border: 1px solid #f0cac6;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reach-card,
.whatsapp-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.reach-card h3 {
  font-size: 18px;
  margin-bottom: 22px;
}

.reach-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.reach-item:last-child {
  margin-bottom: 0;
}

.reach-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reach-icon svg {
  width: 19px;
  height: 19px;
}

.reach-item .rlabel {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}

.reach-item .rvalue {
  color: var(--text-muted);
  font-size: 14.5px;
}

.whatsapp-card {
  background: var(--green-pale);
  border-color: #d7e3d3;
  text-align: center;
}

.whatsapp-card p {
  color: var(--text-body);
  font-size: 14.5px;
  margin-bottom: 18px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- About page ---------- */
.story-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-card);
}

.story-card p {
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.75;
  max-width: 760px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.mv-card {
  border-radius: var(--radius-lg);
  padding: 36px;
}

.mv-card.dark {
  background: var(--green-dark);
  color: var(--cream-on-dark);
}

.mv-card.light {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
}

.mv-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  color: inherit;
  opacity: 0.9;
}

.mv-icon svg {
  width: 100%;
  height: 100%;
}

.mv-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.mv-card.dark p {
  color: var(--green-on-dark-muted);
}

.mv-card.light p {
  color: var(--text-muted);
}

.mv-card p {
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 700px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

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

.value-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.value-card .icon-badge {
  margin-bottom: 0;
  flex-shrink: 0;
}

.value-card span {
  font-weight: 600;
  font-size: 15.5px;
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Dark CTA banner ---------- */
.cta-banner {
  background: var(--green-dark);
  background-image: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.06), transparent 55%);
  border-radius: var(--radius-lg);
  padding: 72px 40px;
  text-align: center;
  color: var(--cream-on-dark);
}

.cta-banner h2 {
  color: var(--cream-on-dark);
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--green-on-dark-muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-banner .hero-cta-row {
  justify-content: center;
  margin-bottom: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-dark);
  color: var(--cream-on-dark);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .brand {
  color: var(--cream-on-dark);
  margin-bottom: 18px;
}

.footer-brand .brand-mark {
  background: var(--cream-on-dark);
  padding: 4px;
}

.footer-brand p {
  color: var(--green-on-dark-muted);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 340px;
  margin-bottom: 22px;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(246, 242, 234, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.social-row a:hover {
  background: rgba(246, 242, 234, 0.12);
  border-color: var(--cream-on-dark);
}

.social-row svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-size: 15px;
  color: var(--cream-on-dark);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--green-on-dark-muted);
  font-size: 14.5px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--cream-on-dark);
}

.footer-col .touch-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-on-dark-muted);
  font-size: 14.5px;
}

.footer-col .touch-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(246, 242, 234, 0.15);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13.5px;
  color: var(--green-on-dark-muted);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Chat widget ---------- */
.chat-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: var(--cream-on-dark);
  border: none;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 600;
  box-shadow: 0 10px 24px -10px rgba(48, 77, 59, 0.4);
  transition: background 0.2s ease, transform 0.18s ease;
}

.chat-fab:hover {
  background: var(--green-dark-2);
  transform: translateY(-1px);
}

.chat-fab svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 560px) {
  .chat-fab span {
    display: none;
  }
  .chat-fab {
    padding: 14px;
  }
}

.chat-fab.hidden {
  display: none;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green-dark);
  color: var(--cream-on-dark);
  padding: 12px 20px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Fade-in on load ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
