/* =============================================
   LIVEFIT — Global Styles
   Brand fonts: Montserrat (headings) + Poppins (body)
   Brand accent: #ff8863 (coral orange)
   Source: livefitgymuk.com custom.css + site.css
   ============================================= */

/* Fonts loaded via <link> in HTML for better performance — no @import needed */

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

:root {
  --bg:        #0e0e0e;   /* exact dark bg from livefitgymuk.com site.css */
  --bg-card:   #111111;
  --bg-hover:  #181818;
  --border:    #272727;   /* from site.css colour frequency */
  --green:     #ff8863;   /* real brand accent — livefitgymuk.com custom.css */
  --green-dim: #e07050;   /* darker shade for hover states */
  --white:     #ffffff;
  --muted:     #888888;
  --light:     #cccccc;
  --nav-h:     72px;
}

html {
  scroll-behavior: smooth;
}

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

/* ── Typography ───────────────────────────── */

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 700;
}

h1 { font-size: clamp(3rem, 7vw, 7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.1rem; }

p {
  font-family: 'Poppins', sans-serif;
  color: var(--light);
  font-size: 1.0625rem;
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Buttons ──────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--green);   /* #ff8863 — from livefitgymuk.com custom.css */
  color: #fff;                 /* white text on orange — matches site */
}

.btn-primary:hover {
  background: var(--green-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 136, 99, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.0625rem;
}

/* ── Layout Utilities ─────────────────────── */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

.section-sm {
  padding: 80px 0;
}

.section-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.text-center { text-align: center; }
.text-muted   { color: var(--muted); }
.text-green   { color: var(--green); }

.divider {
  width: 48px;
  height: 3px;
  background: var(--green);
  margin: 24px 0;
}

.divider-center {
  margin: 24px auto;
}

/* ── Navigation ───────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.nav-logo span { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--light);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(14, 14, 14, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--light);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--green); }

/* ── Hero ─────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(14,14,14,0.72) 0%, rgba(14,14,14,0.5) 40%, rgba(14,14,14,0.88) 100%),
    url('images/A7R09774.jpg') center/cover no-repeat;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding-top: 60px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--green);
}

.hero h1 {
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
}

.hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1875rem;
  color: var(--light);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.hero-stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.hero-stat h3 span { color: var(--green); }

.hero-stat p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Cards ────────────────────────────────── */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
  transition: all 0.3s ease;
}

.card:hover {
  background: var(--bg-hover);
  border-color: rgba(255, 136, 99, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 136, 99, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Grid layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── Section Headers ──────────────────────── */

.section-header {
  margin-bottom: 64px;
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--light);
  max-width: 560px;
  margin-top: 16px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered p {
  margin: 16px auto 0;
}

/* ── Testimonials ─────────────────────────── */

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(255, 136, 99, 0.2);
  transform: translateY(-2px);
}

.testimonial-stars {
  color: var(--green);
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--light);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dim) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ── Footer ───────────────────────────────── */

.footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.footer-logo span { color: var(--green); }

.footer-desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.9375rem;
  color: var(--light);
  transition: color 0.2s ease;
}

.footer-col ul a:hover { color: var(--green); }

.footer-col address {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--light);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* ── Page Hero (inner pages) ──────────────── */

.page-hero {
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255, 136, 99, 0.06) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

/* ── Classes Page ─────────────────────────── */

.class-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.class-card-photo {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.class-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.class-card:hover .class-card-photo img {
  transform: scale(1.05);
}

.class-card:hover {
  border-color: rgba(255, 136, 99, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.class-card-header {
  padding: 28px 28px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.class-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag-high    { background: rgba(255, 77, 77, 0.15);    color: #ff6b6b; }
.tag-medium  { background: rgba(255, 186, 77, 0.15);   color: #ffba4d; }
.tag-low     { background: rgba(255, 136, 99, 0.15);   color: var(--green); }

.class-emoji {
  font-size: 2rem;
  line-height: 1;
}

.class-card-body {
  padding: 16px 28px 28px;
}

.class-card-body h3 {
  font-size: 1.375rem;
  margin-bottom: 8px;
}

.class-card-body p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.class-schedule {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.class-schedule-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--light);
}

.class-schedule-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ── Memberships Page ─────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px 36px;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
  border-color: var(--green);
  background: linear-gradient(160deg, rgba(255, 136, 99, 0.07) 0%, var(--bg-card) 40%);
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.pricing-price {
  margin-bottom: 8px;
}

.pricing-price-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-price-amount sup {
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: top;
  margin-top: 8px;
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.pricing-desc {
  font-size: 0.9375rem;
  color: var(--light);
  line-height: 1.65;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--light);
}

.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-features li.excluded {
  color: var(--muted);
}

.pricing-features li.excluded::before {
  content: '✕';
  color: var(--muted);
}

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

/* ── PT Page ──────────────────────────────── */

.trainer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  text-align: center;
  transition: all 0.3s ease;
}

.trainer-card:hover {
  border-color: rgba(255, 136, 99, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.trainer-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.trainer-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.trainer-specialty {
  font-size: 0.875rem;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 16px;
}

.trainer-bio {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

.pt-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.pt-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pt-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 136, 99, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.pt-feature-body h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.pt-feature-body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Contact Page ─────────────────────────── */

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--light);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  color: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(255, 136, 99, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info {
  position: sticky;
  top: 100px;
}

.contact-info-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.contact-info-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-block h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.contact-info-block p,
.contact-info-block address {
  font-size: 0.9375rem;
  font-style: normal;
  color: var(--light);
  line-height: 1.8;
}

.contact-info-block a {
  color: var(--green);
  transition: opacity 0.2s ease;
}

.contact-info-block a:hover { opacity: 0.8; }

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9375rem;
}

.hours-row span:first-child { color: var(--light); }
.hours-row span:last-child  { color: var(--white); font-weight: 500; }

/* ── CTA Banner ───────────────────────────── */

.cta-banner {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255, 136, 99, 0.08) 0%, transparent 70%);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 1.125rem;
  color: var(--light);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── About Section ────────────────────────── */

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

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.about-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about-visual-glyph {
  font-size: 6rem;
  opacity: 0.15;
}

.about-visual-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(255, 136, 99, 0.08), transparent);
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 136, 99, 0.1);
  border: 1px solid rgba(255, 136, 99, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 20px;
}

.about-body p {
  margin-bottom: 20px;
}

.about-body p:last-of-type { margin-bottom: 32px; }

/* ── Responsive ───────────────────────────── */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-layout {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  h1 { font-size: clamp(2.5rem, 9vw, 4rem); }
  h2 { font-size: clamp(1.75rem, 6vw, 2.5rem); }

  .section { padding: 80px 0; }

  .grid-3    { grid-template-columns: 1fr; }
  .grid-2    { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pt-features  { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-layout { grid-template-columns: 1fr; }
  .about-visual { aspect-ratio: 3/2; }

  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-4px); }

  .hero-stats { flex-direction: column; gap: 24px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ── Breadcrumb ───────────────────────────── */

.breadcrumb {
  padding: calc(var(--nav-h) + 20px) 0 0;
  position: relative;
  z-index: 1;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  color: var(--muted);
  padding: 12px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb-inner a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.breadcrumb-inner a:hover { color: var(--green); }

.breadcrumb-sep {
  font-size: 0.625rem;
  opacity: 0.4;
}

.breadcrumb-current {
  color: var(--light);
}

/* ── Animations ───────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }
.fade-up-5 { animation-delay: 0.5s; }

/* ── Noise Overlay ────────────────────────── */

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  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)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
  z-index: 9999;
}
