/* ─── SHARED STYLES — e.com connect ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  background: #0a0a0a;
  color: #fafafa;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

:root {
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --bg-card-2: #1a1a1a;
  --border: #222;
  --border-light: #2e2e2e;
  --bg-light: #ffffff;
  --bg-gray: #f7f7f7;
  --bg-navy: #06091a;
  --text-white: #fafafa;
  --text-muted: #888;
  --text-dark: #0a0a0a;
  --accent: #e8532a;
  --accent-2: #ff6b35;
  --blue: #4f6bff;
  --blue-2: #3d5ce0;
  --gold: #f5a623;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ─── NAVBAR ─── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
nav.scrolled { background: rgba(10,10,10,0.98); }
.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--text-white); }
.nav-logo-icon {
  width:32px; height:32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  font-size:16px; font-weight:700;
}
.nav-logo-text { font-size:17px; font-weight:700; letter-spacing:-0.3px; }
.nav-links { display:flex; align-items:center; gap:32px; list-style:none; }
.nav-links a { text-decoration:none; color:rgba(250,250,250,0.7); font-size:14px; font-weight:500; transition:color var(--transition); }
.nav-links a:hover, .nav-links a.active { color:var(--text-white); }
.nav-cta { display:flex; align-items:center; gap:12px; }
.btn {
  display:inline-flex; align-items:center; gap:6px;
  padding:10px 20px; border-radius:var(--radius-pill);
  font-size:14px; font-weight:600; text-decoration:none;
  cursor:pointer; transition:all var(--transition); border:none; white-space:nowrap;
  font-family:inherit;
}
.btn-primary { background:linear-gradient(135deg,var(--accent),var(--accent-2)); color:#fff; box-shadow:0 4px 16px rgba(232,83,42,0.35); }
.btn-primary:hover { transform:translateY(-1px); box-shadow:0 6px 24px rgba(232,83,42,0.5); }
.btn-blue { background:linear-gradient(135deg,var(--blue),var(--blue-2)); color:#fff; box-shadow:0 4px 16px rgba(79,107,255,0.3); }
.btn-blue:hover { transform:translateY(-1px); box-shadow:0 6px 24px rgba(79,107,255,0.45); }
.btn-outline { background:transparent; color:var(--text-white); border:1px solid var(--border-light); }
.btn-outline:hover { background:rgba(255,255,255,0.06); border-color:#444; }
.btn-lg { padding:14px 32px; font-size:15px; }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.hamburger span { width:22px; height:2px; background:var(--text-white); border-radius:2px; }
.mobile-menu {
  display:none; position:fixed; top:64px; left:0; right:0; bottom:0;
  background:rgba(6,9,20,0.99); backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  padding:20px; z-index:999;
  flex-direction:column; gap:4px;
  overflow-y:auto; -webkit-overflow-scrolling:touch;
}
.mobile-menu.open { display:flex; }
.mobile-menu a { padding:12px 16px; text-decoration:none; color:rgba(250,250,250,0.8); font-size:15px; font-weight:500; border-radius:var(--radius); transition:all var(--transition); }
.mobile-menu a:hover { background:rgba(255,255,255,0.06); color:var(--text-white); }
.mobile-menu .mobile-cta { margin-top:8px; background:linear-gradient(135deg,var(--accent),var(--accent-2)); color:#fff; text-align:center; font-weight:700; }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 130px 24px 80px;
  text-align: center;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content:'';
  position:absolute; inset:0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  z-index:0;
}
.page-hero::after {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,30,8,0.65) 0%, rgba(100,10,0,0.25) 45%, transparent 68%);
  z-index:0;
}
.page-hero-inner { position:relative; z-index:1; max-width:760px; margin:0 auto; }
.page-breadcrumb {
  display:inline-flex; align-items:center; gap:6px;
  font-size:13px; color:rgba(250,250,250,0.5); margin-bottom:20px;
}
.page-breadcrumb a { text-decoration:none; color:rgba(250,250,250,0.5); transition:color var(--transition); }
.page-breadcrumb a:hover { color:var(--text-white); }
.page-hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 14px;
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius-pill); font-size:13px; font-weight:500;
  color:rgba(250,250,250,0.8); margin-bottom:24px;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800; letter-spacing:-1.5px; line-height:1.1;
  color:var(--text-white); margin-bottom:16px;
}
.page-hero h1 .highlight {
  background:linear-gradient(135deg,#ff7a5c,var(--accent-2),#ff9a6c);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.page-hero p {
  font-size:18px; color:var(--text-muted); line-height:1.7; max-width:540px; margin:0 auto 32px;
}
.page-hero-actions { display:flex; align-items:center; justify-content:center; gap:12px; flex-wrap:wrap; }

/* ─── CONTAINER ─── */
.container { max-width:1140px; margin:0 auto; padding:0 24px; }
.container-sm { max-width:760px; margin:0 auto; padding:0 24px; }

/* ─── SECTIONS ─── */
.section-dark { background:var(--bg-dark); padding:80px 0; }
.section-light { background:var(--bg-light); padding:80px 0; }
.section-gray { background:var(--bg-gray); padding:80px 0; }
.section-border-top { border-top:1px solid var(--border); }
.section-border-top-light { border-top:1px solid #e8e8e8; }

/* ─── TYPOGRAPHY ─── */
.eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  margin-bottom:16px;
}
.eyebrow-icon { width:20px; height:20px; border-radius:6px; display:flex; align-items:center; justify-content:center; font-size:11px; }
h2.dark-title { font-size:clamp(28px,4vw,48px); font-weight:800; letter-spacing:-1.5px; color:var(--text-white); line-height:1.1; margin-bottom:16px; }
h2.light-title { font-size:clamp(28px,4vw,48px); font-weight:800; letter-spacing:-1.5px; color:var(--text-dark); line-height:1.1; margin-bottom:16px; }
p.dark-sub { font-size:17px; color:var(--text-muted); line-height:1.7; }
p.light-sub { font-size:17px; color:#555; line-height:1.7; }

/* ─── CARDS ─── */
.card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:28px;
  transition:all var(--transition);
}
.card:hover { border-color:var(--border-light); transform:translateY(-2px); }
.card-light {
  background:#fff; border:1.5px solid #e5e5e5;
  border-radius:var(--radius-lg); padding:28px;
  transition:all var(--transition);
}
.card-light:hover { border-color:#ccc; box-shadow:0 6px 24px rgba(0,0,0,0.07); transform:translateY(-2px); }

/* ─── CTA MINI ─── */
.cta-strip {
  background:var(--bg-navy); padding:80px 0; text-align:center;
  position:relative; overflow:hidden;
}
.cta-strip::before {
  content:''; position:absolute; top:-80px; left:-80px; width:400px; height:400px;
  border-radius:50%; background:radial-gradient(circle,rgba(79,107,255,0.18),transparent 70%);
}
.cta-strip::after {
  content:''; position:absolute; bottom:-60px; right:-60px; width:350px; height:350px;
  border-radius:50%; background:radial-gradient(circle,rgba(232,83,42,0.12),transparent 70%);
}
.cta-strip-inner { position:relative; z-index:1; }
.cta-strip h2 { font-size:clamp(24px,4vw,44px); font-weight:800; letter-spacing:-1.5px; color:var(--text-white); margin-bottom:12px; }
.cta-strip p { font-size:17px; color:rgba(250,250,250,0.55); margin-bottom:32px; }
.cta-strip-actions { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }

/* ─── FOOTER ─── */
footer {
  background: linear-gradient(180deg, #06091a 0%, #0a0f28 40%, #080d1e 100%);
  border-top: 1px solid rgba(79,107,255,0.2);
  padding: 64px 0 32px;
  position: relative; overflow: hidden;
}
footer::before {
  content:''; position:absolute; top:-120px; left:-120px;
  width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle,rgba(79,107,255,0.12),transparent 70%);
  pointer-events:none;
}
footer::after {
  content:''; position:absolute; bottom:-80px; right:-80px;
  width:400px; height:400px; border-radius:50%;
  background:radial-gradient(circle,rgba(232,83,42,0.08),transparent 70%);
  pointer-events:none;
}
footer .container { position:relative; z-index:1; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr 1fr; gap:40px; margin-bottom:48px; }
.footer-brand-logo { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.footer-tagline { font-size:14px; color:var(--text-muted); line-height:1.6; max-width:220px; }
.footer-col-title { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--text-muted); margin-bottom:16px; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-links a { text-decoration:none; color:rgba(250,250,250,0.6); font-size:14px; transition:color var(--transition); }
.footer-links a:hover { color:var(--text-white); }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; padding-top:24px; border-top:1px solid rgba(255,255,255,0.06); }
.footer-copyright { font-size:13px; color:rgba(250,250,250,0.3); }
.footer-socials { display:flex; gap:12px; }
.footer-social {
  width:34px; height:34px;
  background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08);
  border-radius:8px; display:flex; align-items:center; justify-content:center;
  font-size:14px; text-decoration:none; color:rgba(250,250,250,0.6);
  transition:all var(--transition);
}
.footer-social:hover { border-color:rgba(255,255,255,0.15); color:var(--text-white); }

/* ─── FLOATING ─── */
.floating-actions { position:fixed; bottom:28px; right:28px; display:flex; flex-direction:column; gap:10px; z-index:999; }
.float-btn { width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:20px; text-decoration:none; box-shadow:0 4px 20px rgba(0,0,0,0.4); transition:all var(--transition); }
.float-btn:hover { transform:translateY(-3px); }
.float-wa { background:#22c55e; }
.float-mail { background:var(--accent); }

/* ─── REVEAL ANIMATIONS ─── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.6s cubic-bezier(0.4,0,0.2,1),transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:0.1s; }
.reveal-delay-2 { transition-delay:0.2s; }
.reveal-delay-3 { transition-delay:0.3s; }

/* ─── RESPONSIVE ─── */
@media(max-width:768px) {
  nav { padding:0 20px; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
}
@media(max-width:480px) {
  .footer-grid { grid-template-columns:1fr; }
}
