/* ============================================================
   RIZEON AI — STYLE SHEET
   Minimalist black & white, premium, animated
   ============================================================ */

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

:root {
  --white:  #0a0a0a;
  --off-white: #121212;
  --black:  #fafaf8;
  --near-black: #1a1a1a;
  --grey-100: #222222;
  --grey-200: #333333;
  --grey-400: #888888;
  --grey-600: #aaaaaa;
  --accent: #868ba9;
  --accent-hover: #727690;
  --accent-gradient: linear-gradient(135deg, #868ba9 0%, #5a4b86 100%);
  --accent-gradient-hover: linear-gradient(135deg, #9b9fbc 0%, #6f5d9f 100%);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5, h6, .logo-text { font-family: var(--font-heading); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.desktop-br { display: block; }

/* -------- SCROLL REVEAL -------- */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out) var(--delay, 0s),
              transform 0.75s var(--ease-out) var(--delay, 0s);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-1 { --delay: 0.05s; }
.stagger-2 { --delay: 0.15s; }
.stagger-3 { --delay: 0.25s; }

/* -------- NAVIGATION -------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  border-color: var(--grey-100);
  box-shadow: 0 1px 24px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 30px; height: 30px;
  background: var(--black);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border-radius: 5px;
  flex-shrink: 0;
}
.logo-mark.sm { width: 26px; height: 26px; font-size: 0.75rem; }
.logo-text { font-weight: 600; letter-spacing: -0.02em; }
.logo-text em { font-style: italic; font-family: var(--font-serif); font-weight: 700; font-size: 1.05em; }
.logo-slash { color: var(--grey-400); margin: 0 1px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-600);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--black);
  transition: width 0.25s var(--ease-out);
}
.nav-link:hover { color: var(--black); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s var(--ease-spring);
  letter-spacing: 0.01em;
}
.nav-cta:hover { background: var(--accent-gradient-hover); transform: scale(1.03); }
.cta-arrow { font-size: 0.9rem; transition: transform 0.2s; }
.nav-cta:hover .cta-arrow { transform: translate(2px, -2px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--grey-100);
  padding: 1rem 2rem 1.5rem;
  gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--grey-100);
  color: var(--grey-600);
  transition: color 0.2s;
}
.nav-mobile-link:hover { color: var(--black); }
.nav-mobile-cta { color: var(--black); font-weight: 700; border: none; margin-top: 0.5rem; }

/* -------- TICKER -------- */
.ticker-wrapper {
  background: var(--near-black);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: ticker 28s linear infinite;
  will-change: transform;
}
.ticker-track span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
}
.ticker-dot { color: var(--accent) !important; font-size: 0.6rem !important; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-wrapper:hover .ticker-track { animation-play-state: paused; }

/* -------- HERO -------- */
.section-hero {
  position: relative;
  padding: 148px 0 100px;
  overflow: hidden;
  background: var(--white);
}

.hero-screenshot {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 0;
  border-radius: 16px;
  overflow: visible;
  background: transparent;
  position: relative;
  z-index: 1;
}

.hero-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  overflow: hidden;
}

.hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}
.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 2.5rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 2px 12px rgba(0,0,0,0.2);
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--black);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
  text-shadow: 0 0 30px rgba(134, 139, 169, 0.5), 0 0 60px rgba(90, 75, 134, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08em;
  margin-bottom: 2rem;
}
.hero-headline span { display: block; }
.italic-word {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--black);
}
.underline-word {
  position: relative;
  display: inline-block;
  color: var(--accent);
}
.underline-word::after {
  content: '';
  position: absolute;
  bottom: 0.04em;
  left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  transform-origin: left;
  animation: underline-grow 0.8s var(--ease-out) 0.6s both;
}
@keyframes underline-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--grey-600);
  line-height: 1.7;
  margin: 0 auto 2.75rem;
  max-width: 600px;
  font-weight: 400;
}
.italic-accent { font-style: italic; font-family: var(--font-serif); font-weight: 700; color: var(--black); }

/* Hero form */
.hero-form {
  max-width: 560px;
  margin: 0 auto;
}
.form-fields {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 6px 6px 6px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.25s, box-shadow 0.25s;
  box-shadow: 0 0 0 0 rgba(134, 139, 169, 0);
  margin-bottom: 0;
}
.form-fields:focus-within {
  border-color: rgba(134, 139, 169, 0.6);
  box-shadow: 0 0 0 4px rgba(134, 139, 169, 0.1);
}
.field-wrap { flex: 1; position: relative; }
.field-wrap + .field-wrap { border-left: none; }
.field-wrap input {
  width: 100%;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  background: transparent;
  border: none;
  outline: none;
  color: var(--black);
}
.field-wrap input::placeholder { color: rgba(255,255,255,0.4); }
.field-wrap input:focus { background: transparent; }
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 1rem;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.2s var(--ease-spring), box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.form-fields .btn-primary {
  width: auto;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
}
.btn-primary:hover {
  background: var(--accent-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-primary:active { transform: translateY(0); }
.btn-arrow { font-size: 1rem; transition: transform 0.2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-large { padding: 1.15rem 2rem; font-size: 1rem; border-radius: 8px; width: auto; }

.form-note {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-top: 0.75rem;
  text-align: center;
}

/* -------- NEW HERO ELEMENTS -------- */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  background: rgba(134, 139, 169, 0.25);
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid rgba(134, 139, 169, 0.4);
  transition: all 0.3s var(--ease-spring);
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(134, 139, 169, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-trust {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.hero-trust p {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--black);
}
.trust-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--black);
  font-weight: 600;
}
.trust-icons {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 0.25rem;
  color: rgba(255, 255, 255, 0.7);
}
.trust-icons svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.component-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black);
  max-width: 860px;
  margin: 3rem auto 0.75rem;
  text-align: left;
}
.component-label svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* -------- SECTION SHARED -------- */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--grey-400);
  margin-bottom: 1.5rem;
}
.section-headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 1rem;
}

/* -------- PAIN SECTION -------- */
.section-pain {
  padding: 100px 0 90px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.section-pain::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(90, 75, 134, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.section-pain::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(134, 139, 169, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.pain-header {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 3.5rem;
}
.pain-title-col { flex: 0 0 auto; max-width: 480px; }
.pain-desc-col { flex: 1; padding-top: 1.5rem; }
.pain-desc-col p { font-size: 1rem; color: var(--grey-600); line-height: 1.75; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.pain-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2rem 1.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}
.pain-card:last-child { border-right: none; }
.pain-card:hover {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 8px 32px rgba(0,0,0,0.3);
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.card-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  color: var(--black);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.pain-card:hover .card-icon {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(134, 139, 169, 0.4);
}
.card-num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--grey-400);
}
.card-title {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.card-text {
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.65;
}

/* -------- SOLUTION SECTION -------- */
.section-solution {
  padding: 100px 0 90px;
  background: var(--near-black);
  color: var(--black);
  position: relative;
  overflow: hidden;
}
.section-solution::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.solution-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 2.5rem;
}
.solution-headline { color: var(--black); max-width: 540px; }
.section-solution .italic-word { color: var(--black); }
.solution-desc {
  max-width: 320px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  padding-top: 0.5rem;
  flex-shrink: 0;
}

/* -------- SOLUTION CARDS -------- */
.solution-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.solution-card {
  display: block;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.07);
  transition: transform 0.35s var(--ease-out), background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.solution-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(134, 139, 169, 0.5);
  box-shadow: 0 12px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(134,139,169,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}
.solution-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.solution-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.solution-card:hover .solution-card-img img {
  transform: scale(1.05);
}
.solution-card-content {
  padding: 2rem;
}
.solution-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.solution-card-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* -------- PROCESS SECTION -------- */
.section-process {
  padding: 100px 0 90px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.section-process::before {
  content: '';
  position: absolute;
  top: 50%; left: 20%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(90, 75, 134, 0.3) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}
.section-process::after {
  content: '';
  position: absolute;
  top: 30%; right: -100px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(134, 139, 169, 0.2) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
}
.section-process .container,
.section-process .process-grid { position: relative; z-index: 1; }
.process-header { margin-bottom: 3.5rem; }
.process-title-col { max-width: 500px; }
.process-desc {
  font-size: 1rem;
  color: var(--grey-600);
  line-height: 1.7;
  max-width: 420px;
  margin-top: 1rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.process-step {}
.step-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--grey-200);
  margin-bottom: 1rem;
}
.step-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, border-color 0.3s;
  cursor: default;
}
.step-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(134, 139, 169, 0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(134,139,169,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}
.step-icon {
  width: 42px; height: 42px;
  background: var(--black);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  margin-bottom: 1.25rem;
}
.step-title {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.step-text {
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.65;
}

/* -------- CONTACT SECTION -------- */
.section-contact {
  padding: 120px 0 130px;
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-contact::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 700px;
  background: radial-gradient(ellipse, rgba(90, 75, 134, 0.4) 0%, rgba(63, 55, 110, 0.2) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}
.section-contact::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(134, 139, 169, 0.25) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
}
.contact-container { position: relative; z-index: 2; }
.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 2rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.contact-headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.contact-sub {
  font-size: 1rem;
  color: var(--grey-600);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.contact-form { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.contact-fields {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--grey-200);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  background: var(--white);
}
.contact-field-wrap { flex: 1; }
.contact-field-wrap + .contact-field-wrap { border-left: 1.5px solid var(--grey-200); }
.contact-field-wrap input {
  width: 100%;
  padding: 1rem 1.1rem;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  background: transparent;
  border: none;
  outline: none;
  color: var(--black);
}
.contact-field-wrap input::placeholder { color: var(--grey-400); }
.contact-field-wrap input:focus { background: var(--off-white); }

/* -------- FOOTER -------- */
.site-footer {
  background: var(--near-black);
  padding: 3rem 2rem;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo .logo-text { color: var(--black); font-size: 1rem; }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* -------- TOAST -------- */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease-spring);
  z-index: 999;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* -------- CURSOR FOLLOWER -------- */
.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--black);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), opacity 0.3s;
  will-change: left, top;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(0,0,0,0.25);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.12s var(--ease-out), top 0.12s var(--ease-out), width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), opacity 0.3s, border-color 0.3s;
  will-change: left, top;
}

/* -------- TESTIMONIALS (Two-row auto-scroll marquee) -------- */
.section-testimonials {
  padding: 100px 0 90px;
  background: var(--off-white);
  overflow: hidden;
  position: relative;
}
.testimonials-header {
  text-align: left;
  margin-bottom: 3.5rem;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  margin-bottom: 1.5rem;
}
.marquee-wrapper:last-child { margin-bottom: 0; }

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}
.marquee-left {
  animation: marquee-scroll-left 40s linear infinite;
}
.marquee-right {
  animation: marquee-scroll-right 40s linear infinite;
}
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ---- Testimonial Card ---- */
.tcard {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.75rem;
  width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s, background 0.3s;
  cursor: default;
}
.tcard:hover {
  border-color: rgba(134, 139, 169, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.tcard-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.tcard-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(90, 75, 134, 0.5);
  border: 1px solid rgba(134, 139, 169, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.tcard-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.tcard-meta strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}
.tcard-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.tcard-quote {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  flex-grow: 1;
}

.tcard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.tcard-source {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.tcard-stars {
  color: #FACC15;
  font-size: 0.85rem;
  letter-spacing: 1px;
}


/* -------- FAQ -------- */
.section-faq {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section-faq::before {
  content: '';
  position: absolute;
  top: -50px; right: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(90, 75, 134, 0.3) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}
.section-faq::after {
  content: '';
  position: absolute;
  bottom: 0; left: 5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(134, 139, 169, 0.2) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(70px);
  z-index: 0;
}
.section-faq .container { position: relative; z-index: 1; }
.faq-accordion {
  max-width: 800px;
  margin-top: 3.5rem;
}
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 1.5rem;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(134, 139, 169, 0.3);
}
.faq-item.open {
  background: rgba(134, 139, 169, 0.07);
  border-color: rgba(134, 139, 169, 0.3);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.07);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--accent);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* -------- RESPONSIVE -------- */
@media (max-width: 900px) {
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .desktop-br { display: none; }

  .hero-headline { font-size: clamp(2.4rem, 8vw, 3.5rem); }

  .pain-header { flex-direction: column; gap: 1.5rem; }
  .pain-title-col { max-width: 100%; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { border-right: none; border-bottom: 1.25px solid var(--grey-200); }
  .pain-card:last-child { border-bottom: none; }

  .solution-header { flex-direction: column; gap: 1.25rem; }
  .solution-desc { max-width: 100%; }
  .solution-cards-grid { grid-template-columns: 1fr; }



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

  .form-fields {
    flex-direction: column;
    border-radius: 16px;
    padding: 6px;
    gap: 6px;
  }
  .form-fields .field-wrap {
    width: 100%;
  }
  .form-fields input {
    text-align: center;
    padding: 0.75rem !important;
  }
  .form-fields .btn-primary {
    width: 100%;
    border-radius: 12px;
  }
  .contact-fields { flex-direction: column; }
  .contact-field-wrap + .contact-field-wrap { border-left: none; border-top: 1.5px solid rgba(255,255,255,0.1); }
  .btn-large { width: 100%; }

  .cursor-dot, .cursor-ring { display: none; }
}

@media (max-width: 640px) {
  .section-hero { padding: 120px 0 60px; }
  .section-pain, .section-solution, .section-process, .section-contact { padding: 64px 0 56px; }
  .container { padding: 0 1.25rem; }
  .hero-headline { font-size: 2.25rem; line-height: 1.15; }
  .hero-sub { font-size: 1.05rem; line-height: 1.6; }
  .pain-title, .process-title, .contact-headline { font-size: 1.8rem; line-height: 1.2; }
  .solution-card-title { font-size: 1.25rem; }
}
