/* ==========================================================================
   Turnkey Agency Theme - Modern Tech/Agency Stylesheet
   Red (#DC2626) + Charcoal (#1e293b) + White
   Font: Inter (Google Fonts)
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text, #334155);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--primary, #DC2626);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark, #b91c1c);
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--secondary, #1e293b);
}

:focus-visible {
  outline: 3px solid var(--primary, #DC2626);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   1. LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 96px 0;
}

.section-dark {
  background: var(--secondary, #1e293b);
  color: #ffffff;
}

.section-dark h2,
.section-dark h3 {
  color: #ffffff;
}

.section-gray {
  background: #f8fafc;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--secondary, #1e293b);
  text-align: center;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   2. HEADER - Modern Agency Style
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 72px;
  width: auto;
}

.logo-text {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--secondary, #1e293b);
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--primary, #DC2626);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--secondary, #1e293b);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary, #DC2626);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--primary, #DC2626);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary, #DC2626);
  color: #ffffff !important;
  padding: 10px 24px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background-color 0.2s ease, transform 0.15s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--primary-dark, #b91c1c);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary, #1e293b);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   3. HERO - Bold Agency Style
   -------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, var(--secondary, #1e293b) 0%, #0f172a 100%);
  color: #ffffff;
  padding: 160px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(255,255,255,0.03), transparent);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(220, 38, 38, 0.2);
  color: #fca5a5;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--primary, #DC2626);
}

.hero-subtitle {
  font-size: 1.375rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary, #DC2626);
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: var(--primary, #DC2626);
  color: #ffffff;
  border-color: var(--primary, #DC2626);
}

.btn-primary:hover {
  background: var(--primary-dark, #b91c1c);
  border-color: var(--primary-dark, #b91c1c);
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: var(--primary, #DC2626);
  border-color: var(--primary, #DC2626);
}

.btn-secondary:hover {
  background: var(--primary, #DC2626);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: #ffffff;
  color: var(--secondary, #1e293b);
  border-color: #ffffff;
}

.btn-white {
  background: #ffffff;
  color: var(--secondary, #1e293b);
  border-color: #ffffff;
}

.btn-white:hover {
  background: #f1f5f9;
  border-color: #f1f5f9;
}

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

/* --------------------------------------------------------------------------
   5. SERVICES GRID
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary, #DC2626);
}

.service-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary, #DC2626), var(--primary-dark, #b91c1c));
  border-radius: 16px;
  margin-bottom: 24px;
  color: #ffffff;
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--secondary, #1e293b);
}

.service-card p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  flex-grow: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary, #DC2626);
}

.service-card-link:hover {
  gap: 12px;
}

/* --------------------------------------------------------------------------
   6. PRICING
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 2px solid #e2e8f0;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
  border-color: var(--primary, #DC2626);
  transform: scale(1.05);
}

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

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary, #DC2626);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary, #1e293b);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.9375rem;
  color: #64748b;
  margin-bottom: 24px;
}

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

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary, #1e293b);
  line-height: 1;
}

.pricing-amount span {
  font-size: 1.5rem;
  font-weight: 600;
  color: #64748b;
}

.pricing-period {
  font-size: 0.9375rem;
  color: #94a3b8;
  margin-top: 4px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  font-size: 0.9375rem;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

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

.pricing-features li::before {
  content: "✓";
  color: var(--primary, #DC2626);
  font-weight: 700;
  flex-shrink: 0;
}

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

/* --------------------------------------------------------------------------
   7. TESTIMONIALS / CLIENTS
   -------------------------------------------------------------------------- */
.clients-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
  opacity: 0.6;
}

.clients-grid img {
  height: 40px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.clients-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

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

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

.testimonial-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary, #DC2626), var(--primary-dark, #b91c1c));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial-info strong {
  display: block;
  font-size: 1rem;
  color: var(--secondary, #1e293b);
}

.testimonial-info span {
  font-size: 0.875rem;
  color: #94a3b8;
}

/* Clients Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}

.client-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 20px;
  transition: all 0.2s ease;
}

.client-card:hover {
  border-color: var(--primary, #DC2626);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.client-card strong {
  font-size: 0.9375rem;
  color: var(--secondary, #1e293b);
}

/* --------------------------------------------------------------------------
   8. FEATURES / WHY US
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 20px;
  color: var(--primary, #DC2626);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--secondary, #1e293b);
}

.feature-item p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

/* Section-dark feature icons */
.section-dark .feature-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.section-dark .feature-item p {
  color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   9. CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary, #DC2626) 0%, var(--primary-dark, #b91c1c) 100%);
  color: #ffffff;
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

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

.cta-content h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   10. CONTACT
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

.contact-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

.contact-form h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--secondary, #1e293b);
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary, #1e293b);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text, #334155);
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary, #DC2626);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

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

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

.form-status {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  display: none;
}

.form-status-success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-status-error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Contact info sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

.contact-info-card h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 12px;
}

.contact-info-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary, #1e293b);
  line-height: 1.5;
}

.contact-info-value a {
  color: var(--primary, #DC2626);
}

/* --------------------------------------------------------------------------
   11. ABOUT
   -------------------------------------------------------------------------- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--secondary, #1e293b);
}

.about-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 20px;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--secondary, #1e293b);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
}

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

.footer-brand .logo-text {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  display: block;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand .logo-text span {
  color: var(--primary, #DC2626);
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  max-width: 300px;
}

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

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

.footer-social a:hover {
  background: var(--primary, #DC2626);
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

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

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

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

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

.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ffffff;
}

.footer-links {
  display: flex;
  gap: 24px;
}

/* --------------------------------------------------------------------------
   13. PAGE HERO (Inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--secondary, #1e293b) 0%, #0f172a 100%);
  color: #ffffff;
  padding: 140px 0 80px;
  text-align: center;
  margin-top: 72px;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   14. LEGAL PAGES
   -------------------------------------------------------------------------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 0;
}

.legal-content h2 {
  font-size: 1.625rem;
  font-weight: 700;
  margin: 48px 0 16px;
  color: var(--secondary, #1e293b);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 16px;
}

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

.legal-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 8px;
  list-style: disc;
}

/* --------------------------------------------------------------------------
   15. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .section { padding: 72px 0; }

  .hero h1 { font-size: 3rem; }
  .hero-stats { gap: 40px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }

  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }

  .about-hero { gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }

  .section { padding: 56px 0; }
  .section-title { font-size: 2rem; }
  .section-subtitle { font-size: 1.125rem; }

  /* Header mobile */
  .header-content { height: 64px; }

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 16px 24px;
    font-size: 1rem;
  }

  .nav-links a::after { display: none; }

  .nav-cta {
    margin: 16px 24px;
    text-align: center;
  }

  /* Hero mobile */
  .hero { padding: 120px 0 80px; }
  .hero h1 { font-size: 2.25rem; }
  .hero-subtitle { font-size: 1.125rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; }
  .hero-stats { flex-direction: column; gap: 32px; }

  /* Grids mobile */
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }

  /* About mobile */
  .about-hero { grid-template-columns: 1fr; gap: 40px; }

  /* Footer mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { justify-content: center; }

  /* Page hero mobile */
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: 2.25rem; }

  /* Contact mobile */
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* CTA mobile */
  .cta-content h2 { font-size: 2rem; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.875rem; }
  .section-title { font-size: 1.75rem; }
  .page-hero h1 { font-size: 1.875rem; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stat-number { font-size: 2rem; }
  .pricing-amount { font-size: 2.75rem; }
}

/* --------------------------------------------------------------------------
   16. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .site-header,
  .site-footer,
  .cta-section,
  .hero-actions,
  .mobile-menu-btn {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  .hero, .page-hero {
    background: none !important;
    color: #000;
    padding: 20px 0;
  }
}
