/* ============================================
   ASH TECHNOLOGY — Global Stylesheet
   Design tokens extracted from Figma
   ============================================ */

/* --- Google Font --- */
@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap');

/* --- Design Tokens --- */
:root {
  /* Colors */
  --color-dark: #10031F;
  --color-dark-overlay: rgba(25, 11, 43, 0.48);
  --color-accent: #D47513;
  --color-accent-hover: #b8640f;
  --color-white: #FFFFFF;
  --color-text-muted: #6D6D6E;
  --color-text-light-muted: #909295;
  --color-text-dark-muted: #BCBCBC;
  --color-placeholder: #A9A9A9;
  --color-card-bg: radial-gradient(57.62% 116.27% at 50.11% 50%, #F4E9FF 0%, #F9F3FF 51.8%, #F0E1FF 96.55%);
  --color-card-border: #EDDEFF;
  --color-line-dark: rgba(255, 255, 255, 0.12);
  --color-line-light: rgba(255, 255, 255, 0.16);
  --color-glass-bg: rgba(255, 255, 255, 0.08);
  --color-glass-border: rgba(255, 255, 255, 0.16);
  --color-page-bg: #FFFFFF;

  /* Typography */
  --font-family: 'Host Grotesk', sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-max: 1100px;
  --container-padding: 0 64px;

  /* Radius */
  --radius-card: 16px;
  --radius-button: 100px;
  --radius-icon: 8px;
  --radius-input: 100px;
  --radius-textarea: 16px;
}

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

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

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-dark);
  background: var(--color-page-bg);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* --- Section Label --- */
.section-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

/* --- Section Title --- */
.section-title {
  font-size: 44px;
  font-weight: 500;
  line-height: 52px;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 48px;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 32px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-transform: capitalize;
  border-radius: var(--radius-button);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  height: 56px;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 117, 19, 0.35);
}

.btn--ghost {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  color: var(--color-white);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn--ghost-dark {
  background: transparent;
  border: 1px solid var(--color-card-border);
  color: var(--color-dark);
}

.btn--ghost-dark:hover {
  background: rgba(237, 222, 255, 0.3);
}

.btn-arrow {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* --- Language Switcher --- */
.lang-switch {
  display: flex;
  gap: 4px;
  align-items: center;
}

.lang-switch a {
  font-size: 13px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.lang-switch a:hover {
  opacity: 1;
}

.lang-switch a.active {
  opacity: 1;
  background: rgba(255,255,255,0.12);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 856px;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin: 8px;
  width: calc(100% - 16px);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(25, 11, 43, 0.48);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 856px;
  padding: 80px 64px;
  text-align: center;
  color: var(--color-white);
}

/* --- Navigation --- */
.nav {
  position: absolute;
  top: 32px;
  left: 64px;
  right: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.nav__logo {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-white);
  text-transform: capitalize;
}

.nav__logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-button);
  padding: 4px;
  height: 56px;
}

.nav__link {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: var(--radius-button);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav__link--active {
  background: var(--color-white);
  color: var(--color-dark);
  font-weight: 500;
}

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

.nav__divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__contact {
  height: 56px;
}

/* Hero Text */
.hero__title {
  font-size: 60px;
  font-weight: 500;
  line-height: 64px;
  letter-spacing: -0.01em;
  max-width: 900px;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  max-width: 750px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* ============================================
   WHY YOU ARE HERE
   ============================================ */
.why-here {
  padding: 100px 0 60px;
}

.why-here__text {
  font-size: 36px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--color-text-light-muted);
  max-width: 900px;
  margin: 0 auto;
}

.why-here__text strong {
  color: var(--color-dark);
  font-weight: 500;
}

/* --- Info Blocks (2 image cards below) --- */
.info-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.info-block {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 456px;
  display: flex;
  align-items: flex-start;
  padding: 40px;
  background-size: cover;
  background-position: center;
}

.info-block--dark-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 11, 43, 0.27) 0%, rgba(25, 11, 43, 0) 100%);
  z-index: 0;
}

.info-block--dark-bottom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 11, 43, 0) 0%, rgba(25, 11, 43, 0.27) 100%);
  z-index: 0;
}

.info-block__card {
  position: relative;
  z-index: 1;
  background: rgba(16, 3, 31, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-line-light);
  border-radius: var(--radius-card);
  padding: 24px 40px;
  color: var(--color-white);
  font-size: 18px;
  line-height: 32px;
  max-width: 708px;
  align-self: flex-start;
}

.info-block__lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: var(--color-white);
}

.info-block__sub {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
  margin-bottom: 12px;
}

.info-block__lead:last-child {
  margin-bottom: 0;
}

.info-block__sub:last-child {
  margin-bottom: 0;
}

.info-block--dark-bottom .info-block__card {
  align-self: flex-end;
}

/* ============================================
   PAIN POINTS
   ============================================ */
.pain-points {
  padding: var(--section-padding);
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.pain-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-card);
  padding: 40px 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(237, 222, 255, 0.4);
}

.pain-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-white);
  border-radius: var(--radius-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.pain-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pain-card__title {
  font-size: 26px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.pain-card__desc {
  font-size: 18px;
  line-height: 24px;
  color: var(--color-text-muted);
}

/* ============================================
   SERVICES (Dark Section)
   ============================================ */
.services {
  background: var(--color-dark);
  border-radius: var(--radius-card);
  margin: 0 8px;
  padding: 80px 56px;
}

.service-row {
  display: grid;
  grid-template-columns: 36px 220px 1fr 180px;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid var(--color-line-dark);
}

.service-row:last-of-type {
  border-bottom: 1px solid var(--color-line-dark);
}

.service-row__number {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  color: var(--color-white);
  opacity: 0.24;
  text-align: center;
}

.service-row__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.01em;
  color: var(--color-white);
}

.service-row__desc {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-dark-muted);
  max-width: 451px;
}

.service-row__image {
  width: 180px;
  height: 146px;
  border-radius: var(--radius-icon);
  object-fit: cover;
}

.services__cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   CASE STUDIES
   ============================================ */
.case-studies {
  padding: 100px 0 80px;
}

.case-studies__title {
  font-size: 44px;
  font-weight: 500;
  line-height: 52px;
  letter-spacing: -0.01em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 48px;
}

.case-logos {
  position: relative;
  margin-bottom: 48px;
}

.case-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 4px 0;
}

.case-carousel::-webkit-scrollbar {
  display: none;
}

.case-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(237, 222, 255, 0.3);
}

.case-card__logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.case-card__logo img {
  max-height: 60px;
  max-width: 180px;
  opacity: 0.85;
}

.case-card__logo--dark {
  background: #010508;
  border-radius: 12px;
}

.case-card__logo-placeholder {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-dark);
  opacity: 0.7;
}

.case-card__desc {
  font-size: 14px;
  line-height: 22px;
  color: var(--color-text-muted);
}

/* Carousel Navigation */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-card-border);
  background: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.carousel-btn:hover svg {
  stroke: var(--color-white);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-logo__img {
  max-height: 120px;
  max-width: 300px;
  opacity: 0.85;
}

.case-logo__placeholder {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-text-muted);
  opacity: 0.5;
}

.case-studies__cta {
  text-align: center;
}

/* ============================================
   HOW WE WORK
   ============================================ */
.how-we-work {
  padding: var(--section-padding);
}

.how-we-work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 0;
}

.how-we-work__image {
  border-radius: var(--radius-card);
  overflow: hidden;
  grid-row: span 3;
}

.how-we-work__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-we-work__card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-card);
  padding: 40px;
}

.how-we-work__card p {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-muted);
}

.how-we-work__card strong {
  color: var(--color-dark);
}

.how-we-work__cta {
  text-align: center;
  margin-top: 48px;
}

/* --- Stats Widget Overlay --- */
.stats-widget {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(0, 0, 0, 0.004);
  border: 1px solid var(--color-line-light);
  border-radius: 12px;
  padding: 16px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(8px);
}

.stats-widget__number {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.01em;
}

.stats-widget__label {
  font-size: 16px;
  line-height: 24px;
}

.stats-widget__icon {
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-widget__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
}

/* ============================================
   ABOUT US (Dark Section)
   ============================================ */
.about {
  background: var(--color-dark);
  border-radius: var(--radius-card);
  margin: 0 8px;
  padding: 80px 56px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.team-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.team-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.team-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 3, 31, 0) 21.67%, rgba(16, 3, 31, 0.53) 100%);
}

.team-card__info {
  position: relative;
  z-index: 1;
  color: var(--color-white);
}

.team-card__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.team-card__role::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 1px;
  flex-shrink: 0;
}

.team-card__desc {
  font-size: 14px;
  line-height: 24px;
  opacity: 0.85;
}

.about__cta {
  text-align: center;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0 80px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.contact__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__image {
  border-radius: var(--radius-card);
  overflow: hidden;
  flex: 1;
  min-height: 0; /* allow flexbox to shrink below image's natural height */
  position: relative;
}

.contact__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%; /* keep the orange cube (upper third) in view */
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info-card {
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-card);
  padding: 24px;
}

.contact-info-card__icon {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 12px;
}

.contact-info-card__label {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.contact-info-card__text {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-muted);
}

/* --- Contact Form --- */
.contact-form-wrapper {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-card);
  padding: 40px;
}

.contact-form__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 24px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form__field {
  margin-bottom: 16px;
}

.contact-form input,
.contact-form select {
  width: 100%;
  height: 56px;
  padding: 0 24px;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 24px;
  color: var(--color-dark);
  background: var(--color-white);
  border: none;
  border-radius: var(--radius-input);
  outline: none;
}

.contact-form select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23D47513' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

.contact-form textarea {
  width: 100%;
  min-height: 160px;
  padding: 16px 24px;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 24px;
  color: var(--color-dark);
  background: var(--color-white);
  border: none;
  border-radius: var(--radius-textarea);
  outline: none;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-placeholder);
}

.contact-form .btn {
  width: 100%;
  margin-top: 8px;
}

/* Honeypot */
.contact-form__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-dark);
  border-radius: var(--radius-card);
  margin: 0 8px 8px;
  padding: 64px 56px 40px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.footer__logo {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  text-transform: capitalize;
  color: var(--color-white);
}

.footer__logo img {
  height: 44px;
  width: auto;
  display: block;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.footer__link {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-white);
  padding: 0 16px;
  transition: opacity 0.2s;
}

.footer__link:hover {
  opacity: 0.7;
}

.footer__nav-divider {
  width: 1px;
  height: 16px;
  background: var(--color-line-light);
}

.footer__social {
  display: flex;
  gap: 8px;
}

.footer__social-icon {
  width: 24px;
  height: 24px;
  background: var(--color-accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.footer__social-icon:hover {
  transform: scale(1.1);
}

.footer__social-icon svg {
  width: 12px;
  height: 12px;
  fill: var(--color-white);
}

.footer__line {
  border: none;
  border-top: 1px solid var(--color-line-light);
  margin-bottom: 24px;
}

.footer__copy {
  font-size: 14px;
  line-height: 24px;
  color: var(--color-white);
  text-align: center;
  opacity: 0.7;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .hero__title { font-size: 52px; line-height: 56px; }
  .section-title { font-size: 38px; line-height: 46px; }
  .why-here__text { font-size: 30px; line-height: 40px; }
  .service-row { grid-template-columns: 36px 180px 1fr 160px; gap: 20px; }
  .service-row__title { font-size: 28px; line-height: 36px; }
}

@media (max-width: 1024px) {
  :root { --container-padding: 0 32px; }
  .hero { margin: 4px; width: calc(100% - 8px); min-height: 700px; }
  .hero__content { min-height: 700px; padding: 60px 32px; }
  .nav { left: 32px; right: 32px; }
  .hero__title { font-size: 48px; line-height: 52px; }
  .section-title { font-size: 36px; line-height: 44px; }
  .why-here__text { font-size: 30px; line-height: 38px; }
  .service-row { grid-template-columns: 40px 1fr 1fr; }
  .service-row__image { display: none; }
  .pain-card__title { font-size: 24px; line-height: 32px; }
  .services, .about, .footer { margin: 0 4px; }
  .team-card { min-height: 400px; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__image { height: 300px; flex: none; }
  .footer__top { flex-direction: column; gap: 24px; text-align: center; }
  .footer__logo img { height: 36px; }
}

@media (max-width: 768px) {
  :root { --container-padding: 0 20px; }
  .hero { margin: 4px; min-height: 600px; }
  .hero__content { min-height: 600px; padding: 40px 20px; }
  .nav { left: 20px; right: 20px; top: 20px; }
  .nav__menu { display: none; }
  .nav__contact { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero__title { font-size: 36px; line-height: 40px; }
  .hero__subtitle { font-size: 16px; line-height: 28px; }
  .hero__actions { flex-direction: column; }
  .section-title { font-size: 30px; line-height: 36px; }
  .why-here__text { font-size: 24px; line-height: 32px; }
  .why-here { padding: 60px 0 40px; }
  .info-blocks { grid-template-columns: 1fr; }
  .info-block { min-height: 300px; }
  .pain-cards { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 16px; }
  .service-row__number { text-align: left; }
  .service-row__title { font-size: 28px; line-height: 36px; }
  .services, .about, .footer { padding: 48px 20px; margin: 0 4px; border-radius: 12px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { min-height: 380px; }
  .case-card { flex: 0 0 260px; }
  .case-studies__title { font-size: 30px; line-height: 36px; }
  .how-we-work__grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
  .footer__nav { flex-wrap: wrap; justify-content: center; }
}

/* --- Mobile Menu --- */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: 12px;
  cursor: pointer;
  border: none;
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-white);
  position: relative;
}

.mobile-menu-btn span::before,
.mobile-menu-btn span::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--color-white);
  left: 0;
}

.mobile-menu-btn span::before { top: -6px; }
.mobile-menu-btn span::after { top: 6px; }

@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }
}
