:root {
  --primary: #000c1d;
  --accent: #0b6cf1;
  --accent-light: #4495ff;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --bg-subtle: #f8fafc;
  --glass: rgba(255, 255, 255, 0.85);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius: 16px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  background-color: white;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 40px;
  border-radius: 8px;
}

.brand-name {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--accent);
}

.cta-pill {
  background: var(--primary);
  color: white !important;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  transition: transform 0.2s !important;
}

.cta-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 4rem 5% 6rem;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  margin: 1.5rem 0;
  letter-spacing: -2px;
}

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

.badge-accent {
  display: inline-block;
  background: #ebf5ff;
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.btn-primary, .btn-secondary {
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-secondary {
  background: var(--bg-subtle);
  color: var(--text-main);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.hero-image-container {
  position: relative;
}

.floating-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.glass-tag {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 1rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid white;
}

.glass-tag img {
  width: 40px;
}

.glass-tag span {
  font-weight: 700;
  font-size: 0.9rem;
}

/* Feature Grid */
.section-services {
  padding: 6rem 5%;
  background: var(--bg-subtle);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 24px;
  transition: transform 0.3s ease;
  border: 1px solid rgba(0,0,0,0.03);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.icon-wrap {
  background: #f0f7ff;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.icon-wrap img {
  width: 44px;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Process */
.process-section {
  padding: 8rem 5%;
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.step {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.step-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
}

.step h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.process-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-box {
  background: var(--primary);
  color: white;
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
}

.stat-val {
  display: block;
  font-size: 3rem;
  font-weight: 800;
}

.stat-lbl {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Contact Section */
.contact-section {
  padding: 6rem 5%;
  background: #000c1d;
  color: white;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1.1rem;
  opacity: 0.7;
  margin-bottom: 2rem;
}

.phone-link {
  color: var(--accent-light);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.modern-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.modern-form input, 
.modern-form select, 
.modern-form textarea {
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 1rem;
}

.modern-form textarea {
  height: 120px;
  resize: none;
}

.btn-submit {
  background: var(--accent);
  color: white;
  border: none;
  padding: 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

.status-msg {
  font-size: 0.9rem;
}

/* Footer */
.footer {
  padding: 3rem 5%;
  background: #000c1d;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.5);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 900px) {
  .hero-visual, .process-inner, .contact-container, .feature-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    padding-top: 2rem;
  }

  .hero-content p {
    margin: 1.5rem auto 2.5rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .glass-tag {
    right: 10px;
    bottom: 10px;
  }

  .input-group {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .contact-info h2 {
    font-size: 2rem;
  }
}