/* ── ASKQ SHARED STYLESHEET ── */

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

:root {
  --red: #E5192A;
  --red-dim: #b01220;
  --black: #0a0a0a;
  --black2: #111111;
  --black3: #181818;
  --white: #f5f5f5;
  --grey: #888;
  --border: #222;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo span { color: var(--red); }
.logo img { height: 36px; width: auto; display: block; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--grey);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-dim); transform: translateY(-1px); }
.nav-cta:active { transform: translateY(0); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.1;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu a.active { color: var(--red); }
.mobile-menu-cta {
  margin-top: 24px;
  background: var(--red);
  color: var(--white) !important;
  font-size: 16px !important;
  padding: 14px 40px;
  border-radius: 8px;
}
.mobile-menu-cta:hover { background: var(--red-dim); }
.mobile-menu-divider { width: 40px; height: 1px; background: var(--border); margin: 16px 0; }

/* ── PAGE HERO (about + contact) ── */
.page-hero {
  padding: 160px 48px 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  top: 0; right: 0;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--red) 50%, transparent);
  opacity: 0.25;
}
.page-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--red); }
.page-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 800px;
}
.page-headline em { font-style: normal; color: var(--red); display: block; }
.page-hero-sub { margin-top: 40px; max-width: 520px; font-size: 16px; color: #aaa; line-height: 1.8; font-weight: 300; }

/* ── SHARED SECTION ── */
section { padding: 100px 48px; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--red); }

.section-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--red-dim); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-block;
  color: var(--grey);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--white); transform: translateY(-1px); }
.btn-secondary:active { transform: translateY(0); }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 8px;
  white-space: nowrap;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.btn-white:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-white:active { transform: translateY(0); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.footer-logo span { color: var(--red); }
.footer-logo img { height: 28px; width: auto; display: block; }
.footer-copy { font-size: 12px; color: var(--grey); letter-spacing: 0.04em; }
.footer-tagline { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); }
.footer-tagline span { color: var(--red); }

/* ── ANIMATIONS ── */
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }



/* ── HOMEPAGE: HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px 48px 80px;
  position: relative;
  overflow: hidden;
  background-image: url('/img/website-bg.jpeg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.75) 100%);
  z-index: 0;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-bg-line { position: absolute; top: 0; right: 0; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, var(--red) 40%, transparent); opacity: 0.3; }
.hero-bg-line2 { position: absolute; top: 0; right: 38%; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, #333 60%, transparent); opacity: 0.5; }
.hero-label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; animation: fadeUp 0.8s ease both; }
.hero-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--red); }
.hero-headline { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(72px, 10vw, 140px); line-height: 0.92; letter-spacing: -0.01em; text-transform: uppercase; max-width: 900px; animation: fadeUp 0.8s 0.1s ease both; }
.hero-headline em { font-style: normal; color: var(--red); display: block; }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 56px; animation: fadeUp 0.8s 0.2s ease both; }
.hero-sub { max-width: 420px; font-size: 16px; color: #aaa; line-height: 1.7; font-weight: 300; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }

/* ── HOMEPAGE: TICKER ── */
.ticker { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; padding: 14px 0; background: var(--black2); }
.ticker-inner { display: flex; gap: 64px; animation: ticker 20s linear infinite; white-space: nowrap; width: max-content; }
.ticker-item { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); display: flex; align-items: center; gap: 20px; }
.ticker-item span { color: var(--red); font-size: 16px; }

/* ── HOMEPAGE: PROBLEM ── */
.problem { background: var(--black2); }
.problem-intro { max-width: 860px; margin-bottom: 64px; }
.problem-intro .bridge { margin-top: 24px; font-size: 16px; color: #aaa; font-weight: 300; }
.problem-intro .bridge strong { color: var(--white); font-weight: 600; }
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; background: transparent; margin-top: 48px; }
.problem-card { background: var(--black3); border: 1px solid var(--border); border-radius: 16px; padding: 40px 36px; position: relative; transition: background 0.2s, border-color 0.2s, transform 0.2s; }
.problem-card:hover { background: #1e1e1e; border-color: #333; transform: translateY(-2px); }
.problem-card:active { transform: scale(0.98); background: #222; border-color: #444; }
.problem-card-num { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; color: var(--red); margin-bottom: 20px; }
.problem-card-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 26px; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.1; margin-bottom: 12px; }
.problem-card-desc { font-size: 14px; color: #aaa; line-height: 1.6; font-weight: 300; }
.problem-bridge { margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--border); }
.problem-bridge p { font-size: 16px; color: #aaa; line-height: 1.8; font-weight: 300; max-width: 620px; }
.problem-bridge p strong { color: var(--white); font-weight: 600; }

/* ── HOMEPAGE: SERVICES ── */
.services { background: var(--black2); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; background: transparent; margin-top: 64px; }
.service-card { background: var(--black3); border: 1px solid var(--border); border-radius: 16px; padding: 52px 48px; position: relative; overflow: hidden; transition: background 0.2s, border-color 0.2s, transform 0.2s; }
.service-card:hover { background: #1a1a1a; border-color: #333; transform: translateY(-2px); }
.service-card:active { transform: scale(0.98); background: #222; border-color: #444; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--red); transition: height 0.3s ease; }
.service-card:hover::before { height: 100%; }
.service-icon { width: 40px; height: 40px; margin-bottom: 28px; opacity: 0.7; }
.service-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 28px; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 16px; }
.service-desc { font-size: 14px; color: #aaa; line-height: 1.7; font-weight: 300; max-width: 340px; }
.service-tag { display: inline-block; margin-top: 24px; font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); border: 1px solid var(--red); padding: 6px 14px; border-radius: 20px; }

/* ── HOMEPAGE: FOUNDER STRIP ── */
.founder-strip { background: var(--black2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto; min-height: 420px; overflow: hidden; }
.founder-strip-top { display: none; }
.founder-strip-photo { position: relative; background: var(--black3); overflow: hidden; min-height: 420px; grid-row: 1 / 3; grid-column: 2; }
.founder-strip-photo-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--grey); }
.founder-strip-photo-placeholder svg { opacity: 0.2; }
.founder-strip-photo-placeholder-label { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.3; }
.founder-strip-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.founder-strip-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(229,25,42,0.08) 0%, transparent 60%); pointer-events: none; }
.founder-strip-content { display: flex; flex-direction: column; justify-content: center; padding: 72px 64px; position: relative; grid-column: 1; grid-row: 1 / 3; }
.founder-strip-content::before { content: '\201C'; position: absolute; top: 32px; left: 56px; font-family: 'Barlow Condensed', sans-serif; font-size: 120px; font-weight: 900; color: var(--red); opacity: 0.15; line-height: 1; }
.founder-strip-label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 28px; display: flex; align-items: center; gap: 12px; }
.founder-strip-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--red); }
.founder-strip-quote { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: clamp(26px, 3vw, 38px); line-height: 1.25; color: var(--white); margin-bottom: 32px; }
.founder-strip-attr { display: flex; flex-direction: column; gap: 4px; margin-bottom: 40px; }
.founder-strip-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 20px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--white); }
.founder-strip-role { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.founder-strip-link { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); transition: color 0.2s; }
.founder-strip-link:hover { color: var(--white); }
.founder-strip-link::after { content: '→'; transition: transform 0.2s; }
.founder-strip-link:hover::after { transform: translateX(4px); }

/* ── HOMEPAGE: GROWTH CYCLE ── */
.process { background: var(--black); }
.cycle-tabs { display: flex; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
.cycle-tab { display: flex; align-items: center; gap: 10px; padding: 12px 20px; border: 1px solid var(--border); border-radius: 100px; background: transparent; color: var(--grey); font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; }
.cycle-tab:hover { border-color: #555; color: var(--white); }
.cycle-tab.active { background: var(--red); border-color: var(--red); color: var(--white); }
.cycle-tab-num { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; opacity: 0.6; }
.cycle-tab.active .cycle-tab-num { opacity: 1; }
.cycle-panel-wrap { margin-top: 24px; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.cycle-panel { display: none; grid-template-columns: 1fr 1fr; gap: 0; }
.cycle-panel.active { display: grid; }
.cycle-panel-left { padding: 56px 52px; background: var(--black3); border-right: 1px solid var(--border); }
.cycle-panel-step { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.cycle-panel-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 52px; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1; margin-bottom: 24px; }
.cycle-panel-desc { font-size: 15px; color: #aaa; line-height: 1.8; font-weight: 300; max-width: 380px; }
.cycle-panel-outcome { margin-top: 36px; padding: 20px 24px; background: rgba(229,25,42,0.08); border: 1px solid rgba(229,25,42,0.2); border-radius: 10px; }
.cycle-panel-outcome-label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.cycle-panel-outcome p { font-size: 14px; color: var(--white); font-weight: 400; line-height: 1.6; }
.cycle-panel-right { padding: 56px 52px; background: var(--black2); display: flex; flex-direction: column; gap: 20px; }
.cycle-activity-label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }
.cycle-activity { display: flex; align-items: flex-start; gap: 14px; font-size: 14px; color: #bbb; font-weight: 300; line-height: 1.5; }
.cycle-activity::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.cycle-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; }
.cycle-nav-btn { background: transparent; border: 1px solid var(--border); color: var(--grey); font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 10px 24px; border-radius: 100px; cursor: pointer; transition: all 0.2s; }
.cycle-nav-btn:hover { border-color: var(--white); color: var(--white); }
.cycle-nav-btn:disabled { opacity: 0.2; cursor: default; }
.cycle-progress { display: flex; gap: 6px; }
.cycle-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); transition: background 0.2s; }
.cycle-dot.active { background: var(--red); }
.process-note { margin-top: 48px; max-width: 600px; font-size: 15px; color: var(--grey); line-height: 1.8; font-weight: 300; }
.process-note strong { color: var(--white); font-weight: 600; }

/* ── HOMEPAGE: FAQ ── */
.faq { background: var(--black); }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; margin-top: 64px; }
.faq-left { position: sticky; top: 120px; }
.faq-left p { margin-top: 20px; font-size: 15px; color: #aaa; line-height: 1.8; font-weight: 300; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; text-align: left; }
.faq-question-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 20px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--white); transition: color 0.2s; line-height: 1.2; }
.faq-item.open .faq-question-text { color: var(--red); }
.faq-icon { width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s, border-color 0.2s, transform 0.3s; color: var(--grey); font-size: 18px; line-height: 1; }
.faq-item.open .faq-icon { background: var(--red); border-color: var(--red); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 24px; }
.faq-answer p { font-size: 15px; color: #aaa; line-height: 1.9; font-weight: 300; }
.faq-answer p a { color: var(--red); text-decoration: none; border-bottom: 1px solid rgba(229,25,42,0.3); transition: border-color 0.2s; }
.faq-answer p a:hover { border-color: var(--red); }

/* ── HOMEPAGE: CONTACT FORM ── */
.contact { background: var(--black2); border-top: 1px solid var(--border); padding: 100px 48px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; max-width: 1200px; }
.contact-left .section-headline { margin-bottom: 24px; }
.contact-left p { font-size: 15px; color: var(--grey); line-height: 1.8; font-weight: 300; max-width: 420px; }
.contact-pillars { margin-top: 48px; display: flex; flex-direction: column; gap: 16px; }
.contact-pillar { display: flex; align-items: center; gap: 16px; font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: #aaa; }
.contact-pillar::before { content: ''; width: 8px; height: 8px; background: var(--red); flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey); }
.form-group input, .form-group textarea, .form-group select { background: var(--black3); border: 1px solid var(--border); border-radius: 10px; color: var(--white); font-family: 'Barlow', sans-serif; font-size: 15px; padding: 14px 18px; outline: none; transition: border-color 0.2s; width: 100%; appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); background: #1a1a1a; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--black3); }
.form-submit { background: var(--red); color: var(--white); border: none; font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 18px 40px; border-radius: 8px; cursor: pointer; transition: background 0.2s; align-self: flex-start; margin-top: 8px; }
.form-submit:hover { background: var(--red-dim); transform: translateY(-1px); }
.form-submit:active { transform: translateY(0); }

/* ── ABOUT PAGE ── */
.founder { background: var(--black2); }
.founder-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; margin-top: 64px; }
.founder-photo { position: sticky; top: 100px; }
.founder-photo-box { width: 100%; aspect-ratio: 3/4; background: var(--black3); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; color: var(--grey); }
.founder-photo-box img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.founder-photo-box svg { opacity: 0.3; }
.founder-photo-label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.4; }
.founder-name { margin-top: 20px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 28px; text-transform: uppercase; letter-spacing: 0.03em; }
.founder-title { margin-top: 6px; font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.founder-intro { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 28px; line-height: 1.3; color: var(--white); margin-bottom: 32px; }
.founder-body { display: flex; flex-direction: column; gap: 20px; }
.founder-body p { font-size: 15px; color: #aaa; line-height: 1.9; font-weight: 300; }
.founder-body p strong { color: var(--white); font-weight: 600; }
.founder-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.founder-stat { background: var(--black3); border: 1px solid var(--border); border-radius: 14px; padding: 28px 24px; }
.founder-stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 40px; color: var(--red); line-height: 1; margin-bottom: 8px; }
.founder-stat-label { font-size: 12px; color: var(--grey); font-weight: 400; line-height: 1.4; }

.model { background: var(--black); }
.model-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 64px; }
.model-text p { font-size: 15px; color: #aaa; line-height: 1.9; font-weight: 300; margin-bottom: 20px; }
.model-text p strong { color: var(--white); font-weight: 600; }
.model-pillars { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.model-pillar { display: flex; align-items: flex-start; gap: 16px; padding: 20px 24px; background: var(--black3); border: 1px solid var(--border); border-radius: 12px; }
.model-pillar-icon { width: 36px; height: 36px; background: rgba(229,25,42,0.1); border: 1px solid rgba(229,25,42,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.model-pillar-text h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 17px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.model-pillar-text p { font-size: 13px; color: var(--grey); font-weight: 300; line-height: 1.5; }
.model-quote { background: var(--black3); border: 1px solid var(--border); border-left: 3px solid var(--red); border-radius: 14px; padding: 40px 36px; }
.model-quote-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 26px; line-height: 1.3; color: var(--white); margin-bottom: 20px; }
.model-quote-attr { font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); }

.partners { background: var(--black2); }
.partners-intro { max-width: 640px; margin-bottom: 64px; }
.partners-intro p { margin-top: 20px; font-size: 15px; color: #aaa; line-height: 1.8; font-weight: 300; }
.partners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.partner-card { background: var(--black3); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: background 0.2s, border-color 0.2s, transform 0.2s; }
.partner-card:hover { background: #1a1a1a; border-color: #333; transform: translateY(-2px); }
.partner-card:active { transform: scale(0.98); background: #222; border-color: #444; }
.partner-photo { width: 100%; aspect-ratio: 1/1; background: var(--black2); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; color: var(--grey); border-bottom: 1px solid var(--border); }
.partner-photo svg { opacity: 0.25; }
.partner-photo-label { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.35; }
.partner-info { padding: 28px 28px 32px; }
.partner-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 22px; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 4px; }
.partner-role { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.partner-bio { font-size: 13px; color: #aaa; line-height: 1.7; font-weight: 300; }
.partner-placeholder { display: inline-block; margin-top: 16px; font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #444; border: 1px solid #2a2a2a; padding: 5px 12px; border-radius: 20px; }

.values { background: var(--black); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.value-card { background: var(--black3); border: 1px solid var(--border); border-radius: 16px; padding: 36px 32px; transition: background 0.2s, border-color 0.2s, transform 0.2s; }
.value-card:hover { background: #1a1a1a; border-color: #333; transform: translateY(-2px); }
.value-card:active { transform: scale(0.98); background: #222; border-color: #444; }
.value-num { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--red); margin-bottom: 16px; }
.value-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 22px; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 12px; }
.value-desc { font-size: 13px; color: #aaa; line-height: 1.7; font-weight: 300; }

.cta-strip { background: var(--red); padding: 64px 48px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-strip-text h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(32px, 4vw, 52px); text-transform: uppercase; line-height: 1; color: var(--white); }
.cta-strip-text p { margin-top: 12px; font-size: 15px; color: rgba(255,255,255,0.75); font-weight: 300; }

/* ── CONTACT PAGE ── */
.contact-main { padding: 100px 48px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; background: var(--black2); }
.contact-headline { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(36px, 4vw, 56px); line-height: 1; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 24px; }
.contact-intro { font-size: 15px; color: #aaa; line-height: 1.8; font-weight: 300; margin-bottom: 40px; }
.contact-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: var(--black3); border: 1px solid var(--border); border-radius: 12px; text-decoration: none; color: var(--white); transition: border-color 0.2s, background 0.2s, transform 0.2s; }
.contact-item:hover { border-color: #333; background: #1e1e1e; transform: translateY(-2px); }
.contact-item:active { transform: scale(0.98); background: #222; }
.contact-item-icon { width: 38px; height: 38px; background: rgba(229,25,42,0.1); border: 1px solid rgba(229,25,42,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.contact-item-label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); margin-bottom: 2px; }
.contact-item-value { font-size: 14px; font-weight: 500; color: var(--white); }
.contact-book { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; background: var(--red); border-radius: 14px; text-decoration: none; transition: background 0.2s; margin-bottom: 40px; }
.contact-book:hover { background: var(--red-dim); }
.contact-book-text h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 20px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--white); margin-bottom: 4px; }
.contact-book-text p { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 300; }
.contact-book-arrow { font-size: 22px; color: var(--white); opacity: 0.8; }
.social-label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); margin-bottom: 14px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link { display: flex; align-items: center; gap: 8px; padding: 10px 18px; background: var(--black3); border: 1px solid var(--border); border-radius: 100px; text-decoration: none; color: var(--grey); font-size: 13px; font-weight: 500; letter-spacing: 0.04em; transition: border-color 0.2s, color 0.2s; }
.social-link:hover { border-color: #444; color: var(--white); }
.contact-form-wrap { position: sticky; top: 100px; }
.form-card { background: var(--black3); border: 1px solid var(--border); border-radius: 20px; padding: 48px 44px; }
.form-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 28px; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 8px; }
.form-subtitle { font-size: 14px; color: var(--grey); font-weight: 300; margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12px; color: #555; text-align: center; margin-top: 8px; font-weight: 300; }

.map-section { padding: 80px 48px; background: var(--black); }
.map-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.map-headline { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 36px; text-transform: uppercase; letter-spacing: -0.01em; }
.map-address { font-size: 14px; color: var(--grey); font-weight: 300; text-align: right; line-height: 1.6; }
.map-address strong { color: var(--white); font-weight: 500; display: block; }
.map-address a { color: var(--red); text-decoration: none; border-bottom: 1px solid rgba(229,25,42,0.3); }
.map-address a:hover { border-color: var(--red); }
.map-container { width: 100%; height: 420px; background: var(--black3); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; position: relative; }
.map-container iframe { width: 100%; height: 100%; border: none; filter: invert(90%) hue-rotate(180deg) saturate(0.4) brightness(0.85); }
.map-overlay-label { position: absolute; bottom: 20px; left: 20px; background: var(--black); border: 1px solid var(--border); border-radius: 10px; padding: 12px 18px; font-size: 13px; font-weight: 500; color: var(--white); display: flex; align-items: center; gap: 8px; pointer-events: none; }
.map-overlay-label::before { content: ''; width: 8px; height: 8px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

.expectations { padding: 80px 48px; background: var(--black2); border-top: 1px solid var(--border); }
.expectations-label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.expectations-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--red); }
.expectations-headline { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(32px, 4vw, 52px); text-transform: uppercase; line-height: 1; margin-bottom: 48px; }
.expectations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.expectation-card { background: var(--black3); border: 1px solid var(--border); border-radius: 14px; padding: 28px 24px; }
.expectation-num { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--red); margin-bottom: 14px; }
.expectation-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 18px; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 10px; }
.expectation-desc { font-size: 13px; color: var(--grey); line-height: 1.6; font-weight: 300; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  section { padding: 70px 24px; }
  footer { flex-direction: column; gap: 16px; text-align: center; }

  /* Homepage */
  .hero { padding: 130px 24px 60px; }
  .hero-bg-line, .hero-bg-line2 { display: none; }
  .hero-headline { font-size: clamp(56px, 12vw, 90px); }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 36px; }
  .hero-actions { align-items: flex-start; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-bridge { flex-direction: column; align-items: flex-start; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact { padding: 70px 24px; }
  .cycle-panel { grid-template-columns: 1fr; }
  .cycle-panel-left { border-right: none; border-bottom: 1px solid var(--border); }
  .cycle-panel-left, .cycle-panel-right { padding: 36px 28px; }

  .founder-strip { display: flex; flex-direction: column; }
  .founder-strip-top { display: flex; padding: 40px 24px 0; order: 1; }
  .founder-strip-photo { min-height: unset; height: 340px; order: 2; grid-row: unset; grid-column: unset; margin: 0 24px; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
  .founder-strip-photo img { object-position: center top; }
  .founder-strip-content { order: 3; padding: 36px 24px 40px; grid-row: unset; grid-column: unset; }
  .founder-strip-content::before { display: none; }
  .founder-strip-content .founder-strip-label { display: none; }

  /* About page */
  .founder-layout { grid-template-columns: 1fr; gap: 40px; }
  .founder-photo { position: static; }
  .founder-photo-box { aspect-ratio: unset; height: 320px; max-height: 320px; overflow: hidden; }
  .founder-photo-box img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
  .founder-content { overflow: hidden; max-width: 100%; }
  .founder-intro { font-size: 22px; }
  .founder-body p { font-size: 14px; }
  .founder-stats { grid-template-columns: 1fr 1fr; }
  .model-layout { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; align-items: flex-start; }

  /* Contact page */
  .page-hero { padding: 130px 24px 60px; }
  .contact-main { padding: 60px 24px; grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .map-section { padding: 60px 24px; }
  .map-container { height: 300px; }
  .map-header { flex-direction: column; align-items: flex-start; }
  .map-address { text-align: left; }
  .expectations { padding: 60px 24px; }
  .expectations-grid { grid-template-columns: 1fr 1fr; }
}
