/* ============================================
   TOC TOC TOC — Main Stylesheet
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:      #4F63FF;
  --primary-dark: #3346e0;
  --primary-light:#EEF2FF;
  --dark:         #0E1525;
  --dark-2:       #1a2340;
  --text:         #2d3748;
  --text-muted:   #64748b;
  --white:        #ffffff;
  --bg:           #f8f9fe;
  --border:       #e2e8f0;
  --green:        #22c55e;
  --wa-green:     #25D366;
  --radius:       14px;
  --radius-sm:    8px;
  --shadow:       0 4px 24px rgba(79,99,255,.10);
  --shadow-lg:    0 12px 48px rgba(79,99,255,.18);
  --transition:   all .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 100px 0; }

/* ---- Typography helpers ---- */
.text-accent       { color: var(--primary); }
.text-accent-light { color: #a5b4fc; }

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin: 12px 0 16px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 14px;
  border-radius: 100px;
}
.section-tag.light {
  background: rgba(255,255,255,.15);
  color: #fff;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(79,99,255,.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79,99,255,.45);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-lg { padding: 15px 32px; font-size: 1rem; }

.btn-email {
  background: var(--primary);
  color: var(--white);
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(79,99,255,.3);
}
.btn-email:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: var(--wa-green);
  color: var(--white);
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: #1ebe5e;
  transform: translateY(-2px);
}
.btn-call {
  background: transparent;
  color: var(--text-muted);
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: .95rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
}
.btn-call:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(14,21,37,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(14,21,37,.99);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 36px;
  width: auto;
  filter: invert(1); /* white logo on dark navbar */
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav-cta { margin-left: 16px; }
.nav-cta .btn-primary { padding: 10px 22px; font-size: .88rem; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(79,99,255,.08) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(79,99,255,.06) 0%, transparent 50%),
    radial-gradient(1.5px 1.5px at 30px 30px, rgba(79,99,255,.18) 0%, transparent 100%);
  background-size: 100% 100%, 100% 100%, 60px 60px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border: 1px solid rgba(79,99,255,.2);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .04em;
  margin-bottom: 28px;
  animation: fadeInDown .6s ease;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,.1); }
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
  animation: fadeInUp .7s ease .1s both;
}
.hero-sub {
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  animation: fadeInUp .7s ease .2s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp .7s ease .3s both;
}
.arrow { font-style: normal; }
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  animation: fadeInUp .7s ease .4s both;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 40px;
  max-width: 580px;
  margin: 0 auto;
}
.stat-item { text-align: center; padding: 0 36px; }
.stat-item p { font-size: .82rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
}
.stat-plus { font-size: 1.4rem; font-weight: 900; color: var(--primary); }
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid var(--border);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79,99,255,.2);
}
.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
}
.service-icon svg { width: 48px; height: 48px; }
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.card-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}
.card-link:hover { gap: 6px; opacity: .8; }

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap { position: relative; display: inline-block; width: 100%; }
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  background: var(--primary-light);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-placeholder {
  width: 70%;
  opacity: .8;
}
.about-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.badge-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.badge-label {
  font-size: .75rem;
  font-weight: 500;
  opacity: .85;
  line-height: 1.3;
}
.about-content { padding-left: 20px; }
.about-content .section-tag { margin-bottom: 16px; }
.about-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}
.about-lead {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 500;
}
.about-content > p {
  color: var(--text-muted);
  margin-bottom: 28px;
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: .95rem;
  font-weight: 500;
}
.check-icon {
  width: 22px; height: 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ============================================
   NUMBERS
   ============================================ */
.numbers {
  background: var(--dark);
  padding: 80px 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.number-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,.1);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}
.number-item:last-child { border-right: none; }
.number-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.number-val {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.number-plus {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}
.number-item p {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  font-weight: 500;
  margin-top: 8px;
}

/* ============================================
   PROJECTS
   ============================================ */
.projects { background: var(--bg); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.project-card { border-radius: var(--radius); overflow: hidden; }
.project-card.large { grid-column: 1 / 3; }
.project-img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #c3cfe2 0%, #f5f7fa 100%);
  cursor: pointer;
}
.project-card.large .project-img { aspect-ratio: 16/9; }
.project-img-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.project-img-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.project-img-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.project-img-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.project-img-5 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,21,37,.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}
.project-img:hover .project-overlay { opacity: 1; }
.project-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
  width: fit-content;
}
.project-overlay h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.project-link {
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
}
.project-link:hover { color: var(--white); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
}
.testi-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testi-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  margin-top: -16px;
  box-shadow: var(--shadow-lg);
}
.testi-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-card.featured .testi-stars { color: #fde68a; }
.testi-text {
  color: var(--text);
  font-size: .95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-card.featured .testi-text { color: rgba(255,255,255,.9); }
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 42px; height: 42px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-card.featured .testi-avatar {
  background: rgba(255,255,255,.25);
}
.testi-author strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
  font-size: .95rem;
}
.testi-card.featured .testi-author strong { color: var(--white); }
.testi-author span {
  font-size: .8rem;
  color: var(--text-muted);
}
.testi-card.featured .testi-author span { color: rgba(255,255,255,.7); }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--dark); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin: 16px 0 20px;
}
.contact-content > p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon { font-size: 1.3rem; }
.contact-detail strong {
  display: block;
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
}
.contact-detail span {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
}

.cta-box {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.cta-box h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.cta-box > p {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 24px;
}
.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.cta-divider {
  text-align: center;
  position: relative;
  margin: 16px 0;
}
.cta-divider::before, .cta-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 90px);
  height: 1px;
  background: var(--border);
}
.cta-divider::before { left: 0; }
.cta-divider::after  { right: 0; }
.cta-divider span {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--dark-2); padding-top: 80px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
  filter: invert(1);
}
.footer-brand > p {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 260px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--primary);
  color: var(--white);
}
.footer-links h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a, .footer-links li span {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  transition: var(--transition);
}
.footer-links li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}
.footer-bottom p {
  text-align: center;
  color: rgba(255,255,255,.35);
  font-size: .82rem;
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: var(--transition);
  animation: floatIn .5s ease .8s both;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
}
@keyframes floatIn {
  from { opacity: 0; transform: scale(.6) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .section-pad { padding: 72px 0; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { max-width: 400px; margin: 0 auto; }
  .about-badge-float { right: -12px; bottom: -12px; }
  .about-content { padding-left: 0; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .number-item:nth-child(2) { border-right: none; }
  .number-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.1); }
  .number-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testi-card.featured { margin-top: 0; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card.large { grid-column: 1 / 3; }
}

@media (max-width: 768px) {
  .nav-links { 
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(14,21,37,.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link { padding: 12px 16px; font-size: 1rem; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero-stats { padding: 20px 16px; gap: 0; }
  .stat-item { padding: 0 16px; }
  .stat-num { font-size: 1.6rem; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.large { grid-column: 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { flex-direction: column; padding: 20px; gap: 12px; }
  .stat-divider { width: 80%; height: 1px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .btn-lg { justify-content: center; }
  .cta-box { padding: 28px 20px; }
}
