:root {
  --navy: #020f1e;
  --blue: #0057A8;
  --accent: #00C2FF;
  --accent2: #7B5CF0;
  --light: #F7F9FC;
  --gray: #6B7280;
  --white: #FFFFFF;
  --border: #E5E7EB;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', sans-serif; color: #111827; line-height: 1.6; background: #fff; }

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

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300; height: 68px; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(2,15,30,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo img { height: 52px; width: auto; display: block; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-contact { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.2s; }
.nav-contact:hover { color: var(--accent); }
.hamburger { width: 38px; height: 38px; display: flex; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; border-radius: 8px; padding: 7px; border: 1px solid rgba(255,255,255,0.12); transition: all 0.2s; }
.hamburger:hover { border-color: rgba(0,194,255,0.4); background: rgba(0,194,255,0.06); }
.hamburger span { width: 100%; height: 1.5px; background: rgba(255,255,255,0.85); border-radius: 2px; transition: all 0.3s; display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* DRAWER */
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 290; opacity: 0; pointer-events: none; transition: opacity 0.3s; backdrop-filter: blur(4px); }
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.drawer { position: fixed; top: 0; right: -380px; width: 340px; max-width: 92vw; height: 100vh; z-index: 295; background: linear-gradient(180deg, #0a1628 0%, #020f1e 100%); transition: right 0.4s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; padding: 88px 0 48px; border-left: 1px solid rgba(255,255,255,0.06); }
.drawer.open { right: 0; }
.drawer-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.3); padding: 0 32px 10px; }
.drawer a { display: flex; align-items: center; gap: 14px; padding: 14px 32px; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 15px; font-weight: 500; border-left: 2px solid transparent; transition: all 0.2s; }
.drawer a:hover, .drawer a.active { color: white; background: rgba(255,255,255,0.04); border-left-color: var(--accent); }
.drawer a .icon { font-size: 18px; width: 26px; text-align: center; }
.drawer-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 14px 32px; }
.drawer-cta { margin: 20px 32px 0; }
.drawer-cta a { background: linear-gradient(135deg, var(--accent), #0099cc); color: white !important; padding: 13px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; text-decoration: none; display: block; text-align: center; border-left: none !important; transition: opacity 0.2s; }
.drawer-cta a:hover { opacity: 0.88; }

/* PAGE HERO */
.page-hero { background: var(--navy); padding: 110px 40px 64px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,194,255,0.1), transparent 65%); pointer-events: none; }
.page-hero-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.page-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(30px, 4vw, 50px); font-weight: 900; color: white; margin-bottom: 18px; line-height: 1.1; letter-spacing: -1.5px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 620px; font-weight: 400; }

/* CONTENT */
.page-section { padding: 72px 40px 88px; max-width: 1140px; margin: 0 auto; }
.content-grid { display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start; }
.content-main h2 { font-size: 21px; font-weight: 800; color: #0d1117; margin: 40px 0 12px; letter-spacing: -0.5px; }
.content-main h2:first-child { margin-top: 0; }
.content-main p { font-size: 15px; color: #4B5563; line-height: 1.8; margin-bottom: 14px; }

.feature-list { list-style: none; margin: 4px 0 14px; }
.feature-list li { padding: 10px 0 10px 28px; position: relative; font-size: 14px; color: #374151; border-bottom: 1px solid #F3F4F6; line-height: 1.65; }
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 800; font-size: 14px; }

.step-list { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.step-item { display: flex; gap: 16px; align-items: flex-start; background: #F9FAFB; border: 1px solid #F3F4F6; border-radius: 12px; padding: 16px 18px; font-size: 14px; color: #374151; line-height: 1.65; transition: border-color 0.2s; }
.step-item:hover { border-color: rgba(0,194,255,0.3); }
.step-num { width: 28px; height: 28px; background: linear-gradient(135deg, var(--accent), #0099cc); color: white; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; flex-shrink: 0; margin-top: 1px; }

/* SIDEBAR */
.content-sidebar { position: sticky; top: 88px; }
.sidebar-card { background: var(--navy); border-radius: 20px; padding: 28px; margin-bottom: 16px; position: relative; overflow: hidden; }
.sidebar-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 180px; height: 180px; background: radial-gradient(circle, rgba(0,194,255,0.15), transparent 70%); pointer-events: none; }
.sc-icon { font-size: 32px; margin-bottom: 14px; }
.sidebar-card h3 { font-size: 16px; font-weight: 800; color: white; margin-bottom: 20px; }
.sc-stat { background: rgba(255,255,255,0.06); border-radius: 12px; padding: 14px; margin-bottom: 10px; text-align: center; border: 1px solid rgba(255,255,255,0.07); }
.sc-num { font-size: 26px; font-weight: 900; background: linear-gradient(135deg, var(--accent), #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sc-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.sc-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 16px 0; }
.sc-badge { font-size: 12px; color: rgba(255,255,255,0.7); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; gap: 6px; }
.sc-badge:last-child { border-bottom: none; }

.sidebar-cta { background: white; border: 1.5px solid var(--border); border-radius: 16px; padding: 24px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.sidebar-cta h4 { font-size: 15px; font-weight: 800; color: #0d1117; margin-bottom: 8px; letter-spacing: -0.3px; }
.sidebar-cta p { font-size: 13px; color: var(--gray); line-height: 1.65; margin-bottom: 16px; }
.sidebar-cta a { display: block; background: linear-gradient(135deg, var(--accent), #0099cc); color: white; text-align: center; padding: 12px; border-radius: 10px; font-weight: 700; font-size: 14px; text-decoration: none; transition: opacity 0.2s; box-shadow: 0 4px 16px rgba(0,194,255,0.25); }
.sidebar-cta a:hover { opacity: 0.88; }

/* OTHER SERVICES */
.other-services { background: #F9FAFB; padding: 48px 40px; border-top: 1px solid var(--border); }
.os-inner { max-width: 1140px; margin: 0 auto; }
.os-inner h3 { font-size: 18px; font-weight: 800; color: #0d1117; margin-bottom: 18px; letter-spacing: -0.5px; }
.os-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.os-card { display: flex; align-items: center; gap: 12px; background: white; border: 1.5px solid var(--border); border-radius: 12px; padding: 16px 20px; text-decoration: none; color: #0d1117; font-size: 14px; transition: all 0.2s; }
.os-card:hover { border-color: var(--accent); background: #EFF6FF; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.os-card span:first-child { font-size: 20px; }
.os-card strong { flex: 1; font-weight: 700; }
.os-arrow { color: var(--accent); font-weight: 700; transition: transform 0.2s; }
.os-card:hover .os-arrow { transform: translate(3px, -3px); }

/* CONTACT */
.contact-wrap { max-width: 960px; margin: 0 auto; padding: 72px 40px 88px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-form-box { background: white; border: 1.5px solid var(--border); border-radius: 20px; padding: 36px; box-shadow: 0 8px 40px rgba(0,0,0,0.06); }
.contact-form-box h2 { font-size: 22px; font-weight: 800; color: #0d1117; margin-bottom: 24px; letter-spacing: -0.5px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: #374151; margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid #E5E7EB; border-radius: 10px; font-size: 14px; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; background: #FAFAFA; color: #111827; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); background: white; box-shadow: 0 0 0 3px rgba(0,194,255,0.1); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-submit { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--accent), #0099cc); color: white; border: none; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; transition: opacity 0.2s; box-shadow: 0 4px 20px rgba(0,194,255,0.3); font-family: inherit; }
.form-submit:hover { opacity: 0.88; }
.contact-info h2 { font-size: 28px; font-weight: 900; color: #0d1117; margin-bottom: 16px; letter-spacing: -1px; }
.contact-info p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 32px; }
.ci-item { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.ci-icon { width: 44px; height: 44px; background: linear-gradient(135deg, #EFF6FF, #DBEAFE); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ci-text h5 { font-size: 13px; font-weight: 700; color: #0d1117; margin-bottom: 2px; }
.ci-text p, .ci-text a { font-size: 14px; color: var(--gray); text-decoration: none; }
.ci-text a:hover { color: var(--accent); }

/* FOOTER */
footer { background: #010c18; border-top: 1px solid rgba(255,255,255,0.05); padding: 60px 40px 28px; }
.footer-inner { max-width: 1140px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 32px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.75; max-width: 260px; }
.footer-links h5 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.25); margin-bottom: 14px; }
.footer-links a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; text-align: center; font-size: 12px; max-width: 1140px; margin: 0 auto; }
.footer-copy { color: rgba(255,255,255,0.2); }
.disclaimer { font-size: 11px; color: rgba(255,255,255,0.18); line-height: 1.6; margin-top: 8px; max-width: 800px; margin-left: auto; margin-right: auto; }

@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .contact-wrap { grid-template-columns: 1fr; padding: 48px 20px 64px; }
}
@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .page-hero { padding: 96px 20px 52px; }
  .page-section { padding: 48px 20px 64px; }
  .other-services { padding: 40px 20px; }
  footer { padding: 40px 20px 24px; }
  .footer-inner { flex-direction: column; }
}

/* DME CATEGORY CARDS */
.dme-cat { background: #F9FAFB; border: 1px solid #E5E7EB; border-radius: 12px; padding: 16px 18px; }
.dme-cat-title { font-size: 14px; font-weight: 700; color: #0d1117; margin-bottom: 6px; }
.dme-cat-items { font-size: 13px; color: #6B7280; line-height: 1.65; }
