/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', sans-serif; background: #060c14; color: #F8FAFC; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }
img { display: block; max-width: 100%; }

/* ── Shared Layout ── */
.container { max-width: 1440px; margin: 0 auto; padding: 0 100px; }

/* ── Navbar ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(11,31,51,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 80px;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  color: #CBD5E1; font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #14B8A6; font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-search {
  color: #CBD5E1; background: none; border: none; cursor: pointer; padding: 4px;
  display: flex; align-items: center; transition: color 0.2s;
}
.nav-search:hover { color: #14B8A6; }
.btn-primary {
  background: #14B8A6; color: #0B1F33;
  border: 1px solid rgba(20,184,166,0.4);
  border-radius: 8px; padding: 10px 24px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all 0.25s ease; letter-spacing: 0.01em; display: inline-block;
}
.btn-primary:hover { background: #0fcfbc; border-color: rgba(20,184,166,0.7); }
.btn-primary-lg {
  background: #14B8A6; color: #0B1F33;
  border: 1px solid rgba(20,184,166,0.4);
  border-radius: 10px; padding: 14px 36px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all 0.25s ease; letter-spacing: 0.01em; display: inline-block;
}
.btn-primary-lg:hover { background: #0fcfbc; border-color: rgba(20,184,166,0.7); }
.btn-secondary-lg {
  background: transparent; color: #F8FAFC;
  border: 1px solid rgba(203,213,225,0.25);
  border-radius: 10px; padding: 14px 36px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.25s ease; letter-spacing: 0.01em; display: inline-block;
}
.btn-secondary-lg:hover { border-color: #14B8A6; color: #14B8A6; }
.btn-outline {
  background: transparent; color: #F8FAFC;
  border: 1px solid rgba(203,213,225,0.2);
  border-radius: 12px; padding: 14px 36px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: rgba(20,184,166,0.5); color: #14B8A6; }

.hamburger { display: none; background: none; border: none; cursor: pointer; color: #CBD5E1; }
.mobile-menu {
  display: none; background: #0B1F33; padding: 24px 24px 32px;
  border-top: 1px solid rgba(203,213,225,0.1);
}
.mobile-menu a {
  display: block; color: #CBD5E1; font-size: 16px; font-weight: 500; padding: 12px 0;
  border-bottom: 1px solid rgba(203,213,225,0.08);
}
.mobile-menu .btn-primary {
  margin-top: 24px; width: 100%; text-align: center; border-radius: 8px;
  padding: 12px 24px; font-size: 15px;
}

/* ── Section Headings ── */
.section-title {
  font-size: 40px; font-weight: 700; color: #F8FAFC;
  letter-spacing: -0.02em; line-height: 1.2;
}
.section-subtitle {
  font-size: 16px; color: #94A3B8; line-height: 1.75; margin-top: 16px;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative; width: 100%; height: 44vh;
  min-height: 340px; max-height: 480px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.page-hero img.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
}
.page-hero .overlay {
  position: absolute; inset: 0; background: rgba(6,14,26,0.72);
}
.page-hero .fade-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, #0B1F33, transparent); pointer-events: none;
}
.page-hero .hero-content {
  position: relative; z-index: 2; text-align: center; padding: 0 40px; margin-top: 80px;
}
.page-hero h1 {
  font-size: 64px; font-weight: 700; color: #F8FAFC;
  line-height: 1.05; letter-spacing: -0.03em;
}

/* ── Corner markers ── */
.corner-markers { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.corner { position: absolute; width: 28px; height: 28px; border-radius: 2px; }
.corner-tl { top: 20px; left: 20px; border-top: 2px solid rgba(20,184,166,0.5); border-left: 2px solid rgba(20,184,166,0.5); }
.corner-tr { top: 20px; right: 20px; border-top: 2px solid rgba(20,184,166,0.5); border-right: 2px solid rgba(20,184,166,0.5); }
.corner-bl { bottom: 20px; left: 20px; border-bottom: 2px solid rgba(20,184,166,0.5); border-left: 2px solid rgba(20,184,166,0.5); }
.corner-br { bottom: 20px; right: 20px; border-bottom: 2px solid rgba(20,184,166,0.5); border-right: 2px solid rgba(20,184,166,0.5); }

/* ── Stat badge ── */
.stat-badge {
  position: absolute; bottom: 32px; left: 32px; z-index: 3;
  background: rgba(11,31,51,0.85); border: 1px solid rgba(20,184,166,0.2);
  border-radius: 14px; padding: 14px 20px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.stat-badge .value { font-size: 22px; font-weight: 700; color: #14B8A6; line-height: 1; }
.stat-badge .label { font-size: 11px; color: #64748B; margin-top: 4px; letter-spacing: 0.04em; }

/* ── Metric Cards (Hero) ── */
.metric-card {
  background: rgba(9,25,41,0.85); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 28px 28px 24px;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  transition: all 0.35s ease; cursor: default; position: relative; overflow: hidden;
}
.metric-card:hover { border-color: rgba(20,184,166,0.4); }
.metric-card:hover::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20,184,166,0.7), transparent);
}
.metric-card .value { font-size: 36px; font-weight: 700; color: #F8FAFC; line-height: 1; letter-spacing: -0.03em; margin-bottom: 10px; }
.metric-card .bar { width: 28px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, #14B8A6, rgba(20,184,166,0.2)); margin-bottom: 10px; transition: width 0.35s ease; }
.metric-card:hover .bar { width: 44px; }
.metric-card .label { font-size: 13px; color: #64748B; font-weight: 500; line-height: 1.4; }

/* ── Category Cards ── */
.category-card {
  display: block; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07); border-radius: 20px;
  overflow: hidden; cursor: pointer; text-decoration: none;
  transition: all 0.35s ease;
}
.category-card:hover { border-color: rgba(20,184,166,0.35); transform: translateY(-3px); }
.category-card .img-wrap { height: 180px; position: relative; overflow: hidden; }
.category-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-card:hover .img-wrap img { transform: scale(1.06); }
.category-card .img-wrap .overlay-gradient {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(9,25,41,0.35) 0%, rgba(9,25,41,0.65) 100%);
  transition: all 0.35s ease;
}
.category-card:hover .img-wrap .overlay-gradient {
  background: linear-gradient(to bottom, rgba(9,25,41,0.2) 0%, rgba(9,25,41,0.55) 100%);
}
.category-card .teal-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #14B8A6, transparent);
  opacity: 0; transition: opacity 0.35s ease;
}
.category-card:hover .teal-line { opacity: 1; }
.category-card .card-body { padding: 22px 26px 26px; }
.category-card h3 { font-size: 16px; font-weight: 600; color: #F8FAFC; margin-bottom: 8px; letter-spacing: -0.01em; }
.category-card p { font-size: 13px; color: #475569; line-height: 1.65; }

/* ── Feature Cards (Why Choose Us) ── */
.feature-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px 24px; border-radius: 16px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease; cursor: default;
}
.feature-card:hover { background: rgba(20,184,166,0.05); border-color: rgba(20,184,166,0.25); }
.feature-card .icon-box {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(20,184,166,0.07); border: 1px solid rgba(20,184,166,0.18);
  display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.feature-card:hover .icon-box { background: rgba(20,184,166,0.15); }
.feature-card h3 { font-size: 15px; font-weight: 600; color: #F8FAFC; margin-bottom: 4px; letter-spacing: -0.01em; }
.feature-card p { font-size: 13px; color: #475569; line-height: 1.65; }

/* ── Brand Chips / Marquee ── */
.marquee-track { display: flex; gap: 24px; width: max-content; }
.brand-chip {
  flex-shrink: 0; border: 1px solid rgba(255,255,255,0.08); border-radius: 20px;
  padding: 36px 72px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.025); transition: all 0.4s ease; cursor: default;
  min-width: 260px; height: 110px;
}
.brand-chip:hover { border-color: rgba(20,184,166,0.4); background: rgba(20,184,166,0.07); }
.brand-chip span {
  font-size: 16px; font-weight: 700; color: #2D4A63;
  letter-spacing: 0.06em; transition: color 0.4s ease; white-space: nowrap;
}
.brand-chip:hover span { color: #14B8A6; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-animated { animation: marquee-scroll 40s linear infinite; }

/* ── Testimonials ── */
.testimonial-card {
  border-radius: 24px; display: flex; flex-direction: column;
  justify-content: space-between; gap: 24px; transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0;
}
.testimonial-card.center {
  width: 560px; min-height: 300px; padding: 40px 44px;
  background: rgba(20,184,166,0.06); border: 1px solid rgba(20,184,166,0.35);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  opacity: 1; transform: scale(1); position: relative;
}
.testimonial-card.center::before {
  content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20,184,166,0.6), transparent);
}
.testimonial-card.side {
  width: 340px; min-height: 240px; padding: 28px 32px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0.45; cursor: pointer;
}
.testimonial-card.left { transform: scale(0.9) translateX(-24px); }
.testimonial-card.right { transform: scale(0.9) translateX(24px); }
.testimonial-card.hidden { display: none; }
.testimonial-quote { color: #14B8A6; opacity: 0.5; margin-bottom: 20px; }
.testimonial-text { font-size: 16px; line-height: 1.8; color: #CBD5E1; font-style: italic; }
.testimonial-card.side .testimonial-text { font-size: 13px; color: #475569; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(20,184,166,0.12);
  border: 1px solid rgba(20,184,166,0.25); display: flex; align-items: center;
  justify-content: center; font-size: 13px; font-weight: 700; color: #14B8A6; flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 600; color: #F8FAFC; }
.testimonial-role { font-size: 12px; color: #334155; }
.nav-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #94A3B8; transition: all 0.2s;
}
.nav-btn:hover { border-color: rgba(20,184,166,0.4); color: #14B8A6; background: rgba(20,184,166,0.08); }
.dot-btn {
  height: 6px; border-radius: 3px; background: rgba(255,255,255,0.15);
  border: none; cursor: pointer; transition: all 0.3s ease; padding: 0;
}
.dot-btn.active { background: #14B8A6; width: 24px !important; }

/* ── Value / Consult Cards ── */
.value-card {
  padding: 32px; border-radius: 24px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease; cursor: default;
}
.value-card:hover {
  background: rgba(20,184,166,0.04); border-color: rgba(20,184,166,0.25);
  transform: translateY(-3px);
}
.value-card .icon-box {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(20,184,166,0.07); border: 1px solid rgba(20,184,166,0.16);
  display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.value-card:hover .icon-box { background: rgba(20,184,166,0.14); }
.value-card .card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.value-card h3 { font-size: 18px; font-weight: 700; color: #F8FAFC; letter-spacing: -0.01em; }
.value-card p { font-size: 14px; color: #475569; line-height: 1.75; }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, #091929 0%, #0d2a40 40%, #0a2235 70%, #091929 100%);
  padding: 120px 0; position: relative; overflow: hidden; text-align: center;
}
.cta-section .cta-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.08; pointer-events: none;
}
.cta-section .cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(20,184,166,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .cta-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(20,184,166,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,184,166,0.03) 1px, transparent 1px);
  background-size: 80px 80px; pointer-events: none;
}
.cta-section .cta-inner { position: relative; z-index: 1; }
.cta-section h2 { font-size: 40px; font-weight: 700; color: #F8FAFC; letter-spacing: -0.02em; line-height: 1.2; max-width: 640px; margin: 0 auto 20px; }
.cta-section p { font-size: 16px; color: #94A3B8; max-width: 520px; margin: 0 auto 48px; line-height: 1.75; }
.cta-section .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
footer { background: #060f1a; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 64px; margin-bottom: 64px; }
.footer-brand p { font-size: 14px; color: #64748B; line-height: 1.75; max-width: 300px; margin: 24px 0 32px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center;
  justify-content: center; color: #475569; transition: all 0.2s;
}
.social-btn:hover { color: #14B8A6; border-color: rgba(20,184,166,0.3); background: rgba(20,184,166,0.08); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #F8FAFC; letter-spacing: 0.06em; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: #64748B; transition: color 0.2s; }
.footer-col a:hover { color: #14B8A6; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; }
.contact-item span { font-size: 14px; color: #64748B; line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 13px; color: #334155; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: #334155; transition: color 0.2s; }
.footer-bottom-links a:hover { color: #14B8A6; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); overflow: hidden; }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 24px 0; background: none; border: none; cursor: pointer; text-align: left;
}
.faq-btn span { font-size: 16px; font-weight: 600; color: #94A3B8; line-height: 1.4; transition: color 0.2s; }
.faq-btn:hover span, .faq-item.open .faq-btn span { color: #F8FAFC; }
.faq-chevron { flex-shrink: 0; color: #14B8A6; transition: transform 0.3s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; font-size: 15px; color: #64748B; line-height: 1.8; padding-bottom: 24px; }
.faq-item.open .faq-answer { display: block; }

/* ── Product Card (Ultrasound) ── */
.product-card {
  border-radius: 20px; overflow: hidden;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease; cursor: pointer;
}
.product-card:hover { border-color: rgba(20,184,166,0.28); transform: translateY(-3px); }
.product-card .img-wrap { position: relative; height: 200px; overflow: hidden; }
.product-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .img-wrap img { transform: scale(1.04); }
.product-card .type-badge {
  position: absolute; top: 14px; left: 14px; padding: 4px 10px; border-radius: 100px;
  background: rgba(11,31,51,0.82); border: 1px solid rgba(20,184,166,0.2); backdrop-filter: blur(8px);
  font-size: 11px; font-weight: 600; color: #14B8A6; letter-spacing: 0.06em;
}
.product-card .card-body { padding: 22px 22px 26px; }
.product-card .brand { font-size: 12px; color: #475569; font-weight: 500; margin-bottom: 6px; letter-spacing: 0.04em; }
.product-card h3 { font-size: 17px; font-weight: 700; color: #F8FAFC; letter-spacing: -0.01em; margin-bottom: 8px; }
.product-card .spec { font-size: 13px; color: #334155; line-height: 1.6; margin-bottom: 20px; }
.product-card .view-btn {
  width: 100%; background: transparent; color: #475569;
  border: 1px solid rgba(255,255,255,0.07); border-radius: 10px;
  padding: 10px 0; font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all 0.25s ease; letter-spacing: 0.01em;
}
.product-card:hover .view-btn { background: rgba(20,184,166,0.1); color: #14B8A6; border-color: rgba(20,184,166,0.3); }

/* ── Contact Form ── */
.form-input, .form-textarea {
  width: 100%; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 13px 16px; font-size: 15px; color: #F8FAFC;
  font-family: 'Manrope', sans-serif; outline: none; transition: border-color 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: #334155; }
.form-input:focus, .form-textarea:focus { border-color: rgba(20,184,166,0.4); }
.form-textarea { height: 120px; resize: vertical; }
.form-label { font-size: 13px; font-weight: 600; color: #64748B; letter-spacing: 0.04em; display: block; margin-bottom: 8px; }

/* ── Related Card ── */
.related-card {
  display: block; border-radius: 20px; overflow: hidden;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease; text-decoration: none;
}
.related-card:hover { border-color: rgba(20,184,166,0.28); transform: translateY(-3px); }
.related-card .img-wrap { position: relative; height: 180px; overflow: hidden; }
.related-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.related-card:hover .img-wrap img { transform: scale(1.04); }
.related-card .card-body { padding: 22px 24px 26px; }
.related-card h3 { font-size: 17px; font-weight: 700; color: #F8FAFC; letter-spacing: -0.01em; margin-bottom: 8px; }
.related-card p { font-size: 13px; color: #475569; line-height: 1.65; }

/* ── Products Page — Category Card (larger) ── */
.products-card {
  display: block; border-radius: 24px; overflow: hidden;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.35s ease; text-decoration: none;
}
.products-card:hover { border-color: rgba(20,184,166,0.32); transform: translateY(-4px); }
.products-card .img-wrap { position: relative; height: 220px; overflow: hidden; }
.products-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.products-card:hover .img-wrap img { transform: scale(1.05); }
.products-card .card-body { padding: 28px 28px 32px; }
.products-card h3 { font-size: 18px; font-weight: 700; color: #F8FAFC; letter-spacing: -0.01em; margin-bottom: 10px; }
.products-card p { font-size: 14px; color: #475569; line-height: 1.72; margin-bottom: 20px; }
.products-card .read-more { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #334155; transition: color 0.3s ease; }
.products-card:hover .read-more { color: #14B8A6; }
.products-card .arrow-icon { transition: transform 0.3s ease; opacity: 0.4; }
.products-card:hover .arrow-icon { transform: translateX(3px); opacity: 1; }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .container { padding: 0 60px; }
}
@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  .nav-links, .nav-right { display: none !important; }
  .hamburger { display: flex !important; }
  .mobile-menu.open { display: block !important; }
  .section-title { font-size: 32px; }
  .page-hero h1 { font-size: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section-title { font-size: 28px; }
  .page-hero h1 { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-section h2 { font-size: 28px; }
}

/* SVG icon helper */
.icon { display: inline-flex; align-items: center; justify-content: center; }
