/* ============================================
   FIT4PURPOSE PT — STYLESHEET v2
   Brand: #FFB84F (orange) + #0108C3 (dark blue)
   ============================================ */

:root {
  --orange: #FFB84F;
  --orange-dark: #e69a28;
  --blue: #4d6fff;
  --blue-bright: #7b96ff;
  --white: #0d0d1a;
  --off-white: #131325;
  --dark: #1e1e38;
  --text: #e8e8f0;
  --text-muted: #9494b8;
  --text-light: #5a5a7a;
  --border: rgba(255, 184, 79, 0.15);
  --border-subtle: rgba(255,255,255,0.07);
  --gradient: linear-gradient(90deg, #FFB84F, #4d6fff);
  --gradient-diag: linear-gradient(135deg, #FFB84F 0%, #0108C3 100%);
  --nav-h: 72px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }

.hero-accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-heading {
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.2s ease both;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.hero-heading .hero-accent {
  -webkit-text-fill-color: transparent;
}

/* ---- LAYOUT ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-heading { margin-bottom: 56px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary { background: var(--gradient); color: var(--white); }
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-ghost:hover { background: var(--blue); color: var(--white); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange-dark); }
.btn-full { width: 100%; justify-content: center; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 100;
  background: #0d0d1a;
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img {
  height: 56px;
  width: auto;
  border-radius: 0;
}
.nav-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: #e8e8f0 !important;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  -webkit-text-fill-color: #e8e8f0 !important;
}
.nav-brand em { font-style: normal; color: var(--orange) !important; -webkit-text-fill-color: var(--orange) !important; }
.nav-logo, .nav-logo:visited, .nav-logo:hover { color: #e8e8f0 !important; }

.footer-logo-img {
  height: 72px;
  width: auto;
  border-radius: 0;
  margin-bottom: 4px;
}

.hero-logo-large {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-logo-large img {
  width: clamp(240px, 36vw, 420px);
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); background: rgba(255,184,79,0.08); }
.nav-links .nav-cta { background: var(--gradient); color: var(--white) !important; padding: 8px 20px; font-weight: 600; }
.nav-links .nav-cta:hover { opacity: 0.88; background: var(--gradient); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #16213e;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 8px 0;
  list-style: none;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  white-space: nowrap;
  border-radius: 0;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu li a:hover { color: var(--orange); background: rgba(255,184,79,0.08); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(77,111,255,0.12), transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(255,184,79,0.1), transparent 60%);
}
.hero-lines {
  display: none;
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto;
  text-align: center;
  animation: fadeUp 0.8s ease both;
}
.hero-sub { margin-left: auto; margin-right: auto; }
.hero-actions { justify-content: center; }
.hero-stats { justify-content: center; }
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }

.hero-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-badge {
  align-items: center;
  padding: 6px 16px;
  background: rgba(255,184,79,0.1);
  border: 1px solid rgba(255,184,79,0.25);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-sub { font-size: 1.15rem; color: var(--text-muted); max-width: 560px; margin-bottom: 40px; animation: fadeUp 0.8s 0.3s ease both; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; animation: fadeUp 0.8s 0.4s ease both; }
.hero-stats { display: flex; align-items: center; gap: 28px; animation: fadeUp 0.8s 0.5s ease both; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--blue); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-light); font-weight: 500; }
.stat-div { width: 1px; height: 36px; background: var(--border); }

.hero-scroll {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light);
  animation: fadeUp 0.8s 0.8s ease both;
  z-index: 0;
  pointer-events: none;
}
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--blue), transparent); animation: scrollPulse 1.8s ease infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.4;} 50%{opacity:1;} }

/* ---- WHO IT'S FOR ---- */
.who-for { padding: 100px 0; background: var(--off-white); }
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.who-card {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 0.5px solid var(--border-subtle);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.who-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(255,184,79,0.2); }
.who-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem; font-weight: 900;
  color: var(--orange); opacity: 0.6;
  line-height: 1; margin-bottom: 12px;
}
.who-card p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.6; }

/* ---- SERVICES ---- */
.services { padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.service-card {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg); padding: 44px;
  border: 0.5px solid var(--border-subtle);
  position: relative; overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(255,184,79,0.25); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.service-card--sc::before { background: var(--gradient-diag); }
.service-card--run::before { background: linear-gradient(90deg, #4d6fff, #FFB84F); }
.service-tag {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
  background: rgba(255,184,79,0.1); display: inline-block; padding: 4px 12px; border-radius: 100px;
}
.service-card h3 { margin-bottom: 18px; }
.service-card p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; }
.service-list { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.service-list li { font-size: 0.9rem; color: var(--text-muted); padding-left: 24px; position: relative; }
.service-list li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

/* ---- GUARANTEE ---- */
.guarantee { padding: 80px 0; background: var(--dark); color: var(--text); border-top: 0.5px solid var(--border-subtle); border-bottom: 0.5px solid var(--border-subtle); }
.guarantee--slim { padding: 60px 0; }
.guarantee-inner { display: flex; align-items: center; gap: 48px; }
.guarantee-icon { font-size: 4rem; color: var(--orange); flex-shrink: 0; line-height: 1; }
.guarantee-text h2, .guarantee-text h3 { color: var(--text); margin-bottom: 16px; }
.guarantee-text p { color: var(--text-muted); max-width: 600px; font-size: 1rem; }

/* ---- TESTIMONIALS PREVIEW ---- */
.testimonials-preview { padding: 100px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.testimonial-card {
  background: rgba(255,255,255,0.04); border-radius: var(--radius-lg); padding: 36px;
  border: 0.5px solid var(--border-subtle);
  transition: transform 0.25s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card--accent { background: var(--dark); border-color: rgba(255,184,79,0.2); }
.tcard-quote { font-family: 'Barlow Condensed', sans-serif; font-size: 4rem; font-weight: 900; color: var(--orange); line-height: 0.8; margin-bottom: 12px; }
.testimonial-card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 24px; font-style: italic; line-height: 1.65; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.tcard-author strong { display: block; font-size: 0.9rem; color: var(--text); }
.tcard-author span { font-size: 0.8rem; color: var(--text-light); }
.testimonials-cta { text-align: center; }

/* ---- CONTACT ---- */
.contact { padding: 100px 0; background: var(--off-white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-text h2 { margin-bottom: 16px; }
.contact-text p { color: var(--text-muted); margin-bottom: 32px; }
.contact-trust { display: flex; flex-direction: column; gap: 8px; }
.contact-trust span { font-size: 0.88rem; font-weight: 600; color: var(--orange); }

/* ---- FORM ---- */
.contact-form {
  background: rgba(255,255,255,0.04); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow);
  border: 0.5px solid var(--border-subtle);
  display: flex; flex-direction: column; gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--text); letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border-subtle);
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(255,255,255,0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,184,79,0.12);
  background: rgba(255,255,255,0.08);
}
.form-group select option { background: #1e1e38; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 100px; }
.brevo-form-wrap {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--border-subtle);
  overflow: hidden;
  padding: 40px;
}

.sib-form-styled { display: flex; flex-direction: column; gap: 18px; }

.sib-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.sib-field { display: flex; flex-direction: column; gap: 6px; }

.sib-field label {
  font-size: 0.83rem;
  font-weight: 600;
  color: #e8e8f0;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 2px;
}

.sib-req { color: var(--orange); margin-left: 2px; }
.sib-opt { font-weight: 400; color: var(--text-light); }

.sib-input {
  padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: #e8e8f0;
  background: rgba(255,255,255,0.06) !important;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  -webkit-text-fill-color: #e8e8f0;
  color-scheme: dark;
}

.sib-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,184,79,0.12);
  background: rgba(255,255,255,0.09) !important;
}

.sib-input::placeholder {
  color: rgba(255,255,255,0.3);
  -webkit-text-fill-color: rgba(255,255,255,0.3);
}

select.sib-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FFB84F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 36px;
  cursor: pointer;
}

select.sib-input option { background: #1e1e38; color: #e8e8f0; }

textarea.sib-input {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
  font-family: 'Barlow', sans-serif;
}

.sib-btn {
  width: 100%;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: var(--gradient);
  color: #fff;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 4px;
}
.sib-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.sib-consent {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
  text-align: center;
  border-top: 0.5px solid var(--border-subtle);
  padding-top: 12px;
}

.sib-note {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 4px;
}

.sib-msg {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'Barlow', sans-serif;
  text-align: center;
}

.sib-msg--success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #22c55e;
}

.sib-msg--error {
  background: rgba(226,75,74,0.1);
  border: 1px solid rgba(226,75,74,0.3);
  color: #e24b4a;
}

@media (max-width: 480px) { .sib-row { grid-template-columns: 1fr; } }
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
  text-align: center;
  border-top: 0.5px solid var(--border-subtle);
  padding-top: 12px;
}
.form-note { font-size: 0.8rem; color: var(--text-light); text-align: center; }

/* ---- FOOTER ---- */
.footer { background: var(--dark); color: var(--white); padding: 72px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-top: 16px; max-width: 260px; line-height: 1.6; }
.footer-legal { font-size: 0.78rem !important; margin-top: 8px !important; color: rgba(255,255,255,0.3) !important; }
.footer-links { display: contents; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; max-width: 1160px; margin: 0 auto;
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
}

/* ---- PAGE HERO ---- */
.page-hero { padding: calc(var(--nav-h) + 80px) 0 80px; position: relative; overflow: hidden; }
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(1,8,195,0.05), transparent),
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(255,184,79,0.06), transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 0; }
.page-hero-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 520px; margin-top: 20px; }

/* ---- STORY ---- */
.story { padding: 100px 0; }
.story-inner { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; }
.story-image-placeholder {
  aspect-ratio: 3/4;
  background: var(--dark);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 40px;
}
.story-image-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: rgba(0,0,0,0.5);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  text-align: center;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  text-transform: uppercase;
}
.story-text h2 { margin-bottom: 20px; }
.story-lead { font-size: 1.15rem; font-weight: 500; margin-bottom: 20px; line-height: 1.6; }
.story-text p { color: var(--text-muted); margin-bottom: 18px; }
.story-quals { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }
.qual { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; }
.qual span { color: var(--orange); font-size: 1.1rem; }

/* ---- USP BAND ---- */
.usp-band { padding: 72px 0; background: var(--gradient-diag); }
.usp-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.3;
}
.usp-mark { font-size: 4rem; line-height: 0; vertical-align: -0.4em; opacity: 0.5; font-style: normal; }

/* ---- PHILOSOPHY ---- */
.philosophy { padding: 100px 0; background: var(--off-white); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pillar {
  padding: 40px 32px; background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg); border: 0.5px solid var(--border-subtle);
  transition: transform 0.25s ease;
}
.pillar:hover { transform: translateY(-4px); border-color: rgba(255,184,79,0.2); }
.pillar-num { font-family: 'Barlow Condensed', sans-serif; font-size: 3.5rem; font-weight: 900; color: var(--orange); opacity: 0.5; line-height: 1; margin-bottom: 12px; }
.pillar h3 { margin-bottom: 12px; }
.pillar p { color: var(--text-muted); font-size: 0.93rem; }

/* ---- CTA BAND ---- */
.cta-band { padding: 80px 0; background: linear-gradient(135deg, #FFB84F 0%, #0108C3 100%); text-align: center; }
.cta-band-inner h2 { color: #fff; margin-bottom: 12px; }
.cta-band-inner p { color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.cta-band .btn-primary { background: #0d0d1a; border-color: transparent; color: #fff; font-weight: 700; }
.cta-band .btn-primary:hover { background: #1a1a2e; }

/* ---- PRICING ---- */
.pricing-section { padding: 80px 0 100px; }
.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-bottom: 56px; flex-wrap: wrap;
}
.toggle-label {
  font-size: 1rem; font-weight: 600; color: var(--text-muted);
  cursor: pointer; padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.toggle-label.active { color: var(--orange); border-bottom-color: var(--orange); }
.toggle-div { color: var(--border-subtle); }

.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plan-card {
  background: rgba(255,255,255,0.04); border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 36px 32px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card--featured { border-color: rgba(77,111,255,0.5); box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.plan-card--featured:hover { transform: translateY(-12px); }
.plan-card--premium {
  border-color: rgba(255,184,79,0.4);
  background: rgba(255,184,79,0.05);
}
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 100px; white-space: nowrap;
}
.plan-tier { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.plan-price { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 12px; }
.price-currency { font-size: 1.6rem; vertical-align: top; margin-top: 6px; display: inline-block; }
.price-freq { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.plan-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.55; min-height: 52px; }
.plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { font-size: 0.88rem; padding-left: 22px; position: relative; line-height: 1.4; }
.plan-features li.included { color: var(--text); }
.plan-features li.not-included { color: var(--text-light); }
.plan-features li::before { position: absolute; left: 0; font-size: 0.85rem; }
.plan-features li.included::before { content: '✓'; color: var(--orange); font-weight: 700; }
.plan-features li.not-included::before { content: '✕'; color: #5a3a3a; font-weight: 700; }

.pricing-note { text-align: center; margin-top: 48px; font-size: 0.92rem; color: var(--text-muted); }
.pricing-note a { color: var(--orange); font-weight: 600; }

.direct-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: 10px;
  transition: opacity 0.2s;
}
.direct-link:hover { opacity: 0.75; }

/* ---- SHIRT SECTION ---- */
.shirt-section { padding: 100px 0; background: var(--dark); }
.shirt-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.shirt-image img { border-radius: var(--radius-lg); max-width: 420px; margin: 0 auto; filter: drop-shadow(0 24px 60px rgba(255,184,79,0.25)); }
.shirt-text .section-label { margin-bottom: 12px; }
.shirt-text h2 {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.shirt-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 1rem; }
.shirt-text .btn-primary { margin-top: 16px; background: var(--orange); border-color: var(--orange); color: #0d0d1a; font-weight: 700; }

/* ---- TESTIMONIALS FULL ---- */
.testimonials-full { padding: 80px 0 100px; }
.testimonials-full .container { display: flex; flex-direction: column; gap: 28px; }
.testimonial-full-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 44px; border: 1px solid var(--border);
}
.testimonial-full-card--accent { background: var(--dark); color: var(--white); }
.tfc-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.tfc-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.tfc-header strong { display: block; font-size: 1rem; }
.tfc-header span { font-size: 0.83rem; color: var(--text-muted); }
.testimonial-full-card--accent .tfc-header span { color: rgba(255,255,255,0.5); }
.tfc-service {
  margin-left: auto;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); background: rgba(1,8,195,0.07); padding: 4px 14px; border-radius: 100px;
}
.testimonial-full-card--accent .tfc-service { background: rgba(255,184,79,0.15); color: var(--orange); }
.testimonial-full-card blockquote {
  font-size: 1.05rem; font-style: italic;
  color: var(--text-muted); line-height: 1.7; margin-bottom: 20px;
  border-left: 3px solid var(--orange); padding-left: 20px;
}
.testimonial-full-card--accent blockquote { color: rgba(255,255,255,0.8); }
.tfc-result {
  font-size: 0.85rem; font-weight: 600; color: var(--blue);
  background: rgba(1,8,195,0.05); padding: 10px 16px;
  border-radius: 8px; display: inline-block;
}
.tfc-result span { color: var(--text-muted); font-weight: 400; margin-right: 4px; }

/* ---- CHATBOT ---- */
.chatbot-bubble {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: var(--gradient); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(1,8,195,0.3);
  z-index: 200;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.chatbot-bubble:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(1,8,195,0.4); }

/* ---- MOBILE ---- */
@media (max-width: 900px) {
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: #0d0d1a; flex-direction: column;
    padding: 24px; gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 99;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 16px; font-size: 1rem; color: #e8e8f0; }
  .nav-links .nav-cta { text-align: center; margin-top: 8px; }

  /* Mobile dropdown — always visible in menu */
  .nav-dropdown-menu {
    display: block;
    position: static;
    background: rgba(255,255,255,0.04);
    border: none;
    border-radius: 6px;
    box-shadow: none;
    padding: 4px 0 4px 16px;
    margin-top: 4px;
  }
  .nav-dropdown-menu li a { font-size: 0.9rem; padding: 8px 12px; color: var(--text-muted); }
  .nav-dropdown-toggle { pointer-events: none; }

  .services-grid, .testimonials-grid, .plans-grid, .pillars-grid,
  .contact-inner, .story-inner, .shirt-inner { grid-template-columns: 1fr; gap: 40px; }

  .plan-card--featured { transform: none; }
  .plan-card--featured:hover { transform: translateY(-4px); }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-div { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .guarantee-inner { flex-direction: column; gap: 24px; }
  .shirt-image img { max-width: 280px; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .who-grid { grid-template-columns: 1fr; }
}
