/* ===========================
   CEAO - Centro Educativo Alfa & Omega
   Main Stylesheet
   =========================== */

:root {
  --primary: #1a5c2e;
  --primary-light: #2e7d47;
  --primary-dark: #0f3a1c;
  --accent: #c8a000;
  --accent-light: #e2b800;
  --accent-pale: #fdf6d8;
  --green: #27ae60;
  --whatsapp: #25d366;
  --text-dark: #1a2e1e;
  --text-mid: #3a4a3e;
  --text-light: #6b7c6f;
  --bg-light: #f6faf7;
  --bg-section: #edf5ef;
  --white: #ffffff;
  --border: #d0e4d6;
  --shadow: 0 4px 24px rgba(26,92,46,0.10);
  --shadow-hover: 0 8px 32px rgba(26,92,46,0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-heading: 'Poppins', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}

/* ---- Typography ---- */
h1,h2,h3,h4,h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p { color: var(--text-mid); }
a { color: var(--primary-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

/* ---- Layout Utilities ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg-light); }
.section-dark { background: var(--primary); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* ---- Badges / Tags ---- */
.badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary-light);
  color: var(--white);
  border-color: var(--primary-light);
}
.btn-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: #c8880a;
  border-color: #c8880a;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary-light);
  border-color: var(--primary-light);
}
.btn-outline:hover {
  background: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: var(--white);
  transform: translateY(-2px);
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(26,58,107,0.07);
  transition: all var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(26,58,107,0.13);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary-light);
  background: var(--bg-section);
}
.nav-link .chevron { font-size: 0.65rem; transition: transform var(--transition); }
.nav-item:hover .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all var(--transition);
}
.dropdown a:hover {
  background: var(--bg-light);
  color: var(--primary-light);
  padding-left: 26px;
}

.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-login {
  padding: 9px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50px;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-login:hover {
  background: var(--primary-light);
  color: var(--white);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===========================
   HERO SECTIONS
   =========================== */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a2e13 0%, #1a5c2e 50%, #2e7d47 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 120%;
  background: radial-gradient(ellipse, rgba(200,160,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 40vw; height: 60%;
  background: radial-gradient(ellipse, rgba(15,58,28,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.35);
  color: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 .highlight {
  color: var(--accent-light);
  position: relative;
}
.hero p { color: rgba(255,255,255,0.82); font-size: 1.12rem; margin-bottom: 32px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
}
.hero-stat .label { font-size: 0.8rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; }

.hero-inner {
  padding-top: 72px;
  padding-bottom: 60px;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a2e13 0%, #1a5c2e 50%, #2e7d47 100%);
}
.hero-inner h1 { color: var(--white); margin-bottom: 12px; }
.hero-inner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

/* ===========================
   SECTION HEADER
   =========================== */
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; color: var(--text-mid); max-width: 600px; }
.section-header.center p { margin: 0 auto; }

.divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 2px;
  margin: 12px 0 16px;
}
.divider.center { margin: 12px auto 16px; }

/* ===========================
   CARDS
   =========================== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  background: var(--bg-section);
}
.card-icon.blue { background: rgba(42,82,152,0.1); color: var(--primary-light); }
.card-icon.gold { background: rgba(232,160,32,0.12); color: var(--accent); }
.card-icon.green { background: rgba(39,174,96,0.12); color: var(--green); }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.93rem; }

/* ===========================
   STATS
   =========================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  background: var(--primary);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.05); }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-light);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.06em; }

/* ===========================
   SKILLS BARS
   =========================== */
.skills-wrap { max-width: 560px; }
.skill-item { margin-bottom: 20px; }
.skill-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }
.skill-bar { background: var(--bg-section); border-radius: 50px; height: 10px; overflow: hidden; }
.skill-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--primary-light) 0%, var(--accent) 100%);
  width: 0;
  transition: width 1.2s ease;
}

/* ===========================
   PARTNERS / LOGOS
   =========================== */
.partners-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 0;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-mid);
  min-width: 120px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.partner-logo:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  color: var(--primary-light);
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px; left: 24px;
  font-size: 5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--accent-light);
}
.testimonial p { font-style: italic; margin-bottom: 20px; padding-top: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.author-role { font-size: 0.8rem; color: var(--text-light); }

/* ===========================
   INFO BOXES
   =========================== */
.info-box {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary-light);
  margin-bottom: 16px;
  transition: all var(--transition);
}
.info-box:hover { background: var(--white); box-shadow: var(--shadow); }
.info-box-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.info-box h4 { margin-bottom: 4px; }
.info-box p { font-size: 0.9rem; }

/* ===========================
   CONTACT
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all var(--transition);
}
.contact-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.contact-card-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}
.contact-card-icon.blue { background: rgba(42,82,152,0.1); }
.contact-card-icon.gold { background: rgba(232,160,32,0.1); }
.contact-card-icon.green { background: rgba(39,174,96,0.1); }
.contact-card h3 { margin-bottom: 6px; font-size: 1.1rem; }
.contact-card .contact-name { font-weight: 600; color: var(--text-mid); margin-bottom: 14px; font-size: 0.9rem; }
.contact-info-line {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.88rem; color: var(--text-mid);
  margin-bottom: 6px;
}
.contact-info-line a { color: var(--text-mid); }
.contact-info-line a:hover { color: var(--primary-light); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe { display: block; width: 100%; border: 0; }

/* ===========================
   CAMPUS / SERVICES
   =========================== */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.service-card .service-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.91rem; margin-bottom: 20px; }

/* ===========================
   ACCORDION (INFO)
   =========================== */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; }
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  transition: background var(--transition);
}
.accordion-header:hover { background: var(--bg-light); }
.accordion-header.open { background: var(--primary); color: var(--white); }
.accordion-icon { font-size: 1.1rem; transition: transform var(--transition); }
.accordion-header.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.accordion-body.open { padding: 20px 24px; max-height: 400px; }
.accordion-body p { font-size: 0.92rem; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #081f0f;
  color: var(--white);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.footer-brand .brand-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border: 2px solid var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--accent-light);
}
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }
.footer-brand .footer-tagline {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent-light); }

.footer-contact-item {
  display: flex; gap: 10px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.5;
}
.footer-contact-item .icon { flex-shrink: 0; color: var(--accent-light); margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.82rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.footer-bottom-links a:hover { color: var(--accent-light); }

/* ===========================
   WHATSAPP FLOAT
   =========================== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  text-decoration: none;
  font-size: 1.6rem;
  color: var(--white);
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  color: var(--white);
}
.wa-tooltip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ===========================
   ANNOUNCEMENT BAR
   =========================== */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
}
.announcement-bar strong { color: var(--accent-light); }
.announcement-bar a { color: var(--accent-light); text-decoration: underline; }

/* ===========================
   PAGE SPECIFIC
   =========================== */

/* Index page features */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.feature { padding: 32px 24px; border-radius: var(--radius); text-align: center; transition: all var(--transition); }
.feature:hover { transform: translateY(-4px); }
.feature-icon { font-size: 2.2rem; margin-bottom: 14px; }
.feature h3 { margin-bottom: 8px; font-size: 1.1rem; }

/* Why choose us */
.why-item {
  display: flex; gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.why-item:last-child { border-bottom: none; }
.why-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.why-content h4 { margin-bottom: 4px; }
.why-content p { font-size: 0.9rem; }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 580px; margin: 0 auto 32px; font-size: 1.05rem; }

/* Google service block */
.google-service {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  margin-bottom: 16px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.google-service:hover { background: var(--white); box-shadow: var(--shadow); }
.google-service-logo {
  width: 64px; height: 64px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  flex-shrink: 0;
}
.google-service h4 { margin-bottom: 6px; }
.google-service p { font-size: 0.88rem; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .nav-link { width: 100%; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 16px; display: none; }
  .nav-item.open .dropdown { display: block; }

  .hero { min-height: calc(100vh - 72px); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .partners-strip { gap: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }
.animate-in-delay-1 { animation-delay: 0.1s; }
.animate-in-delay-2 { animation-delay: 0.2s; }
.animate-in-delay-3 { animation-delay: 0.3s; }

.fade-in-section { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-section.visible { opacity: 1; transform: translateY(0); }

/* Highlight underline */
.underline-accent {
  position: relative;
  display: inline-block;
}
.underline-accent::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
