/* ============================================================
   QORVION AI — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* === ROOT VARIABLES === */
:root {
  --primary:       #0B4CCB;
  --primary-light: #1688E8;
  --accent:        #2FD3E8;
  --accent-soft:   #8FE7F2;
  --ice:           #D8F4EA;
  --bg-dark:       #08182F;
  --bg-card:       #102845;
  --bg-card-2:     #0D2040;
  --text-primary:  #FFFFFF;
  --text-secondary:#C9D6E8;
  --border-color:  rgba(47, 211, 232, 0.15);
  --gradient-hero: linear-gradient(135deg, #08182F 0%, #0A2050 50%, #0B4CCB 100%);
  --gradient-accent: linear-gradient(135deg, #6FD8E8, #1688E8, #0B4CCB);
  --shadow-glow:   0 0 40px rgba(47, 211, 232, 0.12);
  --transition:    all 0.3s ease;
  --radius:        12px;
  --container:     1240px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 { font-family: 'Sora', sans-serif; line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--text-secondary); line-height: 1.75; }

.accent-text { color: var(--accent); }
.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === LAYOUT === */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
section { position: relative; overflow: hidden; }
section[id] { scroll-margin-top: 88px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #1688E8, #0B4CCB);
  color: #fff;
  box-shadow: 0 4px 20px rgba(22, 136, 232, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #0B4CCB, #0938A0);
  box-shadow: 0 6px 28px rgba(22, 136, 232, 0.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: rgba(47, 211, 232, 0.08);
  box-shadow: 0 0 20px rgba(47, 211, 232, 0.15);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }

/* === SECTION LABELS === */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* === HEX PATTERN === */
.hex-pattern-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'%3E%3Cpolygon fill='none' stroke='%232FD3E8' stroke-width='0.6' stroke-opacity='0.07' points='40 1 79 22 79 66 40 87 1 66 1 22'/%3E%3C/svg%3E");
  background-size: 80px 92px;
  pointer-events: none;
}

/* === GLASS CARDS === */
.glass-card {
  background: rgba(16, 40, 69, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: var(--transition);
}
.glass-card:hover {
  border-color: rgba(47, 211, 232, 0.3);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

/* === SCROLL ANIMATIONS === */
.fade-in        { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in-left   { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in-right  { opacity: 0; transform: translateX(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible, .fade-in-left.visible, .fade-in-right.visible { opacity: 1; transform: translate(0); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(8, 24, 47, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 38px; width: auto; display: block; flex-shrink: 0; }
.logo-text { font-family: 'Sora', sans-serif; font-size: 1.25rem; font-weight: 700; color: #fff; }
.logo-text span { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a:not(.btn) {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav a:not(.btn):hover,
.nav a:not(.btn).active { color: #fff; }
.nav a:not(.btn):hover::after,
.nav a:not(.btn).active::after { width: 100%; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; color: #fff; padding: 4px; }
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(8, 24, 47, 0.99);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 28px;
  flex-direction: column;
  gap: 0;
  z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem; font-weight: 500;
  color: var(--text-secondary);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; margin-top: 16px; text-align: center; }
.mobile-nav a:hover { color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  position: relative;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 65% 50%, rgba(11, 76, 203, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 75%, rgba(47, 211, 232, 0.07) 0%, transparent 50%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(47, 211, 232, 0.08);
  border: 1px solid rgba(47, 211, 232, 0.22);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #8FE7F2 0%, #2FD3E8 50%, #1688E8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 1.0625rem; margin-bottom: 40px; max-width: 580px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-value { font-family: 'Sora', sans-serif; font-size: 1.75rem; font-weight: 700; color: #fff; }
.hero-stat-value .accent { color: var(--accent); }
.hero-stat-label { font-size: 0.8125rem; color: var(--text-secondary); margin-top: 2px; }

/* Hero Visual */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual-inner { position: relative; width: 100%; max-width: 480px; }
.hero-shield-svg { width: 100%; height: auto; filter: drop-shadow(0 0 60px rgba(47, 211, 232, 0.18)); }

.hero-float-card {
  position: absolute;
  background: rgba(10, 26, 55, 0.92);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
  min-width: 180px;
}
.hero-float-card-1 { top: 6%; left: -8%; animation: float-anim 4s ease-in-out infinite; }
.hero-float-card-2 { bottom: 18%; right: -8%; animation: float-anim 4s ease-in-out infinite 1.5s; }
@keyframes float-anim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-icon {
  width: 36px; height: 36px;
  background: rgba(47, 211, 232, 0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.float-text strong { font-size: 0.8125rem; font-weight: 600; display: block; color: #fff; }
.float-text span   { font-size: 0.75rem; color: var(--text-secondary); }

/* ============================================================
   ABOUT / MISSION
   ============================================================ */
.about { padding: 120px 0; background: var(--bg-dark); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.about-left {
  background: linear-gradient(145deg, #091A38, #0B3485);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.about-left::after {
  content: '';
  position: absolute;
  top: -40%; right: -25%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(47, 211, 232, 0.09) 0%, transparent 70%);
  pointer-events: none;
}
.about-left h2 { margin-bottom: 20px; }
.about-left p  { margin-bottom: 18px; font-size: 0.9875rem; }
.about-quote {
  margin-top: 40px;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  background: rgba(47, 211, 232, 0.05);
  border-radius: 0 8px 8px 0;
}
.about-quote p { font-style: italic; color: var(--accent-soft); font-size: 0.9875rem; margin: 0; }

.about-right { background: var(--bg-card); padding: 80px 60px; position: relative; }
.about-right h2 { margin-bottom: 20px; }
.about-right > p { margin-bottom: 18px; font-size: 0.9875rem; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.about-stat-card {
  background: rgba(8, 24, 47, 0.55);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px;
}
.about-stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
  line-height: 1;
}
.about-stat-text { font-size: 0.8125rem; color: var(--text-secondary); }

/* ============================================================
   SOLUTIONS
   ============================================================ */
.solutions {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0A1E3C 100%);
  position: relative;
}
.solutions-header { text-align: center; max-width: 680px; margin: 0 auto 76px; position: relative; z-index: 1; }
.solutions-header h2 { margin-bottom: 16px; }
.solutions-header p { font-size: 1.0625rem; }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.solution-card { padding: 36px 32px; cursor: default; }
.solution-icon {
  width: 56px; height: 56px;
  background: rgba(47, 211, 232, 0.07);
  border: 1px solid rgba(47, 211, 232, 0.18);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
  transition: var(--transition);
}
.solution-card:hover .solution-icon {
  background: rgba(47, 211, 232, 0.14);
  box-shadow: 0 0 22px rgba(47, 211, 232, 0.18);
}
.solution-card h3 { font-size: 1.125rem; margin-bottom: 12px; color: #fff; }
.solution-card p  { font-size: 0.9375rem; line-height: 1.72; }

.solutions-cta { text-align: center; margin-top: 60px; position: relative; z-index: 1; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 120px 0;
  background: #0A1E3C;
  position: relative;
}
.how-it-works::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 211, 232, 0.35), transparent);
}
.how-header { max-width: 580px; margin-bottom: 80px; }
.how-header h2 { margin-bottom: 14px; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 31px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 1px;
  background: linear-gradient(90deg, rgba(47, 211, 232, 0.5) 0%, rgba(47, 211, 232, 0.1) 100%);
  z-index: 0;
}
.how-step { padding: 0 24px; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #1688E8, #0B4CCB);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.125rem; font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
  box-shadow: 0 0 32px rgba(22, 136, 232, 0.28);
  flex-shrink: 0;
}
.how-step h4 { font-size: 1rem; margin-bottom: 10px; color: #fff; }
.how-step p  { font-size: 0.9rem; color: var(--text-secondary); }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits { padding: 120px 0; background: var(--bg-dark); }
.benefits-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.benefits-left .section-label { margin-bottom: 20px; }
.benefits-left h2 { margin-bottom: 20px; }
.benefits-left > p { margin-bottom: 40px; }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.benefit-card { padding: 28px 24px; }
.benefit-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.benefit-card h4 { font-size: 0.9375rem; margin-bottom: 8px; color: #fff; }
.benefit-card p  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.68; }

/* ============================================================
   METRICS
   ============================================================ */
.metrics {
  padding: 100px 0;
  background: linear-gradient(135deg, #091835 0%, #0B4CCB 55%, #093A7A 100%);
  position: relative;
  overflow: hidden;
}
.metrics-inner { position: relative; z-index: 1; }
.metrics-header { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.metrics-header h2 { margin-bottom: 12px; }
.metrics-header p  { color: rgba(255,255,255,0.7); }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.metric-item {
  padding: 48px 32px;
  text-align: center;
  background: rgba(8, 24, 47, 0.42);
  transition: var(--transition);
}
.metric-item:hover { background: rgba(8, 24, 47, 0.72); }
.metric-value {
  font-family: 'Sora', sans-serif;
  font-size: 2.8rem; font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.metric-value .metric-accent { color: var(--accent); }
.metric-label { font-size: 0.875rem; color: rgba(255,255,255,0.65); font-weight: 500; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 120px 0;
  background: var(--bg-dark);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 211, 232, 0.3), transparent);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-label { margin-bottom: 20px; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info > p { margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(47, 211, 232, 0.07);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: 0.875rem; color: #fff; margin-bottom: 2px; }
.contact-detail-text span   { font-size: 0.875rem; color: var(--text-secondary); }

/* Form */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 48px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(8, 24, 47, 0.65);
  border: 1px solid rgba(47, 211, 232, 0.15);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #fff;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238FE7F2' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
  cursor: pointer;
}
.form-group select option { background: var(--bg-card); color: #fff; }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47, 211, 232, 0.08);
  background: rgba(8, 24, 47, 0.85);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(201, 214, 232, 0.38); }
.form-group input.error,
.form-group textarea.error { border-color: rgba(255, 80, 80, 0.55); }

.form-submit { margin-top: 8px; width: 100%; justify-content: center; padding: 18px; font-size: 1rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success-icon {
  width: 68px; height: 68px;
  background: rgba(47, 211, 232, 0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
}
.form-success h3 { margin-bottom: 12px; font-size: 1.25rem; }
.form-success p  { color: var(--text-secondary); max-width: 360px; margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060F1E;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 36px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand > p { font-size: 0.9rem; max-width: 270px; margin-bottom: 24px; line-height: 1.7; }

.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}
.social-link:hover { border-color: var(--accent); color: var(--accent); background: rgba(47, 211, 232, 0.06); }

.footer-col h5 {
  font-family: 'Sora', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 0.9rem; color: var(--text-secondary); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.875rem; color: rgba(201, 214, 232, 0.45); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.875rem; color: rgba(201, 214, 232, 0.45); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ============================================================
   INNER PAGE: PAGE HERO
   ============================================================ */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #08182F 0%, #091F46 55%, #0B3485 100%);
  position: relative;
  overflow: hidden;
}
.page-hero-content { position: relative; z-index: 1; max-width: 720px; }
.page-hero-content .section-label { margin-bottom: 16px; }
.page-hero-content h1 { margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3.25rem); }
.page-hero-content p  { font-size: 1.0625rem; max-width: 600px; }

/* ============================================================
   INNER PAGE: CONTENT SECTIONS
   ============================================================ */
.page-content { padding: 80px 0; background: var(--bg-dark); }

.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 56px;
  margin-bottom: 28px;
}
.content-card h2 { font-size: 1.5rem; margin-bottom: 16px; color: #fff; }
.content-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px; margin-top: 36px;
  color: var(--accent-soft);
  font-weight: 600;
}
.content-card p  { margin-bottom: 16px; font-size: 0.9375rem; line-height: 1.82; }
.content-card p:last-child { margin-bottom: 0; }
.content-card ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 20px; margin-top: 4px;
}
.content-card ul li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.72;
}
.content-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}
.last-updated { font-size: 0.8125rem; color: rgba(201, 214, 232, 0.5); margin-bottom: 32px; }

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-hero-note { display: flex; align-items: center; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.pricing-toggle-wrap { display: flex; align-items: center; gap: 12px; }
.pricing-toggle-label { font-size: 0.9rem; color: var(--text-secondary); }
.pricing-toggle-label.active-label { color: #fff; }
.toggle-switch {
  position: relative;
  width: 48px; height: 26px;
  cursor: pointer;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.toggle-track {
  position: absolute; inset: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  transition: var(--transition);
}
.toggle-track::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  top: 3px; left: 3px;
  transition: var(--transition);
}
.toggle-switch input:checked ~ .toggle-track { background: rgba(47, 211, 232, 0.15); }
.toggle-switch input:checked ~ .toggle-track::before { transform: translateX(22px); }
.annual-badge {
  font-size: 0.75rem; font-weight: 700;
  color: var(--accent);
  background: rgba(47, 211, 232, 0.1);
  border: 1px solid rgba(47, 211, 232, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
}

.pricing-section { padding: 80px 0; background: var(--bg-dark); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.pricing-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card.featured {
  background: linear-gradient(145deg, rgba(22, 136, 232, 0.1), rgba(11, 76, 203, 0.16));
  border-color: rgba(47, 211, 232, 0.32);
  box-shadow: 0 0 48px rgba(47, 211, 232, 0.07);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1688E8, #0B4CCB);
  color: #fff;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-name {
  font-family: 'Sora', sans-serif;
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing-price { margin-bottom: 6px; display: flex; align-items: flex-start; gap: 2px; }
.pricing-price sup { font-size: 1.1rem; color: var(--text-secondary); margin-top: 14px; }
.pricing-price strong {
  font-family: 'Sora', sans-serif;
  font-size: 3rem; font-weight: 800;
  color: #fff; line-height: 1;
}
.pricing-period { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 20px; }
.pricing-desc {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.72;
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid var(--border-color);
}
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; flex: 1; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-secondary);
}
.check-icon { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.pricing-cta { width: 100%; justify-content: center; }

.pricing-faq { padding: 60px 0 0; }
.pricing-faq h2 { font-size: 1.75rem; margin-bottom: 40px; }

/* ============================================================
   SUPPORT PAGE
   ============================================================ */
.support-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.support-category-card { padding: 36px 28px; text-align: center; }
.support-category-icon {
  width: 64px; height: 64px;
  background: rgba(47, 211, 232, 0.07);
  border: 1px solid rgba(47, 211, 232, 0.15);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.support-category-card:hover .support-category-icon {
  background: rgba(47, 211, 232, 0.14);
  box-shadow: 0 0 22px rgba(47, 211, 232, 0.15);
}
.support-category-card h3 { font-size: 1rem; margin-bottom: 8px; color: #fff; }
.support-category-card p  { font-size: 0.875rem; line-height: 1.65; }

/* FAQ Accordion */
.faq-section { padding: 60px 0 80px; background: #0A1E3C; }
.faq-section h2 { margin-bottom: 40px; font-size: 1.75rem; }
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--bg-card);
  transition: var(--transition);
  font-size: 0.9375rem; font-weight: 500;
  color: #fff;
  border: none; width: 100%; text-align: left;
  font-family: 'Inter', sans-serif;
}
.faq-question:hover { background: rgba(16, 40, 69, 0.9); }
.faq-question.open { color: var(--accent); }
.faq-icon { width: 20px; height: 20px; color: var(--accent); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: rgba(8, 24, 47, 0.55); }
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding: 20px 24px; font-size: 0.9375rem; color: var(--text-secondary); margin: 0; line-height: 1.75; }

/* ============================================================
   SECURITY PAGE
   ============================================================ */
.security-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 60px 0;
}
.security-pillar-card { padding: 36px 30px; }
.security-pillar-icon {
  width: 52px; height: 52px;
  background: rgba(47, 211, 232, 0.07);
  border: 1px solid rgba(47, 211, 232, 0.16);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.security-pillar-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: #fff; }
.security-pillar-card p  { font-size: 0.9rem; }

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.compliance-item {
  background: rgba(8, 24, 47, 0.55);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.compliance-item strong { font-family: 'Sora', sans-serif; font-size: 0.875rem; color: var(--accent); display: block; margin-bottom: 4px; }
.compliance-item span  { font-size: 0.8rem; color: var(--text-secondary); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-left, .about-right { padding: 56px 48px; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .how-steps::before { display: none; }
  .benefits-inner { grid-template-columns: 1fr; gap: 56px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .support-categories-grid { grid-template-columns: repeat(2, 1fr); }
  .security-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .compliance-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .solutions-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrapper { padding: 28px 22px; }
  .content-card { padding: 32px 24px; }
  .about-left, .about-right { padding: 40px 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .support-categories-grid { grid-template-columns: 1fr 1fr; }
  .security-pillars-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 28px; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
  .support-categories-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr; }
  .about-left, .about-right { padding: 32px 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .pricing-grid { max-width: 100%; }
}
