/* ============================================================
   LUXFLOW DIGITAL — style.css
   Palette: champagne gold on deep navy, warm cream light sections
============================================================ */

:root {
  --gold:       #d4a962;
  --gold-hi:    #eac585;
  --gold-deep:  #b98d4d;
  --gold-dim:   rgba(212, 169, 98, 0.14);
  --gold-line:  rgba(212, 169, 98, 0.32);

  --ink:        #0a141d;   /* darkest navy — hero veils, FAQ, footer */
  --navy:       #101f2c;   /* dark sections */
  --navy-card:  #142636;   /* cards on dark */
  --slate:      #1c2b38;   /* mid navy */

  --cream:      #f7f2e9;   /* light sections */
  --paper:      #fffdf9;   /* cards on light */
  --sand-line:  #e9ddc8;

  --text-dark:  #22303c;
  --text-mute:  #5c6a75;
  --text-fade:  rgba(255, 255, 255, 0.72);

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 0.8, 0.3, 1);
}

/* ==============================
   RESET / BASE
============================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  overflow-x: hidden;
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 600; }
img { max-width: 100%; }
.i { width: 1.25em; height: 1.25em; }

/* ==============================
   TOP BAR
============================== */
.top-div {
  background: var(--ink);
  display: flex;
  justify-content: center;
  gap: 0.9em;
  font-size: 0.82em;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.6em 1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.top-sep { color: var(--gold); }

/* ==============================
   NAVIGATION
============================== */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5em;
  padding: 1em 2.2em;
  background: rgba(10, 20, 29, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.3s ease;
}
.main-nav.scrolled { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35); }
.logo-link { text-decoration: none; }
.main-logo { display: flex; flex-direction: column; line-height: 1; }
.logo-span-1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.65em;
  color: var(--gold);
}
.logo-span-2 {
  font-size: 0.6em;
  font-weight: 600;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.45em;
}
.nav-list {
  list-style: none;
  display: flex;
  gap: 0.4em;
}
.nav-list a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.55em 0.9em;
  font-size: 0.95em;
  letter-spacing: 0.02em;
  border-radius: 6px;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-list a:hover { color: var(--gold-hi); background: var(--gold-dim); }
.hamburger { display: none; }
.bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px auto;
  transition: all 0.3s ease-in-out;
  background-color: var(--gold);
}

/* ==============================
   BUTTONS
============================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 2.1em;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn:hover { transform: translateY(-2px); }
/* gold sheen sweep */
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}
.btn-gold:hover::after { left: 130%; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-hi), var(--gold));
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(212, 169, 98, 0.28);
}
.btn-gold:hover { box-shadow: 0 12px 32px rgba(212, 169, 98, 0.42); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-hi); background: var(--gold-dim); }
.btn-dark {
  background: var(--slate);
  color: #fff;
}
.btn-dark:hover { background: var(--ink); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-line);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.main-nav-btn { font-size: 0.9em; padding: 0.7em 1.5em; white-space: nowrap; }

/* ==============================
   SECTION HEAD PATTERN
============================== */
section { position: relative; }
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.2em;
}
.eyebrow {
  display: inline-block;
  font-size: 0.76em;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1em;
}
.section-head h2 {
  font-size: clamp(1.8em, 3.4vw, 2.6em);
  line-height: 1.25;
  color: var(--slate);
}
.dark .section-head h2 { color: #fff; }
.section-head .section-sub {
  margin-top: 1em;
  color: var(--text-mute);
  font-size: 1.02em;
  line-height: 1.7;
}
.dark .section-head .section-sub { color: var(--text-fade); }
.gold-rule {
  display: block;
  width: 56px;
  height: 2px;
  margin: 1.4em auto 0;
  background: linear-gradient(90deg, var(--gold-hi), var(--gold-deep));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.8s var(--ease) 0.25s;
}
.animate .gold-rule, .animate.gold-rule { transform: scaleX(1); }

/* ==============================
   HERO
============================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 16s var(--ease) both;
}
.hero-home  .hero-media { background-image: url('images/officelogo.jpg'); }
.hero-web   .hero-media { background-image: url('images/code website.jpg'); }
.hero-funnel .hero-media { background-image: url('images/buildings.jpg'); }
@keyframes kenburns {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 20, 29, 0.82) 0%,
    rgba(10, 20, 29, 0.62) 45%,
    rgba(10, 20, 29, 0.94) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 880px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.7em;
  padding: 5em 0;
}
.hero-content > * { animation: fadeUp 0.9s var(--ease) both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.55s; }
.hero-content > *:nth-child(5) { animation-delay: 0.7s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(2.1em, 5vw, 3.5em);
  line-height: 1.18;
  font-weight: 600;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-hi);
}
.hero-content p {
  color: var(--text-fade);
  font-size: 1.12em;
  line-height: 1.7;
  max-width: 640px;
}
.hero-btns { display: flex; justify-content: center; gap: 1.2em; flex-wrap: wrap; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  border: 1px solid var(--gold-line);
  background: var(--gold-dim);
  color: var(--gold-hi);
  font-size: 0.78em;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.55em 1.4em;
  border-radius: 999px;
}
.mini-trust-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85em;
  letter-spacing: 0.08em;
}
.mini-trust-text .stars { color: var(--gold); letter-spacing: 0.15em; }
.scroll-cue {
  position: absolute;
  bottom: 2em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}
.scroll-cue::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--gold);
  animation: cueDrop 2.2s var(--ease) infinite;
}
@keyframes cueDrop {
  0%   { top: -40%; }
  70%  { top: 110%; }
  100% { top: 110%; }
}

/* ==============================
   LIGHT / DARK SECTION SHELLS
============================== */
.section-cream { background: var(--cream); padding: 5.5em 2em; }
.section-navy  { background: var(--navy);  padding: 5.5em 2em; }
.section-ink   { background: var(--ink);   padding: 5.5em 2em; }
.section-paper { background: var(--paper); padding: 5.5em 2em; }

/* ==============================
   BENEFIT CARDS (Why Choose)
============================== */
.benefits-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6em;
  max-width: 1020px;
  margin: 0 auto;
}
.benefit-card {
  background: var(--paper);
  border: 1px solid var(--sand-line);
  border-radius: 14px;
  padding: 2.2em 1.8em;
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
}
.benefit-card:hover {
  transform: translateY(-7px);
  border-color: var(--gold-line);
  box-shadow: 0 18px 44px rgba(60, 45, 20, 0.12);
}
.benefit-icon {
  width: 3.4em;
  height: 3.4em;
  margin: 0 auto 1.1em;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon img { width: 1.7em; height: 1.7em; }
.benefit-card h3 { color: var(--slate); font-size: 1.12em; margin-bottom: 0.55em; }
.benefit-card p { color: var(--text-mute); font-size: 0.92em; line-height: 1.65; }

/* ==============================
   ABOUT
============================== */
.about-luxflow {
  background-image: url('images/Plant.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 6.5em 2em;
}
.about-luxflow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 20, 29, 0.94) 30%, rgba(10, 20, 29, 0.78));
}
.about-container {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  gap: 4em;
  align-items: center;
}
.about-image { flex: 1; min-width: 0; position: relative; }
.about-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  z-index: -1;
}
.about-text { flex: 1.4; }
.about-text .eyebrow { margin-bottom: 0.9em; }
.about-text h2 { color: #fff; font-size: clamp(1.7em, 3vw, 2.3em); margin-bottom: 0.8em; }
.about-text p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.03em;
  line-height: 1.85;
  margin-bottom: 1.1em;
}
.about-text .btn { margin-top: 0.6em; }

/* ==============================
   HOW IT WORKS
============================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4em;
  max-width: 1080px;
  margin: 0 auto;
}
.step-card {
  padding: 2em 1.6em;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.35s ease, transform 0.35s var(--ease), background 0.35s ease;
}
.step-card:hover {
  border-color: var(--gold-line);
  background: rgba(212, 169, 98, 0.05);
  transform: translateY(-5px);
}
.step-num {
  font-family: var(--serif);
  font-size: 2.4em;
  font-style: italic;
  color: var(--gold);
  opacity: 0.85;
  line-height: 1;
  display: block;
  margin-bottom: 0.5em;
}
.step-card h3 { color: #fff; font-size: 1.08em; margin-bottom: 0.55em; }
.step-card p { color: var(--text-fade); font-size: 0.92em; line-height: 1.65; }

/* ==============================
   SERVICES
============================== */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6em;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--sand-line);
  width: 300px;
  padding: 2.2em 1.9em 1.9em;
  border-radius: 14px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
}
.service-card:hover {
  transform: translateY(-7px);
  border-color: var(--gold);
  box-shadow: 0 18px 44px rgba(60, 45, 20, 0.14);
}
.service-card h3 { color: var(--slate); font-size: 1.18em; margin-bottom: 0.6em; }
.service-card p { color: var(--text-mute); font-size: 0.93em; line-height: 1.65; flex: 1; }
.service-more {
  margin-top: 1.4em;
  color: var(--gold-deep);
  font-size: 0.88em;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: letter-spacing 0.3s var(--ease);
}
.service-card:hover .service-more { letter-spacing: 0.12em; }

/* ==============================
   FAQ
============================== */
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9em;
}
.faq-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 169, 98, 0.18);
  border-radius: 12px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.faq-card:hover { border-color: var(--gold-line); }
.faq-card.open { border-color: var(--gold); background: rgba(212, 169, 98, 0.06); }
.faq-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.3em 1.6em;
  text-align: left;
  font-family: var(--sans);
}
.faq-question { color: #fff; font-size: 1em; font-weight: 600; }
.faq-icon {
  color: var(--gold);
  font-size: 1.4em;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}
.faq-card.open .faq-icon { transform: rotate(45deg); }
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.faq-card.open .faq-body { grid-template-rows: 1fr; }
.faq-answer {
  overflow: hidden;
  min-height: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-size: 0.95em;
  padding: 0 1.6em;
}
.faq-card.open .faq-answer { padding-bottom: 1.4em; }

/* ==============================
   OWNER MESSAGE
============================== */
.owner-message-container {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  padding: 2.8em 3em 2.4em;
  background: var(--cream);
  border: 1px solid var(--sand-line);
  border-radius: 14px;
}
.owner-quote-mark {
  position: absolute;
  top: -0.32em;
  left: 0.35em;
  font-family: var(--serif);
  font-size: 6em;
  line-height: 1;
  color: var(--gold);
  opacity: 0.35;
  pointer-events: none;
}
.owner-message-container p {
  color: var(--text-dark);
  font-size: 1.06em;
  line-height: 1.95;
}
.owner-sign {
  display: block;
  margin-top: 1.6em;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15em;
  color: var(--gold-deep);
}

/* ==============================
   FINAL CTA BAND
============================== */
.cta-band {
  background:
    radial-gradient(ellipse 70% 120% at 50% -20%, rgba(212, 169, 98, 0.16), transparent),
    var(--navy);
  border-top: 1px solid var(--gold-line);
  padding: 6em 2em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.9em, 3.6vw, 2.7em);
  max-width: 700px;
  line-height: 1.25;
}
.cta-band h2 em { font-style: italic; color: var(--gold-hi); }
.cta-band p { color: var(--text-fade); font-size: 1.08em; max-width: 560px; line-height: 1.7; }

/* ==============================
   FOOTER
============================== */
.footer {
  background: #070d13;
  color: #fff;
  padding: 4.5em 2em 0;
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3em;
  padding-bottom: 3em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-logo-block .footer-tagline {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9em;
  margin-top: 1em;
  line-height: 1.7;
  max-width: 270px;
}
.footer-col-title {
  color: var(--gold);
  font-size: 0.8em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  margin-bottom: 1.3em;
  display: block;
}
.footer-links, .footer-contact-list { display: flex; flex-direction: column; gap: 0.7em; }
.footer-links a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  font-size: 0.94em;
  transition: color 0.3s ease, padding-left 0.3s var(--ease);
}
.footer-links a:hover { color: var(--gold-hi); padding-left: 4px; }
.footer-contact-list span { color: rgba(255, 255, 255, 0.58); font-size: 0.94em; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  flex-wrap: wrap;
  text-align: center;
  padding: 1.8em 0;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.84em;
}
.footer-bottom-sep { color: rgba(255, 255, 255, 0.15); }
.footer-admin-link {
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-admin-link:hover { color: var(--gold); }

/* ==============================
   SCROLL ANIMATION
============================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.animate-on-scroll.animate { opacity: 1; transform: translateY(0); }

/* ==============================
   INNER-PAGE HERO (short, no photo)
============================== */
.page-hero {
  background:
    radial-gradient(ellipse 60% 100% at 50% -10%, rgba(212, 169, 98, 0.14), transparent),
    var(--navy);
  padding: 5.5em 2em;
  text-align: center;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2em, 4.2vw, 3em);
  line-height: 1.2;
  margin-bottom: 0.5em;
}
.page-hero h1 em { font-style: italic; color: var(--gold-hi); }
.page-hero p {
  color: var(--text-fade);
  font-size: 1.08em;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==============================
   REASON CARDS (webdev / funnel)
============================== */
.reasons-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5em;
  max-width: 1080px;
  margin: 0 auto;
}
.reason-card {
  background: var(--paper);
  border: 1px solid var(--sand-line);
  border-top: 2px solid var(--gold);
  padding: 2em 1.7em;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.reason-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(60, 45, 20, 0.13);
}
.reason-card h3 { color: var(--slate); margin-bottom: 0.7em; font-size: 1.08em; }
.reason-card p { color: var(--text-mute); font-size: 0.93em; line-height: 1.65; }

/* ==============================
   PRICING
============================== */
.pricing-subtitle {
  color: var(--text-fade);
  text-align: center;
  font-size: 1em;
  margin: -2em auto 3em;
}
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}
.webdev-pricing-card {
  background: var(--navy-card);
  border: 1px solid rgba(212, 169, 98, 0.16);
  border-radius: 16px;
  padding: 2.5em 2.1em;
  flex: 1;
  min-width: 275px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: left;
  transition: transform 0.35s var(--ease), border-color 0.35s ease, box-shadow 0.35s var(--ease);
}
.webdev-pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-line);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.4);
}
.webdev-pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212, 169, 98, 0.09), rgba(212, 169, 98, 0.02)), var(--navy-card);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
  transform: translateY(-10px);
}
.webdev-pricing-card.featured:hover { transform: translateY(-16px); }
.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-hi), var(--gold));
  color: var(--ink);
  font-size: 0.7em;
  font-weight: 700;
  padding: 0.45em 1.4em;
  border-radius: 999px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-plan-name {
  color: var(--gold);
  font-size: 0.82em;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 0.7em;
}
.pricing-plan-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9em;
  line-height: 1.55;
  padding-bottom: 1.4em;
  margin-bottom: 1.4em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.pricing-price {
  padding-bottom: 1.4em;
  margin-bottom: 1.4em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.pricing-amount {
  font-family: var(--serif);
  color: #fff;
  font-size: 3em;
  font-weight: 600;
  line-height: 1;
}
.pricing-amount span {
  font-size: 0.42em;
  color: var(--gold);
  vertical-align: super;
  margin-right: 0.15em;
}
.pricing-value { color: rgba(255, 255, 255, 0.36); font-size: 0.82em; margin-top: 0.6em; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.72em;
  margin-bottom: 2em;
  flex: 1;
}
.pricing-features li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9em;
  display: flex;
  align-items: flex-start;
  gap: 0.65em;
  line-height: 1.45;
}
.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.9em;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  margin-top: auto;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  background: transparent;
}
.pricing-cta:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.webdev-pricing-card.featured .pricing-cta {
  background: linear-gradient(135deg, var(--gold-hi), var(--gold));
  color: var(--ink);
  border-color: transparent;
}
.webdev-pricing-card.featured .pricing-cta:hover { filter: brightness(1.08); }

/* ==============================
   CAPACITY / URGENCY BAND
============================== */
.capacity-band {
  background: linear-gradient(135deg, var(--gold-hi) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  padding: 4.5em 2em;
  text-align: center;
}
.capacity-band h2 {
  color: var(--ink);
  font-size: clamp(1.6em, 3vw, 2.2em);
  margin-bottom: 0.7em;
}
.capacity-band p {
  color: rgba(10, 20, 29, 0.82);
  max-width: 680px;
  margin: 0 auto 2em;
  line-height: 1.75;
  font-size: 1.02em;
}

/* ==============================
   CONTACT PAGE
============================== */
.contact-main { background: var(--cream); padding: 5em 2em; }
.contact-wrapper {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4em;
  align-items: start;
}
.contact-info h2 { color: var(--slate); font-size: 1.7em; margin-bottom: 1.3em; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1em;
  margin-bottom: 1.6em;
}
.contact-info-icon {
  background: var(--slate);
  color: var(--gold);
  width: 2.8em;
  height: 2.8em;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon .i { width: 1.2em; height: 1.2em; }
.contact-info-text strong {
  display: block;
  color: var(--slate);
  font-size: 0.95em;
  margin-bottom: 0.25em;
}
.contact-info-text span { color: var(--text-mute); font-size: 0.94em; }
.contact-form-card {
  background: var(--paper);
  border: 1px solid var(--sand-line);
  border-radius: 16px;
  padding: 2.6em 2.8em;
  box-shadow: 0 14px 44px rgba(60, 45, 20, 0.1);
}
.contact-form-card h2 { color: var(--slate); font-size: 1.5em; margin-bottom: 1.5em; }
.form-group { display: flex; flex-direction: column; gap: 0.45em; margin-bottom: 1.2em; }
.form-group label { color: var(--text-dark); font-size: 0.88em; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select {
  padding: 0.8em 1em;
  border: 1px solid #ded4c2;
  border-radius: 8px;
  font-size: 1em;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  color: var(--text-dark);
  background: #fff;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1em; }
.contact-submit-btn { width: 100%; margin-top: 0.5em; border: none; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  margin-top: 1em;
  font-size: 0.9em;
  line-height: 1.6;
  text-align: center;
}
.form-status.error { color: #b3564f; }
.contact-trust { background: var(--navy); padding: 4.5em 2em; text-align: center; }
.contact-trust h2 { color: #fff; font-size: 1.8em; margin-bottom: 0.6em; }
.contact-trust p { color: var(--text-fade); font-size: 1em; margin-bottom: 2.4em; }
.trust-badges { display: flex; justify-content: center; gap: 2.6em; flex-wrap: wrap; }
.trust-badge { display: flex; flex-direction: column; align-items: center; gap: 0.7em; }
.trust-badge-icon {
  width: 2.9em;
  height: 2.9em;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-badge span:last-child { color: rgba(255, 255, 255, 0.75); font-size: 0.9em; }

/* ==============================
   OUR WORK PAGE
============================== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6em;
  max-width: 1080px;
  margin: 0 auto;
}
.work-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--sand-line);
  background: var(--paper);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.work-card:hover { transform: translateY(-7px); box-shadow: 0 18px 46px rgba(60, 45, 20, 0.16); }
.work-card-img { height: 200px; overflow: hidden; }
.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.work-card:hover .work-card-img img { transform: scale(1.06); }
.work-card-body { padding: 1.7em 1.6em 1.9em; }
.work-tag {
  display: inline-block;
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.8em;
}
.work-card-body h3 { color: var(--slate); font-size: 1.15em; margin-bottom: 0.55em; }
.work-card-body p { color: var(--text-mute); font-size: 0.92em; line-height: 1.65; }

/* ==============================
   THANK YOU PAGE
============================== */
.thanks-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 60% 90% at 50% 0%, rgba(212, 169, 98, 0.14), transparent),
    var(--ink);
  padding: 4em 2em;
}
.thanks-card { text-align: center; max-width: 560px; }
.thanks-check {
  width: 4.6em;
  height: 4.6em;
  margin: 0 auto 1.6em;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.7s var(--ease) 0.2s both;
}
.thanks-check .i { width: 2em; height: 2em; }
@keyframes popIn {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
.thanks-card h1 { color: #fff; font-size: clamp(1.9em, 4vw, 2.6em); margin-bottom: 0.5em; }
.thanks-card p { color: var(--text-fade); line-height: 1.75; margin-bottom: 2em; }
.thanks-btns { display: flex; gap: 1em; justify-content: center; flex-wrap: wrap; }

/* ==============================
   REDUCED MOTION
============================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .animate-on-scroll { opacity: 1; transform: none; }
}
