:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1c1c1c;
  --text-primary: #f5f0e8;
  --text-secondary: #a09888;
  --text-muted: #6b6156;
  --accent: #e8783a;
  --accent-light: #f09050;
  --accent-glow: rgba(232, 120, 58, 0.15);
  --border: #222222;
  --border-light: #2a2a2a;
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'DM Sans', -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── BUTTONS ─────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #0a0a0a;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 14px 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--border-light);
}

/* ─── SECTION LABEL ────────────────────────── */
.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ─── NAV ─────────────────────────────────── */
.nav {
  padding: 24px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-cta {
  background: transparent;
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--accent);
  padding: 8px 20px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: var(--accent);
  color: #0a0a0a;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  text-decoration: none;
}

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

/* ─── HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 40px;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: block;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ─── PROBLEM ──────────────────────────────── */
.problem {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.15;
}

.problem-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.problem-highlight {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s;
}

.highlight-card:hover {
  border-color: var(--accent);
}

.highlight-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.highlight-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── FEATURES ─────────────────────────────── */
.features {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.features-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.features-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.feature-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.feature-large {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(232, 120, 58, 0.05) 100%);
}

.feature-icon {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── SAMPLES ──────────────────────────────── */
.samples {
  padding: 120px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.samples-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.samples-header {
  margin-bottom: 48px;
}

.samples-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.15;
}

.samples-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
}

/* Vertical tabs */
.vertical-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}

.vtab {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}

.vtab:hover {
  border-color: var(--border-light);
  color: var(--text-primary);
}

.vtab-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
}

.vertical-hidden {
  display: none;
}

/* Content grid */
.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: start;
}

.content-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Sample post cards */
.sample-post {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.post-platform {
  padding: 12px 20px;
  background: var(--bg-card-hover);
  border-bottom: 1px solid var(--border);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.post-body {
  padding: 0;
}

.post-image-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  border-bottom: 1px solid var(--border);
}

.restaurant-img {
  background: linear-gradient(135deg, #1a1208 0%, #2a1f0a 100%);
}

.salon-img {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a0f1f 100%);
}

.gym-img {
  background: linear-gradient(135deg, #0a0f0a 0%, #0f1a0f 100%);
}

.img-label {
  background: rgba(0,0,0,0.4);
  padding: 8px 16px;
  border-radius: 8px;
}

.post-caption {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.post-caption strong {
  color: var(--text-primary);
}

.post-hashtags {
  color: var(--accent);
  font-size: 0.82rem;
  margin-top: 4px;
}

.post-body-text {
  padding: 24px;
}

.post-gbp-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
}

.post-meta {
  padding: 12px 20px;
  background: var(--bg-card-hover);
  border-top: 1px solid var(--border);
  display: flex;
  gap: 20px;
}

.post-stat {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: 'Space Grotesk', sans-serif;
}

/* Sidebar sample cards */
.sample-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.sample-card-label {
  padding: 10px 16px;
  background: var(--bg-card-hover);
  border-bottom: 1px solid var(--border);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sample-card-body {
  padding: 16px;
}

.ad-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.ad-body {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 12px;
}

.ad-cta {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0a;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 6px;
}

.ad-result {
  padding: 10px 16px;
  background: rgba(232, 120, 58, 0.08);
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
}

.sample-emails {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.email-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  background: var(--bg-card-hover);
  border-radius: 8px;
}

.email-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--border-light);
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.email-tag.winner {
  background: rgba(232, 120, 58, 0.2);
  color: var(--accent);
}

.email-option p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
}

.email-stat {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.review-original {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.review-response {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.script-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.script-text em {
  color: var(--text-muted);
  font-style: italic;
}

/* ─── PRICING ──────────────────────────────── */
.pricing {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.pricing-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

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

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.price-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(232, 120, 58, 0.08) 0%, var(--bg-card) 40%);
}

.price-featured:hover {
  border-color: var(--accent-light);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-primary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 20px;
  border-radius: 100px;
}

.price-tier {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.price-features li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li::before {
  content: '\2713';
  color: var(--accent);
  margin-right: 12px;
  font-weight: 700;
}

.price-for {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}

.price-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  color: var(--text-secondary);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: auto;
}

.price-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.price-cta-featured {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
}

.price-cta-featured:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: #0a0a0a;
}

/* ─── CONSULT FORM ─────────────────────────── */
.consult {
  padding: 120px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.consult-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.consult-left h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.consult-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
}

.consult-trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.trust-check {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.consult-right {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.consult-form {
  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: 8px;
}

.form-group label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card-hover);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group select {
  cursor: pointer;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

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

.form-submit {
  background: var(--accent);
  color: #0a0a0a;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
}

.form-submit:hover:not(:disabled) {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(232, 120, 58, 0.1);
  border: 1px solid rgba(232, 120, 58, 0.3);
  border-radius: var(--radius);
  padding: 24px;
}

.form-success .success-check {
  color: var(--accent);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.form-success strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.form-error {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.88rem;
  color: #f87171;
}

/* ─── CLOSING ──────────────────────────────── */
.closing {
  padding: 160px 48px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
}

.closing-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.15;
}

.closing p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ─── FOOTER ───────────────────────────────── */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

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

/* ─── RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .consult-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 0 24px;
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .nav {
    padding: 20px 24px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-link {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

  .stat-divider {
    width: 48px;
    height: 1px;
  }

  .problem {
    padding: 80px 24px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features {
    padding: 80px 24px;
  }

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

  .feature-large {
    grid-column: 1;
  }

  .samples {
    padding: 80px 0;
  }

  .samples-inner {
    padding: 0 24px;
  }

  .vertical-tabs {
    flex-wrap: wrap;
  }

  .pricing {
    padding: 80px 24px;
  }

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

  .consult {
    padding: 80px 0;
  }

  .consult-inner {
    padding: 0 24px;
  }

  .consult-right {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .closing {
    padding: 80px 24px;
  }

  .footer {
    padding: 32px 24px;
  }

  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .price-amount {
    font-size: 2.4rem;
  }

  .feature-card {
    padding: 28px;
  }
}
