/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #07070f;
  --bg2: #0e0e1a;
  --bg3: #13131f;
  --purple: #7c3aed;
  --purple-light: #9d5ff5;
  --purple-glow: rgba(124, 58, 237, 0.25);
  --cyan: #06b6d4;
  --white: #f8fafc;
  --muted: #94a3b8;
  --border: rgba(255,255,255,0.08);
  --card-bg: rgba(255,255,255,0.04);
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}
.btn-primary.large { padding: 18px 36px; font-size: 16px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid var(--purple);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--purple);
  transform: translateY(-2px);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  text-align: center;
  padding: 9px 0;
  font-size: 13px;
  letter-spacing: 0.2px;
}
.top-bar strong { font-weight: 700; }

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}
#navbar.scrolled {
  background: rgba(7, 7, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo span { color: var(--purple-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.btn-nav {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff !important;
  border-radius: 50px;
  font-weight: 600 !important;
}
.btn-nav:hover { opacity: 0.9; transform: translateY(-1px); }

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

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 20px 0; }
.mobile-menu a {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--purple-light); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(124,58,237,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(6,182,212,0.08) 0%, transparent 60%);
}
.hero-inner {
  position: relative;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--purple-light);
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 40px;
  flex-wrap: wrap;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.stat-num {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  overflow: hidden;
}
.trust-label {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-logos span {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s;
}
.trust-logos span:hover { color: var(--white); }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-header p {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.featured-card {
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(6,182,212,0.08));
  border-color: rgba(124, 58, 237, 0.3);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.service-icon.aws { background: rgba(255, 153, 0, 0.15); }
.service-icon.azure { background: rgba(0, 120, 212, 0.15); }
.service-icon.gcp { background: rgba(66, 133, 244, 0.15); }
.service-icon.snow { background: rgba(41, 182, 246, 0.15); }
.service-icon.onprem { background: rgba(100, 116, 139, 0.15); }
.service-icon.code { background: rgba(124, 58, 237, 0.15); }
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tags li {
  padding: 4px 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

/* ===== PROXY ===== */
.proxy-section {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proxy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.proxy-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.proxy-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.proxy-points {
  margin-bottom: 36px;
}
.proxy-points li {
  font-size: 15px;
  color: var(--white);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.proxy-points li:last-child { border: none; }
.proxy-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.proxy-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s;
}
.proxy-card:hover {
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-2px);
}
.proxy-icon { font-size: 28px; margin-bottom: 12px; }
.proxy-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.proxy-card p { font-size: 13px; color: var(--muted); }

/* ===== PROCESS ===== */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
}
.step:hover {
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-4px);
}
.step-num {
  font-size: 40px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}
.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-content p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.step-arrow {
  color: var(--purple-light);
  font-size: 24px;
  padding: 0 12px;
  margin-top: 48px;
  flex-shrink: 0;
}

/* ===== PRICING ===== */
.pricing-section { background: var(--bg2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.pricing-card.popular {
  border-color: var(--purple);
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(6,182,212,0.05));
  transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.plan-name { font-size: 14px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.plan-price {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 8px;
  line-height: 1;
}
.plan-price span { font-size: 16px; font-weight: 400; color: var(--muted); }
.plan-desc { font-size: 14px; color: var(--muted); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.plan-features { margin-bottom: 32px; }
.plan-features li { padding: 8px 0; font-size: 14px; color: var(--muted); border-bottom: 1px solid var(--border); }
.plan-features li:last-child { border: none; }
.pricing-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 32px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-2px);
}
.stars { color: #fbbf24; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 700; }
.author-role { font-size: 12px; color: var(--muted); }

/* ===== FAQ ===== */
.faq-section { background: var(--bg2); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(124,58,237,0.4); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--card-bg);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-align: left;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(255,255,255,0.06); }
.faq-q span {
  font-size: 20px;
  color: var(--purple-light);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  background: var(--card-bg);
}
.faq-item.open .faq-a { display: block; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.contact-card:hover {
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-4px);
}
.no-link { cursor: default; }
.no-link:hover { transform: none; border-color: var(--border); }
.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}
.contact-icon.whatsapp { background: rgba(37, 211, 102, 0.15); color: #25d366; }
.contact-icon.email { background: rgba(124, 58, 237, 0.15); color: var(--purple-light); }
.contact-icon.social { background: rgba(6, 182, 212, 0.15); color: var(--cyan); }
.contact-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.contact-action { font-size: 13px; font-weight: 600; color: var(--purple-light); }
.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.social-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.social-links a:hover { color: var(--purple-light); }

.cta-banner {
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(6,182,212,0.08));
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
}
.cta-banner h3 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.cta-banner p { font-size: 16px; color: var(--muted); margin-bottom: 32px; }

/* ===== FOOTER ===== */
footer { padding: 80px 0 0; background: var(--bg2); border-top: 1px solid var(--border); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
}
.footer-brand .logo { font-size: 28px; font-weight: 800; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; max-width: 380px; }
.footer-contact { font-size: 13px !important; }
.footer-links { display: flex; gap: 60px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: var(--muted); margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .proxy-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: -4px auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 100px 0 60px; }
  .hero h1 { letter-spacing: -1px; }
  .hero-stats { padding: 20px; gap: 0; }
  .stat { padding: 12px 16px; }
  .stat-num { font-size: 26px; }
  .stat-divider { height: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-4px); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .cta-banner { padding: 40px 24px; }
  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .proxy-visual { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 60px; height: 1px; }
}
