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

:root {
  --navy: #0A1628;
  --navy-dark: #060E1A;
  --navy-light: #12254A;
  --blue: #0F2B5C;
  --royal: #1A5CFF;
  --royal-dark: #0F3DCC;
  --royal-light: #4A7FFF;
  --silver: #C0C6D4;
  --silver-light: #E8ECF2;
  --gold: #C8973A;
  --gold-light: #DBAF5E;
  --white: #FFFFFF;
  --light: #F0F2F6;
  --dark: #060E1A;
  --gray: #7A8599;
  --gray-light: #9EA8BA;
  --text: #1A2332;
  --text-muted: #5A6A7E;
  --nav-height: 80px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.12);
  --shadow-xl: 0 24px 80px rgba(10,22,40,0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

section[id], .service-block-detailed[id], .faq-item[id] { scroll-margin-top: 100px; }

::selection { background: var(--royal); color: white; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
  text-decoration: none; transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer; border: none; position: relative; overflow: hidden;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--royal), var(--royal-dark));
  color: var(--white); box-shadow: 0 4px 20px rgba(26,92,255,0.35);
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(26,92,255,0.45); }

.btn-secondary {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.25); backdrop-filter: blur(4px);
}

.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-3px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); box-shadow: 0 4px 20px rgba(200,151,58,0.3);
}

.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(200,151,58,0.4); }

/* ─── Section Common ─── */
.section { padding: 120px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark-alt { background: var(--navy-dark); color: var(--white); }

.section-header {
  text-align: center; max-width: 700px; margin: 0 auto 60px;
}

.section-label {
  display: inline-block; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px; color: var(--royal);
  margin-bottom: 12px; font-family: 'DM Sans', sans-serif;
}

.section-dark .section-label { color: var(--gold-light); }

.section-title {
  font-size: clamp(32px, 4vw, 46px); margin-bottom: 16px;
}

.section-dark .section-title { color: var(--white); }

.section-sub, .section-subtitle {
  color: var(--text-muted); font-size: 17px; line-height: 1.7;
}

.section-dark .section-sub, .section-dark .section-subtitle { color: rgba(255,255,255,0.55); }

/* ─── Navbar ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,0.85); backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  height: var(--nav-height); transition: all 0.4s ease;
}

.navbar.scrolled { background: rgba(10,22,40,0.98); box-shadow: 0 4px 40px rgba(0,0,0,0.3); }

.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.navbar .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.navbar .logo img { height: 44px; width: auto; border-radius: 8px; }
.navbar .logo span { color: var(--white); font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.3px; }

.nav-links { display: flex; list-style: none; gap: 2px; align-items: center; }

.nav-links a {
  color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 8px 18px; border-radius: var(--radius-sm); transition: all 0.3s ease; white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.06); }

.nav-cta { margin-left: 12px; }
.nav-cta .btn { padding: 10px 24px; font-size: 13px; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; width: 36px; height: 36px; position: relative; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; position: absolute; left: 6px; transition: all 0.3s ease; }
.hamburger span:nth-child(1) { top: 10px; }
.hamburger span:nth-child(2) { top: 17px; }
.hamburger span:nth-child(3) { top: 24px; }
.hamburger.open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

@media (max-width: 1024px) {
  .hamburger { display: block; }
  .nav-links {
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: rgba(10,22,40,0.98); backdrop-filter: blur(24px);
    flex-direction: column; padding: 20px; gap: 4px;
    transform: translateY(-120%); opacity: 0;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none; box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.06); max-height: 80vh; overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a { padding: 14px 18px; font-size: 15px; }
  .nav-cta { margin-left: 0; margin-top: 8px; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 30%, var(--blue) 60%, #0A1628 100%);
  position: relative; overflow: hidden; padding: 140px 28px 100px;
}

.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(26,92,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,92,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(800px circle at 20% 30%, rgba(26,92,255,0.08), transparent 60%),
    radial-gradient(600px circle at 80% 70%, rgba(200,151,58,0.04), transparent 60%),
    radial-gradient(500px circle at 50% 10%, rgba(255,255,255,0.02), transparent 50%);
  animation: heroPulse 10s ease-in-out infinite alternate;
}

@keyframes heroPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.08); opacity: 1; }
}

.hero-glow-1, .hero-glow-2 {
  position: absolute; border-radius: 50%; z-index: 0; pointer-events: none;
}

.hero-glow-1 {
  width: 500px; height: 500px; top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(26,92,255,0.06), transparent 70%);
  animation: floatSlow 14s ease-in-out infinite;
}

.hero-glow-2 {
  width: 400px; height: 400px; bottom: -80px; left: -80px;
  background: radial-gradient(circle, rgba(200,151,58,0.04), transparent 70%);
  animation: floatSlow 18s ease-in-out infinite reverse;
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(40px,-30px); }
}

.hero .container { position: relative; z-index: 1; width: 100%; }

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

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 50px;
  background: rgba(26,92,255,0.1); border: 1px solid rgba(26,92,255,0.2);
  color: var(--royal-light); font-size: 13px; font-weight: 500; margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(38px, 5.5vw, 62px); color: var(--white);
  margin-bottom: 20px; line-height: 1.1;
}

.hero h1 span { background: linear-gradient(135deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero p {
  font-size: clamp(16px, 1.5vw, 19px); color: rgba(255,255,255,0.6);
  margin-bottom: 40px; max-width: 560px; line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

/* Hero Metrics */
.hero-metrics {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 32px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}

.metric-item { text-align: center; position: relative; }
.metric-item:not(:last-child)::after {
  content: ''; position: absolute; right: -12px; top: 50%;
  transform: translateY(-50%); width: 1px; height: 40px;
  background: rgba(255,255,255,0.06);
}

.metric-num {
  font-family: 'DM Sans', sans-serif; font-size: clamp(28px, 3vw, 38px);
  font-weight: 700; color: var(--white); display: block; line-height: 1.1;
}

.metric-label {
  font-size: 12px; color: rgba(255,255,255,0.65);
  margin-top: 6px; display: block; letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .hero-metrics { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 24px; }
  .metric-item:not(:last-child)::after { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ─── Services Overview ─── */
#services { background: var(--light); }

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px;
}

.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px;
  box-shadow: var(--shadow-sm); transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none; color: inherit; display: block;
  border: 1px solid rgba(0,0,0,0.04); position: relative; overflow: hidden;
}

.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--royal), var(--royal-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }

.service-card .icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 24px;
  background: linear-gradient(135deg, var(--light), var(--silver-light)); color: var(--royal);
  transition: transform 0.3s ease;
}

.service-card:hover .icon { transform: scale(1.1) rotate(-5deg); }

.service-card h3 { font-size: 19px; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }

.service-benefits-mini { list-style: none; display: grid; gap: 6px; margin-bottom: 20px; }
.service-benefits-mini li { font-size: 13px; color: var(--gray); display: flex; align-items: center; gap: 8px; }
.service-benefits-mini li::before { content: '\2713'; color: var(--royal); font-weight: 700; }

.service-card .btn-link { font-size: 14px; font-weight: 600; color: var(--royal); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s ease; }
.service-card .btn-link:hover { gap: 10px; }
.service-card .btn-link::after { content: '\2192'; }

/* ─── Why Choose Us ─── */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg); padding: 40px 32px;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  backdrop-filter: blur(12px); position: relative; overflow: hidden;
}

.why-card::after {
  content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(26,92,255,0.04), transparent 70%);
  transition: all 0.5s ease; pointer-events: none;
}

.why-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); transform: translateY(-6px); }
.why-card:hover::after { transform: scale(1.5); }

.why-icon { font-size: 36px; margin-bottom: 20px; display: block; }
.why-card h3 { font-size: 18px; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; }

@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── Partners ─── */
#partners { background: var(--white); overflow: hidden; }

.partner-track {
  display: flex; gap: 60px; align-items: center;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}

.partner-track:hover { animation-play-state: paused; }

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo-wrap { flex-shrink: 0; }

.partner-logo {
  opacity: 0.4; transition: all 0.4s ease; filter: grayscale(1);
  cursor: default; padding: 8px;
}

.partner-logo:hover { opacity: 1; filter: grayscale(0); transform: scale(1.05); }

.partner-logos-container {
  position: relative; overflow: hidden;
}

.partner-logos-container::before,
.partner-logos-container::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}

.partner-logos-container::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.partner-logos-container::after { right: 0; background: linear-gradient(-90deg, var(--white), transparent); }

/* ─── Industries ─── */
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.industry-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
  transition: all 0.4s ease;
}

.industry-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); transform: translateY(-4px); }

.industry-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.industry-card h3 { font-size: 16px; color: var(--white); margin-bottom: 8px; }
.industry-card p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }

@media (max-width: 768px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .industries-grid { grid-template-columns: 1fr; } }

/* ─── Testimonials ─── */
/* ─── Blog ─── */
.blog-section { background: var(--light); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.blog-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.4s ease;
  text-decoration: none; color: inherit; display: block;
  border: 1px solid rgba(0,0,0,0.04);
}

.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.blog-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.blog-img svg { width: 80px; height: 80px; opacity: 0.4; }
.blog-cat { position: absolute; top: 16px; left: 16px; padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 600; background: var(--royal); color: var(--white); }

.blog-body { padding: 28px; }
.blog-meta { font-size: 12px; color: var(--gray); margin-bottom: 8px; display: flex; gap: 16px; }
.blog-body h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; transition: color 0.3s ease; }
.blog-card:hover .blog-body h3 { color: var(--royal); }
.blog-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── CTA ─── */
.cta {
  padding: 100px 0; text-align: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--blue) 100%);
  position: relative; overflow: hidden;
}

.cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(600px circle at 30% 50%, rgba(26,92,255,0.06), transparent),
    radial-gradient(400px circle at 70% 50%, rgba(200,151,58,0.04), transparent);
  z-index: 0;
}

.cta .container { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(28px, 3vw, 40px); color: var(--white); margin-bottom: 12px; }
.cta p { color: rgba(255,255,255,0.5); font-size: 17px; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─── */
.footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.5);
  padding: 80px 0 0; position: relative;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }

.footer h3 { color: var(--white); font-size: 15px; margin-bottom: 20px; letter-spacing: 0.5px; text-transform: uppercase; font-weight: 600; }

.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; color: rgba(255,255,255,0.4); }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--white); font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 18px; }
.footer-brand .footer-logo img { height: 40px; border-radius: 6px; }

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: all 0.3s ease; }
.footer ul a:hover { color: var(--royal-light); padding-left: 4px; }

.footer-contact p { font-size: 14px; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.footer-contact a { color: var(--royal-light); text-decoration: none; }
.footer-contact a:hover { color: var(--royal); }

.footer-newsletter { margin-top: 24px; }
.footer-newsletter p { font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.footer-newsletter form { display: flex; gap: 8px; }
.footer-newsletter input {
  flex: 1; padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04);
  color: var(--white); font-size: 14px; outline: none; font-family: 'Inter', sans-serif;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.2); }
.footer-newsletter button { padding: 12px 20px; border: none; border-radius: var(--radius-sm); background: var(--royal); color: var(--white); font-weight: 600; font-size: 13px; cursor: pointer; transition: background 0.3s ease; font-family: 'DM Sans', sans-serif; }
.footer-newsletter button:hover { background: var(--royal-dark); }

.footer-partners { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; margin-top: 20px; }
.footer-partners span { font-size: 12px; color: var(--gray); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.3);
}

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); text-decoration: none; font-size: 13px; transition: color 0.3s ease; }
.footer-bottom-links a:hover { color: var(--royal-light); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-newsletter form { flex-direction: column; }
}

/* ─── WhatsApp + Quick Support ─── */
.whatsapp-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #25D366, #20BD5A);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  animation: pulse 2.5s ease-in-out infinite;
}

.whatsapp-btn:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* ─── Skip Link ─── */
.skip-link {
  position: fixed; top: -100%; left: 16px; z-index: 10000;
  background: var(--royal); color: var(--white);
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px; text-decoration: none; transition: top 0.3s ease;
}
.skip-link:focus { top: 16px; }

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed; bottom: 92px; right: 24px; z-index: 998;
  width: 48px; height: 48px; background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px); color: var(--white);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
  font-size: 20px; cursor: pointer;
  opacity: 0; transform: translateY(20px);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--royal); border-color: var(--royal); transform: translateY(-4px); }

/* ─── Utility ─── */
.text-center { text-align: center; }

/* ─── Animations ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content { animation: fadeInUp 0.8s ease-out; }
.hero-metrics { animation: fadeInUp 0.8s ease-out 0.3s both; }

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

/* ─── Focus & Keyboard ─── */
:focus-visible {
  outline: 2px solid var(--royal);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

:focus:not(:focus-visible) { outline: none; }

/* ─── Button Shine ─── */
.btn::after {
  content: ''; position: absolute; top: -50%; left: -60%; width: 40%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: rotate(25deg); transition: all 0.6s ease;
}
.btn:hover::after { left: 120%; }

/* ─── Staggered Card Reveal ─── */
.service-card:nth-child(1) { transition-delay: 0.02s; }
.service-card:nth-child(2) { transition-delay: 0.04s; }
.service-card:nth-child(3) { transition-delay: 0.06s; }
.service-card:nth-child(4) { transition-delay: 0.08s; }
.service-card:nth-child(5) { transition-delay: 0.10s; }
.service-card:nth-child(6) { transition-delay: 0.12s; }
.service-card:nth-child(7) { transition-delay: 0.14s; }
.service-card:nth-child(8) { transition-delay: 0.16s; }
.service-card:nth-child(9) { transition-delay: 0.18s; }
.service-card:nth-child(10) { transition-delay: 0.20s; }

.industry-card:nth-child(1) { transition-delay: 0.02s; }
.industry-card:nth-child(2) { transition-delay: 0.04s; }
.industry-card:nth-child(3) { transition-delay: 0.06s; }
.industry-card:nth-child(4) { transition-delay: 0.08s; }
.industry-card:nth-child(5) { transition-delay: 0.10s; }
.industry-card:nth-child(6) { transition-delay: 0.12s; }

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  padding: 160px 28px 80px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--blue) 100%);
  text-align: center; position: relative; overflow: hidden;
}

.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(500px circle at 30% 30%, rgba(26,92,255,0.08), transparent),
    radial-gradient(400px circle at 70% 70%, rgba(200,151,58,0.04), transparent);
  z-index: 0;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(34px, 4vw, 48px); color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.55); font-size: 18px; max-width: 550px; margin: 0 auto; }

/* ─── Service Index ─── */
.service-index {
  padding: 48px 0 40px;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.service-index-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.service-index-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--light);
  border: 1px solid rgba(0,0,0,0.04);
  text-decoration: none;
  transition: all 0.3s ease;
}
.service-index-item:hover {
  background: var(--navy);
  border-color: var(--navy);
}
.service-index-item:hover .si-label {
  color: var(--white);
}
.si-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--royal);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.service-index-item:hover .si-num {
  color: var(--gold);
}
.si-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.3s ease;
  line-height: 1.2;
}
@media (max-width: 900px) {
  .service-index-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .service-index { padding: 32px 0 24px; }
  .service-index-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .service-index-item { padding: 10px 10px; }
  .si-label { font-size: 12px; }
}

/* ─── Alternating Service Blocks ─── */
.services-detail .container > .service-block-detailed:nth-child(even) {
  background: var(--light);
}
.services-detail .container > .service-block-detailed:nth-child(odd) {
  background: var(--white);
}

/* ─── Service Detail Blocks ─── */
.services-detail { padding: 80px 0; background: var(--white); }

.service-block-detailed {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); margin-bottom: 32px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 0;
  border: 1px solid rgba(0,0,0,0.04); transition: box-shadow 0.3s ease;
}

.service-block-detailed:hover { box-shadow: var(--shadow-lg); }

.service-visual {
  min-height: 300px; display: flex; align-items: center; justify-content: center; padding: 40px;
}

.service-visual svg { width: 180px; height: 180px; }

.service-info-wrap { padding: 48px 40px; }

.service-subtitle {
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px; color: var(--royal); margin-bottom: 8px;
}

.service-info-wrap h2 { font-size: clamp(24px, 2.5vw, 32px); color: var(--navy); margin-bottom: 16px; }
.service-info-wrap > p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

.service-info-wrap h3 {
  font-size: 16px; color: var(--navy); margin: 28px 0 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
}

.service-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 16px; }

.service-highlight-card {
  background: var(--light); border-radius: var(--radius-md); padding: 20px; text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
}

.service-highlight-card .num { display: block; font-family: 'DM Sans', sans-serif; font-size: 24px; font-weight: 700; color: var(--royal); }
.service-highlight-card .label { display: block; font-size: 12px; color: var(--gray); margin-top: 4px; }

.service-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.service-features li {
  font-size: 14px; color: var(--text-muted); padding-left: 20px; position: relative; line-height: 1.6;
}
.service-features li::before { content: '\2713'; position: absolute; left: 0; color: var(--royal); font-weight: 700; }

.tech-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.tech-badge {
  padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 500;
  background: var(--light); color: var(--text-muted); border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.tech-badge:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.service-benefits-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service-benefits-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: var(--light); border-radius: var(--radius-sm);
  font-size: 14px; color: var(--text-muted); line-height: 1.5;
}
.ben-icon { font-size: 20px; flex-shrink: 0; }

.use-case-box {
  background: var(--navy); border-radius: var(--radius-md); padding: 24px;
  margin: 28px 0;
}
.use-case-box h4 { font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--gold); margin-bottom: 8px; }
.use-case-box p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 0; }

.service-cta { margin-top: 28px; }

@media (max-width: 1024px) {
  .service-block-detailed { grid-template-columns: 1fr; }
  .service-visual { min-height: 200px; padding: 24px; }
  .service-visual svg { width: 120px; height: 120px; }
}
@media (max-width: 900px) {
  .service-highlights { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .service-highlights { grid-template-columns: 1fr; }
  .service-features { grid-template-columns: 1fr; }
  .service-benefits-list { grid-template-columns: 1fr; }
  .service-info-wrap { padding: 24px 16px; }
  .service-visual { display: none; }
}

/* ─── FAQ ─── */
.faq-section {
  padding: 80px 0; background: var(--white);
}
.faq-section .section-title { text-align: center; }
.faq-section .section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 48px; font-size: 17px; }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-md);
  margin-bottom: 12px; overflow: hidden; transition: box-shadow 0.3s ease;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600;
  color: var(--navy); text-align: left; transition: background 0.3s ease;
}
.faq-question:hover { background: var(--light); }
.faq-question[aria-expanded="true"] { background: var(--light); }
.faq-icon { font-size: 22px; color: var(--royal); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 16px; }

.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.faq-answer p { padding: 0 24px 20px; color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* ─── Stats Bar ─── */
.stats-bar {
  padding: 60px 0; background: var(--navy); color: var(--white);
  position: relative;
}
.stats-bar::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 2px; background: var(--gold); opacity: 0.3; border-radius: 1px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-num { display: block; font-family: 'DM Sans', sans-serif; font-size: 36px; font-weight: 700; color: var(--gold); }
.stat-label { display: block; font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 6px; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; } }
@media (max-width: 400px) { .stat-num { font-size: 28px; } }

/* ─── About Page ─── */
.about-content { padding: 80px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }

.about-text h2 { font-size: clamp(28px, 3vw, 36px); color: var(--navy); margin-bottom: 24px; }
.about-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.about-text p strong { color: var(--navy); }

.mission-vision { display: flex; flex-direction: column; gap: 16px; }

.mv-card {
  background: var(--light); border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid rgba(0,0,0,0.04); transition: all 0.3s ease;
}
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mv-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.mv-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; }

@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

.happy-clients { padding: 80px 0; background: var(--navy); position: relative; color: var(--white); }
.happy-clients .section-subtitle { color: rgba(255,255,255,0.55); }
.happy-clients::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--gold); border-radius: 2px; opacity: 0.4; }
.happy-clients .benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }

.benefit-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.benefit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--royal), var(--gold)); opacity: 0; transition: opacity 0.4s ease; }
.benefit-card:hover::before { opacity: 1; }
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.benefit-card .icon { font-size: 28px; margin-bottom: 16px; display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: var(--light); border-radius: 50%; }
.benefit-card h3 { font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.benefit-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin: 0; }

@media (max-width: 900px) { .happy-clients .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .happy-clients .benefits-grid { grid-template-columns: 1fr; } }

.teamwork-section { padding: 80px 0; background: var(--white); }
.teamwork-header { text-align: center; max-width: 700px; margin: 0 auto 40px; }
.teamwork-header h2 { font-size: clamp(28px, 3vw, 36px); color: var(--navy); margin-bottom: 16px; }
.teamwork-header > p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 0; }
.teamwork-subtitle { font-size: 15px; color: var(--navy); font-weight: 600; margin-top: 16px !important; }
.teamwork-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; max-width: 800px; margin: 0 auto; }
.tw-point { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.tw-icon { color: var(--royal); font-weight: 700; font-size: 16px; flex-shrink: 0; margin-top: 2px; }

.about-image-top { margin-bottom: 40px; text-align: center; position: relative; }
.about-image-top::after { content: ''; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: var(--gold); border-radius: 2px; }
.about-image-top .about-team-img { max-width: 600px; width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,0.06); }

@media (max-width: 768px) {
  .teamwork-points { grid-template-columns: 1fr; }
  .about-image-top::after { width: 60px; }
}

.industries-section { padding: 80px 0; background: var(--navy); color: var(--white); }
.industries-section .section-title { color: var(--white); }
.industries-section .section-subtitle { color: rgba(255,255,255,0.55); }

/* ─── Contact Page ─── */
.contact-page { padding: 80px 0; background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04); }
.contact-form h2 { font-size: 24px; color: var(--navy); margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.1); font-family: 'Inter', sans-serif; font-size: 15px;
  color: var(--text); background: var(--white); transition: border-color 0.3s ease; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--royal); box-shadow: 0 0 0 3px rgba(26,92,255,0.1); }
.form-group textarea { min-height: 130px; resize: vertical; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04);
}
.contact-card h2 { font-size: 22px; color: var(--navy); margin-bottom: 24px; }

.contact-item { display: flex; gap: 16px; margin-bottom: 20px; }
.contact-item .icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item .info h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 2px; font-weight: 600; }
.contact-item .info p { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin: 0; }
.contact-item .info a { color: var(--royal); text-decoration: none; }
.contact-item .info a:hover { text-decoration: underline; }

.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04); }
.map-container iframe { width: 100%; height: 220px; border: none; display: block; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .contact-card { padding: 24px; }
}

.spinner {
  display: inline-block; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white; border-radius: 50%; animation: spin 0.6s linear infinite;
  vertical-align: middle; margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Services Card Section ─── */
.services-cards-section {
  padding: 80px 0 40px;
  background: var(--light);
}

.services-cards-section .services-grid {
  margin-bottom: 0;
}

.services-cards-section .service-card {
  scroll-margin-top: 100px;
}

.services-cards-section .service-card .icon {
  width: 48px;
  height: 48px;
  font-size: 20px;
}

/* ─── Service Detail Accordion (via :target) ─── */
.service-detail-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
  margin: 0;
}

.service-detail-panel:target {
  max-height: 6000px;
  opacity: 1;
  margin: 32px 0;
}

.service-detail-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}

.service-detail-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.service-detail-top h2 {
  font-size: clamp(24px, 2.5vw, 32px);
  color: var(--navy);
  margin: 0;
  flex: 1;
}

.sd-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.sd-close:hover {
  background: var(--navy);
  color: var(--white);
  transform: rotate(90deg);
}

.sd-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-detail-inner h3 {
  font-size: 16px;
  color: var(--navy);
  margin: 28px 0 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-detail-inner .service-highlights {
  margin-bottom: 8px;
}

.service-detail-inner .tech-badges {
  margin-bottom: 8px;
}

/* ─── Services Card Page: scroll target offset ─── */
#infrastructure, #cybersecurity, #cloud, #backup, #managed-it,
#surveillance, #access-control, #business-email, #domain-hosting,
#email-management, #g-suite, #server-maintenance, #thin-client,
#office-365, #zoho-email, #macrium-reflect {
  scroll-margin-top: 100px;
}

@media (max-width: 768px) {
  .service-detail-inner {
    padding: 24px 16px;
  }
  .service-detail-inner .service-highlights {
    grid-template-columns: 1fr;
  }
  .service-detail-inner .service-features {
    grid-template-columns: 1fr;
  }
  .service-detail-inner .service-benefits-list {
    grid-template-columns: 1fr;
  }
}

/* ─── Callback Modal ─── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  max-width: 420px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--gray);
  line-height: 1;
}
.modal-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  margin-bottom: 8px;
}
.modal-content .form-group {
  margin-bottom: 16px;
}
.modal-content label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.modal-content input,
.modal-content select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}
.modal-content input:focus,
.modal-content select:focus {
  border-color: var(--royal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(26,92,255,0.1);
}

/* ─── Callback Floating Button ─── */
.callback-btn {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--royal);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26,92,255,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.callback-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(26,92,255,0.4);
}
@media (max-width: 768px) {
  .callback-btn {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 90px;
  }
}

/* ─── Newsletter Spinner ─── */
.footer-newsletter .spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: nxSpin 0.6s linear infinite;
}
.footer-newsletter .sending .spinner {
  display: inline-block;
}
@keyframes nxSpin {
  to { transform: rotate(360deg); }
}

/* ─── Testimonials Grid ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
}
.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}
.testimonial-author div {
  display: flex;
  flex-direction: column;
}
.testimonial-author strong {
  font-size: 14px;
  color: var(--text);
}
.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Why Grid Extended ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
