/* ============================================================
   PRINTER PRO SUPPORT - Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #1a56db;
  --primary-dark: #1240ab;
  --primary-light: #e8f0fe;
  --accent: #f97316;
  --accent-dark: #ea6b05;
  --success: #16a34a;
  --dark: #0f172a;
  --gray-800: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-300: #cbd5e1;
  --gray-100: #f1f5f9;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 10px;
  --radius-lg: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--dark);
  color: #94a3b8;
  font-size: 13px;
  padding: 7px 0;
  text-align: center;
}
.top-bar span { color: #f8fafc; font-weight: 600; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--primary-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--primary);
  white-space: nowrap;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { fill: white; }
.logo span { color: var(--accent); }

/* Main Nav */
.main-nav ul {
  display: flex;
  gap: 4px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--primary-light);
  color: var(--primary);
}

/* Call CTA in Header */
.header-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.header-cta .cta-label {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 17px;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(249,115,22,0.35);
  letter-spacing: 0.01em;
}
.btn-call:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(249,115,22,0.45);
}
.btn-call svg { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,23,42,0.97);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: white;
  font-size: 22px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  padding: 12px 40px;
  border-radius: 10px;
  transition: all 0.2s;
}
.mobile-nav a:hover { background: var(--primary); }
.mobile-nav .close-btn {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}
.mobile-call {
  margin-top: 20px;
  background: var(--accent) !important;
  font-size: 18px !important;
  padding: 14px 32px !important;
}

/* ============================================================
   FLOATING CALL BUTTON (Mobile)
   ============================================================ */
.floating-call {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--accent);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(249,115,22,0.5);
  white-space: nowrap;
  animation: pulse-float 2s infinite;
  align-items: center;
  gap: 8px;
}
@keyframes pulse-float {
  0%, 100% { box-shadow: 0 6px 24px rgba(249,115,22,0.5); }
  50% { box-shadow: 0 6px 36px rgba(249,115,22,0.75); }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #2563eb 100%);
  color: white;
  padding: 80px 20px 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 480px; height: 480px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 .highlight {
  color: #fbbf24;
  display: block;
}
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.btn-hero-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 22px;
  padding: 16px 36px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(249,115,22,0.4);
  letter-spacing: 0.01em;
}
.btn-hero-call:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(249,115,22,0.5);
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.trust-item svg { color: #4ade80; flex-shrink: 0; }
.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  aspect-ratio: 4/3;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   URGENT BANNER
   ============================================================ */
.urgent-banner {
  background: #fef3c7;
  border-top: 3px solid #f59e0b;
  border-bottom: 3px solid #f59e0b;
  padding: 16px 20px;
  text-align: center;
}
.urgent-banner p {
  font-size: 16px;
  font-weight: 700;
  color: #92400e;
}
.urgent-banner a {
  color: var(--primary);
  text-decoration: underline;
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section {
  padding: 72px 20px;
}
.section-gray { background: var(--gray-100); }
.container { max-width: 1200px; margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.25;
}
.section-header p {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all 0.25s;
  text-align: center;
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.service-icon svg { color: var(--primary); }
.service-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-link {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { text-decoration: underline; }

/* ============================================================
   BRANDS SECTION
   ============================================================ */
.brands-section {
  padding: 44px 20px;
  background: white;
  border-bottom: 1px solid var(--gray-300);
}
.brands-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.brands-inner p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.brand-pill {
  background: var(--gray-100);
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  padding: 10px 22px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--gray-700);
  transition: all 0.2s;
}
.brand-pill:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-300);
  position: relative;
}
.step-number {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 900;
  margin: 0 auto 16px;
}
.step-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.step-card p { font-size: 14px; color: var(--gray-600); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 64px 20px;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
}
.cta-banner .btn-hero-call { margin: 0 auto; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.stars { color: #f59e0b; font-size: 18px; margin-bottom: 12px; }
.testimonial-card p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--primary);
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.reviewer-loc { font-size: 12px; color: var(--gray-500); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 60px 20px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto 28px;
}

/* ============================================================
   CONTENT PAGE LAYOUT
   ============================================================ */
.content-section {
  padding: 64px 20px;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-text h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.content-text p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}
.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.content-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Checklist */
.checklist { margin: 20px 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-700);
  margin-bottom: 10px;
}
.checklist li svg { color: var(--success); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: white;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  text-align: left;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--gray-100); }
.faq-question.active { background: var(--primary-light); color: var(--primary); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s;
}
.faq-question.active .faq-icon {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  background: white;
}
.faq-answer.open { display: block; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 14px;
}
.contact-info p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-card {
  background: var(--primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  text-align: center;
}
.contact-card .card-icon {
  font-size: 36px;
  margin-bottom: 10px;
}
.contact-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}
.contact-card .phone-big {
  font-family: 'Nunito', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #fbbf24;
  display: block;
  margin: 8px 0;
}
.contact-card p { color: rgba(255,255,255,0.85); font-size: 14px; }

.form-card {
  background: white;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  transition: border 0.2s;
  outline: none;
  background: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%;
  background: var(--primary);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 17px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ============================================================
   DISCLAIMER
   ============================================================ */
.disclaimer {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: #78350f;
  line-height: 1.6;
  margin: 24px 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 60px 20px 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo { color: white; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-col h4 {
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: #94a3b8;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-phone {
  color: #fbbf24 !important;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px !important;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #1e293b;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a { color: #64748b; }
.footer-bottom-links a:hover { color: white; }

/* ============================================================
   LEGAL PAGE
   ============================================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 20px;
}
.legal-content h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 10px;
}
.legal-content .updated {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 36px;
}
.legal-content h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin: 32px 0 12px;
}
.legal-content p, .legal-content li {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul { padding-left: 20px; }
.legal-content ul li { list-style: disc; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--gray-100);
  padding: 12px 20px;
  font-size: 13px;
  color: var(--gray-500);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb .container { display: flex; gap: 6px; align-items: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 38px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-cta .cta-label { display: none; }
  .btn-call { font-size: 14px; padding: 9px 14px; }
  .hamburger { display: flex; }
  
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-image { display: none; }
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .btn-hero-call { font-size: 18px; padding: 14px 28px; }
  
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .content-grid.reverse { direction: ltr; }
  .section-header h2 { font-size: 28px; }
  .cta-banner h2 { font-size: 28px; }
  
  .floating-call { display: inline-flex; }
  
  body { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .btn-hero-call { font-size: 16px; padding: 13px 22px; width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 10px; }
}
