/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #0a0a0f; color: #e2e2e8; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --green: #25D366;
  --green-dark: #128C7E;
  --green-light: #dcfce7;
  --accent: #00e676;
  --accent2: #69f0ae;
  --bg-dark: #0a0a0f;
  --bg-card: #111118;
  --bg-card2: #16161f;
  --border: rgba(255,255,255,0.08);
  --text-muted: #8888a0;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #25D366 0%, #00e676 50%, #69f0ae 100%);
}

/* ===== TYPOGRAPHY ===== */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.nav-container { display: flex; align-items: center; gap: 32px; padding: 14px 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: #fff; }
.logo-icon { font-size: 26px; }
.logo-accent { color: var(--accent); }
.main-nav { display: flex; gap: 4px; margin-left: auto; }
.nav-link { padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--text-muted); transition: all 0.2s; }
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,0.06); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.btn-call { font-size: 13px; font-weight: 600; color: var(--accent); padding: 8px 14px; border: 1px solid rgba(0,230,118,0.3); border-radius: 8px; transition: all 0.2s; white-space: nowrap; }
.btn-call:hover { background: rgba(0,230,118,0.1); }
.btn-whatsapp-header { display: flex; align-items: center; gap: 7px; background: var(--green); color: #fff; font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 8px; transition: all 0.2s; white-space: nowrap; }
.btn-whatsapp-header svg { width: 16px; height: 16px; }
.btn-whatsapp-header:hover { background: var(--green-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient); color: #000; font-weight: 700; font-size: 15px;
  padding: 13px 28px; border-radius: 10px; border: none; cursor: pointer;
  transition: all 0.25s; box-shadow: 0 4px 24px rgba(37,211,102,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.45); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--accent); font-weight: 600; font-size: 15px;
  padding: 13px 28px; border-radius: 10px; border: 2px solid var(--accent);
  cursor: pointer; transition: all 0.25s;
}
.btn-outline:hover { background: rgba(0,230,118,0.1); transform: translateY(-2px); }
.btn-wa-large {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(37,211,102,0.12); color: var(--accent); font-weight: 700; font-size: 15px;
  padding: 13px 28px; border-radius: 10px; border: 2px solid rgba(37,211,102,0.4);
  transition: all 0.25s;
}
.btn-wa-large svg { width: 20px; height: 20px; }
.btn-wa-large:hover { background: rgba(37,211,102,0.2); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 80px; position: relative; overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; }
.shape-1 { width: 600px; height: 600px; background: var(--green); top: -200px; right: -100px; }
.shape-2 { width: 400px; height: 400px; background: #00b0ff; bottom: -100px; left: -100px; }
.shape-3 { width: 300px; height: 300px; background: var(--accent2); top: 50%; left: 40%; }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3); color: var(--accent); font-size: 13px; font-weight: 600; padding: 8px 18px; border-radius: 100px; margin-bottom: 24px; }
.hero-title { font-family: 'Syne', sans-serif; font-size: clamp(38px, 6vw, 70px); font-weight: 800; line-height: 1.1; margin-bottom: 20px; color: #fff; }
.hero-sub { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto 36px; line-height: 1.7; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 32px; margin-bottom: 40px; }
.stat { text-align: center; }
.stat-num { display: block; font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 13px; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE BANNER ===== */
.page-banner {
  padding: 120px 0 60px; background: linear-gradient(135deg, #0a0a0f 0%, #0d1a0f 100%);
  border-bottom: 1px solid var(--border); text-align: center; position: relative; overflow: hidden;
}
.page-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(37,211,102,0.08) 0%, transparent 70%); }
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { font-family: 'Syne', sans-serif; font-size: clamp(32px, 5vw, 54px); font-weight: 800; color: #fff; margin-bottom: 14px; }
.page-banner p { font-size: 17px; color: var(--text-muted); max-width: 600px; margin: 0 auto 20px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: var(--text-muted); }

/* ===== SECTIONS ===== */
section { padding: 90px 0; }
.section-label { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-title { font-family: 'Syne', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: #fff; margin-bottom: 48px; line-height: 1.2; }
.section-title.center { text-align: center; }

/* ===== WHY SECTION ===== */
.section-why { background: var(--bg-card); }
.section-why .section-label, .section-why .section-title { text-align: center; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 0; }
.feature-card { background: var(--bg-dark); border: 1px solid var(--border); border-radius: 16px; padding: 32px; transition: all 0.3s; }
.feature-card:hover { border-color: rgba(37,211,102,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(37,211,102,0.08); }
.feature-icon { font-size: 36px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== SERVICES PREVIEW ===== */
.section-services-preview .section-label, .section-services-preview .section-title { text-align: center; }
.services-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.service-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; position: relative; overflow: hidden; transition: all 0.3s; }
.service-item::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient); transform: scaleX(0); transition: transform 0.3s; }
.service-item:hover::after { transform: scaleX(1); }
.service-item:hover { transform: translateY(-4px); border-color: rgba(37,211,102,0.2); }
.service-num { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; opacity: 0.3; margin-bottom: 8px; }
.service-item h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.service-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.link-arrow { color: var(--accent); font-size: 14px; font-weight: 600; transition: gap 0.2s; }
.link-arrow:hover { text-decoration: underline; }

/* ===== PRICING TEASER ===== */
.section-pricing-teaser { background: var(--bg-card); }
.pricing-teaser-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pricing-teaser-text .section-title { margin-bottom: 16px; }
.pricing-teaser-text p { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.pricing-teaser-text h2 { font-family: 'Syne', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: #fff; margin-bottom: 16px; }
.pricing-teaser-card { background: var(--bg-dark); border: 2px solid rgba(37,211,102,0.4); border-radius: 20px; padding: 36px; position: relative; box-shadow: 0 20px 60px rgba(37,211,102,0.1); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient); color: #000; font-size: 12px; font-weight: 800; padding: 5px 20px; border-radius: 100px; white-space: nowrap; }
.plan-name { font-size: 14px; font-weight: 700; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.plan-price { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; color: #fff; margin-bottom: 24px; }
.plan-price span { font-size: 20px; color: var(--text-muted); }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li { font-size: 14px; color: var(--text-muted); }

/* ===== REVIEWS ===== */
.section-reviews-preview .section-label, .section-reviews-preview .section-title { text-align: center; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: all 0.3s; }
.review-card:hover { border-color: rgba(37,211,102,0.2); transform: translateY(-3px); }
.stars { color: #FFD700; font-size: 18px; margin-bottom: 14px; }
.review-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: #000; flex-shrink: 0; }
.reviewer strong { color: #fff; font-size: 15px; }
.reviewer small { color: var(--text-muted); font-size: 12px; }

/* ===== CONTACT FORM ===== */
.section-contact-form { background: var(--bg-card); }
.section-contact-form .section-label, .section-contact-form .section-title { text-align: center; }
.contact-form-wrap { max-width: 720px; margin: 0 auto; background: var(--bg-dark); border: 1px solid var(--border); border-radius: 20px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 600; color: #ccc; }
.form-group input, .form-group textarea, .form-group select {
  background: var(--bg-card2); border: 1px solid var(--border); color: #fff;
  padding: 12px 16px; border-radius: 10px; font-size: 15px; font-family: 'Inter', sans-serif;
  transition: border-color 0.2s; outline: none; width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #555; }
.form-group textarea { resize: vertical; }
.form-success { margin-top: 16px; color: var(--accent); font-weight: 600; font-size: 15px; text-align: center; padding: 12px; background: rgba(37,211,102,0.1); border-radius: 8px; }

/* ===== PAGE CONTENT SECTIONS ===== */
.page-section { padding: 80px 0; }
.page-section:nth-child(odd) { background: var(--bg-card); }
.content-block { max-width: 860px; margin: 0 auto; }
.content-block h2 { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: #fff; margin: 36px 0 14px; }
.content-block h3 { font-size: 20px; font-weight: 700; color: var(--accent); margin: 24px 0 10px; }
.content-block p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.content-block ul { padding-left: 20px; margin-bottom: 16px; }
.content-block ul li { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 8px; list-style: disc; }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 48px; text-align: center; }
.about-icon-big { font-size: 80px; margin-bottom: 20px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.about-stat { background: var(--bg-dark); border-radius: 12px; padding: 20px; border: 1px solid var(--border); }
.about-stat-num { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-stat-label { font-size: 12px; color: var(--text-muted); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.team-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; text-align: center; transition: all 0.3s; }
.team-card:hover { border-color: rgba(37,211,102,0.3); transform: translateY(-3px); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; color: #000; margin: 0 auto 16px; }
.team-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--accent); }

/* ===== SERVICES PAGE ===== */
.services-full-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 18px; padding: 36px; transition: all 0.3s; }
.service-card:hover { border-color: rgba(37,211,102,0.3); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(37,211,102,0.08); }
.service-card-icon { font-size: 44px; margin-bottom: 20px; }
.service-card h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 100px; background: rgba(37,211,102,0.1); color: var(--accent); border: 1px solid rgba(37,211,102,0.2); }

/* ===== PRICING PAGE ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; align-items: start; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 36px; position: relative; transition: all 0.3s; }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured { border-color: rgba(37,211,102,0.5); background: var(--bg-card2); box-shadow: 0 24px 64px rgba(37,211,102,0.12); }
.pricing-card.featured .popular-badge { position: static; transform: none; display: inline-block; margin-bottom: 16px; }
.price-amount { font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 800; color: #fff; }
.price-amount span { font-size: 18px; color: var(--text-muted); }
.price-desc { font-size: 13px; color: var(--text-muted); margin: 8px 0 24px; }
.pricing-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; color: var(--text-muted); display: flex; gap: 8px; }
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.plan-title { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 8px; }

/* ===== REVIEWS PAGE ===== */
.reviews-full-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.review-card-big { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; transition: all 0.3s; }
.review-card-big:hover { border-color: rgba(37,211,102,0.2); transform: translateY(-3px); }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.rating-badge { background: rgba(255,215,0,0.1); color: #FFD700; font-size: 13px; font-weight: 700; padding: 4px 12px; border-radius: 100px; border: 1px solid rgba(255,215,0,0.2); }

/* ===== CONTACT PAGE ===== */
.contact-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.contact-info-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; text-align: center; transition: all 0.3s; }
.contact-info-card:hover { border-color: rgba(37,211,102,0.2); transform: translateY(-3px); }
.contact-info-card .info-icon { font-size: 40px; margin-bottom: 14px; }
.contact-info-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.contact-info-card p, .contact-info-card a { font-size: 14px; color: var(--accent); }
.map-wrap { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); height: 320px; background: var(--bg-card); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--text-muted); }

/* ===== FOOTER ===== */
.site-footer { background: #06060a; border-top: 1px solid var(--border); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 48px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); margin: 16px 0 20px; line-height: 1.7; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact div { font-size: 14px; color: var(--text-muted); }
.footer-contact a { color: var(--accent); transition: opacity 0.2s; }
.footer-contact a:hover { opacity: 0.8; }
.footer-links h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-links a { display: block; font-size: 14px; color: var(--text-muted); padding: 5px 0; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact-form h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-contact-form input, .footer-contact-form textarea {
  width: 100%; background: var(--bg-card2); border: 1px solid var(--border); color: #fff;
  padding: 10px 14px; border-radius: 8px; font-size: 13px; font-family: 'Inter', sans-serif;
  margin-bottom: 10px; outline: none; transition: border-color 0.2s;
}
.footer-contact-form input:focus, .footer-contact-form textarea:focus { border-color: var(--accent); }
.footer-contact-form input::placeholder, .footer-contact-form textarea::placeholder { color: #444; }
.footer-contact-form textarea { resize: none; }
.btn-footer-submit { width: 100%; background: var(--green); color: #fff; border: none; padding: 11px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.btn-footer-submit:hover { background: var(--green-dark); }
.footer-bottom { margin-top: 48px; border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-bottom div { display: flex; gap: 20px; }
.footer-bottom a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: var(--green); color: #fff; padding: 14px 20px;
  border-radius: 100px; font-weight: 700; font-size: 14px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: all 0.3s; animation: pulse-wa 2.5s infinite;
}
.whatsapp-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.whatsapp-float:hover { background: var(--green-dark); transform: scale(1.05); box-shadow: 0 12px 40px rgba(37,211,102,0.5); animation: none; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 48px rgba(37,211,102,0.7); }
}
.wa-float-label { font-size: 14px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pricing-teaser-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,10,15,0.98); padding: 80px 24px 24px; z-index: 999; gap: 8px; }
  .main-nav.open { display: flex; }
  .nav-link { font-size: 18px; padding: 14px 20px; border-radius: 12px; }
  .hamburger { display: flex; z-index: 1001; }
  .header-cta .btn-call { display: none; }
  .hero-stats { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .reviews-grid, .features-grid, .services-row { grid-template-columns: 1fr; }
  .wa-float-label { display: none; }
  .whatsapp-float { border-radius: 50%; padding: 14px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .team-grid { grid-template-columns: 1fr; }
}
