/* ============================================================
   SoftwareStrategy Clone — Main Stylesheet
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:      #0078d4;
  --blue-dark: #005a9e;
  --blue-grad: linear-gradient(135deg, #003f7a 0%, #0078d4 60%, #00bcf2 100%);
  --white:     #ffffff;
  --off-white: #f5f7fa;
  --light:     #eef2f7;
  --text:      #1a1a2e;
  --text-muted:#5a6a7e;
  --border:    #e2e8f0;
  --shadow:    0 4px 20px rgba(0,0,100,.08);
  --radius:    12px;
  --radius-sm: 8px;
  --font:      'Inter', sans-serif;
  --transition:.25s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
img  { max-width: 100%; display: block; }
address { font-style: normal; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary  { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,120,212,.35); }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-secondary:hover { background: rgba(255,255,255,.15); }
.btn-outline  { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-outline-small { display: inline-block; padding: .45rem 1.1rem; border-radius: 20px; border: 1.5px solid var(--blue); color: var(--blue); font-size: .8rem; font-weight: 600; transition: all var(--transition); }
.btn-outline-small:hover { background: var(--blue); color: #fff; }
.btn-white  { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn-full { width: 100%; }

/* ---------- Section Labels ---------- */
.section-label {
  display: inline-block;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-style: italic;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1.5rem;
}
.logo { display: flex; align-items: center; gap: .5rem; }
.logo-icon { font-size: 1.6rem; }
.logo-text { font-size: 1.1rem; color: var(--text); }
.logo-text strong { color: var(--blue); }

.main-nav ul { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
  display: block;
  padding: .45rem .75rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover { color: var(--blue); background: var(--light); }
.arrow { font-size: .65rem; opacity: .6; }

.has-dropdown { position: relative; }
.main-nav ul.dropdown,
.dropdown {
  display: block;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  min-width: 240px;
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 50;
  border: 1px solid var(--border);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li { display: block; width: 100%; }
.dropdown li a {
  padding: .55rem 1.25rem;
  font-size: .85rem;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: .55rem;
  width: 100%;
  box-sizing: border-box;
}
.dropdown li a:hover { background: var(--off-white); }
.nav-mod-icon { width: 18px; height: 18px; object-fit: contain; flex-shrink: 0; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--blue-grad);
  color: #fff;
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 20px;
  padding: .35rem 1rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-text h1 { font-size: clamp(1.75rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.hero-sub { font-size: 1.05rem; opacity: .85; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Mockup */
.hero-mockup {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,50,.3);
}
.mockup-header {
  background: rgba(0,0,0,.25);
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.red    { background: #ff5f57; }
.yellow { background: #ffbd2e; }
.green  { background: #28c840; }
.mockup-title { font-size: .7rem; color: rgba(255,255,255,.7); margin-left: .5rem; }
.mockup-body  { display: flex; min-height: 180px; }
.mockup-sidebar { width: 60px; background: rgba(0,0,0,.2); padding: .75rem .5rem; display: flex; flex-direction: column; gap: .4rem; }
.mockup-item { height: 8px; background: rgba(255,255,255,.2); border-radius: 4px; }
.mockup-item.active { background: rgba(255,255,255,.6); }
.mockup-main { flex: 1; padding: .75rem; display: flex; flex-direction: column; gap: .5rem; }
.header-row { height: 10px; background: rgba(255,255,255,.15); border-radius: 4px; }
.mockup-cards { display: flex; gap: .4rem; }
.mockup-card { flex: 1; height: 30px; border-radius: 6px; }
.card-blue   { background: rgba(0,188,242,.5); }
.card-green  { background: rgba(40,200,64,.4); }
.card-orange { background: rgba(255,189,46,.5); }
.mockup-table { display: flex; flex-direction: column; gap: .3rem; }
.mockup-row { height: 8px; background: rgba(255,255,255,.1); border-radius: 4px; }
.mockup-copilot { width: 90px; background: rgba(0,0,0,.2); padding: .5rem; }
.copilot-header { font-size: .55rem; color: rgba(255,255,255,.8); margin-bottom: .4rem; font-weight: 600; }
.copilot-msg { height: 6px; background: rgba(255,255,255,.15); border-radius: 3px; margin-bottom: .35rem; }
.copilot-msg.short { width: 60%; }

/* ============================================================
   LOGOS BANNER
   ============================================================ */
.logos-banner { background: #fff; border-bottom: 1px solid var(--border); padding: 1.5rem 0; overflow: hidden; }
.logos-track { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 1.5rem; }
.logo-item { opacity: .45; transition: opacity var(--transition); }
.logo-item:hover { opacity: .75; }
.partner-logo { font-size: .85rem; font-weight: 700; letter-spacing: .05em; color: var(--text-muted); }

/* ============================================================
   STATS
   ============================================================ */
.stats-section { background: var(--off-white); padding: 3rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.stat-card:hover { transform: translateY(-4px); }
.stat-icon { font-size: 2.25rem; margin-bottom: .75rem; }
.stat-card h3 { font-size: 1.75rem; font-weight: 800; color: var(--blue); }
.stat-card p  { font-size: .85rem; color: var(--text-muted); font-weight: 500; margin-top: .25rem; }

/* ============================================================
   SOLUTIONS
   ============================================================ */
.solutions-section { background: var(--off-white); padding: 5rem 0; }
.solutions-section h2 { font-size: clamp(1.2rem, 2vw, 1.6rem); margin-bottom: 2.5rem; color: var(--text); }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.solution-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.solution-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,120,212,.12); }
.solution-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.solution-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.solution-card p  { font-size: .875rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: #fff; padding: 5rem 0; }
.testimonials-section h2 { font-size: clamp(1.2rem, 2vw, 1.6rem); margin-bottom: 2.5rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card .quote { font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
}
.author-info strong { display: block; font-size: .9rem; color: var(--blue); }
.author-info span   { font-size: .78rem; color: var(--text-muted); }
.quote-mark { position: absolute; bottom: .75rem; right: 1rem; font-size: 2rem; color: var(--blue); opacity: .15; }

/* ============================================================
   CAPABILITIES
   ============================================================ */
.capabilities-section { background: var(--off-white); padding: 5rem 0; }
.capabilities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.cap-mockup { background: #fff; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.cap-columns { display: flex; gap: .75rem; margin-bottom: 1rem; }
.cap-col { flex: 1; }
.cap-col-title { font-size: .7rem; font-weight: 700; color: var(--text-muted); margin-bottom: .5rem; }
.cap-col.highlight .cap-col-title { color: var(--blue); }
.cap-items { display: flex; flex-direction: column; gap: .35rem; }
.cap-item { height: 8px; background: var(--light); border-radius: 4px; }
.cap-item.active  { background: var(--blue); }
.cap-item.checked { background: #28c840; }
.cap-marketing { background: var(--light); border-radius: var(--radius-sm); padding: .5rem .75rem; font-size: .8rem; font-weight: 600; color: var(--text-muted); display: inline-block; }
.capabilities-text h2 { font-size: clamp(1.2rem, 2vw, 1.7rem); margin-bottom: 1.5rem; }
.capabilities-list { list-style: none; margin-bottom: 2rem; }
.capabilities-list li { padding: .5rem 0; font-size: .95rem; font-weight: 500; border-bottom: 1px solid var(--border); }
.capabilities-list li:last-child { border-bottom: none; }

/* ============================================================
   POWER PLATFORM
   ============================================================ */
.power-section { background: #fff; padding: 5rem 0; }
.power-section h2 { font-size: clamp(1.1rem, 2vw, 1.5rem); margin-bottom: 2.5rem; color: var(--text-muted); }
.power-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.power-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.power-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.power-svg-icon { width: 56px; height: 56px; object-fit: contain; margin-bottom: 1rem; }
.power-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.power-card p  { font-size: .875rem; color: var(--text-muted); margin-bottom: 1.25rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { background: var(--blue-grad); padding: 4rem 0; text-align: center; }
.cta-inner h2 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); color: #fff; margin-bottom: 1.5rem; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { background: var(--blue-grad); color: #fff; padding: 4rem 0; text-align: center; }
.page-hero h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: .75rem; }
.page-hero p  { font-size: 1.05rem; opacity: .85; max-width: 600px; margin: 0 auto; }
.page-hero .breadcrumb { font-size: .8rem; opacity: .7; margin-bottom: .75rem; }
.page-hero .breadcrumb a { text-decoration: underline; }
.solution-hero-icon { font-size: 3.5rem; margin-bottom: 1rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-content { padding: 5rem 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.about-text p  { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.about-text .btn { margin-top: .5rem; }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.av-card { background: var(--off-white); border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--border); text-align: center; transition: transform var(--transition); }
.av-card:hover { transform: translateY(-4px); }
.av-card.highlight { background: var(--blue); color: #fff; }
.av-number { font-size: 2rem; font-weight: 800; color: var(--blue); }
.av-card.highlight .av-number { color: #fff; }
.av-label  { font-size: .8rem; font-weight: 500; color: var(--text-muted); margin-top: .25rem; }
.av-card.highlight .av-label { color: rgba(255,255,255,.8); }

.values-section { background: var(--off-white); padding: 5rem 0; }
.values-section h2 { font-size: 1.6rem; margin-bottom: 2.5rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-card { background: #fff; border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border); box-shadow: var(--shadow); text-align: center; }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.value-card p  { font-size: .85rem; color: var(--text-muted); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-section { background: #fff; padding: 5rem 0; }
.industries-section h2 { font-size: 1.6rem; margin-bottom: 2.5rem; }
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.industry-card { background: var(--off-white); border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border); transition: transform var(--transition), box-shadow var(--transition); }
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.industry-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.industry-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.industry-card p  { font-size: .875rem; color: var(--text-muted); margin-bottom: 1.25rem; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-section { background: var(--off-white); padding: 5rem 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); transition: transform var(--transition); }
.blog-card:hover { transform: translateY(-4px); }
.blog-card-image {
  height: 180px; display: flex; align-items: flex-start; padding: 1rem;
  background: var(--blue-grad);
}
.blog-img-1 { background: linear-gradient(135deg, #7719aa 0%, #0078d4 100%); }
.blog-img-2 { background: linear-gradient(135deg, #d83b01 0%, #ff8c00 100%); }
.blog-label { background: rgba(255,255,255,.2); color: #fff; padding: .25rem .65rem; border-radius: 20px; font-size: .7rem; font-weight: 600; }
.blog-card-body { padding: 1.5rem; }
.blog-date { font-size: .75rem; color: var(--text-muted); }
.blog-card-body h3 { font-size: 1rem; font-weight: 700; margin: .5rem 0; line-height: 1.4; }
.blog-card-body h3 a:hover { color: var(--blue); }
.blog-card-body p  { font-size: .85rem; color: var(--text-muted); margin-bottom: 1rem; }

.blog-post-section { background: var(--off-white); padding: 5rem 0; }
.blog-post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; }
.blog-post-content { background: #fff; border-radius: var(--radius); padding: 2.5rem; border: 1px solid var(--border); }
.blog-post-content h2 { font-size: 1.4rem; margin: 1.5rem 0 .75rem; }
.blog-post-content p  { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.blog-post-content ul { margin: 1rem 0 1.5rem 1.5rem; color: var(--text-muted); }
.blog-post-content ul li { margin-bottom: .5rem; }
.breadcrumb { margin-bottom: .5rem; opacity: .7; font-size: .85rem; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.blog-sidebar, .sd-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget { background: #fff; border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--border); }
.sidebar-widget h4 { font-size: .95rem; font-weight: 700; margin-bottom: 1rem; color: var(--text); }
.sidebar-widget ul li { padding: .35rem 0; border-bottom: 1px solid var(--light); }
.sidebar-widget ul li:last-child { border: none; }
.sidebar-widget ul li a { font-size: .85rem; color: var(--text-muted); transition: color var(--transition); }
.sidebar-widget ul li a:hover { color: var(--blue); }
.cta-widget { background: var(--blue-grad); color: #fff; }
.cta-widget h4 { color: #fff; }
.cta-widget p  { font-size: .85rem; opacity: .85; margin-bottom: 1rem; }
.cta-widget .btn-primary { background: #fff; color: var(--blue); border-color: #fff; }
.cta-widget .btn-primary:hover { background: var(--off-white); }

/* ============================================================
   SOLUTION / POWER DETAIL
   ============================================================ */
.solution-detail-section { background: var(--off-white); padding: 5rem 0; }
.sd-grid { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; }
.sd-main { background: #fff; border-radius: var(--radius); padding: 2.5rem; border: 1px solid var(--border); }
.sd-main h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.sd-main p  { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.8; }
.feature-list { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.fi-icon { font-size: 1.1rem; margin-top: .2rem; flex-shrink: 0; }
.feature-item strong { display: block; font-size: .95rem; margin-bottom: .25rem; }
.feature-item p { color: var(--text-muted); font-size: .875rem; margin: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--off-white); padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.contact-info h2 { font-size: 1.6rem; margin-bottom: .75rem; }
.contact-info p  { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon { font-size: 1.5rem; }
.contact-item strong { display: block; font-size: .85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.contact-item a, .contact-item span { font-size: .95rem; color: var(--text); font-weight: 500; }
.contact-form-wrap { background: #fff; border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  background: var(--off-white);
  color: var(--text);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,120,212,.12);
  background: #fff;
}
.form-group textarea { resize: vertical; }
.form-status { padding: .75rem; border-radius: var(--radius-sm); font-size: .875rem; display: none; margin-top: .25rem; }
.form-status.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; display: block; }
.form-status.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0f1f3d; color: rgba(255,255,255,.75); padding: 4rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: .85rem; line-height: 1.7; margin: 1rem 0; color: rgba(255,255,255,.6); }
.social-links { display: flex; gap: .75rem; }
.social-links a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700;
  transition: all var(--transition);
  color: rgba(255,255,255,.8);
}
.social-links a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.footer-col h4 { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .83rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--blue); }
.footer-col address p { font-size: .83rem; margin-bottom: .5rem; color: rgba(255,255,255,.6); }
.footer-col address a { color: rgba(255,255,255,.6); }
.footer-col address a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; text-align: center; font-size: .8rem; color: rgba(255,255,255,.4); }

/* ============================================================
   FAB & SCROLL-TOP
   ============================================================ */
.fab-phone {
  position: fixed; bottom: 4.5rem; right: 1.5rem; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; box-shadow: 0 4px 16px rgba(0,120,212,.4);
  transition: transform var(--transition);
}
.fab-phone:hover { transform: scale(1.1); }
.scroll-top {
  position: fixed; bottom: 1.25rem; right: 1.5rem; z-index: 90;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue); color: #fff; border: none; cursor: pointer;
  font-size: 1rem; font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  opacity: 0; transition: opacity var(--transition), transform var(--transition);
  transform: translateY(10px);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--blue-dark); }

/* ============================================================
   HEADER UPDATES
   ============================================================ */
.logo-img        { height: 56px; width: auto; display: block; }
.logo-text-light { color: var(--text-muted); font-weight: 400; }
.header-cta      { font-size: .82rem; padding: .55rem 1.2rem; }
.header-contact-link { font-size: .82rem; padding: .55rem 1.2rem; }

/* Footer logo — white pill so the logo (fundo branco) encaixa no footer escuro */
.footer-logo-wrap {
  display: inline-block;
  background: #fff;
  border-radius: 8px;
  padding: 6px 14px;
  margin-bottom: .75rem;
}
.footer-logo-img { height: 48px; width: auto; display: block; }

/* ============================================================
   HERO UPDATES
   ============================================================ */
.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-trust span { font-size: .8rem; opacity: .8; font-weight: 500; }
.hero-img-real  { border-radius: var(--radius); box-shadow: 0 24px 64px rgba(0,0,50,.3); }
.mockup-kpi-bar { display: flex; gap: .35rem; margin-bottom: .4rem; }
.kpi-card       { flex: 1; height: 18px; background: rgba(255,255,255,.12); border-radius: 4px; }
.kpi-card.accent { background: rgba(0,188,242,.4); }

/* Hero — imagem real D365 dentro da moldura do browser */
.hero-d365-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  object-position: top left;
  border-radius: 0 0 calc(var(--radius) - 1px) calc(var(--radius) - 1px);
}

/* Solution Intro — imagem real D365 Business Central dentro da moldura */
.intro-d365-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  object-position: top left;
  border-radius: 0 0 calc(var(--radius) - 1px) calc(var(--radius) - 1px);
}

/* ============================================================
   SECTION UTILITY
   ============================================================ */
.section-sub {
  color: var(--text-muted);
  font-size: .975rem;
  max-width: 640px;
  margin-top: .5rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ============================================================
   PROBLEMS
   ============================================================ */
.problems-section { background: #fff; padding: 5rem 0; }
.problems-section h2 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); margin-bottom: .35rem; }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.problem-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.problem-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.problem-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.problem-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.problems-cta { text-align: center; }
.problems-cta-text { color: var(--text-muted); font-size: .95rem; margin-bottom: 1rem; }

/* ============================================================
   SOLUTION INTRO
   ============================================================ */
.solution-intro-section { background: var(--blue-grad); color: #fff; padding: 5rem 0; overflow: hidden; }
.solution-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.solution-intro-text .section-label { color: rgba(255,255,255,.7); }
.solution-intro-text h2 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); margin-bottom: 1.1rem; }
.solution-intro-text p  { opacity: .88; font-size: .95rem; line-height: 1.75; margin-bottom: .85rem; }
.intro-checks { list-style: none; margin: 1.1rem 0 1.75rem; display: flex; flex-direction: column; gap: .55rem; }
.intro-checks li { font-size: .9rem; opacity: .9; }
.solution-intro-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Intro visual mockup */
.intro-visual-mockup {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,50,.25);
}
.ivm-header {
  background: rgba(0,0,0,.2);
  padding: .65rem 1rem;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.ivm-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.25); }
.ivm-dot.active { background: rgba(255,255,255,.7); }
.ivm-title { font-size: .65rem; color: rgba(255,255,255,.65); margin-left: .5rem; }
.ivm-body { padding: 1rem; display: flex; flex-direction: column; gap: .75rem; }
.ivm-kpis { display: flex; gap: .6rem; }
.ivm-kpi { flex: 1; background: rgba(255,255,255,.1); border-radius: var(--radius-sm); padding: .65rem; }
.ivm-kpi.highlight { background: rgba(0,188,242,.25); }
.ivm-kpi-val { height: 14px; background: rgba(255,255,255,.4); border-radius: 3px; margin-bottom: .35rem; width: 60%; }
.ivm-kpi-lbl { height: 7px; background: rgba(255,255,255,.2); border-radius: 3px; width: 80%; }
.ivm-chart { display: flex; align-items: flex-end; gap: .45rem; height: 70px; padding: 0 .25rem; }
.ivm-bar { flex: 1; background: rgba(255,255,255,.2); border-radius: 3px 3px 0 0; transition: height .3s ease; }
.ivm-bar.accent { background: rgba(0,188,242,.55); }
.ivm-rows { display: flex; flex-direction: column; gap: .45rem; }
.ivm-row { height: 8px; background: rgba(255,255,255,.15); border-radius: 3px; }
.ivm-row.wide { width: 100%; }
.ivm-row.medium { width: 68%; }
.ivm-row.narrow { width: 42%; }

/* ============================================================
   MODULES (Dynamics 365 solutions grid)
   ============================================================ */
.modules-section { background: var(--off-white); padding: 5rem 0; }
.modules-section h2 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); margin-bottom: .35rem; }
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.module-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.module-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,120,212,.15); }

/* Image area */
.module-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--light);
}
.module-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
  transition: transform .4s ease;
}
.module-card:hover .module-img { transform: scale(1.04); }
.module-img-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: .4rem;
  background: linear-gradient(to top, rgba(0,30,80,.85) 0%, transparent 100%);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 1.25rem .75rem .5rem;
  line-height: 1.2;
}
.module-svg-icon { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }

/* Card body */
.module-body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.module-desc {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: .85rem;
  line-height: 1.65;
  flex: 1;
}
.module-benefit {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  font-size: .79rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
  padding: .45rem .65rem;
  background: var(--light);
  border-radius: var(--radius-sm);
}
.benefit-check { flex-shrink: 0; }

/* ============================================================
   TARGET AUDIENCE
   ============================================================ */
.target-section { background: #fff; padding: 5rem 0; }
.target-section h2 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); margin-bottom: .35rem; }
.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.target-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.target-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.target-icon  { font-size: 2.1rem; margin-bottom: .7rem; }
.target-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.target-card p  { font-size: .85rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--off-white); padding: 5rem 0; }
.services-section h2 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); margin-bottom: .35rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.service-item {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-item:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.service-icon { font-size: 1.35rem; flex-shrink: 0; margin-top: .05rem; }
.service-text strong { display: block; font-size: .88rem; font-weight: 700; margin-bottom: .25rem; }
.service-text p { font-size: .8rem; color: var(--text-muted); margin: 0; line-height: 1.55; }
.services-cta { text-align: center; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-section { background: var(--blue-grad); padding: 5rem 0; }
.benefits-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.benefits-text { color: #fff; }
.benefits-label { color: rgba(255,255,255,.7) !important; }
.benefits-text h2 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); margin-bottom: 1rem; }
.benefits-text p  { opacity: .88; font-size: .95rem; line-height: 1.75; margin-bottom: 1.75rem; }
.benefits-list-wrap { display: flex; flex-direction: column; gap: .65rem; }
.benefit-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  color: #fff;
  font-size: .875rem;
  transition: background var(--transition);
}
.benefit-item:hover { background: rgba(255,255,255,.17); }
.benefit-icon { font-size: 1.2rem; flex-shrink: 0; }

/* ============================================================
   METHODOLOGY
   ============================================================ */
.methodology-section { background: #fff; padding: 5rem 0; }
.methodology-section h2 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); margin-bottom: .35rem; }
.methodology-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.method-step {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.method-step:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue);
  opacity: .18;
  line-height: 1;
  margin-bottom: .5rem;
  user-select: none;
}
.step-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.step-content p  { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final-section { background: var(--blue-grad); padding: 5.5rem 0; text-align: center; }
.cta-final-inner { max-width: 720px; margin: 0 auto; color: #fff; }
.cta-final-text h2 {
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 800;
}
.cta-final-text p  { opacity: .88; font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.7; }
.cta-final-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}
.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.65);
  border-radius: 30px;
  padding: .75rem 1.75rem;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; transform: translateY(-2px); }
.cta-note { font-size: .8rem; opacity: .65; }

/* ============================================================
   FOOTER UPDATES
   ============================================================ */
.footer-logo-text { color: #fff; }
.footer-logo-text strong { color: #7ac6f5; }
.footer-logo-img  { height: 34px; width: auto; }
.footer-cta-btn   { margin-top: 1.25rem; font-size: .82rem; padding: .6rem 1.3rem; }
.footer-inner     { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.footer-disclaimer {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  max-width: 680px;
  text-align: center;
  line-height: 1.6;
}

/* ============================================================
   CONTACT PAGE UPDATES
   ============================================================ */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text); }
.form-group select {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .9rem;
  background: var(--off-white);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  cursor: pointer;
}
.form-group select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,120,212,.12); background: #fff; }
.form-privacy { font-size: .75rem; color: var(--text-muted); text-align: center; margin-top: .75rem; }
.contact-trust { margin-top: 2rem; padding: 1.5rem; background: var(--off-white); border-radius: var(--radius); border: 1px solid var(--border); }
.contact-trust-title { font-size: .9rem; font-weight: 700; margin-bottom: .75rem; }
.contact-trust-list { display: flex; flex-direction: column; gap: .45rem; }
.contact-trust-list li { font-size: .875rem; color: var(--text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .modules-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .solutions-grid     { grid-template-columns: repeat(2, 1fr); }
  .modules-grid       { grid-template-columns: repeat(2, 1fr); }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .methodology-steps  { grid-template-columns: repeat(2, 1fr); }
  .footer-inner       { grid-template-columns: repeat(2, 1fr); }
  .values-grid        { grid-template-columns: repeat(2, 1fr); }
  .benefits-inner     { gap: 2.5rem; }
}
@media (max-width: 768px) {
  .hero-content          { grid-template-columns: 1fr; }
  .hero-image            { display: none; }
  .stats-grid            { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid        { grid-template-columns: 1fr; }
  .testimonials-grid     { grid-template-columns: 1fr; }
  .capabilities-grid     { grid-template-columns: 1fr; }
  .power-grid            { grid-template-columns: 1fr; }
  .industries-grid       { grid-template-columns: 1fr; }
  .blog-grid             { grid-template-columns: 1fr; }
  .blog-post-layout      { grid-template-columns: 1fr; }
  .sd-grid               { grid-template-columns: 1fr; }
  .contact-grid          { grid-template-columns: 1fr; }
  .about-grid            { grid-template-columns: 1fr; }
  .values-grid           { grid-template-columns: 1fr; }
  .footer-inner          { grid-template-columns: 1fr; }
  .problems-grid         { grid-template-columns: 1fr; }
  .modules-grid          { grid-template-columns: 1fr; }
  .target-grid           { grid-template-columns: 1fr; }
  .services-grid         { grid-template-columns: 1fr; }
  .benefits-inner        { grid-template-columns: 1fr; }
  .methodology-steps     { grid-template-columns: 1fr; }
  .solution-intro-inner  { grid-template-columns: 1fr; }
  .solution-intro-visual { display: none; }
  .cta-final-actions     { flex-direction: column; align-items: center; }
  .form-row              { grid-template-columns: 1fr; }
  .main-nav, .header-contact-link { display: none; }
  .menu-toggle { display: flex; }
  .main-nav.open { display: block; position: absolute; top: 64px; left: 0; right: 0; background: #fff; padding: 1rem; box-shadow: 0 8px 32px rgba(0,0,0,.1); border-top: 1px solid var(--border); z-index: 99; }
  .main-nav.open ul { flex-direction: column; gap: 0; }
  .main-nav.open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 1rem; }
  .has-dropdown .dropdown { display: none; }
  .has-dropdown.open .dropdown { display: block; }
}
@media (max-width: 480px) {
  .stats-grid      { grid-template-columns: 1fr; }
  .hero-cta        { flex-direction: column; }
  .hero-cta .btn   { text-align: center; }
  .hero-trust      { flex-direction: column; gap: .5rem; }
  .header-cta      { display: none; }
}

/* ============================================================
   Language Switcher — Globe Dropdown
   ============================================================ */
.lang-switcher {
  position: relative;
  margin-right: .35rem;
  z-index: 200;
}

/* ── Trigger button ── */
.lang-trigger {
  display: flex;
  align-items: center;
  gap: .28rem;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  color: var(--text-muted);
  font-size: .76rem;
  font-weight: 700;
  padding: .28rem .7rem .28rem .55rem;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: .04em;
  white-space: nowrap;
  line-height: 1;
  user-select: none;
}
.lang-trigger:hover,
.lang-trigger.open {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0,120,212,.04);
}
.lang-globe  { font-size: .9rem; line-height: 1; }
.lang-current{ font-size: .76rem; font-weight: 800; letter-spacing: .06em; }
.lang-chevron{ font-size: .55rem; transition: transform .22s ease; opacity: .7; }
.lang-trigger.open .lang-chevron { transform: rotate(180deg); }

/* ── Dropdown panel ── */
.lang-dropdown {
  position: absolute;
  top: calc(100% + .6rem);
  right: 0;
  min-width: 158px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,.13), 0 2px 8px rgba(0,0,0,.06);
  list-style: none;
  padding: .4rem 0;
  margin: 0;
  opacity: 0;
  transform: translateY(-6px) scale(.97);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.lang-dropdown.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
/* small triangle arrow */
.lang-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 14px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: rotate(45deg);
  border-radius: 2px 0 0 0;
}

/* ── Each language option ── */
.lang-dropdown li { padding: 0; }
.lang-option {
  display: flex;
  align-items: center;
  gap: .65rem;
  width: 100%;
  background: none;
  border: none;
  padding: .58rem 1rem;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
  border-radius: 0;
}
.lang-option:hover   { background: var(--off-white); }
.lang-option.active  { background: rgba(0,120,212,.05); }

.lang-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 1.5rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .07em;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--transition);
}
.lang-option.active .lang-code {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.lang-name {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  flex: 1;
}
.lang-option.active .lang-name { font-weight: 600; color: var(--blue); }
.lang-check {
  font-size: .72rem;
  color: var(--blue);
  opacity: 0;
  transition: opacity .15s;
  flex-shrink: 0;
}
.lang-option.active .lang-check { opacity: 1; }

/* ── Dividers between items ── */
.lang-dropdown li + li { border-top: 1px solid rgba(0,0,0,.04); }

/* ── Mobile ── */
@media (max-width: 768px) {
  .lang-switcher  { margin-right: 0; }
  .lang-dropdown  { right: 0; min-width: 145px; }
  .lang-trigger   { padding: .25rem .6rem .25rem .45rem; }
}
