/* ============================================================
   BMN Digital – styles.css
   Mobile-first, pure CSS3, no frameworks
   ============================================================ */

/* ---------- 1. Imports & Reset ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ---------- 2. Design Tokens ---------- */
:root {
  --primary:       #1e3a8a;   /* Navy Blue */
  --primary-hover: #1e3a8acc;
  --accent:        #3b82f6;   /* Electric Blue */
  --accent-light:  rgba(59,130,246,.1);
  --slate-50:      #f8fafc;
  --slate-100:     #f1f5f9;
  --slate-200:     #e2e8f0;
  --slate-400:     #94a3b8;
  --slate-500:     #64748b;
  --slate-600:     #475569;
  --slate-700:     #334155;
  --slate-900:     #0f172a;
  --white:         #ffffff;
  --red-500:       #ef4444;

  --radius-sm:   0.375rem;
  --radius-md:   0.625rem;
  --radius-lg:   0.875rem;
  --radius-xl:   1.25rem;
  --radius-2xl:  1.75rem;
  --radius-3xl:  2.5rem;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.12);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.15);

  --nav-h: 68px;
  --section-px: 1.25rem;
  --section-py: 4rem;
  --max-w: 73rem;
}

/* ---------- 3. Utility Classes ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--section-px);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ---------- 4. Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-float { animation: float 4s ease-in-out infinite; }

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- 5. Navigation ---------- */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-100);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.02em;
}

.nav-brand svg {
  width: 28px; height: 28px;
  flex-shrink: 0;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  color: var(--slate-600);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}

.nav-desktop a:hover { color: var(--primary); }

.btn-nav {
  background: var(--primary);
  color: var(--white);
  padding: .625rem 1.25rem;
  border-radius: var(--radius-lg);
  font-size: .875rem;
  font-weight: 700;
  transition: background .2s, transform .15s;
}

.btn-nav:hover {
  background: #1a3278;
  transform: translateY(-1px);
}

.hamburger {
  color: var(--primary);
  padding: .4rem;
  border-radius: var(--radius-sm);
  transition: background .2s;
  display: flex;
  align-items: center;
}

.hamburger:hover { background: var(--slate-100); }

/* Mobile Nav */
#mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  background: var(--white);
  border-bottom: 1px solid var(--slate-100);
}

#mobile-nav.open { max-height: 320px; }

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: .5rem 0 1rem;
}

.mobile-nav-inner a,
.mobile-nav-inner button {
  display: block;
  padding: .85rem 1.5rem;
  color: var(--slate-700);
  font-size: .95rem;
  font-weight: 500;
  text-align: left;
  width: 100%;
  transition: background .15s;
}

.mobile-nav-inner a:hover,
.mobile-nav-inner button:hover { background: var(--slate-50); }

.mobile-nav-inner .btn-mobile-cta {
  margin: .5rem 1.5rem 0;
  width: calc(100% - 3rem);
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  font-weight: 700;
  padding: .875rem;
}

/* ---------- 6. Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 700;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(30,58,138,.25);
  white-space: nowrap;
}

.btn-primary:hover {
  background: #1a3278;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(30,58,138,.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  color: var(--slate-700);
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 700;
  border: 1.5px solid var(--slate-200);
  transition: background .2s, border-color .2s;
}

.btn-secondary:hover {
  background: var(--slate-50);
  border-color: var(--slate-300);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--accent);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 800;
  transition: background .2s, transform .15s;
}

.btn-accent:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

/* ---------- 7. Section Defaults ---------- */
section {
  padding-block: var(--section-py);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--accent-light);
  color: var(--accent);
  padding: .35rem 1rem;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--slate-900);
}

.section-divider {
  width: 3rem;
  height: 4px;
  background: var(--accent);
  border-radius: var(--radius-full);
  margin: 1rem auto 0;
}

/* ---------- 8. Hero Section ---------- */
#hero {
  position: relative;
  overflow: hidden;
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
  background: var(--white);
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 40%, rgba(59,130,246,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--accent-light);
  color: var(--accent);
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 700;
  width: fit-content;
}

.hero-badge svg { width: 16px; height: 16px; }

.hero-h1 {
  font-size: clamp(2rem, 7vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.04em;
  color: var(--slate-900);
}

.hero-h1 span { color: var(--primary); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--slate-600);
  max-width: 36rem;
  line-height: 1.7;
}

.hero-quote {
  padding: 1rem 1.25rem;
  background: var(--slate-50);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--slate-700);
  font-style: italic;
  font-weight: 500;
  font-size: .95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation: float 5s ease-in-out infinite;
}

.hero-card-toprow {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--slate-100);
}

.hero-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-card-icon svg { color: var(--accent); }

.hero-card-lines { display: flex; flex-direction: column; gap: .4rem; }

.line-lg {
  height: 10px; width: 120px;
  background: var(--slate-200);
  border-radius: var(--radius-full);
}

.line-sm {
  height: 8px; width: 75px;
  background: var(--slate-100);
  border-radius: var(--radius-full);
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-card-block {
  height: 120px;
  border-radius: var(--radius-xl);
}

.hero-card-block--a {
  background: linear-gradient(135deg, var(--accent-light), rgba(59,130,246,.2));
  animation: pulse-ring 2.5s ease-out infinite;
}

.hero-card-block--b {
  background: var(--slate-50);
}

.hero-card-footer {
  height: 90px;
  border-radius: var(--radius-xl);
  background: rgba(59,130,246,.05);
  border: 1px solid rgba(59,130,246,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.hero-card-footer p {
  color: var(--slate-400);
  font-size: .8rem;
  text-align: center;
}

/* ---------- 9. Problem Section ---------- */
#problema {
  background: var(--slate-50);
}

.problem-header {
  text-align: center;
  margin-bottom: 3rem;
}

.problem-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}

.problem-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.problem-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: .5rem;
}

.problem-card p {
  font-size: .875rem;
  color: var(--slate-600);
  line-height: 1.65;
}

/* ---------- 10. Solution Section ---------- */
#solucoes {
  background: var(--white);
}

.solution-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.solution-left h2 {
  margin-bottom: 1rem;
}

.solution-left p {
  color: var(--slate-600);
  font-size: 1.05rem;
  line-height: 1.7;
}

.solution-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.solution-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
}

.solution-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: .4rem;
}

.solution-step p {
  font-size: .9rem;
  color: var(--slate-600);
  line-height: 1.65;
}

/* ---------- 11. Benefits Section ---------- */
#beneficios {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
}

.benefits-header {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-header h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -.03em;
}

.benefits-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.benefit-icon {
  font-size: 3rem;
}

.benefit-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.benefit-item p {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}

/* ---------- 12. How It Works Section ---------- */
#como-funciona {
  background: var(--white);
}

.howworks-inner {
  max-width: 46rem;
  margin-inline: auto;
}

.howworks-header {
  text-align: center;
  margin-bottom: 3rem;
}

.timeline {
  position: relative;
  padding-left: 1.75rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--slate-200);
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  margin-left: -1.5rem;
  box-shadow: 0 0 0 4px white;
}

.timeline-dot svg {
  color: var(--accent);
}

.timeline-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: .4rem;
}

.timeline-content p {
  font-size: .9rem;
  color: var(--slate-600);
  line-height: 1.65;
}

/* ---------- 13. Technology Section ---------- */
#tecnologia {
  background: var(--slate-900);
  color: var(--white);
  padding-block: 3rem;
}

.tech-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.tech-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.tech-text p {
  color: var(--slate-400);
  font-size: .9rem;
}

.tech-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.tech-icon {
  width: 48px; height: 48px;
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-badge {
  padding: .4rem .9rem;
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: var(--radius-full);
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
}

/* ---------- 14. Local Trust Section ---------- */
#local {
  background: var(--white);
}

.local-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.local-map {
  position: relative;
  height: 320px;
  background: var(--slate-100);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.local-map-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .3;
}

.local-map-pin {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem; right: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pin-icon {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pin-icon svg { color: var(--white); }

.pin-text h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--slate-900);
}

.pin-text p {
  font-size: .8rem;
  color: var(--slate-500);
}

.local-text h2 {
  margin-bottom: 1.25rem;
}

.local-text p {
  color: var(--slate-600);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.local-highlight {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--primary);
  font-weight: 700;
  font-size: .95rem;
}

/* ---------- 15. CTA & Contact Section ---------- */
#contato {
  background: var(--slate-50);
}

.cta-card {
  max-width: 52rem;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--slate-100);
}

.cta-grid {
  display: grid;
}

.cta-left {
  background: var(--primary);
  padding: 2.5rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.cta-left h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.cta-left p {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  line-height: 1.65;
}

.cta-perks {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: .75rem;
}

.cta-perk {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
}

.cta-perk svg { color: var(--accent); flex-shrink: 0; }

.cta-right {
  padding: 2.5rem;
}

.cta-right h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1.5rem;
}

/* Form */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: .4rem;
}

.form-group input {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-size: .95rem;
  font-family: inherit;
  color: var(--slate-900);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}

.form-group input::placeholder {
  color: var(--slate-400);
}

.btn-form {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  padding: 1.1rem;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 800;
  margin-top: .75rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(59,130,246,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}

.btn-form:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59,130,246,.4);
}

/* ---------- 16. Footer ---------- */
#footer {
  background: var(--white);
  border-top: 1px solid var(--slate-100);
  padding-block: 2.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  gap: 1.75rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--slate-600);
  font-size: .875rem;
  font-weight: 500;
  transition: color .2s;
}

.footer-link:hover { color: var(--primary); }

.footer-link svg { width: 18px; height: 18px; }

.footer-copy {
  color: var(--slate-400);
  font-size: .78rem;
}

/* ---------- 17. Floating WhatsApp Button ---------- */
#wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #25d366;
  color: var(--white);
  border-radius: var(--radius-full);
  padding: .875rem 1.25rem;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  font-size: .875rem;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}

#wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(37,211,102,.5);
}

#wa-float svg { width: 24px; height: 24px; flex-shrink: 0; }

.wa-label { display: none; }

/* ---------- 18. Responsive Breakpoints ---------- */

/* Tablet – 640px+ */
@media (min-width: 640px) {
  :root {
    --section-px: 2rem;
    --section-py: 5rem;
  }

  .problem-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wa-label { display: inline; }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Desktop – 1024px+ */
@media (min-width: 1024px) {
  :root {
    --section-px: 4rem;
    --section-py: 6rem;
  }

  .nav-desktop { display: flex; }
  .hamburger { display: none; }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }

  .problem-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .solution-inner {
    flex-direction: row;
    gap: 5rem;
    align-items: flex-start;
  }

  .solution-left { flex: 0 0 30%; }
  .solution-steps { flex: 1; }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .local-inner {
    grid-template-columns: 1fr 1fr;
  }

  .cta-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tech-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Large Desktop – 1280px+ */
@media (min-width: 1280px) {
  :root { --section-px: 5rem; }
}
