/* ─────────────────────────────────────────────
   GYBPro — Global Stylesheet
   Fonts: Playfair Display (headlines) + Lato (body)
   Palette: Warm cream base, red-orange accent
───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,500;1,600&family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&display=swap');

:root {
  --red: #E8392A;
  --orange: #F5783A;
  --gradient: linear-gradient(135deg, #E8392A, #F5783A);
  --cream: #FFFAF5;
  --cream2: #FFF5EE;
  --cream3: #F5EDE3;
  --white: #FFFFFF;
  --dark: #111111;
  --dark2: #2C2C2A;
  --mid: #555550;
  --muted: #888880;
  --border: #E8E0D5;
  --border2: #D8CFC5;
  --green: #1A6B3C;
  --green-bg: #E8F5EE;
  --shadow-sm: 0 2px 8px rgba(17,17,17,0.06);
  --shadow-md: 0 8px 32px rgba(17,17,17,0.10);
  --shadow-lg: 0 20px 60px rgba(17,17,17,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --max-w: 1160px;
}

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

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.15; letter-spacing: -0.01em; color: var(--dark); }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { font-size: 1rem; color: var(--mid); line-height: 1.75; }

/* ── UTILITIES ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-lg { padding: 7rem 0; }
.section-dark { background: var(--dark); }
.section-cream { background: var(--cream2); }
.section-white { background: var(--white); }
.text-center { text-align: center; }
.text-red { color: var(--red); }

.eyebrow {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1rem;
}
.eyebrow-dark { color: rgba(255,255,255,0.5); }

.section-intro { font-size: 1.05rem; color: var(--mid); max-width: 560px; line-height: 1.8; margin-top: 1rem; }
.section-intro-center { margin: 1rem auto 0; text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Lato', sans-serif; font-size: 0.9rem; font-weight: 700;
  padding: 0.85rem 1.75rem; border-radius: 8px;
  cursor: pointer; border: none; transition: all 0.18s;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--gradient); color: var(--white); }
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--dark); border: 1.5px solid var(--border2); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark2); transform: translateY(-1px); }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.82rem; }
.btn-lg { padding: 1rem 2rem; font-size: 0.95rem; }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(255,250,245,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 68px;
  display: flex; align-items: center;
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; flex: 1; justify-content: center; }
.nav-links a {
  font-family: 'Lato', sans-serif; font-size: 0.875rem; font-weight: 700;
  color: var(--mid); padding: 0.5rem 0.85rem; border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); background: var(--cream2); }
.nav-links .has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 0.5rem; min-width: 200px;
  display: none; flex-direction: column; gap: 2px;
}
.nav-links .has-dropdown:hover .nav-dropdown { display: flex; }
.nav-dropdown a {
  padding: 0.6rem 0.85rem; border-radius: 6px;
  font-size: 0.85rem; color: var(--dark); display: flex; gap: 0.6rem; align-items: center;
}
.nav-dropdown a:hover { background: var(--cream2); color: var(--red); }
.nav-dropdown a span.icon { font-size: 1rem; }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 4px 0; border-radius: 2px; transition: all 0.2s; }

/* ── PAGE OFFSET ── */
.page-body { padding-top: 68px; }

/* ── HERO ── */
.hero { padding: 5rem 0 0; background: var(--cream); position: relative; overflow: hidden; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding-bottom: 4rem; }
.hero-left { }
.hero-tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.hero-tag {
  font-family: 'Lato', sans-serif; font-size: 0.72rem; font-weight: 700;
  padding: 0.3rem 0.8rem; border-radius: 100px;
  background: var(--cream2); color: var(--red);
  border: 1px solid rgba(232,57,42,0.2);
}
.hero-headline-wrap { min-height: 5rem; margin-bottom: 1.5rem; }
.hero-headline { font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; line-height: 1.1; }
.hero-headline .accent { color: var(--red); font-style: italic; }
.hero-sub { font-size: 1.05rem; color: var(--mid); line-height: 1.8; max-width: 480px; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-trust { font-size: 0.78rem; color: var(--muted); display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-trust span { display: flex; align-items: center; gap: 0.35rem; }
.hero-trust span::before { content: '✓'; color: var(--green); font-weight: 700; }
.hero-right { position: relative; }
.hero-img-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-gybie-pill {
  position: absolute; top: -1rem; right: -1rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; padding: 0.5rem 1rem 0.5rem 0.5rem;
  display: flex; align-items: center; gap: 0.6rem;
  box-shadow: var(--shadow-md);
  animation: float 3s ease-in-out infinite;
}
.hero-gybie-pill img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.hero-gybie-pill-text { font-size: 0.78rem; font-weight: 700; color: var(--dark); }
.hero-gybie-pill-text small { display: block; font-size: 0.68rem; color: var(--muted); font-weight: 400; }
.hero-stat-pill {
  position: absolute; bottom: 1.5rem; left: -1.5rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
  animation: float 3s ease-in-out infinite 1.5s;
}
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--red); }
.hero-stat-label { font-size: 0.68rem; color: var(--muted); }

/* Rotating headline animation */
.headline-slot { position: relative; }
.headline-item { position: absolute; top: 0; left: 0; right: 0; opacity: 0; transition: opacity 0.6s ease; pointer-events: none; }
.headline-item.active { opacity: 1; position: relative; pointer-events: auto; }

/* ── TICKER ── */
.ticker-bar { background: var(--dark); padding: 0.8rem 0; overflow: hidden; }
.ticker-inner { display: flex; gap: 2.5rem; animation: ticker 20s linear infinite; white-space: nowrap; }
.ticker-item { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ── TWO COL LAYOUT ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col.reverse .col-img { order: -1; }
.col-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.col-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── FEATURE GRID ── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feat-grid-2 { grid-template-columns: repeat(2, 1fr); }
.feat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(232,57,42,0.2); }
.feat-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--cream2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; }
.feat-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.feat-card p { font-size: 0.88rem; line-height: 1.7; }

/* ── MODULE CARDS ── */
.module-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.module-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.module-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(232,57,42,0.2); }
.module-bg-num {
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 700; font-style: italic;
  color: rgba(232,57,42,0.06); line-height: 1;
}
.module-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem; }
.module-icon.r { background: #FFF0EE; }
.module-icon.o { background: #FFF5EC; }
.module-icon.g { background: #EEF7EE; }
.module-label { font-family: 'Lato', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 0.4rem; }
.module-card h3 { margin-bottom: 0.5rem; }
.module-card p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.25rem; }
.module-feats { display: flex; flex-direction: column; gap: 0.4rem; }
.module-feat { font-size: 0.8rem; color: var(--dark2); display: flex; align-items: center; gap: 0.5rem; }
.module-feat::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gradient); flex-shrink: 0; }

/* ── INDUSTRY CARDS (Homepage) ── */
.industry-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; }
.industry-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex; flex-direction: column;
}
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--red); }
.industry-card-img { height: 160px; overflow: hidden; }
.industry-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.industry-card:hover .industry-card-img img { transform: scale(1.05); }
.industry-card-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
.industry-card-tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); margin-bottom: 0.4rem; }
.industry-card h4 { font-size: 0.95rem; margin-bottom: 0.35rem; }
.industry-card p { font-size: 0.78rem; line-height: 1.5; flex: 1; }
.industry-card-link { font-size: 0.78rem; font-weight: 700; color: var(--red); margin-top: 0.75rem; display: flex; align-items: center; gap: 0.3rem; }

/* ── STEPS ── */
.steps-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; position: relative; }
.steps-row::before { content: ''; position: absolute; top: 1.5rem; left: calc(16.66% + 1.5rem); right: calc(16.66% + 1.5rem); height: 1px; border-top: 2px dashed rgba(232,57,42,0.2); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--white); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; font-style: italic; color: var(--red); box-shadow: 0 0 0 6px var(--cream2); }
.step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.88rem; }

/* ── GYBIE SECTION ── */
.gybie-bar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; margin-top: 3rem; }
.gybie-bar-img { width: 80px; flex-shrink: 0; }
.gybie-bar-img img { width: 100%; object-fit: contain; }
.gybie-bar-content { flex: 1; min-width: 200px; }
.gybie-online-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.4rem; }
.gybie-online-dot { width: 6px; height: 6px; border-radius: 50%; background: #2ECC71; animation: blink 1.5s ease-in-out infinite; }
.gybie-bar-content h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.gybie-bar-content p { font-size: 0.88rem; }
.gybie-chips { display: flex; gap: 0.5rem; flex-wrap: wrap; flex-shrink: 0; }
.gybie-chip { font-family: 'Lato', sans-serif; font-size: 0.75rem; font-weight: 700; padding: 0.4rem 0.85rem; border-radius: 100px; background: var(--cream2); color: var(--red); border: 1px solid rgba(232,57,42,0.15); white-space: nowrap; }

/* ── TESTIMONIALS ── */
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.t-stars { display: flex; gap: 3px; margin-bottom: 1rem; color: #F5A623; font-size: 0.9rem; }
.t-text { font-size: 0.95rem; line-height: 1.8; color: var(--dark2); font-style: italic; margin-bottom: 1.25rem; }
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--cream2); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.9rem; color: var(--red); flex-shrink: 0; }
.t-name { font-size: 0.85rem; font-weight: 700; color: var(--dark); }
.t-role { font-size: 0.72rem; color: var(--muted); }

/* ── PRICING ── */
.plan-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.plan-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.plan-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.plan-card.featured { background: var(--dark); border-color: var(--dark); }
.plan-popular { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--gradient); color: white; padding: 0.25rem 0.7rem; border-radius: 100px; display: inline-block; margin-bottom: 0.75rem; width: fit-content; }
.plan-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; }
.plan-card.featured .plan-name { color: var(--white); }
.plan-tagline { font-size: 0.78rem; color: var(--muted); margin-bottom: 1rem; }
.plan-card.featured .plan-tagline { color: rgba(255,255,255,0.5); }
.plan-price { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; }
.plan-card.featured .plan-price { color: var(--white); }
.plan-price sub { font-size: 1rem; font-weight: 400; vertical-align: 0; }
.plan-price span { font-size: 0.8rem; font-weight: 400; color: var(--muted); }
.plan-card.featured .plan-price span { color: rgba(255,255,255,0.4); }
.plan-desc { font-size: 0.78rem; line-height: 1.6; color: var(--muted); margin: 1rem 0; padding: 1rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.plan-card.featured .plan-desc { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.1); }
.plan-feats { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; margin-bottom: 1.5rem; }
.plan-feat { font-size: 0.8rem; color: var(--dark2); display: flex; align-items: flex-start; gap: 0.5rem; }
.plan-feat .chk { color: var(--green); font-size: 0.8rem; flex-shrink: 0; margin-top: 2px; }
.plan-card.featured .plan-feat { color: rgba(255,255,255,0.75); }
.plan-card.featured .plan-feat .chk { color: var(--orange); }
.plan-btn { width: 100%; padding: 0.85rem; border-radius: 8px; font-family: 'Lato', sans-serif; font-size: 0.85rem; font-weight: 700; cursor: pointer; border: 1.5px solid var(--border2); background: transparent; color: var(--dark); transition: all 0.2s; margin-top: auto; }
.plan-btn:hover { background: var(--dark); color: white; border-color: var(--dark); }
.plan-card.featured .plan-btn { background: var(--gradient); color: white; border-color: transparent; }
.plan-card.featured .plan-btn:hover { opacity: 0.9; }

/* ── COMPARISON TABLE ── */
.compare-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.compare-table th { text-align: left; padding: 1rem 0.85rem; font-weight: 700; border-bottom: 2px solid var(--border); color: var(--dark); background: var(--cream2); }
.compare-table th:first-child { width: 32%; }
.compare-table td { padding: 0.75rem 0.85rem; border-bottom: 1px solid var(--border); color: var(--mid); vertical-align: top; }
.compare-table td:first-child { color: var(--dark); font-weight: 700; }
.compare-table tr:hover td { background: var(--cream2); }
.compare-cat td { background: var(--cream3) !important; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); padding: 0.6rem 0.85rem; }
.chk-green { color: var(--green); font-weight: 700; }
.chk-dash { color: var(--border2); }

/* ── CONTACT FORM ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 1.5rem; }
.contact-detail { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.9rem; color: var(--mid); }
.contact-detail span.icon { width: 36px; height: 36px; border-radius: 8px; background: var(--cream2); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--dark2); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Lato', sans-serif; font-size: 0.9rem; color: var(--dark);
  background: var(--cream); transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { color: var(--green); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; }

/* ── ABOUT PAGE ── */
.about-hero { padding: 5rem 0 4rem; }
.belief-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.belief-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.belief-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; font-style: italic; color: rgba(232,57,42,0.15); line-height: 1; margin-bottom: 1rem; }
.belief-card h3 { margin-bottom: 0.5rem; }
.belief-card p { font-size: 0.88rem; }
.team-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--gradient); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: white; }
.team-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.team-card .team-role { font-size: 0.78rem; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.82rem; }
.beta-banner { background: var(--gradient); border-radius: var(--radius-lg); padding: 3rem; text-align: center; color: white; }
.beta-banner h2 { color: white; margin-bottom: 0.75rem; }
.beta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }
.quote-block { border-left: 4px solid var(--red); padding: 1.5rem 2rem; margin: 2rem 0; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-style: italic; color: var(--dark2); background: var(--white); border-radius: 0 var(--radius) var(--radius) 0; }

/* ── INDUSTRY PAGE ── */
.industry-hero { padding: 4rem 0; background: var(--cream); }
.industry-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.industry-hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.industry-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.industry-tag { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: var(--gradient); color: white; padding: 0.3rem 0.8rem; border-radius: 100px; margin-bottom: 1rem; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-size: 0.95rem; color: var(--dark); gap: 1rem; }
.faq-q .faq-icon { color: var(--red); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 1.25rem; font-size: 0.9rem; color: var(--mid); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--dark); border-radius: var(--radius-lg); padding: 4rem; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(245,120,58,0.1), transparent 70%); pointer-events: none; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.55); margin-bottom: 2rem; position: relative; }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 4rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 32px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-family: 'Lato', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 0.6rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: color 0.15s; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ── GYBIE WIDGET ── */
.gybie-widget { position: fixed; bottom: 2rem; right: 2rem; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; }
.gybie-bubble { background: var(--white); border: 1px solid var(--border); border-radius: 18px 18px 4px 18px; padding: 1.25rem; max-width: 260px; box-shadow: var(--shadow-lg); animation: bubblePop 0.4s cubic-bezier(0.175,0.885,0.32,1.275) both; position: relative; }
.gybie-bubble-hidden { display: none; }
.gybie-bubble-name { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.4rem; }
.gybie-online-dot { width: 6px; height: 6px; border-radius: 50%; background: #2ECC71; animation: blink 1.5s ease-in-out infinite; display: inline-block; }
.gybie-bubble p { font-size: 0.85rem; line-height: 1.6; color: var(--dark2); }
.gybie-bubble-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }
.g-chip { font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.7rem; border-radius: 100px; border: 1px solid rgba(232,57,42,0.2); background: var(--cream2); color: var(--red); cursor: pointer; transition: all 0.15s; }
.g-chip:hover { background: var(--red); color: white; border-color: var(--red); }
.gybie-close-btn { position: absolute; top: 0.6rem; right: 0.75rem; background: none; border: none; cursor: pointer; font-size: 1rem; color: var(--muted); }
.gybie-btn-wrap { position: relative; }
.gybie-pulse { position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(232,57,42,0.3); animation: pulse-ring 2s ease-out infinite; pointer-events: none; }
.gybie-pulse2 { position: absolute; inset: -12px; border-radius: 50%; border: 1.5px solid rgba(232,57,42,0.15); animation: pulse-ring 2s ease-out infinite 0.5s; pointer-events: none; }
.gybie-btn { width: 64px; height: 64px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--border); box-shadow: var(--shadow-md); cursor: pointer; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; animation: gybieBounce 2.5s ease-in-out infinite; }
.gybie-btn:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(232,57,42,0.2); }
.gybie-btn img { width: 100%; height: 100%; object-fit: cover; object-position: center 5%; }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--muted); margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--border2); }

/* ── STAT ROW ── */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.stat-card { text-align: center; padding: 2rem 1rem; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--red); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.85rem; color: var(--mid); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes bubblePop { from { opacity: 0; transform: scale(0.7); } to { opacity: 1; transform: scale(1); } }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.5); opacity: 0; } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes gybieBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .industry-grid { grid-template-columns: repeat(3,1fr); }
  .plan-row { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .hero-content, .two-col, .industry-hero-inner, .contact-wrap, .module-row { grid-template-columns: 1fr; }
  .two-col.reverse .col-img { order: 0; }
  .steps-row, .belief-row, .team-row, .testimonial-grid { grid-template-columns: 1fr; }
  .steps-row::before { display: none; }
  .industry-grid { grid-template-columns: repeat(2,1fr); }
  .plan-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-gybie-pill { top: 0.5rem; right: 0.5rem; }
  .hero-stat-pill { bottom: 0.5rem; left: 0.5rem; }
  .section { padding: 3.5rem 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .cta-banner { padding: 2.5rem 1.5rem; }
}
@media (max-width: 480px) {
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
