/* ============================================
   Global Intelligency — Consulting & Technology
   Estonian/Nordic Design System
   ============================================ */

/* === VARIABLES === */
:root {
  --navy-dark: #0B1629;
  --navy-mid: #1B3A5C;
  --blue-mid: #4A90D9;
  --teal: #5BB8C9;
  --teal-light: #7DD5C4;
  --white: #FFFFFF;
  --gray-light: #F5F7FA;
  --gray-mid: #8A9BB5;
  --gray-border: #E2E8F0;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --section-padding: 100px;
  --radius: 8px;
  --radius-sm: 6px;
  --radius-xs: 4px;
  --shadow: 0 1px 3px rgba(11, 22, 41, 0.08);
  --shadow-md: 0 4px 12px rgba(11, 22, 41, 0.1);
  --transition: 0.3s ease;
}

/* === RESET === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.7;
  color: var(--navy-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* === UTILITIES === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-label--light {
  color: var(--teal-light);
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--navy-dark);
}

.section-title--light {
  color: var(--white);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--teal);
  color: var(--navy-dark);
}

.btn--primary:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

/* === SCROLL REVEAL — Enhanced with stagger === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid children */
.reveal-stagger-1 { transition-delay: 0s; }
.reveal-stagger-2 { transition-delay: 0.12s; }
.reveal-stagger-3 { transition-delay: 0.24s; }
.reveal-stagger-4 { transition-delay: 0.36s; }

/* Fade from left */
.reveal--left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal--left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade from right */
.reveal--right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal--right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in */
.reveal--scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal--scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 0;
  transition: all var(--transition);
}

.header--scrolled {
  background: rgba(11, 22, 41, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.header__logo {
  z-index: 1001;
}

.logo-text {
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--white);
}

.logo-bold {
  font-weight: 700;
}

.logo-light {
  font-weight: 400;
  opacity: 0.7;
}

.header__nav .nav__list {
  display: flex;
  gap: 36px;
}

.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal);
  transition: width var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

.header__cta {
  font-size: 14px;
  padding: 10px 24px;
}

/* === LANGUAGE SWITCHER === */
/* Styles are inline in HTML to avoid cascade conflicts */

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 1px;
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(91, 184, 201, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}

.hero__content {
  max-width: 680px;
}

.hero__title {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--gray-mid);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__globe {
  position: relative;
  width: 476px;
  height: 476px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__globe::before {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 184, 201, 0.1) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
}

.hero__globe-img {
  width: 476px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 50px rgba(91, 184, 201, 0.18));
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.06); opacity: 1; }
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.3);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === SOLUTIONS === */
.solutions {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  padding: 40px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  transition: all var(--transition);
  background: var(--white);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-light);
  border-radius: var(--radius);
  margin-bottom: 24px;
  color: var(--teal);
  transition: all var(--transition);
}

.card:hover .card__icon {
  background: var(--navy-dark);
  color: var(--teal-light);
}

.card__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--navy-dark);
}

.card__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-mid);
}

/* === INDUSTRIES === */
.industries {
  padding: var(--section-padding) 0;
  background: var(--gray-light);
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.industry {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.industry:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.industry__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue-mid);
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.industry:hover .industry__icon {
  background: var(--navy-dark);
  color: var(--teal-light);
  box-shadow: var(--shadow-md);
}

.industry__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--navy-dark);
}

.industry__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-mid);
}

/* === ABOUT === */
.about {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--navy-mid);
  margin-bottom: 16px;
}

.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 10px 20px;
  background: var(--gray-light);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-mid);
}

.about__badge svg {
  color: var(--teal);
}

.about__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.metric {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius);
  background: var(--gray-light);
  transition: all var(--transition);
}

.metric:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.metric__number {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
  line-height: 1;
}

.metric__suffix {
  font-size: 32px;
  font-weight: 700;
  color: var(--teal);
}

.metric__label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* === APPROACH === */
.approach {
  padding: var(--section-padding) 0;
  background: var(--navy-dark);
}

.approach__timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.approach__step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.approach__connector {
  width: 60px;
  min-width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 28px;
}

.approach__number {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.approach__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.approach__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-mid);
}

/* === CONTACT === */
.contact {
  padding: var(--section-padding) 0;
  background: var(--gray-light);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-mid);
  margin-bottom: 6px;
}

.form__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-xs);
  background: var(--white);
  color: var(--navy-dark);
  font-size: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form__input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(91, 184, 201, 0.12);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__submit {
  width: 100%;
  margin-top: 4px;
}

.contact__info {
  padding-top: 8px;
}

.contact__block {
  margin-bottom: 32px;
}

.contact__block-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-mid);
  margin-bottom: 12px;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--navy-mid);
}

.contact__detail svg {
  color: var(--teal);
  flex-shrink: 0;
}

.contact__detail a {
  color: var(--navy-mid);
  transition: color var(--transition);
}

.contact__detail a:hover {
  color: var(--teal);
}

.contact__social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  color: var(--navy-mid);
  border: 1px solid var(--gray-border);
  transition: all var(--transition);
}

.social-link:hover {
  color: var(--teal);
  border-color: var(--teal);
}

/* === FOOTER === */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 40px;
}

.footer__inner {
  text-align: center;
}

.logo-text--light {
  color: var(--white);
}

.footer__tagline {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 4px;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 32px 0;
}

.footer__nav a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
}

.footer__location {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
}

/* === FORM SUCCESS STATE === */
.form--success {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  text-align: center;
}

.form__success-message {
  color: var(--navy-dark);
}

.form__success-message h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.form__success-message p {
  color: var(--gray-mid);
}

/* ============================================
   RESPONSIVE — Tablet (1024px)
   ============================================ */

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
  }

  .hero__title {
    font-size: 44px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__globe {
    width: 340px;
    height: 340px;
  }

  .hero__globe-img {
    width: 340px;
  }

  .industries__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .industry {
    padding: 32px 20px;
  }

  .about__inner {
    gap: 48px;
  }

  .approach__timeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .approach__connector {
    display: none;
  }

  .approach__step {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .contact__inner {
    gap: 48px;
  }
}

/* ============================================
   RESPONSIVE — Mobile (768px)
   ============================================ */

@media (max-width: 768px) {
  :root {
    --section-padding: 72px;
  }

  .container {
    padding: 0 20px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-label {
    font-size: 13px;
  }

  /* --- Header mobile --- */
  .header__inner {
    height: 64px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 22, 41, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .header__nav.open {
    opacity: 1;
    visibility: visible;
  }

  .header__nav .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .nav__link {
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    padding: 16px 0;
    display: block;
  }

  .nav__link::after {
    bottom: 8px;
  }

  .header__cta {
    display: none;
  }

  /* --- Language switcher mobile --- */
  #langSwitcher {
    margin-left: auto !important;
    margin-right: 14px !important;
  }

  .header__hamburger {
    display: flex;
  }

  /* --- Hero mobile --- */
  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
  }

  .hero__content {
    max-width: 100%;
    order: -1;
  }

  .hero__title {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .hero__title br {
    display: none;
  }

  .hero__subtitle {
    font-size: 16px;
    margin: 0 auto 32px;
    max-width: 100%;
  }

  .hero__visual {
    order: 1;
  }

  .hero__globe {
    width: 330px;
    height: 330px;
  }

  .hero__globe-img {
    width: 330px;
  }

  .hero__scroll-indicator {
    display: none;
  }

  .hero__cta {
    width: 100%;
    padding: 16px 32px;
    font-size: 17px;
  }

  /* --- Solutions mobile --- */
  .solutions__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card {
    padding: 28px 24px;
  }

  .card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  .card__title {
    font-size: 19px;
    margin-bottom: 8px;
  }

  .card__text {
    font-size: 15px;
  }

  /* --- Industries mobile --- */
  .industries__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .industry {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-border);
    border-radius: 0;
  }

  .industry:last-child {
    border-bottom: none;
  }

  .industry:hover {
    background: transparent;
    box-shadow: none;
  }

  .industry__icon {
    margin: 0;
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .industry:hover .industry__icon {
    background: var(--white);
    color: var(--blue-mid);
    box-shadow: var(--shadow);
  }

  .industry__title {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .industry__text {
    font-size: 14px;
    line-height: 1.5;
  }

  /* --- About mobile --- */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__text {
    font-size: 16px;
  }

  .about__metrics {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .metric {
    padding: 24px 12px;
  }

  .metric__number {
    font-size: 40px;
  }

  .metric__suffix {
    font-size: 28px;
  }

  .metric__label {
    font-size: 12px;
  }

  /* --- Approach mobile --- */
  .approach {
    padding: 72px 0;
  }

  .approach__timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .approach__connector {
    display: block;
    width: 1px;
    height: 32px;
    min-width: unset;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
  }

  .approach__step {
    text-align: left;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .approach__number {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .approach__title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .approach__text {
    font-size: 14px;
  }

  /* --- Contact mobile --- */
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact__info {
    order: -1;
    padding-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .contact__block {
    margin-bottom: 0;
  }

  .form__input {
    padding: 16px;
    font-size: 16px;
    border-radius: var(--radius-sm);
  }

  .form__submit {
    padding: 16px 32px;
    font-size: 17px;
    border-radius: var(--radius-sm);
  }

  /* --- Footer mobile --- */
  .footer {
    padding: 48px 0 32px;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 24px 0;
  }

  .footer__nav a {
    font-size: 14px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    padding-top: 24px;
  }

  .footer__bottom p {
    font-size: 13px;
  }
}

/* ============================================
   RESPONSIVE — Small mobile (480px)
   ============================================ */

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .hero__globe {
    width: 270px;
    height: 270px;
  }

  .hero__globe-img {
    width: 270px;
  }

  .section-title {
    font-size: 26px;
  }

  .card {
    padding: 24px 20px;
  }

  .about__metrics {
    gap: 8px;
  }

  .metric {
    padding: 20px 8px;
  }

  .metric__number {
    font-size: 32px;
  }

  .metric__suffix {
    font-size: 22px;
  }

  .metric__label {
    font-size: 11px;
    letter-spacing: 0.02em;
  }

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

  .approach__step {
    padding: 20px;
  }
}

/* ============================================
   RESPONSIVE — Very small (360px)
   ============================================ */

@media (max-width: 360px) {
  .hero__title {
    font-size: 24px;
  }

  .hero__globe {
    width: 225px;
    height: 225px;
  }

  .hero__globe-img {
    width: 225px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 15px;
  }
}
