/* ==========================================================================
   NavaNess - Shared Stylesheet
   Strategy. Presence. Growth.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&display=swap');

/* -------------------------------- Reset -------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, ul, ol, dl, dd { margin: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
input, textarea, select { font-family: inherit; }

/* ------------------------------ Design Tokens --------------------------- */
:root {
  /* Brand palette */
  --coral: #FF5145;
  --crimson: #C41E3A;
  --coral-light: #FF756B;
  --rose: #D94B4C;

  --gradient-brand: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 45%, var(--crimson) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(255,81,69,0.10) 0%, rgba(255,117,107,0.06) 50%, rgba(196,30,58,0.08) 100%);
  --gradient-text: linear-gradient(100deg, var(--crimson) 0%, var(--coral) 55%, var(--coral-light) 100%);

  /* Neutrals */
  --ink: #221E1D;
  --charcoal: #423C3A;
  --gray: #83786F;
  --gray-light: #A89E97;
  --line: #E9E1DB;
  --line-soft: #F1EBE6;
  --cream: #FBF8F5;
  --cream-deep: #F5EEE8;
  --white: #FFFFFF;

  /* Type scale */
  --font-display: 'Playfair Display', 'Georgia', serif;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(34, 30, 29, 0.05);
  --shadow-md: 0 12px 32px rgba(34, 30, 29, 0.08);
  --shadow-lg: 0 24px 60px rgba(34, 30, 29, 0.12);
  --shadow-coral: 0 16px 40px rgba(255, 81, 69, 0.25);

  /* Radii */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------------------------------- Base ---------------------------------- */
body {
  font-family: var(--font-display);
  background: var(--cream);
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

p { color: var(--charcoal); }

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; }

.section-pad { padding: 128px 0; }
.section-pad-sm { padding: 80px 0; }

@media (max-width: 900px) {
  .section-pad { padding: 88px 0; }
  .section-pad-sm { padding: 60px 0; }
  .container { padding: 0 24px; }
}

/* Decorative gradient blob */
/* Homepage hero: slow drifting gradient blobs for a living, ambient background */
.hero .blob-a,
.hero .blob-b {
  filter: blur(55px);
}
.hero .blob-a {
  background: radial-gradient(circle at 35% 35%, rgba(255,140,130,0.85) 0%, rgba(255,81,69,0.7) 30%, rgba(196,30,58,0.55) 55%, rgba(34,30,29,0) 78%);
  animation: heroBlobDriftA 14s ease-in-out infinite;
  will-change: transform, opacity;
}
.hero .blob-b {
  background: radial-gradient(circle at 60% 40%, rgba(255,140,130,0.8) 0%, rgba(255,81,69,0.65) 32%, rgba(196,30,58,0.5) 58%, rgba(34,30,29,0) 80%);
  animation: heroBlobDriftB 17s ease-in-out infinite;
  animation-delay: -6s;
  will-change: transform, opacity;
}
@keyframes heroBlobDriftA {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.8; }
  25%  { transform: translate(190px, 130px) scale(1.3); opacity: 1; }
  50%  { transform: translate(60px, 240px) scale(0.8); opacity: 0.5; }
  75%  { transform: translate(-150px, 90px) scale(1.2); opacity: 0.95; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
}
@keyframes heroBlobDriftB {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.8; }
  25%  { transform: translate(-170px, -120px) scale(1.28); opacity: 1; }
  50%  { transform: translate(-60px, -220px) scale(0.8); opacity: 0.5; }
  75%  { transform: translate(140px, -70px) scale(1.16); opacity: 0.92; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
}
@media (prefers-reduced-motion: reduce) {
  .hero .blob-a, .hero .blob-b, .page-hero .blob {
    animation: none;
    opacity: 0.5;
  }
  .cta-band::before { animation: none; }
  .btn-primary::after { transition: none; display: none; }
  .reveal.in-view .philosophy-list::before, .reveal.in-view .philosophy-list::after { animation: none; opacity: 0; }
  .cta-shape { animation: none; }
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  background: var(--gradient-brand);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.divider {
  height: 1px;
  width: 100%;
  background: var(--line);
  border: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--crimson);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gradient-brand);
  display: inline-block;
}

.section-head {
  max-width: 680px;
  margin-bottom: 64px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  margin-bottom: 20px;
}

.section-head p {
  font-size: 1.08rem;
  color: var(--gray);
  font-style: italic;
}

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

.placeholder-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--coral);
  background: rgba(255, 81, 69, 0.08);
  border: 1px dashed rgba(255, 81, 69, 0.35);
  border-radius: var(--r-sm);
  padding: 4px 10px;
  margin-bottom: 14px;
}

/* ------------------------------- Buttons --------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 16px 34px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  white-space: nowrap;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--gradient-brand);
  background-size: 160% 160%;
  background-position: 0% 50%;
  color: var(--white);
  box-shadow: var(--shadow-coral);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s var(--ease);
  pointer-events: none;
}
.btn-primary:hover::after { left: 130%; }
.btn-primary:hover {
  transform: translateY(-3px);
  background-position: 100% 50%;
  box-shadow: 0 20px 46px rgba(255, 81, 69, 0.34);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover {
  border-color: var(--coral);
  color: var(--crimson);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.btn-light {
  background: var(--white);
  color: var(--crimson);
  box-shadow: var(--shadow-md);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn-sm { padding: 11px 24px; font-size: 0.9rem; }

.btn svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* -------------------------------- Navbar --------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(251, 248, 245, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(34,30,29,0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 32px;
  max-width: 1280px;
  margin: 0 auto;
  transition: padding 0.4s ease;
}
.nav.scrolled .nav-inner { padding: 13px 32px; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  height: 64px;
  width: auto;
  transition: height 0.4s ease;
}
.nav.scrolled .brand img { height: 52px; }
.brand-word {
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0%;
  height: 2px;
  background: var(--gradient-brand);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--crimson); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--crimson); }
.nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 600;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    height: 100vh;
    width: min(78vw, 360px);
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,0.08);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.4rem; }
  .nav-cta .btn-primary.desktop-only { display: none; }
  .nav-toggle { display: flex; }
  .nav-links .mobile-cta { display: inline-flex; margin-top: 10px; }
}
@media (min-width: 861px) {
  .nav-links .mobile-cta { display: none; }
}

.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(34,30,29,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 480;
}
.nav-scrim.open { opacity: 1; pointer-events: auto; }

/* -------------------------------- Hero ------------------------------------ */
.hero {
  position: relative;
  padding: 100px 0 110px;
  overflow: hidden;
  background: var(--ink);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.hero-logo {
  height: clamp(32px, 3.4vw, 44px);
  width: auto;
  margin-bottom: 10px;
  animation: heroLogoFadeIn 0.9s var(--ease) both;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  max-width: 920px;
  font-weight: 700;
  color: #fff;
}
.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--crimson);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hero-sub {
  max-width: 620px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.68);
}
.hero-cta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}
.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}
.hero .btn-outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}
.hero-wordmark {
  width: min(90%, 640px);
  margin: 8px auto 0;
}

@keyframes heroLogoFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --------------------------- Fade-in-on-scroll ---------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: 0.08s; }
.reveal-delay-2.in-view { transition-delay: 0.16s; }
.reveal-delay-3.in-view { transition-delay: 0.24s; }
.reveal-delay-4.in-view { transition-delay: 0.32s; }
.reveal-delay-5.in-view { transition-delay: 0.4s; }
.reveal-delay-6.in-view { transition-delay: 0.48s; }

/* ------------------------------- Grid utils -------------------------------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 980px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* --------------------------------- Cards ----------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 40px 34px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 14px 34px rgba(255,81,69,0.16);
  border-color: rgba(255,81,69,0.25);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--crimson) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(34, 30, 29, 0.22);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card-icon svg { width: 26px; height: 26px; stroke: #fff; }
.card:hover .card-icon {
  transform: translateY(-3px) rotate(-4deg) scale(1.06);
  box-shadow: 0 14px 30px rgba(196, 30, 58, 0.34);
}

.card h3 {
  font-size: 1.32rem;
  margin-bottom: 12px;
}
.card p { color: var(--gray); font-size: 0.98rem; }
.card .card-index {
  position: absolute;
  top: 28px; right: 32px;
  font-size: 0.85rem;
  color: var(--line);
  font-weight: 700;
}

/* ----------------------------- Service Cards -------------------------------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg), 0 12px 28px rgba(255,81,69,0.14); }

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.service-num {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--coral);
  font-weight: 700;
}
.service-card h3 { font-size: 1.5rem; }
.service-desc { color: var(--gray); font-size: 1rem; }

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 6px 0 4px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--charcoal);
}
.service-list li::before {
  content: '';
  flex-shrink: 0;
  width: 7px; height: 7px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gradient-brand);
}

.service-card .btn { align-self: flex-start; margin-top: 8px; }

/* ------------------------------ Founder cards ------------------------------- */
.founder-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 40px;
  text-align: center;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.founder-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.founder-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 26px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-align: center;
  overflow: hidden;
}
.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.founder-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.founder-role {
  font-size: 0.9rem;
  color: var(--crimson);
  font-style: italic;
  margin-bottom: 16px;
}
.founder-card p.bio { color: var(--gray); font-size: 0.97rem; }

/* -------------------------------- Values ----------------------------------- */
.value-card {
  padding: 34px 8px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.value-num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--coral);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.value-card h3 { font-size: 1.25rem; }
.value-card p { color: var(--gray); font-size: 0.95rem; }

/* ------------------------------ Testimonials -------------------------------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.quote-mark {
  font-size: 3.2rem;
  line-height: 1;
  font-family: var(--font-display);
  color: var(--coral-light);
  font-weight: 700;
}
.testimonial-quote {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.author-role { font-size: 0.85rem; color: var(--gray); }

/* --------------------------------- Pricing ---------------------------------- */
.pricing-toggle-row {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.pricing-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s ease;
  position: relative;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--coral);
  box-shadow: var(--shadow-coral);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F8 100%);
}
.pricing-card.featured::after {
  content: 'Most Popular';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.pricing-name { font-size: 1.5rem; }
.pricing-tagline { color: var(--gray); font-size: 0.94rem; font-style: italic; }
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 6px 0;
}
.pricing-amount .amount {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
}
.pricing-amount .period { color: var(--gray); font-size: 0.95rem; }
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  flex-grow: 1;
}
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--charcoal);
}
.pricing-list li::before {
  content: '';
  flex-shrink: 0;
  width: 7px; height: 7px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gradient-brand);
}
.pricing-card .btn { width: 100%; }

.pricing-note {
  text-align: center;
  max-width: 640px;
  margin: 56px auto 0;
  color: var(--gray);
  font-style: italic;
  font-size: 0.98rem;
  padding: 22px 28px;
  border: 1px dashed var(--line);
  border-radius: var(--r-md);
}

.custom-band {
  margin-top: 40px;
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.custom-band h3 { color: var(--white); font-size: 1.7rem; }
.custom-band p { color: rgba(255,255,255,0.65); max-width: 480px; }

/* ---------------------------------- Forms ------------------------------------ */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 980px) { .contact-layout { grid-template-columns: 1fr; gap: 48px; } }

.contact-intro h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  margin-bottom: 18px;
}
.contact-intro p {
  color: var(--gray);
  font-size: 1.08rem;
  max-width: 460px;
}

.contact-direct {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  max-width: 460px;
}
.contact-direct-label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gray-light);
  margin-bottom: 18px;
}
.contact-direct-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--charcoal);
  font-size: 0.98rem;
  line-height: 1.4;
  transition: color 0.3s ease, transform 0.35s var(--ease);
}
.contact-direct-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--crimson);
  flex-shrink: 0;
}
.contact-direct-item strong { color: var(--ink); font-weight: 600; }
.contact-direct-item:hover { color: var(--crimson); transform: translateX(4px); }
.contact-direct-item:hover strong { color: var(--crimson); }

.contact-info-card {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 44px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info-card h3 { color: var(--white); font-size: 1.5rem; }
.contact-info-card p { color: rgba(255,255,255,0.62); font-size: 0.96rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info-item .ci-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(255,81,69,0.16);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item .ci-icon svg { width: 18px; height: 18px; stroke: var(--coral-light); }
.contact-info-item .ci-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 3px; }
.contact-info-item .ci-value { font-size: 1.02rem; color: var(--white); }
.contact-info-item .ci-value.placeholder { color: rgba(255,255,255,0.5); font-style: italic; font-size: 0.92rem; }

.contact-social {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.35s ease, transform 0.4s var(--ease);
}
.contact-social a:hover { background: var(--gradient-brand); transform: translateY(-3px); }
.contact-social a svg { width: 19px; height: 19px; stroke: var(--white); }

.form-card {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 12px; }
.form-card-intro { color: rgba(255, 255, 255, 0.62); font-size: 0.96rem; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 9px;
}
.field input, .field textarea, .field select {
  width: 100%;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-sm);
  padding: 15px 18px;
  font-size: 1rem;
  font-family: var(--font-display);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF756B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 44px;
}
.field select option { background: var(--ink); color: #fff; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--coral-light);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(255,117,107,0.16);
}
.field textarea { resize: vertical; min-height: 150px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, 0.4); font-style: italic; }

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-note { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); }

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}
.consent-checkbox {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--coral);
  flex-shrink: 0;
  cursor: pointer;
}
.consent-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  cursor: pointer;
}

/* --------------------------------- CTA band ----------------------------------- */
.cta-band {
  position: relative;
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 84px 56px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 20% 20%, rgba(255,81,69,0.30), transparent 55%),
              radial-gradient(circle at 85% 80%, rgba(196,30,58,0.30), transparent 55%);
  z-index: -1;
  animation: ctaGlowDrift 16s ease-in-out infinite;
  will-change: transform;
}
@keyframes ctaGlowDrift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(3%, -4%) scale(1.08); }
  100% { transform: translate(0,0) scale(1); }
}
.cta-band .eyebrow { color: var(--coral-light); }
.cta-band .eyebrow::before { background: var(--gradient-brand); }
.cta-band h2 { color: var(--white); font-size: clamp(1.9rem, 3.6vw, 2.8rem); max-width: 720px; margin: 0 auto 18px; }
.cta-band p { color: rgba(255,255,255,0.62); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-band-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------- Footer ------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.65); padding-top: 88px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; gap: 40px; } }

.footer-brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--r-pill);
  padding: 10px 20px 10px 10px;
  margin-bottom: 22px;
}
.footer-brand-chip img { height: 34px; width: auto; }
.footer-brand-chip span { font-weight: 700; color: var(--ink); font-size: 1.05rem; }

.footer-tagline { font-style: italic; color: rgba(255,255,255,0.5); max-width: 320px; font-size: 0.95rem; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: 0.97rem; transition: color 0.3s ease, padding-left 0.3s ease; }
.footer-col a:hover { color: var(--coral-light); padding-left: 4px; }

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  justify-content: center;
  transition: background 0.35s ease, transform 0.4s var(--ease);
}
.footer-social:hover { background: var(--gradient-brand); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; stroke: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px 0 36px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--coral-light); }

/* --------------------------------- Page hero (inner pages) --------------------- */
.page-hero {
  padding: 76px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); max-width: 780px; margin: 0 auto 18px; color: #fff; }
.page-hero p { max-width: 600px; margin: 0 auto; color: rgba(255, 255, 255, 0.68); font-size: 1.08rem; }
.page-hero .eyebrow { justify-content: center; color: var(--coral-light); }
.page-hero .blob {
  filter: blur(55px);
  background: radial-gradient(circle at 35% 35%, rgba(255,140,130,0.85) 0%, rgba(255,81,69,0.7) 30%, rgba(196,30,58,0.55) 55%, rgba(34,30,29,0) 78%);
  opacity: 1;
  animation: heroBlobDriftA 14s ease-in-out infinite;
  will-change: transform, opacity;
}

/* --------------------------------- Misc bits ------------------------------------ */
.two-col-copy { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }
@media (max-width: 860px) { .two-col-copy { grid-template-columns: 1fr; } }

.stat-row { display: flex; gap: 48px; flex-wrap: wrap; }
.stat-item .stat-figure { font-size: 2.1rem; font-weight: 700; color: var(--ink); }
.stat-item .stat-figure span { color: var(--crimson); }
.stat-item .stat-label { font-size: 0.85rem; color: var(--gray); letter-spacing: 0.03em; }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--charcoal);
}

blockquote.pull-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--ink);
  border-left: 3px solid transparent;
  border-image: var(--gradient-brand) 1;
  padding-left: 28px;
  margin: 8px 0;
}

.philosophy-list { display: flex; flex-direction: column; gap: 0; position: relative; }
.philosophy-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  position: relative;
}
.philosophy-item:last-child { border-bottom: 1px solid var(--line); }
.philosophy-item .p-num { font-size: 1.6rem; color: var(--coral); font-weight: 700; position: relative; }
.philosophy-item h3 { font-size: 1.3rem; margin-bottom: 8px; transition: color 0.5s ease; }
.philosophy-item p { color: var(--gray); }

/* connecting rail: a node dot beside each number, a line drawing down between them,
   and two small lights that continuously travel the length of the rail */
.philosophy-item .p-num::before {
  content: '';
  position: absolute;
  top: 7px;
  left: -19px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
  box-shadow: 0 0 0 4px var(--cream-deep);
  transform: scale(0.75);
  transition: background 0.5s ease, box-shadow 0.5s ease, transform 0.5s var(--ease);
  z-index: 2;
}
.philosophy-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: -15px;
  top: 20px;
  width: 2px;
  height: calc(100% + 8px);
  background: linear-gradient(to bottom, rgba(196,30,58,0.4), rgba(196,30,58,0.14));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.9s var(--ease);
  z-index: 1;
}
.reveal.in-view .philosophy-item:nth-child(1) .p-num::before {
  background: var(--coral);
  box-shadow: 0 0 0 4px var(--cream-deep), 0 0 12px rgba(255,81,69,0.55);
  transform: scale(1);
  transition-delay: 0.25s;
}
.reveal.in-view .philosophy-item:nth-child(2) .p-num::before {
  background: var(--coral);
  box-shadow: 0 0 0 4px var(--cream-deep), 0 0 12px rgba(255,81,69,0.55);
  transform: scale(1);
  transition-delay: 0.95s;
}
.reveal.in-view .philosophy-item:nth-child(3) .p-num::before {
  background: var(--coral);
  box-shadow: 0 0 0 4px var(--cream-deep), 0 0 12px rgba(255,81,69,0.55);
  transform: scale(1);
  transition-delay: 1.65s;
}
.reveal.in-view .philosophy-item:nth-child(1)::after { transform: scaleY(1); transition-delay: 0.5s; }
.reveal.in-view .philosophy-item:nth-child(2)::after { transform: scaleY(1); transition-delay: 1.2s; }

.philosophy-list::before,
.philosophy-list::after {
  content: '';
  position: absolute;
  left: -18px;
  top: 0%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: 0 0 10px rgba(255,81,69,0.65);
  opacity: 0;
  z-index: 3;
  pointer-events: none;
}
.reveal.in-view .philosophy-list::before {
  animation: philosophyPulse 2.4s ease-out forwards;
  animation-delay: 0.3s;
}
.reveal.in-view .philosophy-list::after {
  animation: philosophyPulse 2.4s ease-out forwards;
  animation-delay: 1s;
}
@keyframes philosophyPulse {
  0%   { top: 0%;   opacity: 0; }
  10%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@media (max-width: 620px) {
  .philosophy-item { grid-template-columns: 1fr; gap: 10px; }
  .philosophy-item .p-num::before,
  .philosophy-item::after,
  .philosophy-list::before,
  .philosophy-list::after {
    display: none;
  }
}


/* ============================================================
   Motion & Interactive Layer -- hero particles, network motif,
   scroll-linked shapes, values connector
   ============================================================ */

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.services-visual { position: relative; }
.services-visual .network-canvas {
  position: absolute;
  inset: -40px -20px auto -20px;
  height: calc(100% + 80px);
  width: calc(100% + 40px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}
.services-visual .grid-3 { position: relative; z-index: 1; }

.values-connector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
  margin-bottom: -18px;
  position: relative;
}
.values-connector::before {
  content: '';
  position: absolute;
  left: 8px; right: 8px; top: 50%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(196,30,58,0.35) 15%, rgba(196,30,58,0.35) 85%, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease) 0.2s;
}
.values-connector.in-view::before { transform: scaleX(1); }
.vc-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: 0 0 0 4px rgba(255,81,69,0.12);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.values-connector.in-view .vc-dot:nth-child(1) { opacity: 1; transform: scale(1); transition-delay: 0.15s; }
.values-connector.in-view .vc-dot:nth-child(2) { opacity: 1; transform: scale(1); transition-delay: 0.35s; }
.values-connector.in-view .vc-dot:nth-child(3) { opacity: 1; transform: scale(1); transition-delay: 0.55s; }
.values-connector.in-view .vc-dot:nth-child(4) { opacity: 1; transform: scale(1); transition-delay: 0.75s; }
@media (max-width: 620px) {
  .values-connector { display: none; }
}


/* Abstract drifting rings inside CTA bands */
.cta-shape {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.14);
  pointer-events: none;
  z-index: 0;
}
.cta-shape-a {
  width: 260px;
  height: 260px;
  top: -90px;
  left: 6%;
  border-color: rgba(255,140,130,0.22);
  animation: ctaShapeFloatA 13s ease-in-out infinite;
}
.cta-shape-b {
  width: 170px;
  height: 170px;
  bottom: -70px;
  right: 9%;
  border-color: rgba(196,30,58,0.28);
  animation: ctaShapeFloatB 16s ease-in-out infinite;
}
@keyframes ctaShapeFloatA {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(26px, 20px) rotate(180deg); }
}
@keyframes ctaShapeFloatB {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(-20px, -16px) rotate(-160deg); }
}
