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

:root {
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #60a5fa;
  --accent: #06b6d4;
  --bg-dark: #0a0e17;
  --bg-card: #111827;
  --bg-card-hover: #1e293b;
  --text-white: #f8fafc;
  --text-muted: #94a3b8;
  --text-light: #cbd5e1;
  --border: #1e293b;
  --success: #10b981;
  --warning: #f59e0b;
  --gradient-1: linear-gradient(135deg, #3b82f6, #06b6d4);
  --gradient-2: linear-gradient(135deg, #0a0e17 0%, #1a1f36 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

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

a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(59,130,246,0.1);
  transition: all 0.3s;
}
.navbar.scrolled { background: rgba(10,14,23,0.95); box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: 1200px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo .logo-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--gradient-1); display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: #fff;
}
.nav-logo span { font-size: 1.25rem; font-weight: 700; }
.nav-logo span em { font-style: normal; color: var(--primary-light); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); transition: color 0.3s; }
.nav-links a:hover { color: var(--text-white); }
.nav-cta {
  background: var(--gradient-1); color: #fff !important; padding: 10px 24px;
  border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(59,130,246,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--text-white); transition: 0.3s; border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative;
  padding-top: 80px; overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, rgba(59,130,246,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(6,182,212,0.08) 0%, transparent 50%),
              var(--bg-dark);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px;
  border-radius: 50px; background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25);
  font-size: 0.85rem; color: var(--primary-light); font-weight: 500; margin-bottom: 20px;
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero h1 .highlight { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 1.15rem; color: var(--text-muted); max-width: 500px; margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gradient-1); color: #fff; padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 1rem; border: none; cursor: pointer; display: inline-flex;
  align-items: center; gap: 8px; transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(59,130,246,0.35); }
.btn-secondary {
  background: transparent; color: var(--text-white); padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 1rem; border: 1px solid var(--border); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary-light); }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; }
.hero-stat h3 { font-size: 2rem; font-weight: 800; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-stat p { font-size: 0.85rem; color: var(--text-muted); }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-image-wrapper {
  width: 100%; max-width: 500px; aspect-ratio: 1; border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(6,182,212,0.2));
  border: 1px solid rgba(59,130,246,0.15);
}
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.floating-card {
  position: absolute; background: rgba(17,24,39,0.9); backdrop-filter: blur(10px);
  border: 1px solid rgba(59,130,246,0.2); border-radius: var(--radius); padding: 16px 20px;
  display: flex; align-items: center; gap: 12px; animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.floating-card.card-1 { bottom: -20px; left: -30px; animation-delay: 0s; }
.floating-card.card-2 { top: 20px; right: -30px; animation-delay: 2s; }
.floating-card .card-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--gradient-1); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.floating-card .card-text h4 { font-size: 0.85rem; font-weight: 600; }
.floating-card .card-text p { font-size: 0.75rem; color: var(--text-muted); }

/* ===== SECTION COMMON ===== */
section { padding: 100px 0; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block; padding: 6px 16px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  background: rgba(59,130,246,0.1); color: var(--primary-light); border: 1px solid rgba(59,130,246,0.2);
  margin-bottom: 16px;
}
.section-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ===== SERVICES ===== */
.services { background: var(--gradient-2); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 28px; transition: all 0.4s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-1); transform: scaleX(0); transition: transform 0.4s; transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(59,130,246,0.3); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px; background: rgba(59,130,246,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px;
}
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ===== PROCESS SECTION ===== */
.process { background: var(--bg-dark); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.process-step { text-align: center; position: relative; }
.process-step .step-number {
  width: 60px; height: 60px; border-radius: 50%; background: var(--gradient-1);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  font-weight: 800; margin: 0 auto 20px; position: relative; z-index: 1;
}
.process-step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 0.9rem; }
.process-step::after {
  content: ''; position: absolute; top: 30px; left: 60%; width: 80%;
  height: 2px; background: rgba(59,130,246,0.2);
}
.process-step:last-child::after { display: none; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; }
.about-content > p { color: var(--text-muted); margin-bottom: 24px; font-size: 1.05rem; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.about-feature { display: flex; gap: 14px; align-items: flex-start; }
.about-feature .check { width: 28px; height: 28px; border-radius: 8px; background: rgba(16,185,129,0.15); color: var(--success); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; }
.about-feature div h4 { font-size: 1rem; font-weight: 600; margin-bottom: 2px; }
.about-feature div p { font-size: 0.9rem; color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--gradient-2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; transition: all 0.3s;
}
.testimonial-card:hover { border-color: rgba(59,130,246,0.3); transform: translateY(-4px); }
.stars { color: var(--warning); font-size: 0.9rem; margin-bottom: 16px; display: flex; gap: 2px; }
.testimonial-card blockquote { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-1); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; }
.testimonial-author h4 { font-size: 0.95rem; font-weight: 600; }
.testimonial-author p { font-size: 0.8rem; color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 50px; height: 50px; border-radius: 14px; background: rgba(59,130,246,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--primary-light); flex-shrink: 0;
}
.contact-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.contact-item p { color: var(--text-muted); font-size: 0.95rem; }
.contact-item a { color: var(--primary-light); }
.contact-item a:hover { text-decoration: underline; }
.contact-form {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 8px; color: var(--text-light); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--bg-dark); color: var(--text-white); font-family: 'Inter', sans-serif;
  font-size: 0.95rem; transition: border 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== DISCLAIMER BANNER ===== */
.disclaimer-banner {
  background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius); padding: 20px 24px; margin: 40px 0; text-align: center;
}
.disclaimer-banner p { color: var(--warning); font-size: 0.9rem; font-weight: 500; }

/* ===== FOOTER ===== */
.footer { background: #060910; padding: 60px 0 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--text-muted); margin: 16px 0; font-size: 0.9rem; max-width: 300px; }
.footer h4 { font-size: 1rem; font-weight: 600; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.3s; }
.footer ul li a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0; margin-top: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-links a:hover { color: var(--primary-light); }

/* ===== CALL BAR ===== */
.call-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: rgba(10,14,23,0.95); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(59,130,246,0.2); padding: 12px 24px;
  display: flex; justify-content: center; align-items: center; gap: 16px;
  transform: translateY(100%); animation: slideUp 0.5s 2s forwards;
}
@keyframes slideUp { to { transform: translateY(0); } }
.call-bar p { color: var(--text-muted); font-size: 0.9rem; }
.call-bar a {
  background: var(--gradient-1); color: #fff; padding: 10px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.3s;
}
.call-bar a:hover { transform: scale(1.05); }

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2001;
  background: rgba(17,24,39,0.98); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(59,130,246,0.2); padding: 20px 24px;
  display: flex; justify-content: center; align-items: center; gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { color: var(--text-muted); font-size: 0.85rem; max-width: 600px; }
.cookie-banner a { color: var(--primary-light); text-decoration: underline; }
.cookie-btn {
  background: var(--gradient-1); color: #fff; padding: 10px 24px; border-radius: 50px;
  font-weight: 600; font-size: 0.85rem; border: none; cursor: pointer; white-space: nowrap;
}

/* ===== LEGAL PAGES ===== */
.legal-page { padding-top: 120px; padding-bottom: 80px; }
.legal-page h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 8px; }
.legal-page .last-updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 40px; }
.legal-page h2 { font-size: 1.4rem; font-weight: 700; margin-top: 36px; margin-bottom: 14px; color: var(--text-white); }
.legal-page p, .legal-page li { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 12px; }
.legal-page ul { padding-left: 24px; list-style: disc; }
.legal-page a { color: var(--primary-light); }
.legal-page a:hover { text-decoration: underline; }

/* ===== POPUP ===== */
.popup-overlay {
  position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.popup-overlay.active { display: flex; }
.popup-card {
  background: var(--bg-card); border: 1px solid rgba(59,130,246,0.2); border-radius: var(--radius-lg);
  padding: 40px; max-width: 420px; width: 100%; text-align: center; position: relative;
  animation: popIn 0.4s ease;
}
@keyframes popIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.popup-close {
  position: absolute; top: 14px; right: 14px; background: none; border: none;
  color: var(--text-muted); font-size: 1.4rem; cursor: pointer; transition: color 0.3s;
}
.popup-close:hover { color: var(--text-white); }
.popup-card h3 { font-size: 1.4rem; font-weight: 700; margin: 16px 0 8px; }
.popup-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; }
.popup-card .btn-primary { width: 100%; justify-content: center; padding: 16px; font-size: 1.1rem; }

/* ===== MAP ===== */
.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 350px; border: none; filter: brightness(0.8) contrast(1.1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.5rem; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { order: -1; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(10,14,23,0.98); padding: 20px; gap: 16px; border-bottom: 1px solid var(--border); }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 24px; }
  .hero-stat h3 { font-size: 1.5rem; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .floating-card { display: none; }
  .process-grid { grid-template-columns: 1fr; }
}
