/* ============================================
   SysAlign – Custom Stylesheet
   Domain: sysalign.ink
   Fonts: Lexend (heading) + Nunito Sans (body)
   ============================================ */

:root {
  --primary:      #091A2E;
  --primary-2:    #112338;
  --accent:       #0057FF;
  --accent-2:     #3378FF;
  --accent-3:     #6FA3FF;
  --gold:         #E09A2A;
  --surface:      #F3F7FD;
  --text-main:    #09192C;
  --text-muted:   #5A6A82;
  --white:        #FFFFFF;
  --border:       #D5DDE9;
  --radius:       10px;
  --radius-lg:    18px;
  --shadow:       0 2px 20px rgba(9,26,46,.10);
  --shadow-md:    0 6px 32px rgba(9,26,46,.13);
  --shadow-lg:    0 18px 56px rgba(9,26,46,.20);
  --tr:           .26s cubic-bezier(.4,0,.2,1);
  --font-head:    'Lexend', 'Segoe UI', Arial, sans-serif;
  --font-body:    'Nunito Sans', 'Segoe UI', Arial, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.22;
}

a { color: var(--accent); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--accent-2); }
img { max-width: 100%; height: auto; border-radius: var(--radius); display: block; }

/* ---- Utility ---- */
.mb-60 { margin-bottom: 60px !important; }
.section-pad    { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.label-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,87,255,.08);
  border: 1px solid rgba(0,87,255,.20);
  border-radius: 50px;
  padding: 5px 16px; margin-bottom: 18px;
}

.section-title { font-size: clamp(22px, 5vw, 46px); font-weight: 800; margin-bottom: 16px; word-break: break-word; overflow-wrap: break-word; }
.section-sub   { font-size: 17px; color: var(--text-muted); max-width: 560px; }

/* ---- Buttons ---- */
.btn-primary-c {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--accent); color: var(--white);
  border: none; border-radius: var(--radius);
  padding: 13px 28px;
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
  white-space: nowrap;
}
.btn-primary-c:hover { background: var(--accent-2); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,87,255,.35); }

.btn-outline-c {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: rgba(255,255,255,.88);
  border: 1.5px solid rgba(255,255,255,.28); border-radius: var(--radius);
  padding: 13px 28px;
  font-family: var(--font-head); font-size: 16px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: border-color var(--tr), background var(--tr), color var(--tr);
  white-space: nowrap;
}
.btn-outline-c:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); color: #fff; }

.btn-white {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); color: var(--accent);
  border: none; border-radius: var(--radius);
  padding: 13px 30px;
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: transform var(--tr), box-shadow var(--tr);
}
.btn-white:hover { color: var(--accent); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,0,0,.20); }

/* ---- Navbar ---- */
.navbar-custom {
  background: rgba(9,26,46,.97) !important;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 0; transition: box-shadow var(--tr);
}
.navbar-custom.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.30); }

.navbar-brand {
  font-family: var(--font-head); font-size: 21px; font-weight: 800;
  color: var(--white) !important; letter-spacing: -.01em; padding: 16px 0;
}
.navbar-brand span { color: var(--accent-3); }

/* Desktop nav links */
.navbar-custom .nav-link {
  color: rgba(255,255,255,.70) !important;
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  padding: 22px 14px !important;
  transition: color var(--tr); position: relative;
}
.navbar-custom .nav-link::after {
  content: ''; position: absolute;
  bottom: 0; left: 14px; right: 14px; height: 2px;
  background: var(--accent-3);
  transform: scaleX(0); transition: transform var(--tr);
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active { color: #fff !important; }
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after { transform: scaleX(1); }

/* Mobile nav */
.navbar-collapse { background: rgba(9,26,46,.98); }
@media (max-width: 991px) {
  .navbar-custom .nav-link {
    padding: 13px 20px !important;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  .navbar-custom .nav-link::after { display: none; }
  .navbar-collapse { padding: 8px 0 16px; }
  .btn-nav { margin: 8px 20px 4px !important; display: block; text-align: center; }
}

.navbar-toggler { border-color: rgba(255,255,255,.18) !important; padding: 6px 10px; }
.navbar-toggler-icon { filter: invert(1); }

.btn-nav {
  background: var(--accent) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 9px 20px !important;
  font-weight: 700; margin-left: 10px;
  transition: background var(--tr) !important;
}
.btn-nav:hover { background: var(--accent-2) !important; }
.btn-nav::after { display: none !important; }

/* ---- Hero ---- */
.hero-section {
  min-height: 100vh;
  background-color: #091A2E;
  background-image: linear-gradient(140deg, #091A2E 0%, #0D2545 55%, #0A1F3C 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 76px;
}
.hero-glow-1 {
  position: absolute; width: 650px; height: 650px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,87,255,.17) 0%, transparent 68%);
  top: -180px; right: -150px; pointer-events: none;
}
.hero-glow-2 {
  position: absolute; width: 440px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,154,42,.09) 0%, transparent 68%);
  bottom: -100px; left: -80px; pointer-events: none;
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 36px 36px; pointer-events: none;
}

.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,87,255,.13); border: 1px solid rgba(0,87,255,.28);
  color: var(--accent-3); font-family: var(--font-head);
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 50px; padding: 7px 18px; margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 5vw, 64px);
  font-weight: 800; color: #FFFFFF;
  line-height: 1.12; margin-bottom: 22px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.hero-title .hl { color: var(--accent-3); }

.hero-desc {
  font-size: 17px; color: rgba(255,255,255,.62);
  max-width: 500px; margin-bottom: 36px; line-height: 1.7;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero image — only on desktop */
.hero-img-col { display: none; }
@media (min-width: 992px) {
  .hero-img-col { display: block; }
}

.hero-img-wrap { position: relative; z-index: 2; }
.hero-img-wrap img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.07);
  object-fit: cover; aspect-ratio: 16/10;
}

.hero-badge {
  position: absolute; background: var(--white);
  border-radius: var(--radius); padding: 12px 17px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px; min-width: 180px;
}
.hero-badge-1 { bottom: -16px; left: -22px; }
.hero-badge-2 { top: -16px;   right: -16px; }
.hero-badge i     { font-size: 20px; color: var(--accent); }
.hero-badge-title { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--primary); margin: 0; }
.hero-badge-sub   { font-size: 12px; color: var(--text-muted); margin: 0; }

/* Hero on mobile: center text, compact */
@media (max-width: 991px) {
  .hero-section { min-height: auto; padding: 108px 0 68px; text-align: center; }
  .hero-label   { margin-left: auto; margin-right: auto; }
  .hero-desc    { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
}
@media (max-width: 575px) {
  .hero-section  { padding: 96px 0 56px; }
  .hero-title    { font-size: 26px !important; line-height: 1.18; }
  .hero-title br { display: none; }
  .hero-label    { font-size: 10px; }
  .hero-desc     { font-size: 16px; }
  .hero-actions  { flex-direction: column; align-items: center; }
  .btn-primary-c, .btn-outline-c { width: 100%; justify-content: center; }
}

/* ---- Stats ---- */
.stats-section { background-color: #091A2E; padding: 48px 0; }
.stat-item {
  text-align: center; padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(26px, 6vw, 50px);
  font-weight: 800; color: #FFFFFF; line-height: 1; margin-bottom: 5px;
}
.stat-num span { color: var(--accent-3); }
.stat-label {
  font-size: 12px; color: rgba(255,255,255,.46);
  font-weight: 700; text-transform: uppercase; letter-spacing: .09em;
}
@media (max-width: 991px) {
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-item:last-child { border-bottom: none; }
}

/* ---- Service Cards ---- */
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 26px;
  height: 100%; position: relative; overflow: hidden;
  transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr);
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--tr);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(0,87,255,.18); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(0,87,255,.09); border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: background var(--tr);
}
.service-card:hover .service-icon { background: var(--accent); }
.service-icon i { font-size: 20px; color: var(--accent); transition: color var(--tr); }
.service-card:hover .service-icon i { color: #fff; }
.service-title { font-size: 17px; font-weight: 700; margin-bottom: 9px; }
.service-desc  { font-size: 16px; color: var(--text-muted); margin: 0; }

/* ---- About ---- */
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; border-radius: var(--radius-lg);
  object-fit: cover; aspect-ratio: 4/3; box-shadow: var(--shadow-lg);
}
.about-accent-box {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--accent); color: #fff;
  border-radius: var(--radius-lg); padding: 20px 24px;
  text-align: center; box-shadow: var(--shadow-md);
}
.about-accent-box strong { font-family: var(--font-head); font-size: 36px; font-weight: 800; display: block; line-height: 1; }
.about-accent-box span   { font-size: 13px; opacity: .82; }
@media (max-width: 575px) {
  .about-accent-box { bottom: -14px; right: -10px; padding: 14px 18px; }
  .about-accent-box strong { font-size: 28px; }
}

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 10px 0; font-size: 16px;
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li i { color: var(--accent); margin-top: 4px; flex-shrink: 0; }

/* ---- Process ---- */
.process-section { background: var(--surface); }
.process-step {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 48px; height: 48px; background: var(--accent); color: #fff;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 16px; font-weight: 800; flex-shrink: 0;
}
.step-title { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.step-desc  { font-size: 15px; color: var(--text-muted); margin: 0; }
.process-image img {
  width: 100%; border-radius: var(--radius-lg);
  object-fit: cover; aspect-ratio: 1; box-shadow: var(--shadow-lg);
}

/* ---- Industries (icon-based, no images) ---- */
.industry-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 34px 28px;
  text-align: center; height: 100%;
  transition: box-shadow var(--tr), transform var(--tr);
}
.industry-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.industry-icon {
  width: 64px; height: 64px;
  background: rgba(0,87,255,.09); border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: background var(--tr);
}
.industry-card:hover .industry-icon { background: var(--accent); }
.industry-icon i { font-size: 26px; color: var(--accent); transition: color var(--tr); }
.industry-card:hover .industry-icon i { color: #fff; }
.industry-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.industry-desc  { font-size: 15px; color: var(--text-muted); margin: 0; }

/* ---- Team (initials, no photos) ---- */
.team-section { background: var(--surface); }
.team-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  text-align: center; padding: 32px 22px;
  transition: transform var(--tr), box-shadow var(--tr);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-head); font-size: 26px; font-weight: 800;
  color: #fff;
}
.team-name { font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.team-role { font-size: 12px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 10px; }
.team-bio  { font-size: 15px; color: var(--text-muted); }

/* ---- Testimonials (initials, no photos) ---- */
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  height: 100%; transition: box-shadow var(--tr);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 16px; color: var(--text-main); font-style: italic; line-height: 1.76; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 15px; font-weight: 800;
  color: #fff; flex-shrink: 0;
}
.t-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; margin: 0; }
.t-pos  { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ---- CTA ---- */
.cta-section {
  background-color: #0046D4;
  background-image: linear-gradient(135deg, #0044CC 0%, #0057FF 50%, #1A6DFF 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,.05); top: -280px; right: -180px;
}
.cta-title { font-family: var(--font-head); font-size: clamp(24px,3.8vw,44px); font-weight: 800; color: #fff; margin-bottom: 14px; }
.cta-sub   { font-size: 17px; color: rgba(255,255,255,.75); max-width: 490px; margin-bottom: 30px; }

/* ---- Insights ---- */
.insight-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow var(--tr), transform var(--tr);
}
.insight-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.insight-img-wrap { overflow: hidden; }
.insight-card img { width: 100%; height: 190px; object-fit: cover; border-radius: 0; transition: transform .5s ease; }
.insight-card:hover img { transform: scale(1.05); }
.insight-body  { padding: 22px; }
.insight-cat   { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .11em; margin-bottom: 9px; }
.insight-title { font-size: 17px; font-weight: 700; margin-bottom: 9px; }
.insight-title a { color: var(--primary); }
.insight-title a:hover { color: var(--accent); }
.insight-meta  { font-size: 13px; color: var(--text-muted); display: flex; gap: 14px; margin-top: 12px; }
.insight-meta i { margin-right: 4px; }

/* ---- FAQ ---- */
.faq-section { background: var(--surface); }
.accordion-item { border: 1px solid var(--border) !important; border-radius: var(--radius) !important; margin-bottom: 10px; overflow: hidden; }
.accordion-button { font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--primary); background: var(--white); padding: 18px 20px; }
.accordion-button:not(.collapsed) { color: var(--accent); background: rgba(0,87,255,.03); box-shadow: none; }
.accordion-button:focus { box-shadow: none; }
.accordion-body { font-size: 16px; color: var(--text-muted); padding: 0 20px 18px; background: var(--white); }

/* ---- Forms ---- */
.contact-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow-md); }
.form-label { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 7px; }
.form-control, .form-select {
  font-size: 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 11px 15px;
  transition: border-color var(--tr), box-shadow var(--tr);
  color: var(--text-main);
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,87,255,.10); outline: none;
}
@media (max-width: 767px) { .contact-card { padding: 24px 18px; } }

/* ---- Contacts Page ---- */
.contacts-info-card { background: var(--primary); border-radius: var(--radius-lg); padding: 36px 30px; height: 100%; }
.contacts-info-card h3 { color: #fff; margin-bottom: 24px; font-family: var(--font-head); font-weight: 700; font-size: 20px; }
.ci-block { display: flex; gap: 14px; margin-bottom: 22px; }
.ci-block-icon { width: 42px; height: 42px; background: rgba(0,87,255,.14); border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-block-icon i { font-size: 15px; color: var(--accent-3); }
.ci-block-label { font-size: 11px; color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: .07em; font-weight: 700; }
.ci-block-value { font-size: 15px; color: #fff; font-weight: 500; margin: 0; }

/* ---- Footer ---- */
.footer { background-color: #091A2E; padding: 68px 0 0; }
.footer-brand { font-family: var(--font-head); font-size: 21px; font-weight: 800; color: #fff; }
.footer-brand span { color: var(--accent-3); }
.footer-tagline { font-size: 15px; color: rgba(255,255,255,.44); margin-top: 9px; max-width: 280px; }
.footer-heading { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,.48); font-size: 15px; transition: color var(--tr); }
.footer-links a:hover { color: var(--accent-3); }
.footer-contact-item { display: flex; gap: 11px; margin-bottom: 12px; }
.footer-contact-item i { color: var(--accent-3); margin-top: 3px; flex-shrink: 0; font-size: 14px; }
.footer-contact-item span { font-size: 15px; color: rgba(255,255,255,.48); }
.footer-divider { border-color: rgba(255,255,255,.07); margin: 36px 0 0; }
.footer-bottom { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 14px; color: rgba(255,255,255,.30); margin: 0; }
.footer-policy-links a { font-size: 14px; color: rgba(255,255,255,.30); margin-left: 16px; }
.footer-policy-links a:hover { color: rgba(255,255,255,.65); }
@media (max-width: 575px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-policy-links a { margin-left: 0; margin-right: 14px; }
}

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed; bottom: 20px; left: 50%;
  transform: translateX(-50%) translateY(0);
  background: #112338; border: 1px solid rgba(0,87,255,.28);
  border-radius: var(--radius-lg); padding: 18px 24px;
  box-shadow: 0 18px 52px rgba(0,0,0,.36);
  z-index: 9999; max-width: 700px; width: calc(100% - 32px);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  transition: opacity .4s, transform .4s;
}
.cookie-banner.hidden { opacity: 0; transform: translateX(-50%) translateY(20px); pointer-events: none; }
.cookie-icon { font-size: 24px; flex-shrink: 0; }
.cookie-text { flex: 1; min-width: 180px; }
.cookie-text p { font-size: 15px; color: rgba(255,255,255,.72); margin: 0; }
.cookie-text a { color: var(--accent-3); }
.cookie-actions { display: flex; gap: 9px; flex-wrap: wrap; }
.btn-cookie-accept { background: var(--accent); color: #fff; border: none; border-radius: 8px; padding: 9px 20px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background var(--tr); }
.btn-cookie-accept:hover { background: var(--accent-2); }
.btn-cookie-decline { background: transparent; color: rgba(255,255,255,.48); border: 1px solid rgba(255,255,255,.15); border-radius: 8px; padding: 9px 20px; font-size: 15px; font-weight: 500; cursor: pointer; transition: border-color var(--tr), color var(--tr); }
.btn-cookie-decline:hover { border-color: rgba(255,255,255,.44); color: rgba(255,255,255,.78); }
@media (max-width: 575px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }
}

/* ---- Popup ---- */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.58); backdrop-filter: blur(5px); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; }
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup-card { background: var(--white); border-radius: var(--radius-lg); padding: 46px 38px; text-align: center; max-width: 440px; width: 90%; box-shadow: 0 28px 72px rgba(0,0,0,.22); transform: scale(.92) translateY(14px); transition: transform .36s cubic-bezier(.34,1.56,.64,1); }
.popup-overlay.active .popup-card { transform: scale(1) translateY(0); }
.popup-icon { width: 68px; height: 68px; background: rgba(0,87,255,.09); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.popup-icon i { font-size: 28px; color: var(--accent); }
.popup-title { font-family: var(--font-head); font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.popup-text  { font-size: 16px; color: var(--text-muted); margin-bottom: 24px; }
.btn-popup-close { background: var(--accent); color: #fff; border: none; border-radius: var(--radius); padding: 12px 34px; font-family: var(--font-head); font-size: 16px; font-weight: 700; cursor: pointer; transition: background var(--tr); }
.btn-popup-close:hover { background: var(--accent-2); }

/* ---- Page Hero ---- */
.page-hero {
  background-color: #091A2E;
  background-image: linear-gradient(140deg, #091A2E 0%, #0D2545 100%);
  padding: 120px 0 68px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,87,255,.16) 0%, transparent 68%);
  top: -200px; right: -100px;
}
.page-hero-title { font-size: clamp(28px,4.5vw,52px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.page-hero-sub   { font-size: 17px; color: rgba(255,255,255,.58); max-width: 520px; }
.breadcrumb-wrap { margin-bottom: 16px; }
.breadcrumb-item a { color: rgba(255,255,255,.48); font-size: 14px; }
.breadcrumb-item.active { color: rgba(255,255,255,.72); font-size: 14px; }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.26); }

/* ---- Policy ---- */
.policy-content { max-width: 820px; margin: 0 auto; }
.policy-content h2 { font-size: 22px; font-weight: 700; margin-top: 38px; margin-bottom: 12px; color: var(--primary); }
.policy-content h3 { font-size: 18px; font-weight: 700; margin-top: 24px; margin-bottom: 10px; }
.policy-content p  { font-size: 16px; color: var(--text-muted); margin-bottom: 14px; }
.policy-content ul { padding-left: 20px; color: var(--text-muted); font-size: 16px; }
.policy-content ul li { margin-bottom: 8px; }

/* ---- Animation ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; }
.fade-up.visible { animation: fadeUp .55s ease forwards; }
.fade-up:nth-child(2) { animation-delay: .08s; }
.fade-up:nth-child(3) { animation-delay: .16s; }
.fade-up:nth-child(4) { animation-delay: .24s; }

/* ---- Global mobile ---- */
@media (max-width: 767px) {
  .section-pad { padding: 56px 0; }
  .mb-60       { margin-bottom: 36px !important; }
  .section-title { word-break: break-word; overflow-wrap: break-word; }
}

/* Prevent any horizontal overflow */
body { overflow-x: hidden; }
.container { max-width: 100%; }
section { overflow-x: hidden; }
