/* ============================================================
   LinkmeID — Hoja de estilos principal
   ============================================================ */

/* ---------- Reset & Variables ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue:        #3B9DD6;
  --blue-dark:   #2480B8;
  --blue-light:  #5BB8E8;
  --blue-pale:   #E8F4FB;
  --gray:        #8A8A95;
  --gray-light:  #B4B4BE;
  --dark:        #1A2535;
  --dark2:       #243044;
  --text:        #2C3E50;
  --muted:       #6B7A8D;
  --light:       #F4F8FC;
  --border:      #D8E6F0;
  --white:       #FFFFFF;

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; }

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Section base ---------- */
.sec { padding: 5rem 2rem; }
.sec-inner { max-width: 1100px; margin: 0 auto; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.sec-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.sec-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
}
.sec-hd { margin-bottom: 3.5rem; }
.sec-hd.center { text-align: center; }
.sec-hd.center .sec-sub { margin: 0 auto; }

/* ---------- Divider ---------- */
.div-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), rgba(91,184,232,.4), transparent);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.topnav.scrolled { box-shadow: 0 2px 20px rgba(59,157,214,.1); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.nav-logo-text span { color: var(--blue); }

.nav-links {
  display: flex;
  gap: 22px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--blue); }

.nav-cta {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* Hamburger — mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, #0d1f35 0%, #12283d 45%, #0a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem 5rem;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-orb.orb1 { width: 500px; height: 500px; background: #3B9DD6; top: -150px; right: -100px; opacity: .22; }
.hero-orb.orb2 { width: 320px; height: 320px; background: #5BB8E8; bottom: -80px; left: -60px;  opacity: .18; }
.hero-orb.orb3 { width: 200px; height: 200px; background: #8A8A95; top: 50%; left: 32%;         opacity: .10; }

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,157,214,.15);
  border: 1px solid rgba(59,157,214,.35);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  font-size: 13px;
  color: #7ecef0;
  margin-bottom: 2rem;
  animation: fadeUp .8s ease both;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.6); opacity: .5; }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s .1s ease both;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue-light);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  animation: fadeUp .8s .2s ease both;
}
.hero-desc strong { color: rgba(255,255,255,.85); }

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .8s .3s ease both;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 3.5rem;
  flex-wrap: wrap;
  animation: fadeUp .8s .45s ease both;
}
.h-stat-num   { font-size: 1.8rem; font-weight: 700; color: var(--blue-light); }
.h-stat-label { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; }
.h-divider    { width: 1px; background: rgba(255,255,255,.12); }

/* Floating info tags */
.f-tag {
  position: absolute;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 12px;
  color: rgba(255,255,255,.75);
  pointer-events: none;
  animation: ftFloat 6s ease-in-out infinite;
}
.f-tag .ft-label { font-size: 10px; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.f-tag .ft-value { font-weight: 600; font-size: 13px; }

.ft1 { top: 18%; left: 4%;  animation-delay: 0s;  }
.ft2 { top: 22%; right: 4%; animation-delay: -2s; }
.ft3 { bottom: 22%; left: 6%;  animation-delay: -4s; }
.ft4 { bottom: 28%; right: 5%; animation-delay: -1s; }

@keyframes ftFloat {
  0%,100% { transform: translateY(0);    }
  50%      { transform: translateY(-12px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ============================================================
   BUTTONS (global)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59,157,214,.4);
}
.btn-wa {
  background: #25d366;
  color: #fff;
}
.btn-wa:hover { background: #1da854; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.45);
}
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline-blue:hover { background: var(--blue-pale); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: var(--light); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 12px 32px rgba(59,157,214,.12);
}
.step-num-bg {
  position: absolute;
  top: -14px; right: 12px;
  font-size: 5rem;
  font-weight: 700;
  color: var(--blue);
  opacity: .06;
  line-height: 1;
  pointer-events: none;
}
.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}
.step-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: .5rem; }
.step-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   NFC SECTION
   ============================================================ */
.nfc-sec {
  background: var(--white);
  padding: 3.5rem 2rem;
  text-align: center;
}
.nfc-rings {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 80px;
  height: 80px;
  margin: 1.5rem auto;
}
.nfc-ring {
  border: 2px solid var(--blue);
  border-radius: 50%;
  position: absolute;
  animation: nfcP 2.2s ease-out infinite;
  opacity: 0;
}
.r1 { width: 20px; height: 20px; animation-delay: 0s;    }
.r2 { width: 40px; height: 40px; animation-delay: .35s; border-color: var(--blue-light); }
.r3 { width: 60px; height: 60px; animation-delay: .70s; border-color: rgba(59,157,214,.5); }
.r4 { width: 80px; height: 80px; animation-delay:1.05s; border-color: rgba(59,157,214,.2); }
.nfc-center {
  width: 20px; height: 20px;
  background: var(--blue);
  border-radius: 50%;
  position: absolute;
}
@keyframes nfcP {
  0%   { opacity: .85; transform: scale(.2); }
  100% { opacity: 0;   transform: scale(1);  }
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-section { background: var(--white); }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.prod-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.prod-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(59,157,214,.04), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.prod-card:hover { transform: translateY(-7px); border-color: var(--blue); box-shadow: 0 16px 40px rgba(59,157,214,.13); }
.prod-card:hover::after { opacity: 1; }
.prod-card.featured { border-color: var(--blue); background: linear-gradient(135deg, #EBF5FC, var(--white)); }

.prod-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.pb-blue  { background: rgba(59,157,214,.12); color: #2480B8; border: 1px solid rgba(59,157,214,.25); }
.pb-gray  { background: rgba(138,138,149,.10); color: #5a5a65; border: 1px solid rgba(138,138,149,.2); }
.pb-green { background: rgba(34,197,94,.10);   color: #16a34a; border: 1px solid rgba(34,197,94,.2); }
.pb-amber { background: rgba(245,158,11,.10);  color: #b45309; border: 1px solid rgba(245,158,11,.2); }

.prod-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
}
.prod-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.prod-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 1.25rem; }
.prod-price   { font-size: 1.5rem; font-weight: 700; color: var(--blue); margin-bottom: .75rem; }
.prod-price span { font-size: 13px; font-weight: 400; color: var(--muted); }

.prod-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 11px;
  color: var(--muted);
  background: var(--light);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* ============================================================
   PROFILE SECTION
   ============================================================ */
.profile-section { background: var(--light); }

.profile-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* Phone mockup */
.phone-frame {
  width: 260px;
  margin: 0 auto;
  background: #e2e2e8;
  border-radius: 38px;
  border: 2px solid #ccc;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  animation: phoneFloat 5s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%,100% { transform: translateY(0)    rotate(-1deg); }
  50%      { transform: translateY(-14px) rotate(1deg); }
}
.phone-screen {
  background: #f8fafc;
  border-radius: 30px;
  overflow: hidden;
  min-height: 430px;
}
.phone-notch {
  height: 26px;
  background: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notch-dot { width: 10px; height: 10px; background: #333; border-radius: 50%; }
.ph-body { padding: 18px 14px; }
.ph-avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px; font-weight: 700; color: #fff;
}
.ph-name { text-align: center; font-size: 15px; font-weight: 700; color: #1a2535; margin-bottom: 2px; }
.ph-role { text-align: center; font-size: 11px; color: #6B7A8D; margin-bottom: 14px; }
.ph-btns { display: flex; gap: 6px; justify-content: center; margin-bottom: 14px; }
.ph-btn { padding: 6px 12px; border-radius: var(--radius-full); font-size: 11px; font-weight: 600; border: none; cursor: pointer; }
.ph-btn-b { background: var(--blue); color: #fff; }
.ph-btn-g { background: #25d366;   color: #fff; }
.ph-links { display: flex; flex-direction: column; gap: 7px; }
.ph-link {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 11px;
  padding: 9px 11px;
  font-size: 11px;
  color: #2C3E50;
}
.ph-lico {
  width: 26px; height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* Profile info */
.prof-info h2 { font-size: 1.9rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; line-height: 1.3; }
.prof-info p  { font-size: 14.5px; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }
.feat-list { display: flex; flex-direction: column; gap: 10px; }
.feat-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); }
.fi-check {
  width: 20px; height: 20px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(59,157,214,.12);
  border: 1px solid rgba(59,157,214,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--blue);
  margin-top: 1px;
}

/* ============================================================
   SOLUTIONS
   ============================================================ */
.solutions-section { background: var(--white); }

.sol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}
.sol-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}
.sol-card:hover {
  background: var(--blue-pale);
  border-color: var(--blue);
  transform: translateY(-4px);
}
.sol-icon { font-size: 26px; color: var(--blue); margin-bottom: 10px; }
.sol-card span { font-size: 13px; font-weight: 500; color: var(--text); }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, #0d1f35, #12283d);
  padding: 4rem 2rem;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-num   { font-size: 2.8rem; font-weight: 700; color: var(--blue-light); margin-bottom: 6px; }
.stat-label { font-size: 13.5px; color: rgba(255,255,255,.5); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--light); }

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.test-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}
.test-card:hover { box-shadow: 0 8px 28px rgba(59,157,214,.1); transform: translateY(-4px); }
.test-stars  { color: var(--blue); font-size: 16px; letter-spacing: 2px; margin-bottom: 10px; }
.test-text   { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 10px; }
.test-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.test-name { font-size: 13px; font-weight: 600; color: var(--dark); }
.test-role { font-size: 11px; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--light); }

.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--blue); }
.faq-q {
  padding: 1.2rem 1.5rem;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--blue-pale); }
.faq-tog { font-size: 20px; color: var(--blue); flex-shrink: 0; transition: transform .3s; font-weight: 300; line-height: 1; }
.faq-item.open .faq-tog { transform: rotate(45deg); }
.faq-a {
  padding: 0 1.5rem;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.2rem; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  background: linear-gradient(150deg, #0d1f35, #0f2840);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .2;
  background: var(--blue);
  width: 600px; height: 600px;
  top: -250px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #fff; margin-bottom: 1rem; }
.cta-inner h2 em { font-style: normal; color: var(--blue-light); }
.cta-inner p { font-size: 1.05rem; color: rgba(255,255,255,.6); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #08131e;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-text { font-size: 1.3rem; font-weight: 700; color: #fff; }
.footer-logo-text span { color: var(--blue-light); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-nav a:hover { color: rgba(255,255,255,.75); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.2); text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .topnav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 57px; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 18px;
    z-index: 99;
  }
  .topnav.menu-open .nav-cta { display: block; width: 100%; text-align: center; }

  .f-tag { display: none; }
  .profile-wrap { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .h-divider { display: none; }
}

@media (max-width: 480px) {
  .sec { padding: 3.5rem 1.25rem; }
  .hero { padding: 6rem 1.25rem 3.5rem; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .cta-btns  .btn { width: 100%; justify-content: center; }
}
