/* ================================================================
   ASCENSION WHARF   Complete faithful reproduction of original site
   Fonts: Game of Thrones (title) + DM Sans (body) + Poppins Bold (h2)
   Colors: #000 black / rgb(28,101,27) green / white / grey
   ================================================================ */

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

:root {
  --black:   #000000;
  --dark:    #0a0a0a;
  --card:    #161616;
  --card2:   rgb(23, 23, 23);
  --green:   rgb(28, 101, 27);
  --green2:  rgb(1, 47, 29);
  --white:   #ffffff;
  --grey:    rgb(161, 161, 161);
  --border:  rgba(255,255,255,0.1);
  --max-w:   1280px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 64px; }
.section-dark { background: var(--black); }
.section-navy { background: #080d1a; }

@media (max-width: 900px) { .container { padding: 0 24px; } }

/* ================================================================
   FADE-UP ANIMATION
   ================================================================ */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ================================================================
   NAV
   ================================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
#nav.scrolled { background: rgba(0,0,0,0.85); }

.nav-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 30px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-logo-img { height: 48px; width: auto; object-fit: contain; }
.nav-sep { width: 1px; height: 32px; background: linear-gradient(rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%); }
.nav-links { display: flex; align-items: center; gap: 32px; flex: 1; }
.nav-link { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--white); }
.btn-touch {
  background: var(--green);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: rgba(28,101,27,0.5) 0px 8px 40px 0px;
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  margin-left: auto;
}
.btn-touch:hover { background: #1e7a1e; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-sep { display: none; }
}

/* ================================================================
   HERO
   ================================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  /* Blur the video so the title reads clearly */
  filter: blur(4px);
  transform: scale(1.06); /* covers blur edges so no white fringe */
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.85) 100%);
}

.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 0 32px;
  max-width: 1200px;
  width: 100%;
}

.hero-tag-wrap { display: flex; justify-content: center; margin-bottom: 24px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 16px 6px 6px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  backdrop-filter: blur(2.5px);
}
.tag-new {
  background: rgb(0, 85, 255);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.tag-text { font-size: 13px; color: rgba(255,255,255,0.8); }

.hero-title {
  font-family: "Game of Thrones", serif;
  /* Sized to always fit on one line at any viewport ≥ 320px */
  font-size: clamp(22px, 6.8vw, 108px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  white-space: nowrap; /* single line   no wrapping ever */
}
.hero-sword {
  height: 0.82em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -0.04em;
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.hero-divider {
  width: 280px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  margin: 0 auto;
}

/* ================================================================
   HOW WE WORK
   ================================================================ */
#features { padding: 80px 0; }

.section-heading-wrap { margin-bottom: 40px; }
.h2-poppins {
  font-family: "Poppins Bold", "DM Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  text-align: center;
}

.how-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.how-card {
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.2s;
}
.how-card:hover { border-color: rgba(255,255,255,0.14); }

.how-card-1 { grid-row: 1 / 3; display: flex; flex-direction: column; }
.how-card-3 { grid-row: 1 / 3; display: flex; flex-direction: column; }

.how-card-text { padding: 28px 28px 20px; }
.how-card-title {
  font-family: "Poppins Bold", sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.how-card-desc { font-size: 14px; color: var(--grey); line-height: 1.65; }
.how-card-title-sm { font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.how-card-desc-sm { font-size: 13px; color: var(--grey); line-height: 1.6; }

.how-card-img {
  flex: 1; min-height: 200px;
  background-size: cover; background-position: center;
  filter: brightness(0.75);
}
.how-card-img-sm { height: 160px; background-size: cover; background-position: center; filter: brightness(0.75); }
.how-card-img-tall { flex: 1; min-height: 240px; background-size: cover; background-position: center; filter: brightness(0.7); }

@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-card-1, .how-card-3 { grid-row: auto; }
}
@media (max-width: 560px) { .how-grid { grid-template-columns: 1fr; } }

/* ================================================================
   SAY HELLO / ACCRETION AI
   ================================================================ */
#accretion { padding: 80px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.hello-wrap { text-align: center; margin-bottom: 48px; }
.hello-title { font-size: 48px; font-weight: 600; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.hello-gradient {
  background: linear-gradient(23deg, rgba(0,191,32,.98) 9%, rgba(0,194,168,.98) 38%, rgba(100,9,227,.99) 61%, rgb(79,251,223) 87%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hello-sub { font-size: 20px; color: var(--grey); max-width: 600px; margin: 0 auto; line-height: 1.5; }

.dashboard-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  max-width: 900px; margin: 0 auto;
}
.db-card {
  background: linear-gradient(180deg, var(--card2) 0%, rgb(15,15,15) 31%);
  border-radius: 21px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.06);
}
.db-taskname { font-size: 14px; font-weight: 600; color: var(--white); display: block; margin-bottom: 10px; }
.db-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.dbt { padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 500; }
.dbt-id { background: rgb(23,23,23); color: rgb(212,212,212); border: 1px solid rgb(38,38,38); }
.dbt-design { background: rgba(236,72,153,.1); color: rgb(219,39,119); border: 1px solid rgba(34,197,94,.1); }
.dbt-dev { background: rgba(236,72,153,.1); color: rgb(219,39,119); border: 1px solid rgba(34,197,94,.1); }
.dbt-backlog { background: rgba(226,107,8,.1); color: rgb(226,107,8); border: 1px solid rgba(34,197,94,.1); }
.dbt-project { background: rgba(59,130,246,.1); color: rgb(96,165,250); border: 1px solid rgba(59,130,246,.2); }
.dbt-live    { background: rgba(34,197,94,.12); color: rgb(34,197,94);  border: 1px solid rgba(34,197,94,.25); }
.dbt-done    { background: rgba(168,85,247,.12); color: rgb(192,132,252); border: 1px solid rgba(168,85,247,.25); }

@media (max-width: 768px) { .dashboard-cards { grid-template-columns: 1fr; } }

/* ================================================================
   4 FEATURES
   ================================================================ */
#usps { padding: 60px 0; border-top: 1px solid rgba(255,133,47,0.4); }
.features-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.feat-col { text-align: center; }
.feat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--white); font-weight: 700;
  margin: 0 auto 16px;
}
.feat-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.feat-desc { font-size: 13px; color: var(--grey); line-height: 1.65; }

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

/* ================================================================
   PLATFORMS
   ================================================================ */
#platforms { padding: 80px 0; text-align: center; }
.h2-center { font-size: 36px; font-weight: 700; color: rgba(255,255,255,0.4); margin-bottom: 48px; }
.platforms-arc { position: relative; display: flex; flex-direction: column; align-items: center; padding: 24px 0; }
.arc-bg {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse at 50% 100%, rgba(1,47,29,0.7) 0%, transparent 70%);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}
.platform-icons { display: flex; gap: 40px; align-items: flex-end; justify-content: center; position: relative; z-index: 1; padding-bottom: 40px; }
.picon { display: flex; flex-direction: column; align-items: center; gap: 10px; transition: transform 0.25s; }
.picon:hover { transform: translateY(-10px); }
.picon svg { width: 64px; height: 64px; border-radius: 16px; }
.picon span { font-size: 11px; color: var(--grey); font-weight: 500; }
/* Instagram sits highest on the arc */
.picon-peak { transform: translateY(-32px); }
.picon-peak:hover { transform: translateY(-44px); }

/* ================================================================
   WHAT YOU GAIN
   ================================================================ */
#gain { padding: 80px 0; }
.gain-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.gain-title { font-size: 40px; font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.15; }
.gain-sub { font-size: 16px; color: var(--grey); margin-bottom: 32px; line-height: 1.65; }

.gain-accordion { display: flex; flex-direction: column; }
.ga-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.ga-btn {
  width: 100%; text-align: left; background: none; border: none;
  padding: 18px 0; font-size: 15px; font-weight: 500;
  color: var(--grey); cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: color 0.2s;
}
.ga-btn:hover { color: var(--white); }
.ga-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.ga-body p { font-size: 14px; color: var(--grey); line-height: 1.7; padding-bottom: 18px; }
.ga-item.open .ga-btn { color: var(--white); }
.ga-item.open .ga-body { max-height: 200px; }

.gain-right { background: #f5f5f0; border-radius: 20px; padding: 24px; overflow: hidden; }
.gain-dashboard { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
.gd-header { display: flex; gap: 4px; padding: 12px 16px; background: #f9f9f9; border-bottom: 1px solid #eee; }
.gd-tab { padding: 6px 14px; border-radius: 6px; font-size: 12px; font-weight: 500; color: #666; cursor: pointer; }
.gd-tab.active { background: var(--black); color: var(--white); }
.gd-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.gd-col { padding: 12px; border-right: 1px solid #f0f0f0; }
.gd-col:last-child { border-right: none; }
.gd-col-title { font-size: 11px; font-weight: 700; color: #333; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.gd-task { background: #f9f9f9; border-radius: 8px; padding: 10px; margin-bottom: 8px; border: 1px solid #eee; }
.gd-task span { font-size: 12px; color: #222; display: block; margin-bottom: 6px; font-weight: 500; line-height: 1.4; }
.gd-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.gt { padding: 2px 8px; border-radius: 100px; font-size: 10px; font-weight: 500; }
.gt-pink { background: rgba(236,72,153,.12); color: rgb(219,39,119); }
.gt-orange { background: rgba(226,107,8,.12); color: rgb(180,87,6); }
.gt-purple { background: rgba(139,92,246,.12); color: rgb(109,40,217); }
.gt-green { background: rgba(34,197,94,.12); color: rgb(21,128,61); }
.gt-blue { background: rgba(59,130,246,.12); color: rgb(37,99,235); }

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

/* Workflow diagram */
.workflow-diagram {
  background: #0d1117;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wf-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-bottom: 20px;
}
.wf-row { display: flex; justify-content: center; }
.wf-row-outputs { gap: 10px; }
.wf-node {
  background: #1c2128;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  transition: border-color 0.2s;
}
.wf-node:hover { border-color: rgba(28,101,27,0.6); }
.wf-node-input  { border-color: rgba(28,101,27,0.35); }
.wf-node-process { border-color: rgba(249,190,126,0.35); }
.wf-node-analytics { border-color: rgba(59,130,246,0.35); }
.wf-node-out {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px;
  flex: 1;
  gap: 4px;
}
.wf-icon { font-size: 22px; flex-shrink: 0; }
.wf-icon-sm { font-size: 20px; }
.wf-node-title { font-size: 13px; font-weight: 600; color: var(--white); }
.wf-node-sub   { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; line-height: 1.4; }
.wf-node-title-sm { font-size: 12px; font-weight: 600; color: var(--white); }
.wf-node-sub-sm   { font-size: 10px; color: rgba(255,255,255,0.4); }
.wf-status { margin-left: auto; font-size: 11px; white-space: nowrap; }
.wf-status-active { color: rgb(34,197,94); }
.wf-badge {
  margin-left: auto; white-space: nowrap;
  background: rgba(28,101,27,0.3);
  border: 1px solid rgba(28,101,27,0.5);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px; font-weight: 600; color: rgb(134,239,172);
}
.wf-arrow-down {
  text-align: center;
  font-size: 20px;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  padding: 6px 0;
}
.wf-branches {
  display: flex;
  justify-content: space-around;
  padding: 4px 20%;
  gap: 0;
}
.wf-branch-line {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
}

/* ================================================================
   YOUR FUTURE WITH ASCENSION WHARF
   ================================================================ */
#future { padding: 80px 0; }
.future-header { text-align: center; margin-bottom: 48px; }
.future-title { font-size: 48px; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.1; }
.future-sub { font-size: 16px; color: var(--grey); }
.future-rocket { margin-right: 4px; }

.future-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.future-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s;
}
.future-card:hover { border-color: rgba(255,255,255,0.2); }
.fc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.fc-top h5 { font-size: 17px; font-weight: 700; color: var(--white); max-width: 80%; line-height: 1.3; }
.fc-num { font-size: 13px; color: var(--grey); }
.future-card p { font-size: 13px; color: var(--grey); line-height: 1.65; margin-bottom: 16px; }
.fc-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.fc-tags span { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--grey); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 4px 12px; }
.fc-tags span::before { content: ''; width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.3); display: inline-block; }

.future-center {
  grid-row: 1 / 3;
  display: flex; align-items: center; justify-content: center;
  width: 120px;
}
.future-compass {
  width: 90px; height: 90px;
  background: var(--green2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,0.15);
}
.future-compass img { width: 54px; height: 54px; object-fit: contain; }

@media (max-width: 900px) {
  .future-grid { grid-template-columns: 1fr 1fr; }
  .future-center { display: none; }
}
@media (max-width: 560px) { .future-grid { grid-template-columns: 1fr; } }

/* ================================================================
   STAR STRIP
   ================================================================ */
.star-strip {
  background: linear-gradient(180deg, #1a1a2e 0%, #0d0d1a 100%);
  padding: 48px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.star-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 70%);
}
.star-strip-inner { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 12px; flex-wrap: wrap; }
.star-avatars { display: flex; gap: 4px; }
.sav { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 18px; border: 2px solid rgba(255,255,255,0.2); }
.star-divider { width: 80px; height: 1px; background: rgba(255,255,255,0.2); }
.star-title { font-size: 32px; font-weight: 700; color: var(--white); }
.star-sub { font-size: 15px; color: var(--grey); margin-bottom: 20px; }
.star-compass { width: 48px; height: 48px; border-radius: 50%; background: var(--green2); margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.star-compass img { width: 30px; height: 30px; object-fit: contain; }

/* ================================================================
   THE TRUTH / SOLUTION / PATH
   ================================================================ */
#truth { padding: 80px 0; }
.truth-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; margin-bottom: 60px; }
.truth-h { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 20px; text-align: center; }
.truth-col p { font-size: 14px; color: var(--grey); line-height: 1.8; text-align: center; }
.truth-cta-wrap {
  text-align: center;
  position: relative;
  padding-top: 32px;
}
.truth-pulse-ring {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 32px;
  background: linear-gradient(to bottom, rgba(28,101,27,0.6), transparent);
  animation: pulse-line 2s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: 0.4; height: 32px; }
  50%       { opacity: 1;   height: 48px; }
}
.truth-quote {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.55;
  animation: text-glow 3s ease-in-out infinite;
}
@keyframes text-glow {
  0%, 100% { text-shadow: none; }
  50%       { text-shadow: 0 0 30px rgba(28,101,27,0.5); }
}
.btn-book {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green);
  color: var(--white);
  border: none; border-radius: 8px;
  padding: 16px 36px;
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  box-shadow: rgba(28,101,27,0.5) 0px 8px 40px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  position: relative;
}
.btn-book:hover {
  background: #1e7a1e;
  transform: translateY(-2px);
  box-shadow: rgba(28,101,27,0.7) 0px 12px 50px;
}
.btn-book-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.8);
  animation: dot-pulse 1.5s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}
.truth-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 14px;
  letter-spacing: 0.06em;
}

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

/* ================================================================
   COST OF WAITING
   ================================================================ */
#cost { padding: 80px 0; }
.cost-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.cost-title { font-size: 40px; font-weight: 700; color: var(--white); margin-bottom: 32px; }
.cost-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.cost-list li { display: flex; gap: 14px; font-size: 15px; color: var(--white); align-items: flex-start; line-height: 1.5; }
.cost-x { color: #ff4444; font-size: 18px; font-weight: 700; flex-shrink: 0; }
.cost-chart { display: flex; gap: 48px; align-items: flex-end; padding-top: 60px; }
.cost-col-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cost-label { font-size: 16px; font-weight: 600; color: var(--grey); }
.cost-label-green { color: var(--white); }
.cost-bar { border-radius: 4px; width: 60px; }
.cost-bar-red { height: 80px; background: linear-gradient(to bottom, #ff4444, #cc0000); }
.cost-bar-green { height: 200px; background: linear-gradient(to bottom, rgb(0,255,100), var(--green)); }

@media (max-width: 768px) { .cost-layout { grid-template-columns: 1fr; } }

/* ================================================================
   PORTFOLIO
   ================================================================ */
#portfolio { padding: 80px 0 0; }

.portfolio-intro { text-align: center; margin-bottom: 60px; }
.port-badge {
  display: inline-block; padding: 6px 14px;
  background: rgba(28,101,27,0.4); border-radius: 6px;
  font-size: 13px; font-weight: 500; color: var(--white);
  margin-bottom: 20px;
}
.port-title { font-size: clamp(36px, 5vw, 64px); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 14px; }
.port-grey { color: rgba(255,255,255,0.3); }
.port-sub { font-size: 16px; color: var(--grey); margin-bottom: 28px; }
.btn-view-port {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green); color: var(--white);
  padding: 12px 28px; border-radius: 8px; font-size: 14px; font-weight: 600;
  box-shadow: rgba(28,101,27,0.4) 0px 6px 24px; transition: background 0.2s;
}
.btn-view-port:hover { background: #1e7a1e; }

.port-cards { display: flex; flex-direction: column; gap: 4px; }
.port-card {
  display: block; position: relative; overflow: hidden;
  border-radius: 16px; margin: 0 20px 4px;
  transition: transform 0.3s;
}
.port-card:hover { transform: scale(1.005); }
.port-card img { width: 100%; height: 480px; object-fit: cover; object-position: center top; display: block; filter: brightness(0.9); }
.port-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  display: flex; justify-content: space-between; align-items: flex-end;
}
.port-card-meta h4 { font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.port-card-meta span { font-size: 13px; color: rgba(255,255,255,0.5); }
.port-card-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.port-card-tags span { padding: 4px 12px; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; font-size: 12px; color: rgba(255,255,255,0.8); }

/* ================================================================
   FAQ
   ================================================================ */
#faq { padding: 80px 0; }
.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.faq-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.faq-title { font-size: 40px; font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.15; }
.faq-intro { font-size: 14px; color: var(--grey); line-height: 1.7; }

.faq-list { border-top: 1px solid rgba(255,255,255,0.1); }
.fi { border-bottom: 1px solid rgba(255,255,255,0.1); }
.fq {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; font-size: 15px; font-weight: 500;
  color: var(--grey); cursor: pointer; font-family: 'DM Sans', sans-serif;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  transition: color 0.2s; line-height: 1.4;
}
.fq:hover { color: var(--white); }
.fq-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 16px; color: rgba(255,255,255,0.3); transition: transform 0.25s, border-color 0.2s; font-family: sans-serif; font-weight: 300; }
.fi.open .fq-icon { transform: rotate(45deg); border-color: var(--green); color: rgb(100,200,100); }
.fi.open .fq { color: var(--white); }
.fa { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.fi.open .fa { max-height: 200px; }
.fa p { font-size: 14px; color: var(--grey); line-height: 1.75; padding-bottom: 20px; }

@media (max-width: 768px) { .faq-layout { grid-template-columns: 1fr; } }

/* ================================================================
   FINAL CTA
   ================================================================ */
#cta { padding: 80px 0; }
.cta-card {
  background: linear-gradient(135deg, rgba(1,47,29,0.8) 0%, rgba(28,101,27,0.4) 100%);
  border: 1px solid rgba(28,101,27,0.5);
  border-radius: 20px;
  padding: 72px 48px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.cta-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.cta-h { font-size: clamp(32px, 4.5vw, 56px); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 16px; }
.cta-grey { color: rgba(255,255,255,0.45); }
.cta-sub { font-size: 16px; color: var(--grey); margin-bottom: 36px; }
.btn-appt {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--white); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px; padding: 14px 36px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-appt:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); }

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0 24px;
  position: relative;
  overflow: hidden;
}
footer::after {
  content: '';
  position: absolute; right: -100px; top: -50px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(1,47,29,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-bottom: 32px; }
.footer-brand { max-width: 380px; }
.footer-logo { width: 44px; height: 44px; object-fit: contain; margin-bottom: 12px; }
.footer-divider-h { width: 180px; height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 12px; }
.footer-tagline { font-size: 13px; color: var(--grey); margin-bottom: 20px; line-height: 1.5; }
.footer-subscribe { display: flex; gap: 0; }
.footer-subscribe input {
  flex: 1; padding: 10px 16px; border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05); color: var(--white);
  font-size: 13px; font-family: 'DM Sans', sans-serif;
  border-radius: 6px 0 0 6px; outline: none;
}
.footer-subscribe input::placeholder { color: rgba(255,255,255,0.3); }
.footer-subscribe button {
  padding: 10px 18px; background: var(--green);
  color: var(--white); border: none; border-radius: 0 6px 6px 0;
  font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 14px; color: var(--grey); transition: color 0.2s; }
.footer-nav a:hover { color: var(--white); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; color: rgba(255,255,255,0.35);
  flex-wrap: wrap; gap: 12px;
}
.footer-legal { display: flex; align-items: center; gap: 16px; }
.footer-legal-sep { color: rgba(255,255,255,0.15); }
.footer-legal a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

@media (max-width: 560px) {
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
