:root {
  --supernova:   #FCCC00;
  --cloud-burst: #203053;
  --cloud-mid:   #2d3f6b;
  --luxor-gold:  #9d8030;
  --cloud-light: #eef1f7;
  --white:       #FFFFFF;
  --text-dark:   #243459;
  --text-mid:    #4a5568;
  --text-light:  #8a94a6;
  --pad:         clamp(20px, 5vw, 80px);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text-dark); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── CHROME ── */
.top-bar { background: var(--cloud-burst); padding: 9px var(--pad); display: flex; align-items: center; gap: 10px; font-size: 0.75rem; color: rgba(255,255,255,0.6); flex-wrap: wrap; }
.top-bar a { background: rgba(252,204,0,0.12); border: 1px solid rgba(252,204,0,0.35); color: var(--supernova); padding: 3px 12px; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.05em; white-space: nowrap; transition: background 0.2s; }
.top-bar a:hover { background: rgba(252,204,0,0.25); }
.top-bar-label { white-space: nowrap; }
.top-bar .sep { color: rgba(255,255,255,0.15); }
nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(32,48,83,0.1); padding: 0 var(--pad); display: flex; align-items: center; height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 10px; margin-right: auto; flex-shrink: 0; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; }
.nav-wordmark { font-weight: 800; font-size: 1rem; letter-spacing: 0.1em; color: var(--cloud-burst); }
.nav-wordmark span { color: var(--luxor-gold); }
.nav-links { display: flex; align-items: center; list-style: none; }
.nav-links li a { display: block; padding: 0 14px; height: 64px; line-height: 64px; font-size: 0.8rem; font-weight: 600; color: var(--text-mid); border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.nav-links li a:hover, .nav-links li a.active { color: var(--cloud-burst); border-bottom-color: var(--supernova); }
.nav-cta-btn { background: var(--cloud-burst) !important; color: var(--white) !important; padding: 0 20px !important; height: 38px !important; line-height: 38px !important; font-weight: 700 !important; font-size: 0.76rem !important; letter-spacing: 0.06em !important; border-bottom: none !important; margin-left: 16px; transition: background 0.2s !important; }
.nav-cta-btn:hover { background: var(--cloud-mid) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--cloud-burst); }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 2px solid rgba(32,48,83,0.1); padding: 12px 0; z-index: 99; }
  .nav-links.open li a { height: auto; line-height: 1; padding: 14px var(--pad); border-bottom: 1px solid rgba(32,48,83,0.06) !important; }
  .nav-hamburger { display: flex; }
  .top-bar { font-size: 0.68rem; }
}
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex !important; align-items: center; gap: 5px; }
.nav-arrow { font-size: 0.6rem; opacity: 0.55; transition: transform 0.2s; display: inline-block; }
.has-dropdown:hover .nav-arrow, .has-dropdown.open .nav-arrow { transform: rotate(180deg); }
.nav-dropdown { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid rgba(32,48,83,0.12); border-top: 2px solid var(--supernova); min-width: 190px; list-style: none; box-shadow: 0 8px 24px rgba(32,48,83,0.1); z-index: 200; }
.nav-dropdown li a { display: block !important; padding: 12px 18px !important; height: auto !important; line-height: 1.4 !important; font-size: 0.79rem !important; font-weight: 600 !important; color: var(--text-mid) !important; border-bottom: 1px solid rgba(32,48,83,0.06) !important; transition: color 0.2s, background 0.2s !important; white-space: nowrap !important; }
.nav-dropdown li:last-child a { border-bottom: none !important; }
.nav-dropdown li a:hover, .nav-dropdown li a.active { color: var(--cloud-burst) !important; background: rgba(32,48,83,0.03); }
.has-dropdown:hover .nav-dropdown { display: block; }
@media (max-width: 768px) {
  .nav-dropdown { position: static; border: none; box-shadow: none; display: none; min-width: 0; border-top: 1px solid rgba(32,48,83,0.06); background: rgba(32,48,83,0.02); }
  .has-dropdown.open .nav-dropdown { display: block; }
  .nav-dropdown li a { padding-left: calc(var(--pad) + 16px) !important; }
}

/* ── SHARED ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); margin-bottom: 20px; text-transform: uppercase; }
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--supernova); }
.breadcrumb span { color: var(--supernova); }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(160deg, #203053 0%, #2d3f6b 100%); padding: clamp(60px,10vw,110px) var(--pad) clamp(50px,8vw,90px); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(252,204,0,0.08) 1px, transparent 1px); background-size: 30px 30px; pointer-events: none; }
.page-hero-inner { position: relative; z-index: 2; max-width: 800px; }
.page-hero h1 { font-family: 'Raleway', sans-serif; font-size: clamp(2.4rem,5vw,3.8rem); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.page-hero h1 em { font-style: italic; color: var(--supernova); }
.page-hero-lead { font-size: clamp(1rem,1.6vw,1.15rem); color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 640px; }

/* ── NAME SECTION ── */
.name-section { padding: clamp(56px,8vw,100px) var(--pad); }
.name-display { font-family: 'Raleway', sans-serif; font-size: clamp(3.5rem,8vw,7rem); font-weight: 700; color: var(--cloud-burst); line-height: 1; margin-bottom: clamp(40px,5vw,64px); letter-spacing: -0.02em; }
.name-display em { font-style: italic; color: var(--supernova); }
.name-words { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,56px); }
@media (max-width: 680px) { .name-words { grid-template-columns: 1fr; } }
.name-word { padding: 32px 36px; border: 1px solid rgba(32,48,83,0.1); }
.name-word-title { font-family: 'Raleway', sans-serif; font-size: clamp(2rem,3.5vw,3rem); font-weight: 700; color: var(--supernova); margin-bottom: 16px; line-height: 1; }
.name-word-body { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; }
.name-together { margin-top: clamp(24px,3vw,40px); padding: 32px 36px; background: var(--cloud-burst); }
.name-together p { font-family: 'Raleway', sans-serif; font-size: clamp(1rem,1.8vw,1.25rem); font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.7; }
.name-together p strong { font-style: normal; color: var(--supernova); }

/* ── TEAM CTA ── */
.section-title { font-family: 'Raleway', sans-serif; font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 700; color: var(--cloud-burst); line-height: 1.15; margin-bottom: 18px; }
.section-lead { font-size: clamp(0.88rem,1.5vw,1rem); color: var(--text-mid); line-height: 1.8; max-width: 680px; }
.team-cta-section { padding: clamp(56px,7vw,90px) var(--pad); background: var(--cloud-light); display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.team-cta-section .section-title { margin-bottom: 8px; }
.team-cta-section .section-lead { margin-bottom: 0; }
.btn-dark { display: inline-block; background: var(--cloud-burst); color: var(--white); padding: 13px 26px; font-weight: 800; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s; white-space: nowrap; }
.btn-dark:hover { background: var(--cloud-mid); }

/* ── FOOTER ── */
footer { background: var(--cloud-burst); padding: clamp(48px,7vw,72px) var(--pad) 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(24px,4vw,48px); margin-bottom: 48px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-wordmark { font-weight: 800; font-size: 1.1rem; letter-spacing: 0.12em; color: var(--white); margin-bottom: 10px; }
.footer-wordmark span { color: var(--supernova); }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 240px; }
.fc-title { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(252,204,0,0.6); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links li a { font-size: 0.8rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links li a:hover, .footer-links li a.hl { color: var(--supernova); }
.footer-base { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.footer-langs { display: flex; gap: 12px; }
.footer-langs a { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-langs a:hover, .footer-langs a.act { color: var(--supernova); }

/* ===== Smartemis design-system alignment (auto-applied) ===== */
html{font-size:115%;}
.btn-primary,.btn-dark,.btn-outline,.nav-cta-btn,.form-submit{border-radius:8px!important;text-transform:none!important;letter-spacing:.01em!important;font-weight:700!important}
.btn-primary,.btn-dark,.nav-cta-btn,.form-submit{transition:transform .2s cubic-bezier(.4,0,.2,1),box-shadow .2s,background .2s!important}
.btn-primary:hover,.nav-cta-btn:hover,.form-submit:hover{transform:translateY(-2px) scale(1.03)!important;box-shadow:0 10px 24px rgba(252,204,0,.28)!important}
.btn-dark:hover{transform:translateY(-2px) scale(1.03)!important}
.btn-primary:active,.btn-dark:active,.nav-cta-btn:active{transform:scale(.97)!important}
.quote-card,.vet-card,.founder-quote-box,.gov-quote-block,.bi-quote,.value-card,.name-word,.name-together,.t-card,.form-card,.sidebar-card,.form-input,.form-textarea,.contact-form input,.contact-form textarea,.contact-form select{border-radius:12px!important}
.quote-card,.vet-card,.t-card{box-shadow:0 8px 30px rgba(32,48,83,.07)!important}
.vet-card{transition:transform .2s,box-shadow .2s!important}
.vet-card:hover{transform:translateY(-4px)!important;box-shadow:0 16px 40px rgba(32,48,83,.12)!important}
.chart-image-wrap{border-radius:14px!important}
.nav-logo img{height:34px!important;width:auto!important}
.footer-logo-img{height:34px!important;width:auto!important;display:block}
.hero::before,.page-hero::before{background-image:url('images/circle-symbol.png')!important;background-repeat:no-repeat!important;background-position:right -150px center!important;background-size:560px auto!important;opacity:.5!important}

/* === elementor-overrides (generated) === */
.elementor-section img { display: block; max-width: 100%; }
.elementor-section .nav-logo img { height: 40px; width: auto; }
.elementor-section .nav-logo img { height:34px!important;width:auto!important }
.elementor-section .footer-logo-img { height:34px!important;width:auto!important;display:block }
/* === /elementor-overrides === */
