/* ============================================================
  Telecom West Inc. — Main Stylesheet
   Corporate & Professional | Custom CSS
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-primary:    #0A2540;
  --color-primary-lt: #0D3260;
  --color-accent:     #0099CC;
  --color-accent-dk:  #007AA3;
  --color-gold:       #E8A020;
  --color-gold-dk:    #C8880A;
  --color-bg:         #F4F7FB;
  --color-bg-alt:     #FFFFFF;
  --color-text:       #1C2B3A;
  --color-text-muted: #5A6A7E;
  --color-border:     #D6E0EC;
  --color-white:      #FFFFFF;
  --font-heading:     'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-body:        'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --radius:           6px;
  --radius-lg:        12px;
  --shadow-sm:        0 2px 8px rgba(10, 37, 64, 0.08);
  --shadow-md:        0 4px 20px rgba(10, 37, 64, 0.12);
  --shadow-lg:        0 8px 40px rgba(10, 37, 64, 0.16);
  --transition:       0.25s ease;
  --max-width:        1200px;
  --nav-height:       72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-dk); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.25;
  font-weight: 700;
}

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 620px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-primary);
  border-color: var(--color-gold);
}
.btn-primary:hover {
  background: var(--color-gold-dk);
  border-color: var(--color-gold-dk);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--color-white);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--color-primary);
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.navbar__brand:hover { color: var(--color-gold); }

.navbar__logo-icon {
  width: 38px;
  height: 38px;
  background: var(--color-gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--color-primary);
  flex-shrink: 0;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar__nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.navbar__nav a:hover,
.navbar__nav a.active {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
}

.navbar__cta {
  background: var(--color-gold) !important;
  color: var(--color-primary) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
}
.navbar__cta:hover {
  background: var(--color-gold-dk) !important;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--color-primary-lt);
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius);
}
.navbar__mobile a:hover { background: rgba(255,255,255,0.1); color: var(--color-white); }
.navbar__mobile .btn-primary { margin-top: 8px; text-align: center; justify-content: center; }

/* ============================================================
   PAGE WRAPPER — offset for fixed nav
   ============================================================ */
main { padding-top: var(--nav-height); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0D3B6E 60%, #0F4C8C 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,153,204,0.2);
  border: 1px solid rgba(0,153,204,0.4);
  color: #7DDBFF;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.18;
}

.hero__title span { color: var(--color-gold); }

.hero__desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 400px;
}

.hero__stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  backdrop-filter: blur(8px);
}

.hero__stat-card .stat-value {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.hero__stat-card .stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.hero__stat-card.accent {
  background: rgba(0,153,204,0.15);
  border-color: rgba(0,153,204,0.3);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-bar__icon {
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ============================================================
   SECTION — Features
   ============================================================ */
.section {
  padding: 80px 0;
}

.section--alt { background: var(--color-bg-alt); }
.section--dark {
  background: var(--color-primary);
  color: var(--color-white);
}
.section--dark .section-title { color: var(--color-white); }
.section--dark .section-subtitle { color: rgba(255,255,255,0.7); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #E8F4FA, #C5E8F7);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: var(--color-accent);
}

.feature-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.feature-card__desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================================
   SECTION — Services
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.pipeline-visual {
  margin-top: 46px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F7FAFF 100%);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
}

.pipeline-col {
  background: white;
  border: 1px solid #DCE7F4;
  border-radius: 14px;
  padding: 18px 18px 14px;
  position: relative;
  overflow: hidden;
}

.pipeline-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-accent), #47C0E6);
}

.pipeline-col h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.pipeline-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pipeline-col li {
  font-size: 0.87rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.pipeline-col li::before {
  content: '•';
  color: var(--color-accent);
  font-weight: 900;
  line-height: 1;
  margin-top: 3px;
}

.pipeline-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #56B7D9;
  font-size: 1.5rem;
  font-weight: 700;
}

.service-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--color-gold);
}

.service-card__body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-card__body p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.service-card__body ul {
  list-style: disc;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-card__body ul li {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* ============================================================
   SECTION — CTA Banner
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--color-white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.cta-banner__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   SECTION — About page specific
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro__visual {
  background: linear-gradient(145deg, var(--color-primary) 0%, #0F4C8C 100%);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  color: var(--color-white);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-stat {
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
}

.about-stat .value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-gold);
  display: block;
  margin-bottom: 4px;
}

.about-stat .label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.about-intro__content h2 { margin-bottom: 16px; }
.about-intro__content p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}

.value-card:hover { box-shadow: var(--shadow-md); }

.value-card__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 14px;
  border-radius: 14px;
  border: 1px solid rgba(144, 216, 255, 0.42);
  background: linear-gradient(150deg, rgba(93, 226, 255, 0.18) 0%, rgba(246, 166, 60, 0.2) 100%);
  box-shadow: 0 0 14px rgba(93, 226, 255, 0.2);
  display: grid;
  place-items: center;
  padding: 9px;
}

.value-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.team-card__avatar {
  width: 100%;
  height: 180px;
  background: linear-gradient(145deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  padding: 34px;
}

.team-card__avatar svg {
  width: 100%;
  max-width: 112px;
  height: auto;
  display: block;
}

.team-card__body { padding: 20px; }
.team-card__body h3 { font-size: 1rem; margin-bottom: 4px; }
.team-card__role { font-size: 0.82rem; color: var(--color-accent); font-weight: 600; margin-bottom: 8px; display: block; }
.team-card__bio { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.55; }

.team-card__role {
  letter-spacing: 0.03em;
}

/* ============================================================
   SECTION — FAQ
   ============================================================ */
.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--color-accent); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--color-primary);
  user-select: none;
  transition: background var(--transition);
}

.faq-question:hover { background: #F0F5FF; }

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  color: var(--color-accent);
  font-weight: 700;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

.faq-item.open .faq-answer { display: block; }

/* ============================================================
   SECTION — Contact
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: flex-start;
}

.contact-info h2 { margin-bottom: 14px; }
.contact-info p { color: var(--color-text-muted); line-height: 1.7; margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #E8F4FA, #C5E8F7);
  color: var(--color-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.contact-detail__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.contact-detail__value {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--color-primary);
}

.contact-form {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0,153,204,0.12);
  background: var(--color-bg-alt);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-error {
  font-size: 0.8rem;
  color: #DC3545;
  margin-top: 4px;
  display: none;
}

.form-error.visible { display: block; }

.form-success {
  display: none;
  background: #D4EDDA;
  border: 1px solid #C3E6CB;
  color: #155724;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.93rem;
  margin-top: 16px;
  text-align: center;
}

.form-success.visible { display: block; }

                    /* ============================================================
                    // HUMAN SLIDE-TO-VERIFY WIDGET STYLING
                    // ============================================================ */
.human-verify-slider {
  margin-bottom: 22px;
  user-select: none;
  -webkit-user-select: none;
}

.human-verify-slider__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.human-verify-slider__status {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.human-verify-slider__track {
  position: relative;
  height: 50px;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.human-verify-slider__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(0, 153, 204, 0.2), rgba(0, 153, 204, 0.45));
  border-radius: 28px;
  transition: width 0.05s linear;
}

.human-verify-slider__text {
  position: relative;
  z-index: 1;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-muted);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}

.human-verify-slider__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(10, 37, 64, 0.3);
  transition: transform 0.15s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  touch-action: none;
}

.human-verify-slider__thumb:active {
  cursor: grabbing;
  transform: scale(1.05);
}

.human-verify-slider__thumb svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.human-verify-slider.verified .human-verify-slider__track {
  border-color: #28a745;
  background: rgba(40, 167, 69, 0.06);
}

.human-verify-slider.verified .human-verify-slider__fill {
  width: 100% !important;
  background: linear-gradient(90deg, rgba(40, 167, 69, 0.25), rgba(40, 167, 69, 0.45));
}

.human-verify-slider.verified .human-verify-slider__thumb {
  background: #28a745;
  cursor: default;
  box-shadow: 0 0 12px rgba(40, 167, 69, 0.4);
}

.human-verify-slider.verified .human-verify-slider__status {
  color: #28a745;
}

@keyframes shakeSlider {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}

.human-verify-slider.shake {
  animation: shakeSlider 0.5s ease;
}

                    /* ============================================================
                    // PAGE HERO (inner pages)
                    // ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0D3B6E 100%);
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #07192E;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer__brand-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-white);
}

.footer__about {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}

.footer__social a:hover {
  background: var(--color-accent);
  color: white;
}

.footer__col h4 {
  color: var(--color-white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__col ul li a:hover { color: var(--color-white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy { font-size: 0.83rem; }

.footer__links {
  display: flex;
  gap: 20px;
}

.footer__links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
}

.footer__links a:hover { color: white; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.83rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}

.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb span { margin: 0 8px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .pipeline-visual { grid-template-columns: 1fr; }
  .pipeline-arrow { transform: rotate(90deg); padding: 4px 0; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .navbar__nav  { display: none; }
  .navbar__hamburger { display: flex; }

  .hero { padding: 60px 0 50px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }

  .features-grid  { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .about-intro    { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: 1fr 1fr; }
  .team-grid      { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .footer__grid   { grid-template-columns: 1fr; }
  .pipeline-visual { padding: 18px; }

  .trust-bar__inner { gap: 20px; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   Global Theme Sync (Index Style)
   ============================================================ */
:root {
  --fx-bg-1: #04111e;
  --fx-bg-2: #0a243d;
  --fx-bg-3: #102f4d;
  --fx-ink: #e7f4ff;
  --fx-muted: #9ec0dc;
  --fx-accent: #5de2ff;
  --fx-gold: #f6a63c;
  --fx-grid: rgba(90, 163, 236, 0.16);
}

body {
  background:
    radial-gradient(1100px 640px at 88% -6%, rgba(72, 175, 255, 0.34) 0%, transparent 54%),
    radial-gradient(700px 460px at 14% 10%, rgba(76, 229, 255, 0.22) 0%, transparent 56%),
    linear-gradient(155deg, var(--fx-bg-1) 0%, var(--fx-bg-2) 54%, var(--fx-bg-3) 100%);
  color: var(--fx-ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, transparent 0%, transparent calc(50% - 0.5px), var(--fx-grid) 50%, transparent calc(50% + 0.5px), transparent 100%),
    linear-gradient(to bottom, transparent 0%, transparent calc(50% - 0.5px), var(--fx-grid) 50%, transparent calc(50% + 0.5px), transparent 100%);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 92%);
  opacity: 0.5;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: -20% -20%;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 42%, rgba(93, 226, 255, 0.11) 0%, transparent 18%),
    radial-gradient(circle at 74% 26%, rgba(246, 166, 60, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 56% 78%, rgba(127, 200, 255, 0.09) 0%, transparent 18%);
  animation: driftField 18s linear infinite;
  z-index: -2;
}

.living-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -2;
}

.living-bg span {
  position: absolute;
  width: 38vw;
  max-width: 460px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.24;
  animation: morphFloat 14s ease-in-out infinite;
}

.living-bg span:nth-child(1) {
  top: -14%;
  left: -12%;
  background: radial-gradient(circle, rgba(76, 229, 255, 0.7) 0%, transparent 68%);
}

.living-bg span:nth-child(2) {
  right: -8%;
  top: 22%;
  background: radial-gradient(circle, rgba(104, 173, 255, 0.7) 0%, transparent 68%);
  animation-delay: -4s;
}

.living-bg span:nth-child(3) {
  left: 24%;
  bottom: -20%;
  background: radial-gradient(circle, rgba(246, 166, 60, 0.58) 0%, transparent 70%);
  animation-delay: -8s;
}

h1,
h2,
h3,
.section-label,
.hero__tag {
  font-family: "Orbitron", "Segoe UI", sans-serif;
  letter-spacing: 0.02em;
}

.navbar,
.navbar__mobile {
  backdrop-filter: blur(10px);
  background: linear-gradient(102deg, rgba(9, 20, 46, 0.9) 0%, rgba(21, 38, 83, 0.86) 50%, rgba(28, 58, 116, 0.76) 100%);
  border-bottom: 1px solid rgba(111, 188, 255, 0.22);
  box-shadow: none;
  overflow: visible;
}

.navbar::before,
.navbar__mobile::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 50%, rgba(116, 96, 255, 0.24) 0%, transparent 40%),
    radial-gradient(circle at 82% 34%, rgba(95, 175, 255, 0.2) 0%, transparent 42%);
  opacity: 0.9;
}

.navbar::after,
.navbar__mobile::after {
  content: "";
  position: absolute;
  inset: -20% -10%;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, transparent 0%, rgba(122, 181, 255, 0.24) 24%, transparent 46%),
    linear-gradient(160deg, transparent 0%, rgba(132, 108, 255, 0.18) 30%, transparent 58%);
  animation: navFlow 14s linear infinite;
  mix-blend-mode: screen;
}

.navbar__inner {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.navbar__nav {
  overflow: visible;
}

.navbar__brand {
  text-shadow: 0 0 20px rgba(135, 209, 255, 0.2);
  border: 1px solid rgba(109, 139, 248, 0.34);
  border-radius: 20px;
  min-width: 238px;
  padding: 0.38rem 1.2rem 0.38rem 0.56rem;
  background: linear-gradient(110deg, rgba(15, 18, 72, 0.72) 0%, rgba(10, 22, 58, 0.62) 100%);
}

.navbar__logo-icon {
  box-shadow: none;
  background: transparent;
  color: #cde8ff;
  font-family: "Orbitron", "Segoe UI", sans-serif;
}

.navbar__logo-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.footer {
  background: rgba(3, 16, 28, 0.95);
  border-top: 1px solid rgba(117, 192, 251, 0.24);
}

.footer__social a {
  border-color: rgba(123, 203, 255, 0.45);
  color: #d7f0ff;
  background: rgba(8, 35, 57, 0.55);
}

@keyframes morphFloat {
  0%,
  100% { transform: translate3d(0, 0, 0) scale(1); }
  35% { transform: translate3d(36px, 28px, 0) scale(1.08); }
  65% { transform: translate3d(-28px, 42px, 0) scale(0.94); }
}

@keyframes driftField {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); }
  100% { transform: translate3d(16px, -24px, 0) rotate(5deg); }
}

@keyframes navFlow {
  0% { transform: translateX(-12%); }
  100% { transform: translateX(12%); }
}

/* ============================================================
   Theme Switcher + Theme Palettes
   ============================================================ */
.theme-switcher {
  display: none;
}

.theme-menu {
  position: relative;
  z-index: 3000;
}

.language-menu {
  position: relative;
  z-index: 3000;
}

.theme-menu__trigger {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  background: transparent;
  transition: background var(--transition), color var(--transition);
}

.language-menu__trigger {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1px;
  line-height: 1.05;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  background: transparent;
  transition: background var(--transition), color var(--transition);
}

.language-menu__trigger-main {
  display: block;
}

.language-menu__trigger-sub {
  display: block;
  font-size: 0.63rem;
  font-weight: 500;
  opacity: 0.82;
}

.language-menu__trigger-sub.notranslate {
  unicode-bidi: isolate;
}

.theme-menu__trigger:hover,
.theme-menu.open .theme-menu__trigger {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
}

.language-menu__trigger:hover,
.language-menu.open .language-menu__trigger {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
}

.theme-menu__options {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 168px;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 6px;
  border-radius: 10px;
  border: 1px solid rgba(128, 207, 255, 0.32);
  background: rgba(7, 28, 46, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  z-index: 3001;
}

.language-menu__options {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 260px;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 6px;
  border-radius: 10px;
  border: 1px solid rgba(128, 207, 255, 0.32);
  background: rgba(7, 28, 46, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  z-index: 3001;
}

.theme-menu.open .theme-menu__options {
  display: flex;
}

.language-menu.open .language-menu__options {
  display: flex;
}

.theme-menu__options[hidden] {
  display: none !important;
}

.language-menu__options[hidden] {
  display: none !important;
}

.theme-menu__option {
  border: none;
  background: transparent;
  color: #d7efff;
  font-size: 0.82rem;
  text-align: left;
  padding: 8px 10px;
  border-radius: 7px;
  cursor: pointer;
}

.language-menu__option {
  border: none;
  background: transparent;
  color: #d7efff;
  font-size: 0.82rem;
  text-align: left;
  padding: 8px 10px;
  border-radius: 7px;
  cursor: pointer;
}

.theme-menu__option:hover,
.theme-menu__option.active {
  background: rgba(93, 226, 255, 0.16);
  color: #ffffff;
}

.language-menu__option:hover,
.language-menu__option.active {
  background: rgba(93, 226, 255, 0.16);
  color: #ffffff;
}

.theme-menu--mobile {
  width: 100%;
}

.language-menu--mobile {
  width: 100%;
}

.theme-menu--mobile .theme-menu__trigger {
  width: 100%;
  text-align: left;
  color: rgba(255,255,255,0.85);
  padding: 12px 16px;
}

.language-menu--mobile .language-menu__trigger {
  width: 100%;
  text-align: left;
  color: rgba(255,255,255,0.85);
  padding: 12px 16px;
}

.theme-menu--mobile .theme-menu__options {
  position: static;
  margin-top: 4px;
  width: 100%;
  min-width: 0;
}

.language-menu--mobile .language-menu__options {
  position: static;
  margin-top: 4px;
  width: 100%;
  min-width: 0;
}

/* Keep layout stable when Google Translate is active via language menu. */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
iframe.skiptranslate,
body > .skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
  visibility: hidden !important;
}

html,
body {
  margin-top: 0 !important;
  top: 0 !important;
}

body[data-theme="aurora"] .theme-menu__trigger {
  color: #264d48;
}

body[data-theme="aurora"] .language-menu__trigger {
  color: #264d48;
}

body[data-theme="aurora"] .theme-menu__trigger:hover,
body[data-theme="aurora"] .theme-menu.open .theme-menu__trigger {
  background: rgba(34, 132, 122, 0.14);
  color: #163e39;
}

body[data-theme="aurora"] .language-menu__trigger:hover,
body[data-theme="aurora"] .language-menu.open .language-menu__trigger {
  background: rgba(34, 132, 122, 0.14);
  color: #163e39;
}

body[data-theme="aurora"] .theme-menu__options {
  background: rgba(236, 252, 248, 0.97);
  border-color: rgba(61, 140, 132, 0.26);
}

body[data-theme="aurora"] .language-menu__options {
  background: rgba(236, 252, 248, 0.97);
  border-color: rgba(61, 140, 132, 0.26);
}

body[data-theme="aurora"] .theme-menu__option {
  color: #21524d;
}

body[data-theme="aurora"] .language-menu__option {
  color: #21524d;
}

body[data-theme="aurora"] .theme-menu__option:hover,
body[data-theme="aurora"] .theme-menu__option.active {
  background: rgba(42, 145, 135, 0.16);
}

body[data-theme="aurora"] .language-menu__option:hover,
body[data-theme="aurora"] .language-menu__option.active {
  background: rgba(42, 145, 135, 0.16);
}

body[data-theme="ember"] .theme-menu__options {
  background: rgba(53, 18, 14, 0.95);
  border-color: rgba(255, 160, 103, 0.3);
}

body[data-theme="ember"] .language-menu__options {
  background: rgba(53, 18, 14, 0.95);
  border-color: rgba(255, 160, 103, 0.3);
}

body[data-theme="ember"] .theme-menu__option {
  color: #ffd8c0;
}

body[data-theme="ember"] .language-menu__option {
  color: #ffd8c0;
}

body[data-theme="ember"] .theme-menu__option:hover,
body[data-theme="ember"] .theme-menu__option.active {
  background: rgba(255, 159, 98, 0.18);
}

body[data-theme="ember"] .language-menu__option:hover,
body[data-theme="ember"] .language-menu__option.active {
  background: rgba(255, 159, 98, 0.18);
}

body[data-theme="aurora"] {
  --color-primary: #1d4f48;
  --color-primary-lt: #2a655c;
  --color-accent: #1aa4a4;
  --color-accent-dk: #137f7f;
  --color-gold: #f0b96a;
  --color-gold-dk: #d59640;
  --color-bg: #f3fbfa;
  --color-bg-alt: #ffffff;
  --color-text: #123432;
  --color-text-muted: #476d69;
  --color-border: #c9e7e4;
  --fx-bg-1: #eefaf8;
  --fx-bg-2: #d5f0ec;
  --fx-bg-3: #bddfdb;
  --fx-ink: #173e3a;
  --fx-muted: #456f6b;
  --fx-accent: #19a9a9;
  --fx-gold: #d2963f;
  --fx-grid: rgba(31, 134, 134, 0.15);
  background:
    radial-gradient(1100px 640px at 88% -6%, rgba(114, 232, 204, 0.28) 0%, transparent 54%),
    radial-gradient(700px 460px at 14% 10%, rgba(109, 190, 224, 0.22) 0%, transparent 56%),
    linear-gradient(155deg, #eefaf8 0%, #d5f0ec 54%, #bddfdb 100%) !important;
  color: var(--fx-ink) !important;
}

body[data-theme="ember"] {
  --color-primary: #47261f;
  --color-primary-lt: #63372d;
  --color-accent: #ff7b4a;
  --color-accent-dk: #de6338;
  --color-gold: #ffc56f;
  --color-gold-dk: #e59f3f;
  --color-bg: #fff6f0;
  --color-bg-alt: #fffdfb;
  --color-text: #3e2119;
  --color-text-muted: #80574a;
  --color-border: #f0d8cb;
  --fx-bg-1: #2f1512;
  --fx-bg-2: #5a241c;
  --fx-bg-3: #893122;
  --fx-ink: #ffe9db;
  --fx-muted: #ebb79f;
  --fx-accent: #ff9c66;
  --fx-gold: #ffc56f;
  --fx-grid: rgba(255, 173, 117, 0.15);
  background:
    radial-gradient(1100px 640px at 88% -6%, rgba(255, 140, 89, 0.28) 0%, transparent 54%),
    radial-gradient(700px 460px at 14% 10%, rgba(255, 195, 111, 0.2) 0%, transparent 56%),
    linear-gradient(155deg, #2f1512 0%, #5a241c 54%, #893122 100%) !important;
  color: var(--fx-ink) !important;
}

body[data-theme="aurora"] .navbar,
body[data-theme="aurora"] .navbar__mobile {
  background: linear-gradient(102deg, rgba(219, 247, 242, 0.95) 0%, rgba(193, 234, 227, 0.9) 52%, rgba(177, 225, 217, 0.86) 100%) !important;
  border-bottom-color: rgba(48, 128, 120, 0.24) !important;
}

body[data-theme="aurora"] .navbar__nav a,
body[data-theme="aurora"] .navbar__brand,
body[data-theme="aurora"] .footer,
body[data-theme="aurora"] .footer a,
body[data-theme="aurora"] .footer__copy,
body[data-theme="aurora"] .footer__about,
body[data-theme="aurora"] .footer__brand-text,
body[data-theme="aurora"] .footer__col h4 {
  color: #183c37 !important;
}

body[data-theme="aurora"] .hero__content,
body[data-theme="aurora"] .hero__visual,
body[data-theme="aurora"] .feature-card,
body[data-theme="aurora"] .service-card,
body[data-theme="aurora"] .pipeline-visual,
body[data-theme="aurora"] .section--alt,
body[data-theme="aurora"] .cta-banner .container {
  background: linear-gradient(170deg, rgba(243, 253, 251, 0.93) 0%, rgba(219, 246, 241, 0.92) 100%) !important;
  border-color: rgba(54, 142, 133, 0.28) !important;
  box-shadow: 0 20px 48px -40px rgba(40, 141, 131, 0.62) !important;
}

body[data-theme="aurora"] .hero__title,
body[data-theme="aurora"] .section-title,
body[data-theme="aurora"] .feature-card__title,
body[data-theme="aurora"] .service-card h3,
body[data-theme="aurora"] .pipeline-col h3,
body[data-theme="aurora"] .section-label,
body[data-theme="aurora"] .hero__tag {
  color: #154a45 !important;
}

body[data-theme="aurora"] .hero__desc,
body[data-theme="aurora"] .section-subtitle,
body[data-theme="aurora"] .feature-card__desc,
body[data-theme="aurora"] .service-card p,
body[data-theme="aurora"] .service-card ul,
body[data-theme="aurora"] .pipeline-col li {
  color: #3f6c67 !important;
}

body[data-theme="ember"] .navbar,
body[data-theme="ember"] .navbar__mobile {
  background: linear-gradient(102deg, rgba(58, 20, 16, 0.93) 0%, rgba(88, 32, 24, 0.89) 50%, rgba(126, 44, 28, 0.8) 100%) !important;
  border-bottom-color: rgba(255, 154, 95, 0.32) !important;
}

body[data-theme="ember"] .hero__content,
body[data-theme="ember"] .hero__visual,
body[data-theme="ember"] .feature-card,
body[data-theme="ember"] .service-card,
body[data-theme="ember"] .pipeline-visual,
body[data-theme="ember"] .section--alt,
body[data-theme="ember"] .cta-banner .container {
  background: linear-gradient(170deg, rgba(74, 31, 23, 0.9) 0%, rgba(52, 19, 15, 0.9) 100%) !important;
  border-color: rgba(255, 169, 107, 0.3) !important;
  box-shadow: 0 24px 54px -42px rgba(255, 132, 71, 0.58) !important;
}

body[data-theme="ember"] .hero__title,
body[data-theme="ember"] .section-title,
body[data-theme="ember"] .feature-card__title,
body[data-theme="ember"] .service-card h3,
body[data-theme="ember"] .pipeline-col h3,
body[data-theme="ember"] .section-label,
body[data-theme="ember"] .hero__tag {
  color: #ffe4d2 !important;
}

body[data-theme="ember"] .hero__desc,
body[data-theme="ember"] .section-subtitle,
body[data-theme="ember"] .feature-card__desc,
body[data-theme="ember"] .service-card p,
body[data-theme="ember"] .service-card ul,
body[data-theme="ember"] .pipeline-col li {
  color: #efc2a7 !important;
}

body[data-theme="ember"] .footer {
  background: rgba(32, 11, 10, 0.94) !important;
  border-top-color: rgba(255, 163, 110, 0.34) !important;
}

@media (max-width: 768px) {
  .theme-menu--nav {
    display: none;
  }

  .theme-menu--mobile {
    margin-top: 0;
  }
}
