@import url('https://fonts.googleapis.com/css2?family=Anton&family=Open+Sans:wght@400;600;700&display=swap');

/* =========================================
   1. CSS VARIABLES & ROOT
   ========================================= */
:root {
  --primary: #F4845F;
  --accent: #F9B4A2;
  --bg: #C8523C;
  --surface: #D8624C;
  --text: #f4f4f6;
  --muted: #FBDCC8;
  
  --font-heading: 'Anton', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  --border-width: 4px;
  --border-brutal: var(--border-width) solid var(--text);
  --border-brutal-dark: var(--border-width) solid #111;
  
  --shadow-brutal: 6px 6px 0 var(--primary);
  --shadow-brutal-dark: 6px 6px 0 #111;
  --shadow-brutal-accent: 6px 6px 0 var(--accent);
  
  --transition-fast: 0.15s ease-in-out;
  --transition-base: 0.3s ease-in-out;
}

/* =========================================
   2. RESET & BASE STYLES
   ========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  background-image: linear-gradient(135deg, var(--bg) 0%, #A83220 100%);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  border-radius: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--text);
  text-decoration: underline;
}

ul,
ol {
  list-style: none;
}

/* =========================================
   3. TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--muted);
}

strong {
  font-weight: 700;
  color: var(--text);
}

blockquote {
  font-size: 1.25rem;
  font-style: italic;
  border-left: var(--border-width) solid var(--primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  color: var(--text);
}

/* =========================================
   4. LAYOUT & UTILITIES
   ========================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  font-size: 1.125rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.flex {
  display: flex;
  gap: 1rem;
}

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

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

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-uppercase { text-transform: uppercase; }

.brutal-border {
  border: var(--border-brutal);
}

.brutal-shadow {
  box-shadow: var(--shadow-brutal);
}

.brutal-card {
  background: var(--surface);
  border: var(--border-brutal);
  box-shadow: var(--shadow-brutal-dark);
  padding: 2rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.brutal-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 #111;
}

/* =========================================
   5. HEADER & NAVIGATION
   ========================================= */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg);
  border-bottom: var(--border-width) solid transparent;
  transition: background var(--transition-base), border-color var(--transition-base);
  padding: 1rem 0;
}

.header.scrolled {
  background: #A83220;
  border-bottom-color: var(--text);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  line-height: 1;
}

.logo:hover {
  color: var(--accent);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-menu a {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
  position: relative;
  text-decoration: none;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width var(--transition-fast);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--accent);
  text-decoration: none;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: var(--border-brutal);
  color: var(--text);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: 3px 3px 0 var(--primary);
  transition: transform var(--transition-fast);
}

.mobile-menu-toggle:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--primary);
}

@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: inline-block;
  }
  
  .nav-menu {
    display: none;
  }
  
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1rem;
    border-top: 1px solid var(--muted);
    border-bottom: var(--border-brutal);
    box-shadow: 0 6px 0 var(--primary);
  }

  .nav-menu.open a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .nav-menu.open a:last-child {
    border-bottom: none;
  }
}

/* =========================================
   6. BUTTONS & FORMS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.75rem;
  border: var(--border-brutal);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
  line-height: 1;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: translate(4px, 4px);
  box-shadow: none !important;
}

.btn-primary {
  background: var(--primary);
  color: #111;
  border-color: #111;
  box-shadow: var(--shadow-brutal-dark);
}

.btn-primary:hover {
  background: #ff956e;
  color: #111;
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 #111;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
  box-shadow: var(--shadow-brutal);
}

.btn-secondary:hover {
  background: var(--text);
  color: var(--bg);
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--primary);
}

.cta-button {
  background: var(--accent);
  color: #111;
  border-color: #111;
  box-shadow: var(--shadow-brutal-dark);
  font-size: 1.25rem;
  padding: 1rem 2rem;
}

.cta-button:hover {
  background: #ffc8b8;
  color: #111;
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 #111;
}

.form-submit {
  background: var(--primary);
  color: #111;
  border-color: #111;
  box-shadow: var(--shadow-brutal-dark);
  width: 100%;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: #ff956e;
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 #111;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  width: 100%;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--muted);
  border-radius: 0;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  border-width: 3px;
  border-color: #111;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 4px 4px 0 var(--primary);
}

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

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

/* =========================================
   7. TEXT OVER PHOTO (CRITICAL RULE)
   ========================================= */
.has-photo-bg {
  position: relative;
  isolation: isolate;
  background-size: cover;
  background-position: center;
}

.has-photo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85));
  z-index: 0;
}

.has-photo-bg > * {
  position: relative;
  z-index: 1;
}

/* =========================================
   8. HERO SECTION
   ========================================= */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=2000&q=80');
  border-bottom: 6px solid #111;
}

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

.hero-content h1 {
  color: var(--text);
  text-shadow: 4px 4px 0 var(--primary);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* =========================================
   9. FEATURES SECTION
   ========================================= */
.features-section {
  background: var(--bg);
  border-bottom: 6px solid #111;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-card {
  background: var(--surface);
  border: 4px solid #111;
  box-shadow: 6px 6px 0 var(--primary);
  padding: 2rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.feature-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--primary);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  background: var(--primary);
  color: #111;
  padding: 0.5rem;
  border: 3px solid #111;
  line-height: 1;
}

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

.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
}

/* =========================================
   10. SERVICES SECTION
   ========================================= */
.services-section {
  background: linear-gradient(180deg, var(--bg) 0%, #A83220 100%);
  border-bottom: 6px solid #111;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 3px dashed var(--muted);
}

.service-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-image {
  border: 4px solid #111;
  box-shadow: 8px 8px 0 var(--primary);
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-content h3 {
  color: var(--accent);
}

.service-list {
  margin-top: 1rem;
}

.service-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--muted);
}

.service-list li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.75rem;
  top: 0.75rem;
}

/* =========================================
   11. ABOUT SECTION
   ========================================= */
.about-section {
  background: var(--surface);
  border-bottom: 6px solid #111;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border: 4px solid #111;
  box-shadow: 10px 10px 0 var(--bg);
  width: 100%;
}

.about-content h2 {
  color: #111;
}

.about-content p {
  color: #333;
  font-size: 1.05rem;
}

.about-stats-inline {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-inline {
  border-left: 4px solid #111;
  padding-left: 1rem;
}

.stat-inline .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
}

.stat-inline .label {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #111;
  font-weight: 700;
}

/* =========================================
   12. STATS SECTION
   ========================================= */
.stats-section {
  background: #111;
  padding: 4rem 0;
  border-bottom: 6px solid var(--primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.stat-block {
  padding: 2rem;
  border: 4px solid var(--primary);
  background: #1a1a1a;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.05em;
}

/* =========================================
   13. TESTIMONIALS SECTION
   ========================================= */
.testimonial-section {
  padding: 6rem 0;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=2000&q=80');
  border-bottom: 6px solid #111;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background: var(--surface);
  border: 4px solid #111;
  box-shadow: 8px 8px 0 var(--primary);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
  border-left: 4px solid var(--primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border: 3px solid #111;
  object-fit: cover;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 1.125rem;
  margin-bottom: 0;
  color: #111;
}

.author-info p {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: #333;
  font-style: normal;
}

/* =========================================
   14. CTA SECTION
   ========================================= */
.cta-section {
  background: var(--primary);
  padding: 5rem 0;
  text-align: center;
  border-bottom: 6px solid #111;
}

.cta-section h2 {
  color: #111;
  margin-bottom: 1rem;
}

.cta-section p {
  color: #333;
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-section .cta-button {
  background: #111;
  color: var(--text);
  border-color: var(--text);
  box-shadow: 6px 6px 0 var(--bg);
}

.cta-section .cta-button:hover {
  background: #333;
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--bg);
}

/* =========================================
   15. CONTACT SECTION
   ========================================= */
.contact-section {
  background: var(--bg);
  border-bottom: 6px solid #111;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info h3 {
  color: var(--accent);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-row .icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--primary);
  line-height: 1.4;
}

.contact-row .details h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.contact-row .details p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-form-wrapper {
  background: var(--surface);
  border: 4px solid #111;
  box-shadow: 8px 8px 0 var(--primary);
  padding: 2rem;
}

.contact-form-wrapper h3 {
  color: #111;
  margin-bottom: 1.5rem;
}

/* =========================================
   16. FOOTER
   ========================================= */
.footer {
  background: #111;
  color: var(--text);
  padding: 4rem 0 2rem;
  border-top: 6px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  border-bottom: 2px solid #333;
  padding-bottom: 0.5rem;
}

.footer-col p {
  color: #aaa;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #ccc;
  font-size: 0.95rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 0.5rem;
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #444;
  color: #ccc;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #111;
  text-decoration: none;
}

.footer-bottom {
  border-top: 2px solid #333;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  color: #888;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #888;
  font-size: 0.875rem;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* =========================================
   17. POLICY PAGES
   ========================================= */
.policy-page {
  padding: 4rem 0;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface);
  border: 4px solid #111;
  box-shadow: 8px 8px 0 var(--primary);
  padding: 2.5rem;
}

.policy-content h1 {
  font-size: 2.5rem;
  color: #111;
  border-bottom: 4px solid #111;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.policy-content h2 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  font-size: 1.25rem;
  color: #111;
  margin-top: 1.5rem;
}

.policy-content p,
.policy-content li {
  color: #333;
  line-height: 1.8;
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-content ul li {
  margin-bottom: 0.5rem;
}

.policy-content a {
  color: var(--bg);
  font-weight: 700;
  text-decoration: underline;
}

/* =========================================
   18. COOKIE POPUP
   ========================================= */
.cookie-popup {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  max-width: 400px;
  background: #111;
  color: var(--text);
  border: 4px solid var(--primary);
  box-shadow: 6px 6px 0 var(--bg);
  padding: 1.5rem;
  z-index: 9999;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-popup.hidden {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}

.cookie-popup h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.cookie-popup p {
  font-size: 0.875rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  text-transform: uppercase;
  border: 2px solid var(--text);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cookie-btn-accept {
  background: var(--primary);
  color: #111;
  border-color: var(--primary);
}

.cookie-btn-accept:hover {
  background: var(--accent);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text);
}

.cookie-btn-decline:hover {
  background: var(--text);
  color: #111;
}

/* =========================================
   19. ACCESSIBILITY & MOTION
   ========================================= */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* =========================================
   20. RESPONSIVE BREAKPOINTS
   ========================================= */

/* Tablet (768px and up) */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .section {
    padding: 5rem 0;
  }

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

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

  .service-item:nth-child(even) .service-image {
    order: 2;
  }

  .service-item:nth-child(even) .service-content {
    order: 1;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-popup {
    left: auto;
  }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }

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

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .hero-content h1 {
    font-size: 5.5rem;
  }
}