/* PARVALY - Marketing Agency Styles */
/* Light theme with blue accent */

:root {
  --bg: #ffffff;
  --bg-secondary: #f8fafc;
  --card: #ffffff;
  --text: #1a1a2e;
  --text-secondary: #64748b;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-light: #dbeafe;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

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

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  height: 32px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text);
}

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

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--accent);
}

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

.lang-toggle {
  display: flex;
  gap: 4px;
  background: var(--bg-secondary);
  padding: 4px;
  border-radius: 8px;
}

.lang-button {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.lang-button:hover {
  color: var(--text);
}

.lang-button.is-active {
  background: var(--accent);
  color: white;
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: white;
  padding: 20px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: white;
}

.btn-white {
  background: white;
  color: var(--accent);
}

.btn-white:hover {
  background: var(--bg-secondary);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg) 100%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero-lead {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

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

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}

.hero-stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ===== SECTIONS ===== */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 16px;
}

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

.bg-gray {
  background: var(--bg-secondary);
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-card .btn {
  width: 100%;
}

/* ===== FEATURES / WHY US ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 40px 24px;
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-secondary);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--text);
}

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

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.25rem;
}

.testimonial-info h4 {
  font-weight: 600;
  margin-bottom: 4px;
}

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

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 16px;
  font-size: 1.25rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--accent);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FORMS ===== */
.form-section {
  background: var(--bg-secondary);
  padding: 80px 0;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.form-container h2 {
  font-size: 1.75rem;
  margin-bottom: 8px;
  text-align: center;
}

.form-container .form-desc {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.2s;
  background: var(--bg);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
}

.form-input::placeholder {
  color: var(--text-secondary);
}

.contact-type-toggle {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-type-btn {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-type-btn:hover {
  border-color: var(--accent);
}

.contact-type-btn.is-active {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--accent);
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 16px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

/* Inline form (for CTA sections) */
.inline-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.inline-form .form-input {
  flex: 1;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--accent);
  position: relative;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--card) 15%);
}

.pricing-card.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.pricing-card .price-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

/* ===== CASES / PORTFOLIO ===== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.case-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.case-image {
  height: 220px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.case-content {
  padding: 28px;
}

.case-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.case-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.case-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.case-stats {
  display: flex;
  gap: 24px;
}

.case-stat {
  text-align: center;
}

.case-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.case-stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg) 100%);
}

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

.about-text h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 24px;
}

.about-text p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-image {
  background: var(--accent-light);
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.team-card {
  text-align: center;
  padding: 32px;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--accent-light);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.team-card .role {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Clients logos */
.clients-section {
  padding: 60px 0;
  text-align: center;
}

.clients-title {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.clients-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.6;
}

.clients-logos span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  padding: 80px 0;
  background: var(--bg-secondary);
}

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

.contact-info h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.contact-methods {
  display: grid;
  gap: 24px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-method h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-method p {
  color: var(--text-secondary);
}

.contact-method a {
  color: var(--accent);
  font-weight: 500;
}

/* ===== SERVICE PAGE ===== */
.service-hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg) 100%);
}

.service-hero-content {
  max-width: 800px;
}

.service-hero .breadcrumb {
  margin-bottom: 24px;
}

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

.breadcrumb a {
  color: var(--accent);
}

.service-hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}

.service-hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.service-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.service-details {
  padding: 80px 0;
}

.service-details-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.service-main h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  margin-top: 40px;
}

.service-main h2:first-child {
  margin-top: 0;
}

.service-main p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.service-main ul {
  margin: 20px 0;
  padding-left: 24px;
}

.service-main li {
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--card);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.sidebar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.sidebar-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
}

.sidebar-card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn.whatsapp {
  background: #25d366;
}

.floating-btn.telegram {
  background: #0088cc;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0f276b;
  color: white;
  padding: 60px 0 30px;
  margin-top: 0;
}

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

.footer-brand .logo-text {
  color: white;
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: var(--accent);
}

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

  .service-details-grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 60px 0 80px;
  }

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

  section {
    padding: 60px 0;
  }

  .services-grid,
  .testimonials-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .form-container {
    padding: 32px 24px;
  }

  .contact-type-toggle {
    flex-direction: column;
  }

  .inline-form {
    flex-direction: column;
  }

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

  .audit-spotlight-content {
    padding: 32px 24px;
  }

  .audit-features {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .floating-buttons {
    bottom: 16px;
    right: 16px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

/* ===== UTILITIES ===== */
.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

.hidden {
  display: none !important;
}

/* Success message */
.form-success {
  background: #d1fae5;
  color: #065f46;
  padding: 16px;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 16px;
}

/* ===== NEW COMPONENTS FOR 2026 SITE ===== */

/* Header link */
.header-link {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  display: none;
}

@media (min-width: 1100px) {
  .header-link {
    display: inline;
  }
}

/* Hero badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.badge {
  background: var(--accent-light);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(37, 99, 235, 0.2);
  transition: all 0.2s;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.hero-microcopy {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 24px;
}

/* Steps grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.steps-note {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-style: italic;
}

/* Audit spotlight */
.audit-spotlight {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.audit-spotlight-content {
  background: var(--card);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}

.audit-spotlight h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  font-weight: 700;
}

.audit-features {
  list-style: none;
  text-align: left;
  max-width: 400px;
  margin: 0 auto 32px;
  background: var(--bg-secondary);
  padding: 24px;
  border-radius: var(--radius);
}

.audit-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

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

.audit-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Pricing preview grid */
.pricing-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .pricing-preview-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .pricing-preview-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-note-global {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 24px;
  font-style: italic;
}

/* CTA buttons */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-white {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline-white:hover {
  background: white;
  color: var(--accent);
}

/* Audit card highlight */
.audit-card-highlight {
  background: var(--card);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 700px;
  margin: 0 auto;
}

.audit-card-content {
  text-align: center;
}

.audit-card-content h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.audit-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.audit-price span {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.audit-desc {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.audit-includes {
  text-align: left;
  max-width: 400px;
  margin: 0 auto 24px;
}

.audit-includes h4 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.audit-includes ul {
  list-style: none;
}

.audit-includes li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.audit-includes li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

.audit-delivery {
  margin-bottom: 24px;
}

.audit-microcopy {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Pricing grid 3 */
.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-card-full {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card-full:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card-full.featured {
  border-color: var(--accent);
  position: relative;
}

.pricing-card-full.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.price-subtitle {
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.price-note-small {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

/* Value grid */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.value-card h4 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.value-separate {
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.value-package {
  margin-bottom: 8px;
}

.value-save {
  color: var(--accent);
  font-weight: 600;
}

.value-save span {
  font-size: 1.25rem;
}

/* Scope buttons */
.scope-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Workflow steps */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.workflow-step {
  text-align: center;
  padding: 24px;
}

.workflow-number {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 12px;
}

.workflow-step h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

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

.workflow-note {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-style: italic;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.3s;
}

.faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.is-open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Video Audit page */
.audit-page-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .audit-page-grid {
    grid-template-columns: 1fr;
  }
}

.audit-section {
  margin-bottom: 40px;
}

.audit-section h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.audit-features-list {
  list-style: none;
}

.audit-features-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.audit-features-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

.audit-channel-note {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* Channel selector */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.channel-option {
  cursor: pointer;
}

.channel-option input {
  display: none;
}

.channel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.channel-option input:checked + .channel-card {
  border-color: var(--accent);
  background: var(--accent-light);
}

.channel-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.channel-name {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

/* Audit info grid */
.audit-info-grid {
  display: grid;
  gap: 16px;
}

.audit-info-item {
  display: flex;
  gap: 8px;
}

.audit-info-item strong {
  min-width: 120px;
}

.refund-text {
  color: var(--text-secondary);
  background: var(--bg-secondary);
  padding: 16px;
  border-radius: var(--radius);
}

/* Audit sidebar CTA */
.audit-cta-card {
  background: var(--card);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: sticky;
  top: 100px;
}

.audit-price-big {
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
}

.audit-price-label {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.audit-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audit-buttons .btn {
  width: 100%;
}

.audit-cta-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 16px;
}

/* Checklist page */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

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

.checklist-form-container {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.checklist-form-container h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.checklist-form .form-group {
  margin-bottom: 16px;
}

.form-consent {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 12px;
  text-align: center;
}

.checklist-info h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.checklist-contents {
  list-style: none;
  margin-bottom: 40px;
}

.checklist-contents li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.checklist-contents li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

.checklist-next-step {
  background: var(--bg-secondary);
  padding: 24px;
  border-radius: var(--radius-lg);
}

.checklist-next-step h3 {
  margin-bottom: 8px;
}

.checklist-next-step p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* Thank you page */
.thank-you-hero {
  padding-bottom: 40px;
}

.thank-you-check {
  width: 80px;
  height: 80px;
  background: #d1fae5;
  color: #065f46;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px;
}

.hero-note {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Intake form */
.intake-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.intake-form-container h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  text-align: center;
}

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

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

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

.radio-group {
  display: flex;
  gap: 16px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

/* Confirmation page */
.confirmation-hero {
  padding: 100px 0;
}

.confirmation-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.confirmation-next {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.confirmation-next h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.confirmation-next p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Scope pages */
.scope-hero {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg) 100%);
}

.scope-hero .breadcrumb {
  margin-bottom: 16px;
}

.scope-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.hero-note-small {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.scope-block {
  margin-bottom: 32px;
}

.scope-block h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--accent);
}

.scope-list {
  list-style: none;
}

.scope-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.scope-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.scope-list.not-included li::before {
  content: "✗";
  color: #ef4444;
}

.section-note {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}

.ads-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 16px;
}

.ads-option {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: var(--radius);
}

.ads-option h4 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.scope-block-sub {
  margin-top: 16px;
  padding: 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
}

.scope-block-sub h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.setup-included {
  background: var(--accent-light);
  color: var(--accent);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-top: 16px;
}

/* Legal pages */
.legal-page {
  padding: 80px 0;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.7;
}

/* About services */
.about-services {
  max-width: 600px;
  margin: 0 auto;
}

.about-services p {
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.about-services ul {
  list-style: none;
}

.about-services li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

/* Footer disclaimer */
.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}
