/* =============================================
   HAREKA — Redesigned Stylesheet
   ============================================= */

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

:root {
  --navy:        #1A2E44;
  --navy-hover:  #243d57;
  --blue:        #4D8DB5;
  --blue-hover:  #3d7da5;
  --blue-light:  #EBF4FA;
  --white:       #FFFFFF;
  --bg-alt:      #F7F9FC;
  --text-body:   #4A5568;
  --text-head:   #1A2E44;
  --text-muted:  #94A3B8;
  --border:      #E2E8F0;
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.10);
  --radius:      8px;
  --radius-lg:   8px;
  --transition:  0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-body);
  background: var(--white);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Layout ------------------------------------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 120px 0;
}

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

.section--dark {
  background: var(--navy);
  color: var(--white);
}

/* --- Section Header ----------------------------- */
.section__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-head);
  line-height: 1.3;
  margin-bottom: 18px;
}

.section--dark .section__title { color: var(--white); }

.section__lead {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 56px;
}

.section--dark .section__lead { color: rgba(255, 255, 255, 0.72); }

.section__header {
  margin-bottom: 56px;
}

.section__header--center {
  text-align: center;
}

.section__header--center .section__lead {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons ------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  letter-spacing: 0.02em;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(26, 46, 68, 0.18);
}
.btn--primary:hover {
  background: var(--blue);
  box-shadow: 0 4px 16px rgba(77, 141, 181, 0.30);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(77, 141, 181, 0.22);
}
.btn--blue:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(77, 141, 181, 0.32);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
}

.btn--lg {
  padding: 17px 40px;
  font-size: 16px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* --- Header ------------------------------------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.07);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo svg { display: block; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__list a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}

.nav__list a:hover {
  color: var(--navy);
  background: var(--bg-alt);
}

.nav__list a.active {
  color: var(--navy);
  font-weight: 600;
}

.nav__cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  margin-left: 8px;
}
.nav__cta:hover {
  background: var(--blue) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  z-index: 999;
  padding: 16px 32px 28px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 13px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-head);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .mobile-cta {
  display: inline-flex;
  margin-top: 18px;
  background: var(--navy);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
}

/* --- Page Hero ---------------------------------- */
.page-hero {
  padding: 152px 0 88px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.page-hero__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.page-hero__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--text-head);
  line-height: 1.25;
  margin-bottom: 22px;
}

.page-hero__lead {
  font-size: 16px;
  color: var(--text-body);
  max-width: 620px;
  line-height: 1.8;
}

/* --- Hero (Home) -------------------------------- */
.hero {
  padding: 164px 0 112px;
  background: linear-gradient(150deg, #EDF2F7 0%, #FFFFFF 55%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(77, 141, 181, 0.10) 0%, transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; right: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26, 46, 68, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 32px;
}

.hero__title {
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.hero__title em {
  color: var(--blue);
  font-style: normal;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.4;
  font-weight: 700;
  color: #1A2E44;
  margin-bottom: 14px;
}

.hero-line1,
.hero-line2 {
  display: block;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.7rem;
  }
  .hero-line1,
  .hero-line2 {
    white-space: normal;
  }
}

.hero__subtitle {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: var(--text-head);
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

.hero__lead {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

/* --- Hero Badges -------------------------------- */
.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.hero-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.hero-badge__num {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.hero-badge__num em {
  color: var(--blue);
  font-style: normal;
}

.hero-badge__label {
  display: block;
  font-size: 12px;
  color: var(--text-body);
  line-height: 1.55;
}

/* --- Cards -------------------------------------- */
.cards {
  display: grid;
  gap: 32px;
}
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--blue);
  transform: translateY(-3px);
}

.card__icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--blue);
}

.card__number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 10px;
  line-height: 1.4;
}

.card__text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.8;
}

/* --- Services ----------------------------------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex;
  gap: 24px;
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--blue);
  transform: translateY(-3px);
}

.service-card__num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.service-card__body { flex: 1; }

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 10px;
  line-height: 1.4;
}

.service-card__text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.85;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  display: inline-block;
  padding: 5px 13px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* --- Cases -------------------------------------- */
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}
.case-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.case-card__head {
  background: var(--navy);
  color: var(--white);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.case-card__category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 5px;
}

.case-card__client {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.case-card__result {
  font-size: 12px;
  background: rgba(77, 141, 181, 0.30);
  padding: 6px 14px;
  border-radius: 40px;
  white-space: nowrap;
  font-weight: 600;
}

.case-card__body { padding: 28px; }

.case-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.case-ba__col {}

.case-ba__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.case-ba__label--before { color: var(--text-muted); }
.case-ba__label--after  { color: var(--blue); }

.case-ba__text {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.75;
  padding: 16px;
  border-radius: var(--radius);
}
.case-ba__text--before { background: var(--bg-alt); }
.case-ba__text--after  { background: var(--blue-light); }

/* --- Why Hareka --------------------------------- */
.why-card {
  display: flex;
  gap: 22px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--blue);
  transform: translateY(-3px);
}

.why-card__icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}

.why-card__body {}

.why-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 8px;
  line-height: 1.4;
}

.why-card__text {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.85;
}

/* --- CTA Banner --------------------------------- */
.cta-banner {
  background: var(--navy);
  padding: 88px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}

.cta-banner__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

/* --- Pain Points -------------------------------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.pain-item__icon {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-item__text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
}

/* --- Profile ------------------------------------ */
.profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

.profile__photo {
  border-radius: var(--radius);
  background: var(--bg-alt);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border);
}

.profile__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
}

.profile__name {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.profile__name-en {
  font-size: 14px;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: 0.03em;
}

.profile__bio {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 28px;
}

.career-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.career-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
}

.career-item::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  margin-top: 8px;
}

/* --- Company Table ------------------------------ */
.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.company-table th,
.company-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: none;
}

.company-table th {
  width: 180px;
  font-weight: 600;
  color: var(--text-head);
  background: var(--bg-alt);
  white-space: nowrap;
  font-size: 14px;
}

.company-table td {
  color: var(--text-body);
}

/* --- Blog --------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.blog-card__thumb {
  aspect-ratio: 16/9;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
}

.blog-card__body { padding: 24px; }

.blog-card__category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-head);
  line-height: 1.5;
  margin-bottom: 10px;
}

.blog-card__date {
  font-size: 12px;
  color: var(--text-muted);
}

.blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
}

/* --- Contact ------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

.contact-form { background: var(--white); }

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-head);
  margin-bottom: 8px;
}

.form-group .required {
  color: #E05252;
  font-size: 11px;
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--text-head);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(77, 141, 181, 0.14);
}

.form-group textarea { resize: vertical; min-height: 148px; }

.contact-info {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.contact-info__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.contact-info__item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
}

.contact-info__item-icon {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Stats -------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 560px;
  margin: 56px auto;
  box-shadow: var(--shadow-card);
}

.stat {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
}

.stat__num {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-head);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat__num em {
  color: var(--blue);
  font-style: normal;
}

.stat__label {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

/* --- Profile Home (index) ----------------------- */
.profile-home {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.profile-home__photo img {
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  object-fit: cover;
}

.profile-home__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.profile-home__name {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.profile-home__role {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 20px;
}

.profile-home__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 20px;
}

.profile-home__bio {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
}

.profile-home__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-home__badge {
  display: inline-block;
  padding: 6px 14px;
  background: #F0F4F8;
  color: var(--navy);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
}

/* --- Footer ------------------------------------- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 36px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  margin-bottom: 44px;
}

.footer__brand {}

.footer__tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 16px;
  line-height: 1.9;
}

.footer__nav {
  display: flex;
  gap: 56px;
}

.footer__nav-col {}

.footer__nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 16px;
}

.footer__nav-list a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  padding: 5px 0;
  transition: color var(--transition);
}
.footer__nav-list a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

/* --- Misc --------------------------------------- */
.divider {
  width: 40px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
}
.badge--navy { background: var(--navy); color: var(--white); }
.badge--blue { background: var(--blue-light); color: var(--blue); }

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 960px) {
  .cards--4    { grid-template-columns: repeat(2, 1fr); }
  .cards--3    { grid-template-columns: repeat(2, 1fr); }
  .blog-grid   { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .case-ba     { grid-template-columns: 1fr; }
  .pain-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section       { padding: 80px 0; }
  .container     { padding: 0 20px; }
  .nav           { display: none; }
  .hamburger     { display: flex; }

  .cards--2      { grid-template-columns: 1fr; }
  .cards--3      { grid-template-columns: 1fr; }
  .cards--4      { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .profile       { grid-template-columns: 1fr; }
  .profile__photo { max-width: 200px; }
  .stats         { grid-template-columns: 1fr; }

  .cta-banner        { padding: 64px 0; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }

  .footer__inner     { grid-template-columns: 1fr; gap: 36px; }
  .footer__nav       { flex-wrap: wrap; gap: 32px; }
  .footer__bottom    { flex-direction: column; gap: 8px; text-align: center; }

  .service-card      { flex-direction: column; gap: 16px; }
  .company-table th  { width: 110px; }
  .page-hero         { padding: 120px 0 64px; }
  .hero              { padding: 136px 0 80px; }
  .case-card__head   { flex-direction: column; align-items: flex-start; }

  .profile-home      { grid-template-columns: 1fr; gap: 32px; }
  .profile-home__photo { text-align: center; }
  .profile-home__photo img { margin: 0 auto; }

  .section__title    { font-size: 28px; }
  .section__lead     { margin-bottom: 40px; }
  .cards             { gap: 20px; }
}

@media (max-width: 480px) {
  .btn--lg        { padding: 15px 28px; font-size: 15px; }
  .company-table  { font-size: 13px; }
  .company-table th,
  .company-table td { padding: 13px 14px; }
}
