/* ============================================================
   NexoPay – Fintech Website Global Styles
   Modern European FinTech Design · 2026
   ============================================================ */

:root {
  --primary: #0A2540;
  --accent: #00C6FF;
  --accent2: #7B61FF;
  --success: #00D4A0;
  --warning: #FFB800;
  --danger: #FF4757;
  --text: #1A1A2E;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --bg: #F8FAFD;
  --bg-card: #FFFFFF;
  --border: #E2E8F0;
  --gradient: linear-gradient(135deg, #0A2540 0%, #1a3a6b 50%, #0f2a4a 100%);
  --gradient-accent: linear-gradient(135deg, #00C6FF 0%, #7B61FF 100%);
  --gradient-hero: linear-gradient(135deg, #0A2540 0%, #162C4F 40%, #1B3A6B 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section.bg-light { background: #F0F4FF; }
.section.bg-dark { background: var(--primary); color: white; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-header p { color: var(--text-muted); margin-top: 0.75rem; font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  background: rgba(123, 97, 255, 0.1);
  color: var(--accent2);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(123, 97, 255, 0.2);
}

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(10, 37, 64, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 1000;
  padding: 0.85rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: -0.02em;
}

.logo-icon {
  color: var(--accent);
  font-size: 1.5rem;
}

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

.nav-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-menu a:hover, .nav-menu a.active {
  color: white;
  background: rgba(255,255,255,0.08);
}

.btn-nav {
  background: var(--gradient-accent) !important;
  color: white !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}

.nav-toggle-checkbox { display: none; }
.nav-hamburger { display: none; cursor: pointer; font-size: 1.5rem; color: white; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 198, 255, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0, 198, 255, 0.4); }

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

.btn-secondary {
  background: var(--bg-card);
  color: var(--primary);
  box-shadow: var(--shadow);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-white {
  background: white;
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  background: var(--gradient-hero);
  padding: 9rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 90vh;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 198, 255, 0.12);
  border: 1px solid rgba(0, 198, 255, 0.3);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 { color: white; margin-bottom: 1.25rem; }
.hero-subtitle { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 2rem; max-width: 500px; }

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stats .stat { display: flex; flex-direction: column; }
.hero-stats strong { color: white; font-size: 1.5rem; font-weight: 800; }
.hero-stats span { color: rgba(255,255,255,0.55); font-size: 0.82rem; }

.hero-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.hero-image img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius-xl); }

/* ── FEATURES BAND ─────────────────────────────────── */
.features-band {
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
}

.features-band .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.feature-item {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-item span { font-size: 1.1rem; }

/* ── SERVICE CARDS ─────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(123, 97, 255, 0.3);
}

.service-card.featured {
  background: var(--gradient-hero);
  color: white;
  border: none;
}

.service-card.featured h3, .service-card.featured p { color: rgba(255,255,255,0.85); }
.service-card.featured .card-link { color: var(--accent); }

.service-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: rgba(123, 97, 255, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(123, 97, 255, 0.15);
}

.service-card.featured .service-icon { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.15); }

.service-card h3 { font-size: 1.15rem; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; flex: 1; }
.card-link { color: var(--accent2); font-size: 0.88rem; font-weight: 600; }

/* ── ABOUT PREVIEW ─────────────────────────────────── */
.about-preview { background: var(--primary); padding: 6rem 1.5rem; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-xl); }

.about-badge-float {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent2);
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}

.about-text { color: white; }
.about-text .section-tag { background: rgba(0,198,255,0.1); border-color: rgba(0,198,255,0.2); color: var(--accent); }
.about-text h2 { color: white; margin-bottom: 1.25rem; }
.about-text p { color: rgba(255,255,255,0.72); margin-bottom: 1.5rem; font-size: 1.05rem; }

.about-list { margin-bottom: 2rem; }
.about-list li { color: rgba(255,255,255,0.78); font-size: 0.95rem; padding: 0.4rem 0; }

/* ── TESTIMONIALS ─────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.stars { color: #FFB800; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p { color: var(--text-muted); font-size: 0.95rem; font-style: italic; margin-bottom: 1.25rem; }

.testimonial-author { display: flex; flex-direction: column; }
.testimonial-author strong { font-size: 0.95rem; color: var(--text); }
.testimonial-author span { font-size: 0.82rem; color: var(--text-light); }

/* ── CTA SECTION ─────────────────────────────────── */
.cta-section {
  background: var(--gradient-hero);
  padding: 5rem 1.5rem;
  text-align: center;
}

.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-section h2 { color: white; margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ─────────────────────── */
.page-hero {
  background: var(--gradient-hero);
  padding: 8rem 1.5rem 4rem;
  text-align: center;
}

.page-hero h1 { color: white; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }
.page-hero .breadcrumb { color: rgba(255,255,255,0.45); font-size: 0.85rem; margin-bottom: 1.5rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb a:hover { color: var(--accent); }

/* ── FEATURE LIST / TWO-COL ──────────────────────── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col-grid.reverse { direction: rtl; }
.two-col-grid.reverse > * { direction: ltr; }

.feature-list { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0 2rem; }
.feature-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-list-icon {
  width: 44px;
  height: 44px;
  background: rgba(123,97,255,0.08);
  border: 1px solid rgba(123,97,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-list-item h4 { margin-bottom: 0.2rem; }
.feature-list-item p { color: var(--text-muted); font-size: 0.92rem; }

.col-image img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); }

/* ── STATS BAND ──────────────────────────────────── */
.stats-band {
  background: var(--gradient-hero);
  padding: 4rem 0;
}

.stats-band .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item span { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ── CARD GRID ──────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(123,97,255,0.25); }

.card-icon {
  font-size: 1.8rem;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0,198,255,0.1), rgba(123,97,255,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); font-size: 0.93rem; }

/* ── PRICING ──────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.popular {
  background: var(--gradient-hero);
  color: white;
  border: none;
  transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-card .plan-name { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent2); margin-bottom: 0.5rem; }
.pricing-card.popular .plan-name { color: var(--accent); }
.pricing-card .price { font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 0.25rem; }
.pricing-card .price-period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-card.popular .price, .pricing-card.popular .price-period { color: rgba(255,255,255,0.85); }

.pricing-features { margin-bottom: 2rem; }
.pricing-features li {
  padding: 0.45rem 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.pricing-card.popular .pricing-features li { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.1); }
.pricing-features li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }

/* ── FAQ ──────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: rgba(123,97,255,0.3); box-shadow: var(--shadow-sm); }

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
}

.faq-toggle { font-size: 1.2rem; color: var(--accent2); transition: var(--transition); }

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

/* FAQ accordion JS-free via details */
details.faq-item summary { list-style: none; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item[open] .faq-toggle { transform: rotate(45deg); }
details.faq-item[open] { border-color: rgba(123,97,255,0.3); box-shadow: var(--shadow-sm); }

/* ── BLOG ──────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.blog-card-img { width: 100%; height: 220px; object-fit: cover; border-radius: 0; }

.blog-card-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block;
  background: rgba(123,97,255,0.08);
  color: var(--accent2);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; line-height: 1.4; }
.blog-card p { color: var(--text-muted); font-size: 0.9rem; }
.blog-meta { margin-top: 1rem; font-size: 0.82rem; color: var(--text-light); display: flex; gap: 1rem; }

/* ── TEAM GRID ──────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card-img { width: 100%; height: 240px; object-fit: cover; }
.team-card-body { padding: 1.25rem; }
.team-card h4 { margin-bottom: 0.25rem; }
.team-card span { color: var(--text-muted); font-size: 0.85rem; }
.team-card .social-link { color: var(--accent2); font-size: 0.82rem; margin-top: 0.5rem; display: block; }

/* ── CONTACT ──────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(123,97,255,0.08);
  border: 1px solid rgba(123,97,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h4 { margin-bottom: 0.2rem; }
.contact-info-item p { color: var(--text-muted); font-size: 0.9rem; }

.contact-form { background: white; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow); }
.contact-form h3 { margin-bottom: 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent2);
  background: white;
  box-shadow: 0 0 0 3px rgba(123,97,255,0.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ── CAREERS ──────────────────────────────────── */
.job-list { display: flex; flex-direction: column; gap: 1rem; max-width: 860px; margin: 0 auto; }

.job-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.job-card:hover { transform: translateX(4px); border-color: rgba(123,97,255,0.3); box-shadow: var(--shadow); }

.job-info { flex: 1; }
.job-info h4 { margin-bottom: 0.35rem; }
.job-meta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.job-tag {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  background: rgba(0,198,255,0.08);
  color: #0080a0;
  border: 1px solid rgba(0,198,255,0.2);
}
.job-tag.remote { background: rgba(0,212,160,0.08); color: #006b4f; border-color: rgba(0,212,160,0.2); }
.job-tag.dept { background: rgba(123,97,255,0.08); color: var(--accent2); border-color: rgba(123,97,255,0.2); }

/* ── SECURITY ──────────────────────────────────── */
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.security-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.security-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.security-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.security-card h3 { margin-bottom: 0.75rem; }
.security-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: #060F1C;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .nav-logo { color: white; font-size: 1.3rem; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }

.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}
.social-links a:hover { color: var(--accent); }

.footer-links h4 { color: white; font-size: 0.9rem; margin-bottom: 1.1rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; min-height: auto; padding: 7rem 1.5rem 4rem; }
  .hero-content { order: 1; }
  .hero-image { order: 2; margin: 0 auto; max-width: 500px; }
  .hero-subtitle { margin: 0 auto 2rem; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .two-col-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col-grid.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 37, 64, 0.99);
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    gap: 0;
  }
  .nav-toggle-checkbox:checked ~ .nav-menu { display: flex; }
  .nav-hamburger { display: block; }
  .nav-menu a { padding: 0.75rem 1rem; display: block; }

  .hero { padding: 6rem 1rem 3rem; }
  .section { padding: 4rem 0; }
  .about-preview { padding: 4rem 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-card.popular { transform: scale(1); }
  .job-card { flex-direction: column; align-items: flex-start; }
}

/* ── BREADCRUMB ──────────────────────────────── */
.breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.breadcrumb a { color: var(--accent2); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── TIMELINE ──────────────────────────────── */
.timeline { max-width: 720px; margin: 0 auto; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--gradient-accent);
  opacity: 0.3;
}

.timeline-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.timeline-dot {
  width: 64px;
  height: 64px;
  background: var(--gradient-hero);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 3px solid rgba(123,97,255,0.3);
}
.timeline-content { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; flex: 1; }
.timeline-content strong { display: block; font-size: 0.8rem; color: var(--accent2); margin-bottom: 0.4rem; }
.timeline-content h4 { margin-bottom: 0.4rem; }
.timeline-content p { color: var(--text-muted); font-size: 0.9rem; }

/* ── ALERT BANNER ──────────────────────────── */
.alert-info {
  background: rgba(0,198,255,0.08);
  border: 1px solid rgba(0,198,255,0.25);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  color: #0080a0;
  font-size: 0.92rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ── UTILS ──────────────────────────────── */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.text-muted { color: var(--text-muted); }
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}
.badge-success { background: rgba(0,212,160,0.1); color: #006b4f; }
.badge-accent { background: rgba(123,97,255,0.1); color: var(--accent2); }
.badge-warning { background: rgba(255,184,0,0.1); color: #8b6000; }
