/* ============================================================
   SOLO HQ — Landing Page Styles
   ============================================================ */

/* === VARIABLES === */
:root {
  --navy:           #1C2B3A;
  --navy-mid:       #243447;
  --light:          #F4F6F9;
  --white:          #FFFFFF;
  --amber:          #F5A623;
  --amber-dark:     #D4891A;
  --text:           #1C2B3A;
  --text-mid:       #4B5563;
  --text-light:     #9CA3AF;
  --border:         #E2E6EC;

  --color-clients:   #8B6BC8;
  --color-proposals: #E07B4A;
  --color-projects:  #5B9BD5;
  --color-tasks:     #F0C04A;
  --color-invoices:  #4AAF85;
  --color-income:    #4AA8AF;
  --color-expenses:  #E05C5C;

  --radius:     18px;
  --radius-sm:  10px;
  --shadow:     0 4px 24px rgba(28, 43, 58, 0.07);
  --shadow-lg:  0 12px 48px rgba(28, 43, 58, 0.13);
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* === SECTION LABEL === */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

/* === GLOBAL H2 === */
h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

/* === SECTION INTRO === */
.section-intro {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 12px auto 0;
  text-align: center;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  white-space: nowrap;
}

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

.btn--amber {
  background: #DBF4A7;
  color: var(--navy);
}
.btn--amber:hover {
  background: #DBF4A7;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.1);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--outline-dark:hover .btn-arrow {
  filter: brightness(0) invert(1);
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transform: rotate(-90deg);
  vertical-align: middle;
  margin-left: 2px;
  display: inline-block;
}

.btn--ghost .btn-arrow,
.btn--ghost-light .btn-arrow {
  filter: brightness(0) invert(1);
}

.btn--nav {
  background: #DBF4A7;
  color: var(--navy);
  padding: 10px 22px;
  font-size: 14px;
}
.btn--nav:hover {
  background: #DBF4A7;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 14px 0;
}

.nav.scrolled .nav__logo {
  color: var(--navy);
}

.nav.scrolled .nav__links a {
  color: var(--text-mid);
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 28px;
  width: auto;
  display: block;
}

/* Light logo (white) shown over dark hero */
.nav__logo-light { display: block; }
.nav__logo-dark  { display: none; }

/* When nav scrolls to white bg, swap to dark-background logo */
/* The SVG is white paths — invert it for the light nav */
.nav.scrolled .nav__logo-light { filter: invert(1) brightness(0); display: block; }
.nav.scrolled .nav__logo-dark  { display: none; }

.nav__links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav__links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--white);
}

/* === HERO === */
.hero {
  background: linear-gradient(136deg, #3b6d76 0%, #1c2b3a 49%);
  padding: 160px 0 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E3DAFF;
  color: #1c2b3a;
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero__headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero__headline em {
  font-style: normal;
  color: #ffffff;
}

.highlight {
  background: linear-gradient(180deg, transparent 85%, #dbf4a787 85%);
  display: inline;
  border-radius: 5px;
}

.highlight--problem {
  background: linear-gradient(180deg, transparent 85%, #dbf4a7 85%);
  display: inline;
  border-radius: 5px;
}

.hero__sub {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero__image {
  max-width: 960px;
  margin: 0 auto;
}

.hero__image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* === PROBLEM === */
.problem .section-label { color: #d349cf; }
.problem {
  background: var(--white);
  padding: 50px 0 100px;
  text-align: center;
}

.problem h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 52px;
}

/* === BENTO GRID === */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  text-align: left;
}

/* Grid placement */
.bento__card--a { grid-column: 1 / 3; }
.bento__card--dark.bento__card--a { background: linear-gradient(136deg, #5f87aa61 15%, #5f87aa26 85%); }
.bento__card--dark.bento__card--a h3,
.bento__card--dark.bento__card--a p { color: #1c2b3a; }
.bento__card--b { grid-column: 3 / 4; }
.bento__card--amber.bento__card--b { background: linear-gradient(136deg, #e49273bd 15%, #b22a2a87 85%); }
.bento__card--c { grid-column: 1 / 2; }
.bento__card--light.bento__card--c { background: linear-gradient(136deg, #73a5e463 15%, #E3DAFF 85%); }
.bento__card--d { grid-column: 2 / 3; }
.bento__card--mid.bento__card--d { background: linear-gradient(136deg, #b2c6d1 15%, #4aa8af4d 85%); }
.bento__card--e { grid-column: 3 / 4; grid-row: 2 / 4; }

.bento__card--dark.bento__card--e {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.bento__card--dark.bento__card--e::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/connections.png') no-repeat bottom center / 70% auto;
  z-index: -1;
}

.bento__card--f { grid-column: 1 / 3; }

.bento__card--accent.bento__card--f {
  background: #dbf4a79e;
  position: relative;
  z-index: 0;
}

.bento__card--accent.bento__card--f::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/city2.jpg') no-repeat right center / auto 100%;
  opacity: 1;
  border-radius: var(--radius);
  z-index: -1;
}

.bento__card {
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Card variants */
.bento__card--dark {
  background: var(--navy);
  color: var(--white);
}

.bento__card--amber {
  background: #e49273bd;
  color: var(--white);
}

.bento__card--mid {
  background: #E3DAFF;
  color: var(--navy);
}

.bento__card--light {
  background: #ebeef3;
  color: var(--text);
}

.bento__card--accent {
  background: #dbf4a79e;
  color: #1c2b3a;
}

/* Card content */
.bento__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}

.bento__card--dark .bento__eyebrow { color: #1c2b3a; opacity: 1; }
.bento__card--mid .bento__eyebrow,
.bento__card--accent .bento__eyebrow { color: #1c2b3a; opacity: 1; }

.bento__card h3 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.bento__card--dark h3,
.bento__card--mid h3 { color: var(--white); }
.bento__card--accent h3 { color: #1c2b3a; }

.bento__card--amber h3 { color: var(--white); }

.bento__card p {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.7;
  max-width: 480px;
}

/* Stat cards */
.bento__stat {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
}

.bento__card--amber .bento__stat { color: var(--white); }
.bento__card--amber .bento__stat-label { color: var(--white); opacity: 1; }
.bento__card--mid .bento__stat   { color: var(--navy); }
.bento__card--accent .bento__stat { color: #1c2b3a; }
.bento__card--accent .bento__stat-label { color: #1c2b3a; opacity: 1; }

.bento__stat-label {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.7;
  display: block;
  max-width: 240px;
}

/* === SOLUTION === */
.solution {
  background: var(--light);
  padding: 100px 0;
}

.solution__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution__text .section-label {
  display: block;
  margin-bottom: 16px;
  color: #5F87AA;
}

.solution__text h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.solution__text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 17px;
}

.solution__text .btn {
  margin-top: 8px;
}

.solution__image img {
  width: 100%;
  display: block;
}

/* === FEATURES === */
.features .section-label { color: #a99ad6; }
#pricing .section-label { color: #5F87AA; }
.testimonials .section-label { color: #FF6F59; }
.features {
  background: var(--white);
  padding: 100px 0 0;
  text-align: center;
}

.features h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.features__rows {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}

.feature-row--flip .feature-row__text { order: 2; }
.feature-row--flip .feature-row__visual { order: 1; }

.feature-row__text {
  background: var(--white);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  text-align: left;
}

.feature-row__pills {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-row__name {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  align-self: flex-start;
}

.feature-row__text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--navy);
}

.feature-row__text > p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 400px;
}

.feature-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

.feature-badge.free {
  background: #e8abde6e;
  color: #1c2b3a7d;
}

.feature-badge.pro {
  background: #DBF4A7;
  color: #1c2b3a;
}

.feature-row__note {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  margin-top: -8px;
}

.feature-row__visual {
  background: var(--row-color, var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  overflow: hidden;
  position: relative;
}

.feature-row__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.08);
  pointer-events: none;
}

.feature-row__visual img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
  object-fit: cover;
  object-position: top;
  display: block;
  position: relative;
  z-index: 1;
}

/* === PHOTO BREAK === */
.photo-break {
  background: linear-gradient(136deg, #e2c19e 15%, #eb9bbc 85%);
  padding: 100px 0;
}

.photo-break__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  background: #DDBDD5;
  border-radius: 24px;
  overflow: hidden;
}

.photo-break__image {
  height: 420px;
  overflow: hidden;
}

.photo-break__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #5F87AA;
}

.photo-break__quote {
  padding: 48px 48px 48px 0;
}

.photo-break__quote blockquote {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.photo-break__quote blockquote::before {
  content: '\201C';
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
}

.photo-break__quote blockquote::after {
  content: '\201D';
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
}

.photo-break__quote cite {
  font-size: 14px;
  font-style: normal;
  color: var(--navy);
  font-weight: 500;
}

/* === PRICING === */
.pricing {
  background: var(--light);
  padding: 100px 0;
  text-align: center;
}

.pricing h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
  background-color: #E3DAFF;
  padding: 80px 100px;
  border-radius: 20px;
}

.pricing__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: none;
  text-align: left;
  position: relative;
  box-shadow: var(--shadow);
}

.pricing__card--pro {
  background: var(--navy);
  color: var(--white);
}

.pricing__popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #DBF4A7;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing__header h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing__card--pro .pricing__header h3 {
  color: rgba(255,255,255,0.7);
}

.pricing__price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.pricing__card--pro .pricing__price {
  color: var(--white);
}

.pricing__sub {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.pricing__card--pro .pricing__sub {
  color: rgba(255,255,255,0.5);
}

.pricing__list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing__list li {
  font-size: 15px;
  padding-left: 24px;
  position: relative;
  color: var(--text-mid);
}

.pricing__card--pro .pricing__list li {
  color: rgba(255,255,255,0.7);
}

.pricing__list li.included::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  background-color: #DBF4A7;
  -webkit-mask-image: url('images/checkmark-24.svg');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-image: url('images/checkmark-24.svg');
  mask-size: contain;
  mask-repeat: no-repeat;
}

.pricing__card:not(.pricing__card--pro) .pricing__list li.included::before {
  background-color: #abd650;
}

.pricing__card--pro .pricing__list li.included::before {
  background-color: #DBF4A7;
}

.pricing__list li.locked {
  opacity: 0.4;
}

.pricing__list li.locked::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 15px;
  height: 15px;
  background-color: #e88c0d;
  -webkit-mask-image: url('images/lock-24.svg');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-image: url('images/lock-24.svg');
  mask-size: contain;
  mask-repeat: no-repeat;
}

/* === TESTIMONIALS === */
.testimonials {
  background: linear-gradient(136deg, #d7c1b95e 15%, #ca575754 85%);
  padding: 100px 0;
  text-align: center;
}

.testimonials h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.testimonials__bento {
  display: grid;
  grid-template-columns: 3fr 3fr 3fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 52px;
  text-align: left;
}

.t-card {
  border-radius: 16px;
  overflow: hidden;
}

.t-card--photo {
  grid-column: 1;
  grid-row: 1 / 3;
  min-height: 420px;
}

.t-card--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scaleX(-1);
}

.t-card--stat {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.t-card--stat-dark {
  grid-column: 2;
  grid-row: 1;
  background: #1C2B3A;
}

.t-card--stat-purple {
  grid-column: 3;
  grid-row: 1;
  background: linear-gradient(136deg, #dce5e9 15%, #8a5fdd80 85%);
}

/* Decorative shape — dark card: arc circle stroke */
.t-card--stat-dark::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1.5px solid rgba(219, 244, 167, 0.25);
  top: -30px;
  right: -30px;
  pointer-events: none;
}

/* Decorative shape — purple card: soft blob */
.t-card--stat-purple::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 150px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  top: -50px;
  right: -40px;
  pointer-events: none;
}

.t-stat__pill {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  align-self: flex-start;
}

.t-card--stat-dark .t-stat__pill {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.t-card--stat-purple .t-stat__pill {
  background: rgba(28, 43, 58, 0.1);
  color: rgba(28, 43, 58, 0.6);
}

.t-stat__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  line-height: 1;
  display: block;
}

.t-card--stat-dark .t-stat__number { color: #DBF4A7; }
.t-card--stat-dark .t-stat__label  { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; }

.t-card--stat-purple .t-stat__number { color: #1C2B3A; }
.t-card--stat-purple .t-stat__label  { color: rgba(28,43,58,0.65); font-size: 14px; line-height: 1.6; }

.t-card--quote {
  grid-column: 2 / 4;
  grid-row: 2;
  background: linear-gradient(136deg, #efcece 15%, #dd5f7f80 85%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.t-quote__stars {
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 2px;
}

.t-card--quote blockquote {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy);
  font-style: italic;
  flex: 1;
  margin: 0;
}

.t-quote__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.t-quote__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.t-quote__role {
  font-size: 13px;
  color: rgba(28,43,58,0.55);
}

/* === FAQ === */
.faq {
  background: var(--navy);
  padding: 100px 0;
}

.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq__header {
  position: sticky;
  top: 120px;
}

.faq__header .section-label {
  color: #FF6F59;
  margin-bottom: 16px;
  display: block;
}

.faq__header h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.faq__header p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.faq__header p a {
  color: #DBF4A7;
  text-decoration: none;
}

.faq__header p a:hover {
  text-decoration: underline;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.faq__question:hover {
  color: #DBF4A7;
}

.faq__icon {
  font-size: 22px;
  font-weight: 300;
  color: #DBF4A7;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  line-height: 1;
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}

.faq__item.open .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding-bottom: 24px;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* === FINAL CTA === */
.cta-strip {
  background: linear-gradient(136deg, #DBF4A7 0%, #1c2b3a 24%);
  padding: 32px 0;
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-strip__text {
  text-align: left;
}

.cta-strip__title {
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 0;
}

.cta-strip__accent {
  color: #DBF4A7;
}

.cta-strip__sub {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.cta-strip__buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cta-final {
  background: var(--navy);
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final .highlight {
  background: linear-gradient(180deg, #d349cf00 85%, #d349cf 85%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.cta-final h2 {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-final p {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.cta-final__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
  background: var(--navy);
  padding: 0 24px 0;
}

.footer__card {
  background: linear-gradient(136deg, #c4d7b9 15%, #c8e5fc 85%);
  border-radius: 20px 20px 0 0;
  padding: 32px 52px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

.footer__brand p {
  font-size: 14px;
  color: #1c2b3a;
  margin: 0;
  font-weight: 600;
}

.footer__logo {
  height: 30px;
  width: auto;
  filter: brightness(0);
}

.footer__links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer__links a {
  color: #1c2b3a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  background-color: #1c2b3a17;
  border-radius: 10px;
  padding: 8px 16px;
  transition: background-color 0.2s;
}

.footer__links a:hover {
  background-color: #1c2b3a2e;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #1c2b3a17;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c2b3a;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.footer__social:hover {
  background: #1c2b3a2e;
  color: #1c2b3a;
}

.footer__social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer__copyright {
  font-size: 13px;
  color: #1c2b3a;
  margin: 0;
  font-weight: 600;
  opacity: 0.6;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

.reveal,
.reveal-left,
.reveal-right {
  will-change: opacity, transform;
}

.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.97);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-48px) scale(0.97);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal-right {
  opacity: 0;
  transform: translateX(48px) scale(0.97);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .testimonials__bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .t-card--photo      { grid-column: 1; grid-row: 1 / 3; min-height: 320px; }
  .t-card--stat-dark  { grid-column: 2; grid-row: 1; }
  .t-card--stat-purple{ grid-column: 2; grid-row: 2; }
  .t-card--quote      { grid-column: 1 / 3; grid-row: 3; }

  .bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento__card--a { grid-column: 1 / 3; }
  .bento__card--b { grid-column: 1 / 2; }
  .bento__card--c { grid-column: 2 / 3; }
  .bento__card--d { grid-column: 1 / 2; }
  .bento__card--e { grid-column: 2 / 3; grid-row: auto; }
  .bento__card--dark.bento__card--e::before { display: none; }
  .bento__card--f { grid-column: 1 / 3; }

  .feature-row,
  .feature-row--flip .feature-row__text,
  .feature-row--flip .feature-row__visual {
    grid-template-columns: 1fr;
    order: unset;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-row--flip .feature-row__text { order: 1; }
  .feature-row--flip .feature-row__visual { order: 2; }

  .feature-row__text {
    padding: 48px 40px;
  }

  .feature-row__visual {
    min-height: 300px;
  }

  .solution__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .photo-break__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .photo-break__image {
    height: 300px;
  }

  .photo-break__quote {
    padding: 40px;
  }

  .pricing__grid {
    padding: 48px 32px;
    margin-left: -32px;
    margin-right: -32px;
    border-radius: 0;
  }

  .faq__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq__header {
    position: static;
  }

  .footer__card {
    padding: 36px 32px;
  }

  .footer__top {
    flex-direction: column;
    gap: 28px;
  }

  .cta-strip {
    background: linear-gradient(136deg, #DBF4A7 0%, #1c2b3a 54%);
  }

  .cta-strip__inner {
    flex-direction: column;
    align-items: center;
  }

  .cta-strip__text {
    text-align: center;
  }

  .cta-strip__title {
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .cta-strip__sub {
    line-height: 1.3;
  }

  .cta-strip__buttons {
    justify-content: center;
  }

  .cta-strip__buttons .btn {
    justify-content: center;
  }
}

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

  h2 {
    font-size: 28px;
  }

  .hero__headline {
    font-size: 32px;
  }

  .hero__sub {
    font-size: 16px;
    line-height: 1.4;
  }

  .hero {
    padding: 120px 0 72px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero__ctas .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .problem__grid,
  .features__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__bento {
    grid-template-columns: 1fr;
  }
  .t-card--photo       { grid-column: 1; grid-row: auto; min-height: 240px; }
  .t-card--stat-dark   { grid-column: 1; grid-row: auto; }
  .t-card--stat-purple { grid-column: 1; grid-row: auto; }
  .t-card--quote       { grid-column: 1; grid-row: auto; }

  .bento {
    grid-template-columns: 1fr;
  }

  .bento__card--a,
  .bento__card--b,
  .bento__card--c,
  .bento__card--d,
  .bento__card--e,
  .bento__card--f {
    grid-column: auto;
    grid-row: auto;
  }

  .bento__card--e {
    min-height: 520px;
  }

  .bento__card--accent.bento__card--f::before {
    background-size: 180% auto;
    background-position: bottom right;
  }

  .bento__card--f {
    min-height: 350px;
  }

  .bento__card--accent.bento__card--f {
    background: #dbf4a7d4;
  }

  .nav__links {
    display: none;
  }

  .faq__list {
    max-width: 100%;
  }

  .cta-final__buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-final__buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .footer {
    padding: 16px;
  }

  .footer__card {
    padding: 28px 24px;
    border-radius: 16px;
  }

  .footer__top {
    gap: 24px;
    padding-bottom: 28px;
    margin-bottom: 28px;
  }

  .footer__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer__bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 16px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
    padding: 40px 20px;
  }
}
