:root {
  --brand-blue: #00296B;
  --brand-yellow: #FDC500;
  --font: "Cairo", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: opacity 0.4s ease;
}
.preloader.hidden { opacity: 0; pointer-events: none; }
.preloader-logo { width: 5rem; height: 5rem; animation: preloaderPulse 1.2s ease-in-out infinite; }
@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}
.preloader-text {
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-blue);
  margin: 0;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--brand-blue);
  background: #fff;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .container { padding: 0 1.5rem; } }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  padding: .75rem 0;
  box-shadow: 0 10px 30px -5px rgba(0,41,107,.1);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.nav-brand { display: flex; align-items: center; gap: .5rem; text-decoration: none; color: inherit; }
.logo-img { width: 3rem; height: 3rem; display: block; flex-shrink: 0; }
@media (min-width: 768px) { .logo-img { width: 3.5rem; height: 3.5rem; } }
.logo-text { font-size: 1.25rem; font-weight: 700; color: var(--brand-blue); }
.logo-accent { color: var(--brand-yellow); }
.nav-links { display: none; gap: 2rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a { color: rgba(0,41,107,.8); text-decoration: none; font-weight: 500; }
.nav-links a:hover { color: var(--brand-blue); }
.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: block; } }
.nav-toggle {
  display: flex;
  padding: .5rem;
  background: none;
  border: none;
  color: var(--brand-blue);
  cursor: pointer;
}
@media (min-width: 768px) { .nav-toggle { display: none; } }
.icon { width: 28px; height: 28px; }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-top: 1px solid #f3f4f6;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { color: var(--brand-blue); font-weight: 500; text-decoration: none; font-size: 1.125rem; }

.btn {
  padding: .625rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s, box-shadow .2s;
}
a.btn { text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.btn-primary { background: var(--brand-blue); color: #fff; }
.btn-primary:hover { background: rgba(0,41,107,.9); box-shadow: 0 10px 25px -5px rgba(0,41,107,.2); }
.btn-outline { background: #fff; color: var(--brand-blue); border: 2px solid rgba(0,41,107,.1); }
.btn-outline:hover { background: #f9fafb; }
.btn-yellow { background: var(--brand-yellow); color: var(--brand-blue); }
.btn-yellow:hover { background: #fff; }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-lg { padding: .875rem 2rem; font-size: 1rem; }
@media (min-width: 768px) { .btn-lg { padding: 1rem 2.5rem; font-size: 1.125rem; } }
.btn-block { width: 100%; }

.hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(to bottom, #eff6ff, #fff);
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 8rem 0 5rem; } }
.hero-content { max-width: 56rem; margin: 0 auto; text-align: center; }
.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: .5rem;
}
.hero-logo { width: 4rem; height: 4rem; flex-shrink: 0; }
@media (min-width: 768px) { .hero-logo { width: 5rem; height: 5rem; } }
.hero-brand-text { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; }
@media (min-width: 768px) { .hero-brand-text { font-size: 2.25rem; } }
.hero-novoo { color: var(--brand-blue); }
.hero-erp { color: var(--brand-yellow); }
.hero-tagline {
  font-size: .875rem;
  color: #6b7280;
  margin: 0 0 1rem;
}
@media (min-width: 768px) { .hero-tagline { font-size: 1rem; margin-bottom: 1.25rem; } }
.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem 1rem;
  background: rgba(0,41,107,.05);
  color: var(--brand-blue);
  border-radius: 9999px;
  font-size: .625rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .badge { font-size: .875rem; padding: .5rem 1rem; margin-bottom: 1.5rem; } }
.hero-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1.25;
  margin: 0 0 1rem;
}
@media (min-width: 640px) { .hero-title { font-size: 2.25rem; } }
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; margin-bottom: 1.5rem; } }
.gradient-text { background: linear-gradient(to right, var(--brand-blue), #3b82f6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc {
  font-size: .875rem;
  color: #4b5563;
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
@media (min-width: 768px) { .hero-desc { font-size: 1.25rem; margin-bottom: 2.5rem; } }
.hero-buttons { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.hero-buttons .btn { min-width: 200px; }

.dashboard-preview { margin-top: 2.5rem; position: relative; }
@media (min-width: 768px) { .dashboard-preview { margin-top: 4rem; } }
.dashboard-window {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 40px -12px rgba(0,41,107,.15);
  border: 1px solid #f3f4f6;
  overflow: hidden;
}
@media (min-width: 768px) { .dashboard-window { border-radius: 1.5rem; box-shadow: 0 32px 64px -16px rgba(0,41,107,.2); } }
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  background: rgba(249,250,251,.8);
  border-bottom: 1px solid #f3f4f6;
}
.traffic-dots { display: flex; gap: 4px; }
.traffic-dots span { width: 10px; height: 10px; border-radius: 50%; }
.traffic-dots span:nth-child(1) { background: #f87171; }
.traffic-dots span:nth-child(2) { background: #facc15; }
.traffic-dots span:nth-child(3) { background: #4ade80; }
.dashboard-version { font-size: .5rem; font-weight: 700; color: rgba(0,41,107,.4); }
@media (min-width: 768px) { .dashboard-version { font-size: .75rem; } }
.dashboard-body { display: grid; grid-template-columns: 1fr; gap: 1rem; padding: 1rem; }
@media (min-width: 1024px) { .dashboard-body { grid-template-columns: 1fr 3fr; padding: 2rem; gap: 2rem; } }
.dashboard-sidebar { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .5rem; }
@media (min-width: 1024px) { .dashboard-sidebar { flex-direction: column; overflow: visible; } }
.dashboard-sidebar::-webkit-scrollbar { display: none; }
.dashboard-sidebar { -ms-overflow-style: none; scrollbar-width: none; }
.tab {
  flex-shrink: 0;
  padding: .5rem .75rem;
  border: none;
  background: #f9fafb;
  color: #6b7280;
  border-radius: .75rem;
  font-weight: 700;
  font-size: .75rem;
  cursor: pointer;
  font-family: var(--font);
  transition: background .2s, color .2s;
}
.tab:hover { background: #f3f4f6; }
.tab.active { background: var(--brand-blue); color: #fff; }
.dashboard-main { min-width: 0; }
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .stats-row { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.stat-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: .75rem;
  padding: .75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  position: relative;
}
@media (min-width: 768px) { .stat-card { padding: 1.25rem; border-radius: 1rem; } }
.stat-label { font-size: .625rem; color: #9ca3af; margin-bottom: .25rem; }
@media (min-width: 768px) { .stat-label { font-size: .75rem; } }
.stat-value { font-size: 1rem; font-weight: 800; color: #059669; }
@media (min-width: 768px) { .stat-value { font-size: 1.5rem; } }
.stat-trend { font-size: .5rem; font-weight: 700; color: #059669; background: #d1fae5; padding: .125rem .5rem; border-radius: 9999px; }
.chart-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: .75rem;
  padding: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
@media (min-width: 768px) { .chart-card { padding: 1.5rem; border-radius: 1rem; } }
.chart-card h4 { margin: 0 0 1rem; font-size: .75rem; color: var(--brand-blue); }
@media (min-width: 768px) { .chart-card h4 { font-size: 1rem; margin-bottom: 2rem; } }
.chart-bars { display: flex; align-items: flex-end; justify-content: space-between; gap: .25rem; height: 8rem; }
@media (min-width: 768px) { .chart-bars { height: 14rem; gap: .5rem; } }
.chart-bar {
  flex: 1;
  height: var(--h, 50%);
  background: linear-gradient(to top, rgba(0,41,107,.1), rgba(0,41,107,.4));
  border-radius: 6px 6px 0 0;
  min-width: 8px;
  animation: barGrow 1s ease-out forwards;
}
@keyframes barGrow { from { height: 0; } }

.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
.section-title { text-align: center; font-size: 1.5rem; font-weight: 800; color: var(--brand-blue); margin: 0 0 1rem; }
@media (min-width: 768px) { .section-title { font-size: 2.25rem; margin-bottom: 1rem; } }
.section-title::after { content: ''; display: block; width: 4rem; height: 6px; background: var(--brand-yellow); border-radius: 9999px; margin: 0 auto; }
.section-sub { text-align: center; color: #6b7280; max-width: 42rem; margin: 0 auto 2rem; font-size: .875rem; }

.problems { background: #fff; }
.problems-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
@media (min-width: 640px) { .problems-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .problems-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; } }
@media (min-width: 1024px) { .problems-grid { grid-template-columns: repeat(5, 1fr); } }
.problem-card {
  padding: 1.5rem;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  transition: border-color .2s;
}
.problem-card:hover { border-color: rgba(0,41,107,.2); }
.problem-icon { width: 3rem; height: 3rem; background: #fff; border-radius: .75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.5rem; box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.problem-card p { margin: 0; font-weight: 700; color: var(--brand-blue); font-size: .875rem; line-height: 1.5; }

.solution { background: var(--brand-blue); color: #fff; overflow: hidden; }
.solution-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .solution-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.solution-content { text-align: center; }
@media (min-width: 1024px) { .solution-content { text-align: right; } }
.solution h2 { font-size: 1.5rem; font-weight: 800; margin: 0 0 1rem; line-height: 1.3; }
@media (min-width: 768px) { .solution h2 { font-size: 2.25rem; margin-bottom: 1.5rem; } }
.solution .yellow { color: var(--brand-yellow); }
.solution-content p { color: rgba(255,255,255,.8); font-size: .875rem; margin: 0 0 2rem; line-height: 1.6; }
@media (min-width: 768px) { .solution-content p { font-size: 1.125rem; margin-bottom: 2.5rem; } }
.solution-features { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: .75rem 1rem; justify-content: center; }
@media (min-width: 1024px) { .solution-features { justify-content: start; } }
.solution-features li { font-size: .875rem; }
.solution-image { position: relative; padding: 0 1rem; }
.solution-hero-img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  display: block;
}
@media (min-width: 768px) { .solution-hero-img { border-radius: 1.5rem; } }

.features { background: #f9fafb; }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.feature-card {
  padding: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid transparent;
  transition: border-color .2s, transform .2s;
  box-shadow: 0 10px 30px -5px rgba(0,41,107,.1);
}
@media (min-width: 768px) { .feature-card { padding: 2rem; border-radius: 1.5rem; } }
.feature-card:hover { border-color: rgba(253,197,0,.3); transform: translateY(-4px); }
.feature-icon { width: 3rem; height: 3rem; background: rgba(0,41,107,.05); border-radius: .75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.25rem; color: var(--brand-blue); }
.feature-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--brand-blue); margin: 0 0 .5rem; }
@media (min-width: 768px) { .feature-card h3 { font-size: 1.25rem; margin-bottom: .75rem; } }
.feature-card p { margin: 0; color: #6b7280; font-size: .75rem; line-height: 1.5; }
@media (min-width: 768px) { .feature-card p { font-size: .875rem; } }

.sales-reps { background: #fff; }
.sales-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .sales-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.sales-map { order: 2; }
@media (min-width: 1024px) { .sales-map { order: 1; } }
.delegates-map-card {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 50px -12px rgba(0,41,107,.2);
  border: 1px solid #e5e7eb;
}
.delegates-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  border-bottom: 1px solid #f3f4f6;
  background: #fafafa;
}
.delegates-map-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-blue);
}
.delegates-map-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--blue { background: #93c5fd; }
.dot--orange { background: #fdba74; }
.dot--green { background: #86efac; }
.delegates-map-area {
  position: relative;
  aspect-ratio: 16/10;
  min-height: 220px;
  background: linear-gradient(135deg, #e0f0ff 0%, #f0f9ff 100%);
  overflow: hidden;
}
.delegates-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.delegates-map-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e0f0ff 0%, #f0f9ff 100%);
}
.delegates-map-img { position: relative; z-index: 1; }
.delegate-marker {
  position: absolute;
  padding: .35rem .6rem;
  font-size: .7rem;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  animation: markerPulse 2.5s ease-in-out infinite;
}
.delegate-marker small { font-size: .6rem; opacity: .9; }
.marker--main { top: 50%; left: 50%; transform: translate(-50%, -50%); background: #22c55e; color: #fff; animation-name: markerMainPulse; }
.marker--way { background: #22c55e; color: #fff; }
.marker--done { background: #16a34a; color: #fff; }
.marker--break { background: #eab308; color: #1c1917; }
.marker--wait { background: #f97316; color: #fff; }
@keyframes markerPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes markerMainPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
}
.marker--way { animation-delay: 0s; }
.marker--done { animation-delay: .3s; }
.marker--break { animation-delay: .6s; }
.marker--wait { animation-delay: .9s; }
.delegates-map-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: .5rem;
  padding: .75rem 1rem;
  background: #fff;
  border-top: 1px solid #f3f4f6;
}
.delegate-stat {
  font-size: .75rem;
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}
.stat-icon { font-size: .9rem; }
.stat-icon--done { color: #16a34a; }
.stat-icon--way { color: #22c55e; }
.stat-icon--break { color: #eab308; }
.stat-icon--wait { color: #f97316; }
.sales-content { order: 1; text-align: center; }
@media (min-width: 1024px) { .sales-content { order: 2; text-align: right; } }
.yellow-badge { background: rgba(253,197,0,.1); }
.sales-content h2 { font-size: 1.5rem; font-weight: 800; color: var(--brand-blue); margin: 0 0 1rem; line-height: 1.3; }
@media (min-width: 768px) { .sales-content h2 { font-size: 2.25rem; margin-bottom: 1.5rem; } }
.sales-list { list-style: none; padding: 0; margin: 0; text-align: right; }
.sales-list li { margin-bottom: 1rem; font-size: .875rem; color: #4b5563; }
.sales-list strong { color: var(--brand-blue); }

.industries { background: #f9fafb; }
.industries-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(5, 1fr); gap: 1.5rem; } }
.industry-card {
  padding: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  text-align: center;
  transition: box-shadow .2s;
}
@media (min-width: 768px) { .industry-card { padding: 2rem; border-radius: 1.5rem; } }
.industry-card:hover { box-shadow: 0 10px 30px -5px rgba(0,41,107,.1); }
.industry-icon { width: 3rem; height: 3rem; background: rgba(0,41,107,.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; color: var(--brand-blue); transition: background .2s, color .2s; }
.industry-card:hover .industry-icon { background: var(--brand-blue); color: #fff; }
.industry-card h3 { margin: 0; font-size: .75rem; font-weight: 700; color: var(--brand-blue); }
@media (min-width: 768px) { .industry-card h3 { font-size: 1rem; } }

.pricing { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 72rem; margin: 2rem auto 0; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.price-card {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 768px) { .price-card { padding: 2rem; border-radius: 1.5rem; } }
.price-card.featured { background: var(--brand-blue); border: 4px solid var(--brand-yellow); color: #fff; box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); }
.price-badge { position: absolute; top: -1rem; left: 50%; transform: translateX(-50%); background: var(--brand-yellow); color: var(--brand-blue); padding: .25rem 1rem; border-radius: 9999px; font-size: .625rem; font-weight: 800; }
.price-card h3 { font-size: 1.125rem; font-weight: 700; margin: 0 0 .5rem; }
.price-card.featured h3 { color: #fff; }
.price-block { margin-bottom: 1.5rem; }
.price-current { display: inline-flex; align-items: center; gap: .25rem; }
.price-riyal { width: 1.25rem; height: 1.25rem; object-fit: contain; vertical-align: middle; }
@media (min-width: 768px) { .price-riyal { width: 1.5rem; height: 1.5rem; } }
.price-num { font-size: 2rem; font-weight: 800; }
@media (min-width: 768px) { .price-num { font-size: 2.5rem; } }
.price-unit { display: block; font-size: .65rem; color: #6b7280; margin-top: .25rem; }
.price-card.featured .price-unit { color: rgba(255,255,255,.8); }
.price-features { list-style: none; padding: 0; margin: 0 0 2rem; flex-grow: 1; }
.price-features li { font-size: .75rem; margin-bottom: .75rem; color: #6b7280; }
.price-card.featured .price-features li { color: rgba(255,255,255,.9); }
.price-card.featured .price-num { color: #fff; }
.price-card.featured .price-riyal { filter: brightness(0) invert(1); }
.price-card .btn-block { margin-top: auto; }

.extra-services { background: #eff6ff; }
.services-box { max-width: 56rem; margin: 0 auto; background: #fff; border-radius: 1.5rem; padding: 2.5rem; box-shadow: 0 10px 30px -5px rgba(0,41,107,.1); border: 1px solid #bfdbfe; }
.services-box .section-title::after { margin: 0.5rem auto; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-item { display: flex; align-items: center; gap: .75rem; padding: 1rem; background: #f9fafb; border-radius: .75rem; border: 1px solid #f3f4f6; font-weight: 700; color: var(--brand-blue); font-size: .875rem; }

.testimonials { background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.testimonial-card { padding: 1.5rem; background: #f9fafb; border-radius: 1rem; }
@media (min-width: 768px) { .testimonial-card { padding: 2rem; border-radius: 1.5rem; } }
.stars { color: var(--brand-yellow); margin-bottom: .75rem; }
.testimonial-card p { margin: 0 0 1rem; color: #4b5563; font-style: italic; line-height: 1.6; font-size: .875rem; }
.author { font-weight: 700; color: var(--brand-blue); font-size: .875rem; }

.cta { padding: 4rem 0; }
.cta-box {
  background: var(--brand-blue);
  color: #fff;
  border-radius: 2rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
}
@media (min-width: 768px) { .cta-box { padding: 5rem; border-radius: 3rem; } }
.cta-box h2 { font-size: 1.5rem; font-weight: 800; margin: 0 0 1.5rem; line-height: 1.3; }
@media (min-width: 768px) { .cta-box h2 { font-size: 3rem; margin-bottom: 2rem; } }
.cta-box p { color: rgba(255,255,255,.8); font-size: 1rem; margin: 0 0 2rem; }
@media (min-width: 768px) { .cta-box p { font-size: 1.25rem; margin-bottom: 3rem; } }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.footer { background: #f9fafb; padding: 4rem 0 2rem; border-top: 1px solid #f3f4f6; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.footer-brand p { color: #6b7280; font-size: .75rem; line-height: 1.5; margin: 0 0 1.5rem; }
.footer h4 { font-size: .875rem; font-weight: 800; color: var(--brand-blue); margin: 0 0 1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .75rem; }
.footer a { color: #6b7280; text-decoration: none; font-size: .75rem; }
.footer a:hover { color: var(--brand-blue); }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid #e5e7eb; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }
.footer-bottom p { margin: 0; color: #9ca3af; font-size: .625rem; }
.footer-bottom a { color: #9ca3af; font-size: .625rem; margin-left: 1rem; }

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 4rem;
  height: 4rem;
  background: #22c55e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  z-index: 50;
  transition: background .2s, transform .2s;
}
.whatsapp-float:hover { background: #16a34a; transform: scale(1.1); }

::selection { background: var(--brand-yellow); color: var(--brand-blue); }
