/* ============================================================
   Digital Ali Pro — app.css
   Premium consulting & technology brand for Ibraheem Ali
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS Custom Properties
   ------------------------------------------------------------ */
:root {
  --primary:        #2563EB;
  --primary-dark:   #1D4ED8;
  --primary-light:  #EFF6FF;
  --dark:           #1E293B;
  --dark-2:         #334155;
  --dark-3:         #475569;
  --accent:         #F97316;
  --accent-dark:    #EA580C;
  --green:          #22C55E;
  --green-light:    #F0FDF4;
  --white:          #FFFFFF;
  --bg:             #F8FAFC;
  --bg-2:           #F1F5F9;
  --border:         #E2E8F0;
  --border-2:       #CBD5E1;
  --ink:            #0F172A;
  --ink-muted:      #64748B;
  --ink-light:      #94A3B8;
  --radius:         10px;
  --radius-lg:      18px;
  --radius-xl:      24px;
  --shadow:         0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:      0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg:      0 10px 25px rgba(0,0,0,.10), 0 4px 10px rgba(0,0,0,.06);
  --shadow-xl:      0 20px 40px rgba(0,0,0,.12);
  --transition:     all .22s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-muted);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ------------------------------------------------------------
   3. Typography
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: .5em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

h4 {
  font-size: 1.05rem;
  font-weight: 600;
}

h5 {
  font-size: .9rem;
  font-weight: 600;
}

h6 {
  font-size: .825rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--ink);
}

/* ------------------------------------------------------------
   4. Layout
   ------------------------------------------------------------ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-xs {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-white {
  background: #fff;
}

.section-cream {
  background: var(--bg);
}

.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

.section-blue {
  background: var(--primary);
  color: #fff;
}

.section-blue h1,
.section-blue h2,
.section-blue h3,
.section-blue h4 {
  color: #fff;
}

.section-gradient {
  background: linear-gradient(135deg, var(--dark) 0%, #0F2952 100%);
  color: #fff;
}

.section-gradient h1,
.section-gradient h2,
.section-gradient h3,
.section-gradient h4 {
  color: #fff;
}

/* ------------------------------------------------------------
   5. Grid
   ------------------------------------------------------------ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* ------------------------------------------------------------
   6. Navbar
   ------------------------------------------------------------ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}

.nav-brand {
  text-decoration: none;
  line-height: 1.2;
}

.nav-brand .name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
  display: block;
}

.nav-brand .role {
  display: block;
  font-size: .65rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: 'Poppins', sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  padding: .45rem .75rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--dark-2);
  border-radius: 6px;
  text-decoration: none;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  display: block;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: .45rem 1rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ------------------------------------------------------------
   7. Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.4rem;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1.4;
}

.btn-lg {
  padding: .85rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: .4rem .9rem;
  font-size: .8rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,.3);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.btn-dark:hover {
  background: var(--dark-2);
  border-color: var(--dark-2);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--dark);
}

.btn-ghost {
  background: transparent;
  color: var(--dark-2);
  border-color: var(--border-2);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ------------------------------------------------------------
   8. Hero Section
   ------------------------------------------------------------ */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0F2952 100%);
  color: #fff;
  padding: 6rem 0 5rem;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(37,99,235,.2);
  border: 1px solid rgba(37,99,235,.4);
  color: var(--primary-light);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
  font-family: 'Poppins', sans-serif;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat-num span {
  color: var(--accent);
}

.hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .2rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-xl);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}

.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 220px;
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-badge-text strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  color: var(--dark);
}

.hero-badge-text span {
  font-size: .75rem;
  color: var(--ink-muted);
}

/* ------------------------------------------------------------
   9. Page Hero (inner pages)
   ------------------------------------------------------------ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0F2952 100%);
  color: #fff;
  padding: 3.5rem 0 3rem;
}

.page-hero-inner {
  max-width: 700px;
}

.page-hero h1 {
  color: #fff;
  margin: .75rem 0 .5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.page-hero p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

.breadcrumb a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: #fff;
}

/* ------------------------------------------------------------
   10. Section Labels & Dividers
   ------------------------------------------------------------ */
.section-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  background: var(--primary-light);
  padding: .3rem .9rem;
  border-radius: 50px;
}

.section-label-white {
  color: #fff;
  background: rgba(255,255,255,.15);
}

.divider-blue {
  width: 48px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: .75rem 0;
}

.divider-accent {
  width: 48px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: .75rem 0;
}

.divider-gold {
  width: 48px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: .75rem 0;
}

/* ------------------------------------------------------------
   11. Stats Strip
   ------------------------------------------------------------ */
.stats-strip {
  background: var(--primary);
  color: #fff;
  padding: 2.5rem 0;
}

.stats-strip .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-num span {
  color: var(--accent);
}

.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .35rem;
}

/* ------------------------------------------------------------
   12. Cards — Service
   ------------------------------------------------------------ */
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: .6rem;
  color: var(--dark);
}

.service-card p {
  font-size: .875rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.service-card .link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: var(--transition);
}

.service-card .link:hover {
  gap: .6rem;
}

/* ------------------------------------------------------------
   13. Cards — Industry
   ------------------------------------------------------------ */
.industry-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-decoration: none;
  display: block;
  transition: var(--transition);
}

.industry-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.industry-card .ic-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.industry-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .4rem;
}

.industry-card p {
  font-size: .825rem;
  color: var(--ink-muted);
}

/* ------------------------------------------------------------
   14. Cards — Case Study
   ------------------------------------------------------------ */
.case-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.case-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case-card-body {
  padding: 1.5rem;
}

.case-industry {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
  background: var(--primary-light);
  padding: .25rem .75rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}

.case-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.case-metrics {
  display: flex;
  gap: 1rem;
}

.case-metric-val {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

.case-metric-label {
  font-size: .7rem;
  color: var(--ink-muted);
}

/* ------------------------------------------------------------
   15. Cards — Testimonial
   ------------------------------------------------------------ */
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.testi-stars {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testi-text {
  font-size: .925rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  color: var(--dark);
}

.testi-role {
  font-size: .75rem;
  color: var(--ink-muted);
}

/* ------------------------------------------------------------
   16. Cards — Blog
   ------------------------------------------------------------ */
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: var(--transition);
  color: inherit;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-cat {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: .6rem;
}

.blog-card h3 {
  font-size: .975rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .6rem;
  line-height: 1.4;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--ink-light);
  margin-top: .75rem;
}

/* ------------------------------------------------------------
   17. Cards — Cert & Award
   ------------------------------------------------------------ */
.cert-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  transition: var(--transition);
  min-width: 0;
}

.cert-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.cert-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .95rem;
  flex-shrink: 0;
}

.cert-body {
  min-width: 0;
  flex: 1;
}

.cert-name {
  display: block;
  font-size: .825rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: .25rem;
}

.cert-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.cert-issuer {
  font-size: .72rem;
  color: var(--ink-muted);
}

.cert-year {
  font-size: .7rem;
  color: var(--primary);
  font-weight: 700;
}

.cert-id {
  display: block;
  font-size: .65rem;
  color: #94a3b8;
  margin-top: .2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.award-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  color: #fff;
}

.award-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.award-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .35rem;
  color: #fff;
}

.award-org {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
}

/* ------------------------------------------------------------
   18. Tags & Badges
   ------------------------------------------------------------ */
.tag {
  display: inline-flex;
  align-items: center;
  padding: .3rem .75rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.tag-blue   { background: var(--primary-light); color: var(--primary); }
.tag-orange { background: #FFF7ED; color: var(--accent); }
.tag-green  { background: var(--green-light); color: #16A34A; }
.tag-dark   { background: var(--bg-2); color: var(--dark-2); }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .75rem;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 600;
}

.badge-blue   { background: var(--primary-light); color: var(--primary); }
.badge-orange { background: #FFF7ED; color: var(--accent); }
.badge-green  { background: var(--green-light); color: #16A34A; }
.badge-dark   { background: var(--bg-2); color: var(--dark-2); }

/* ------------------------------------------------------------
   19. Process Steps
   ------------------------------------------------------------ */
.process-steps {
  counter-reset: step;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.process-step-num {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .35rem;
}

.process-step p {
  font-size: .875rem;
  color: var(--ink-muted);
}

/* ------------------------------------------------------------
   20. FAQ
   ------------------------------------------------------------ */
.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.faq-q:hover {
  color: var(--primary);
}

.faq-a {
  display: none;
  padding-bottom: 1.25rem;
  font-size: .9rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-q {
  color: var(--primary);
}

/* ------------------------------------------------------------
   21. Timeline
   ------------------------------------------------------------ */
.timeline {
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-2);
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline-dot {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .8rem;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-year {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .25rem;
}

.timeline-item h4 {
  font-size: .975rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .35rem;
}

.timeline-item p {
  font-size: .85rem;
  color: var(--ink-muted);
}

/* ------------------------------------------------------------
   22. Skill Bars
   ------------------------------------------------------------ */
.skill-bar {
  margin-bottom: 1rem;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: .4rem;
}

.skill-name {
  font-size: .85rem;
  font-weight: 500;
  color: var(--dark);
}

.skill-pct {
  font-size: .8rem;
  color: var(--primary);
  font-weight: 600;
}

.skill-track {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  width: 0;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

/* ------------------------------------------------------------
   23. Forms
   ------------------------------------------------------------ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--dark-2);
  margin-bottom: .5rem;
}

.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--ink);
  background: #fff;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

.form-control::placeholder {
  color: var(--ink-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%2364748B' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 1.2rem;
  cursor: pointer;
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: .9rem;
}

.alert-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
}

.alert-success {
  background: var(--green-light);
  border: 1px solid #BBF7D0;
  color: #166534;
}

/* ------------------------------------------------------------
   24. CTA Band
   ------------------------------------------------------------ */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin: 1rem auto 2rem;
  font-size: 1.05rem;
}

/* ------------------------------------------------------------
   25. Footer
   ------------------------------------------------------------ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  display: block;
}

.footer-brand .role {
  font-size: .75rem;
  color: var(--primary-light);
  font-weight: 600;
  letter-spacing: .06em;
  font-family: 'Poppins', sans-serif;
}

.footer-brand p {
  font-size: .875rem;
  margin-top: .75rem;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: .6rem;
  margin-top: 1.25rem;
}

.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social:hover {
  background: var(--primary);
  color: #fff;
}

.footer h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: .6rem;
}

.footer ul a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: var(--transition);
}

.footer ul a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
}

/* ------------------------------------------------------------
   26. Contact Info Cards
   ------------------------------------------------------------ */
.contact-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-card-label {
  font-size: .72rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.contact-card-value {
  font-weight: 600;
  color: var(--dark);
  font-size: .9rem;
}

/* ------------------------------------------------------------
   27. WhatsApp Float & Scroll Top
   ------------------------------------------------------------ */
.whatsapp-float,
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(37,211,102,.4);
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-float:hover,
.wa-float:hover {
  background: #128C7E;
  transform: scale(1.1);
}

.scroll-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--dark);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.scroll-top.show {
  display: flex;
}

.scroll-top:hover {
  background: var(--primary);
}

/* ------------------------------------------------------------
   28. Tool / Tech Badges
   ------------------------------------------------------------ */
.tool-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .825rem;
  font-weight: 500;
  color: var(--dark-2);
  transition: var(--transition);
}

.tool-badge:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.tool-badge i {
  font-size: .9rem;
  color: var(--primary);
}

/* ------------------------------------------------------------
   29. Industry Page Specific
   ------------------------------------------------------------ */
.industry-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0F2952 100%);
  color: #fff;
  padding: 4rem 0 3rem;
}

.industry-hero h1,
.industry-hero h2 {
  color: #fff;
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.problem-box {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.solution-box {
  background: var(--green-light);
  border: 1px solid #BBF7D0;
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.problem-box h3 {
  color: #991B1B;
}

.solution-box h3 {
  color: #166534;
}

/* ------------------------------------------------------------
   30. Services Hub Page
   ------------------------------------------------------------ */
.service-category-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: var(--transition);
}

.service-category-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.service-category-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.service-list-inline {
  list-style: none;
  padding: 0;
  margin: .75rem 0;
}

.service-list-inline li {
  font-size: .82rem;
  color: var(--ink-muted);
  padding: .2rem 0;
}

.service-list-inline li::before {
  content: '\2192\00A0';
  color: var(--primary);
}

/* ------------------------------------------------------------
   31. Highlight & Result Boxes
   ------------------------------------------------------------ */
.highlight-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.highlight-box p {
  font-size: .9rem;
  color: var(--dark);
  margin: 0;
}

.result-box {
  background: var(--green-light);
  border: 1px solid #BBF7D0;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.result-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
}

.result-label {
  font-size: .8rem;
  color: #166534;
  margin-top: .25rem;
}

/* ------------------------------------------------------------
   32. Utility Classes
   ------------------------------------------------------------ */
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.text-primary { color: var(--primary); }
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--ink-muted); }
.text-white   { color: #fff; }
.fw-600       { font-weight: 600; }
.fw-700       { font-weight: 700; }

.mt-2 { margin-top: .75rem; }
.mt-3 { margin-top: 1.25rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: .75rem; }
.mb-3 { margin-bottom: 1.25rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.d-flex       { display: flex; }
.gap-1        { gap: .5rem; }
.gap-2        { gap: 1rem; }
.gap-3        { gap: 1.5rem; }
.align-center { align-items: center; }
.flex-wrap    { flex-wrap: wrap; }

.link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: var(--transition);
}

.link:hover {
  gap: .6rem;
}

.link-white    { color: #fff; }
.rounded       { border-radius: var(--radius); }
.rounded-lg    { border-radius: var(--radius-lg); }
.overflow-hidden { overflow: hidden; }
.w-100         { width: 100%; }
.img-cover     { width: 100%; object-fit: cover; }

/* ------------------------------------------------------------
   33. Responsive — 1024px
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: .25rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: .65rem .75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .hero-grid {
    gap: 2.5rem;
  }
}

/* ------------------------------------------------------------
   34. Responsive — 768px
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 0 3.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-badge {
    position: static;
    margin-top: 1rem;
    left: auto;
    bottom: auto;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-solution-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: .75rem;
    text-align: center;
  }

  .section {
    padding: 3.5rem 0;
  }

  .cta-band {
    padding: 3.5rem 0;
  }

  .page-hero {
    padding: 2.5rem 0 2rem;
  }
}

/* ------------------------------------------------------------
   35. Responsive — 640px
   ------------------------------------------------------------ */
@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 3rem 0;
  }

  .section-sm {
    padding: 2rem 0;
  }

  .stats-strip .container {
    gap: 1.5rem;
  }

  .stat-num {
    font-size: 1.75rem;
  }

  .page-hero {
    padding: 2rem 0 1.5rem;
  }

  .case-metrics {
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: .75rem;
    text-align: center;
  }
}

/* ------------------------------------------------------------
   36. Responsive — 480px
   ------------------------------------------------------------ */
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-badge {
    min-width: unset;
    width: 100%;
  }

  .nav-brand .name {
    font-size: 1rem;
  }

  .btn-lg {
    padding: .75rem 1.5rem;
    font-size: .95rem;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .scroll-top {
    bottom: 4.75rem;
    right: 1rem;
  }
}

/* ==========================================================================
   Industry Pages — Additional Classes
   ========================================================================== */

/* Industries grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.industry-card__icon { font-size: 2rem; color: var(--primary); margin-bottom: .75rem; }
.industry-card__title { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: .35rem; }
.industry-card__desc { font-size: .875rem; color: var(--text-muted); margin-bottom: .5rem; }
.industry-card__link { font-size: .85rem; color: var(--primary); font-weight: 600; display: inline-flex; align-items: center; gap: .3rem; }

/* Stats grid (industries index) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  margin-top: 2rem;
}
.stat-item__number { font-size: 2.5rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-item__label  { font-size: .875rem; color: rgba(255,255,255,.75); margin-top: .35rem; }

/* Highlight boxes grid */
.highlight-boxes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}
.highlight-box__icon  { font-size: 2rem; color: var(--primary); margin-bottom: .75rem; }
.highlight-box__title { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.highlight-box__desc  { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* Problem / Solution lists */
.problem-list,
.solution-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-direction: column; gap: .85rem; }
.problem-list__item,
.solution-list__item { display: flex; align-items: flex-start; gap: .85rem; }
.problem-list__icon  { color: #F97316; font-size: 1.1rem; flex-shrink: 0; margin-top: .15rem; }
.solution-list__icon { color: var(--green); font-size: 1.1rem; flex-shrink: 0; margin-top: .15rem; }
.problem-list__text,
.solution-list__text { font-size: .95rem; color: inherit; line-height: 1.6; }

/* Results grid & result-box inner elements */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.result-box__metric { font-size: 2.75rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: .35rem; }
.result-box__label  { font-size: .9rem; color: var(--text-muted); }

/* Services list (horizontal cards on industry show) */
.services-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.services-list .service-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid #e9edf2;
}
.service-card__content { flex: 1; }
.service-card__title   { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .25rem; }
.service-card__desc    { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }
.service-card__link    { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; flex-shrink: 0; text-decoration: none; transition: background .2s; }
.service-card__link:hover { background: var(--primary-dark, #1D4ED8); }

/* Process steps (industry show) */
.process-steps { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; max-width: 780px; margin-left: auto; margin-right: auto; }
.process-step { display: flex; align-items: flex-start; gap: 1.5rem; }
.process-step__number { font-size: 2.5rem; font-weight: 800; color: var(--accent); line-height: 1; flex-shrink: 0; width: 60px; text-align: center; }
.process-step__content {}
.process-step__title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .35rem; }
.process-step__desc  { font-size: .9rem; color: rgba(255,255,255,.78); line-height: 1.7; }

/* FAQ toggle: .faq-a--open shows the answer */
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a--open { max-height: 400px; }
.faq-q__icon { transition: transform .25s ease; }
.faq-q[aria-expanded="true"] .faq-q__icon { transform: rotate(180deg); }

/* Responsive */
@media (max-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .highlight-boxes-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid    { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-boxes-grid { grid-template-columns: 1fr; }
  .results-grid    { grid-template-columns: 1fr; }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .process-step    { flex-direction: column; gap: .5rem; }
  .process-step__number { font-size: 1.75rem; width: auto; }
}
@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr; }
  .stats-grid      { grid-template-columns: 1fr 1fr; }
}

/* ------------------------------------------------------------
   Missing & fixed styles
   ------------------------------------------------------------ */

/* btn-white — used in CTA band */
.btn-white {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary-light);
}

/* CTA band actions row */
.cta-band__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.cta-band__heading { color: #fff; font-size: 2.25rem; margin-bottom: .5rem; }
.cta-band__sub     { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 0; }

/* section-gradient paragraph */
.section-gradient p { color: rgba(255,255,255,.8); }

/* Newsletter strip */
.newsletter-strip {
  background: var(--cream);
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}
.newsletter-strip__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.newsletter-strip__copy { flex: 1; min-width: 220px; }
.newsletter-strip__copy h3 { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: .35rem; }
.newsletter-strip__copy p  { font-size: .9rem; color: var(--ink-muted); }
.newsletter-strip__form { flex: 1; min-width: 260px; }
.newsletter-strip__row {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.newsletter-strip__input {
  flex: 1;
  min-width: 180px;
  padding: .65rem 1rem;
  border: 1.5px solid var(--border-2);
  border-radius: 8px;
  font-size: .9rem;
  outline: none;
  font-family: inherit;
}
.newsletter-strip__input:focus { border-color: var(--primary); }
.newsletter-strip__success { color: var(--green); font-size: .875rem; margin-bottom: .5rem; }
.newsletter-strip__error   { color: #ef4444; font-size: .875rem; margin-bottom: .5rem; }

/* Footer BEM class aliases */
.footer-brand__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  display: block;
}
.footer-brand__role {
  font-size: .75rem;
  color: var(--primary-light);
  font-weight: 600;
  letter-spacing: .06em;
  font-family: 'Poppins', sans-serif;
  display: block;
  margin-top: .15rem;
}
.footer-brand__desc {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  margin-top: .75rem;
  line-height: 1.7;
}

/* Timeline content wrapper */
.timeline-content { flex: 1; }
.timeline-content .timeline-year { display: block; margin-bottom: .2rem; }
