@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&display=swap");

:root {
  --bg: #fdfaf5;
  --bg-2: #f5f1ea;
  --bg-dark: #1c1c1e;
  --bg-dark-2: #242426;
  --panel: #2a2a2d;

  --text: #1c1c1e;
  --text-light: #fdfaf5;
  --muted: #6b6b70;
  --muted-light: #a8a8b0;

  --brand: #0ea5c9;
  --brand-dark: #0284a0;
  --brand-light: #38bdf8;
  --brand-pale: rgba(14, 165, 201, 0.1);
  --brand-glow: rgba(14, 165, 201, 0.25);

  --line: rgba(28, 28, 30, 0.1);
  --line-light: rgba(253, 250, 245, 0.12);

  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 80px rgba(0, 0, 0, 0.18);

  --font-display: "Outfit", sans-serif;
  --font-body: "Crimson Pro", serif;

  --radius: 6px;
  --radius-lg: 16px;
  --gap: clamp(1.5rem, 4vw, 3rem);
  --section-pad: clamp(5rem, 9vw, 8rem);
  --wrap: 1260px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 700;
}
h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.02em;
}
h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}
p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
}

.label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--brand-glow);
}
.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
}
.btn-outline:hover {
  background: var(--brand-pale);
  transform: translateY(-2px);
}
.btn-light {
  background: #fff;
  color: var(--text);
}
.btn-light:hover {
  background: var(--bg-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.btn-arrow::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.2s;
}
.btn:hover .btn-arrow::after,
.btn-arrow:hover::after {
  transform: translateX(4px);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(253, 250, 245, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  gap: 2rem;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-right {
  justify-content: flex-end;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1;
}
.nav-brand-sub {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
}
.nav-link {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text);
}
.nav-cta {
  background: var(--brand);
  color: #fff;
  padding: 0.5rem 1.3rem;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.25s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--brand-dark);
  box-shadow: 0 4px 14px var(--brand-glow);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  padding: 2rem clamp(1.25rem, 5vw, 3rem);
  flex-direction: column;
  gap: 0;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-drawer.open {
  transform: translateX(0);
}
.nav-drawer-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  display: block;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.nav-drawer-link:hover {
  color: var(--brand);
  padding-left: 0.5rem;
}
.nav-drawer .btn {
  margin-top: 2rem;
  width: 100%;
  justify-content: center;
}

.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark) url("../images/img-0.jpg") center right / cover
    no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 72px 0 0;
  background: linear-gradient(
    90deg,
    rgba(28, 28, 30, 0.96) 0%,
    rgba(28, 28, 30, 0.88) 42%,
    rgba(28, 28, 30, 0.42) 72%,
    rgba(28, 28, 30, 0.22) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.hero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
  position: relative;
  z-index: 1;
}
.hero-left {
  background: transparent;
  padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-letter {
  position: absolute;
  top: -0.1em;
  left: -0.05em;
  font-family: var(--font-display);
  font-size: 28vw;
  font-weight: 800;
  color: rgba(14, 165, 201, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}
.hero-label {
  color: var(--brand);
  margin-bottom: 1.5rem;
}
.hero-title {
  color: var(--text-light);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.hero-title em {
  font-style: normal;
  color: var(--brand);
}
.hero-desc {
  color: var(--muted-light);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 460px;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.hero-trust {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.hero-trust-line {
  width: 40px;
  height: 1px;
  background: var(--brand);
}
.hero-trust-text {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 201, 0.15) 0%,
    transparent 60%
  );
}
.hero-float-card {
  position: absolute;
  bottom: 2.5rem;
  background: #fff;
  z-index: 2;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  border-left: 4px solid var(--brand);
}
.hero-float-card-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.hero-float-card-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

.ticker-strip {
  background: var(--brand);
  overflow: hidden;
  padding: 0.85rem 0;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}
.ticker-item::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.stats {
  padding: var(--section-pad) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--brand);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-item:hover::before {
  opacity: 1;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-num span {
  color: var(--brand);
}
.stat-label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}

.section-head {
  max-width: 680px;
  margin-bottom: 4rem;
}
.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  margin-top: 0.75rem;
}
.section-head p {
  margin-top: 1rem;
  color: var(--muted);
}

.services {
  padding: var(--section-pad) 0;
  background: var(--bg-2);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--line);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--bg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.3s;
}
.service-card:hover {
  background: var(--bg-dark);
}
.service-card:hover .service-icon {
  color: var(--brand);
}
.service-card:hover .service-title,
.service-card:hover .service-text {
  color: var(--text-light);
}
.service-card:hover .service-muted {
  color: var(--muted-light);
}
.service-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--brand);
  margin-bottom: 1.5rem;
}
.service-icon {
  color: var(--brand);
  margin-bottom: 1.25rem;
  transition: color 0.3s;
}
.service-icon svg {
  width: 36px;
  height: 36px;
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.service-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  transition: color 0.3s;
}
.service-muted {
  transition: color 0.3s;
}
.service-link {
  margin-top: auto;
  padding-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}
.service-card:hover .service-link {
  gap: 0.8rem;
}

.about {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge-text {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  opacity: 0.85;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-content h2 {
  margin-bottom: 0.25rem;
}
.about-content p {
  color: var(--muted);
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
}
.about-list-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.process {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
  color: var(--text-light);
}
.process .label {
  color: var(--brand);
}
.process .section-head p {
  color: var(--muted-light);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(12.5% + 32px);
  right: calc(12.5% + 32px);
  height: 1px;
  background: linear-gradient(to right, var(--brand), rgba(14, 165, 201, 0.2));
}
.process-step {
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
}
.process-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px rgba(14, 165, 201, 0.1);
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.process-step-text {
  font-size: 0.9rem;
  color: var(--muted-light);
  line-height: 1.6;
}

.testimonials {
  padding: var(--section-pad) 0;
  background: var(--bg-2);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1.5rem;
}
.testi-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testi-card.featured {
  background: var(--bg-dark);
  color: var(--text-light);
  grid-row: span 2;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.testi-card.featured::before {
  content: "\201C";
  position: absolute;
  top: -0.2em;
  left: 0.2em;
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 800;
  color: rgba(14, 165, 201, 0.08);
  line-height: 1;
  pointer-events: none;
}
.testi-quote {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--muted);
  flex: 1;
}
.testi-card.featured .testi-quote {
  color: var(--muted-light);
  font-size: 1.2rem;
}
.testi-author {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--brand-pale);
  flex-shrink: 0;
}
.testi-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.testi-card.featured .testi-name {
  color: var(--text-light);
}
.testi-role {
  font-size: 0.82rem;
  color: var(--muted);
}
.testi-card.featured .testi-role {
  color: var(--muted-light);
}
.testi-stars {
  color: var(--brand);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.cta-banner {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(14, 165, 201, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.cta-inner h2 {
  color: var(--text-light);
}
.cta-inner p {
  color: var(--muted-light);
  margin-top: 0.75rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-info h2 {
  margin-bottom: 0.25rem;
}
.contact-info > p {
  color: var(--muted);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--brand-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}
.contact-detail-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.contact-detail-val {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.contact-form {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 1px solid var(--line);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
}
.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-display);
  font-size: 0.95rem;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--line-light);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}
.footer-brand-sub {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.92rem;
  color: var(--muted-light);
  line-height: 1.65;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--muted-light);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.footer-contact-icon {
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-text {
  font-size: 0.88rem;
  color: var(--muted-light);
  line-height: 1.5;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--muted-light);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted-light);
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: var(--brand);
}

.cookie-bar {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--bg-dark);
  border: 1px solid var(--brand);
  border-radius: 50px;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 1000;
  max-width: 680px;
  width: calc(100% - 3rem);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-bar.visible {
  transform: translateX(-50%) translateY(0);
}
.cookie-text {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted-light);
  flex: 1;
}
.cookie-text a {
  color: var(--brand);
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.cookie-accept {
  background: var(--brand);
  color: #fff;
}
.cookie-accept:hover {
  background: var(--brand-dark);
}
.cookie-decline {
  background: transparent;
  color: var(--muted-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.cookie-decline:hover {
  color: #fff;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  transform: scale(0.85);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.active .modal-box {
  transform: scale(1);
}
.modal-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 16px var(--brand-pale);
}
.modal-icon svg {
  color: #fff;
}
.modal-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.modal-box p {
  color: var(--muted);
  font-size: 0.95rem;
}
.modal-box .btn {
  margin-top: 2rem;
}

.page-hero {
  padding-top: 72px;
  min-height: 340px;
  background: var(--bg-dark);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--brand), transparent);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}
.page-hero-content .label {
  margin-bottom: 0.75rem;
}
.page-hero-content h1 {
  color: var(--text-light);
}

.mission-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.mission-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
}
.mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.values-section {
  padding: var(--section-pad) 0;
  background: var(--bg-2);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-top: 3px solid var(--brand);
  box-shadow: var(--shadow);
}
.value-card-icon {
  color: var(--brand);
  margin-bottom: 1rem;
}
.value-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.value-card-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.services-page {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.services-page-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 2rem;
  background: var(--bg);
  padding: 1.75rem 2rem;
  cursor: pointer;
  transition: background 0.25s;
  color: inherit;
  text-decoration: none;
}
.service-row:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: -2px;
}
.service-row:hover {
  background: var(--bg-dark);
}
.service-row:hover .service-row-num,
.service-row:hover .service-row-title {
  color: var(--text-light);
}
.service-row-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}
.service-row-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.25s;
}
.service-row-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.25rem;
  transition: color 0.25s;
}
.service-row:hover .service-row-desc {
  color: var(--muted-light);
}
.service-row-arrow {
  color: var(--brand);
  transition: transform 0.2s;
}
.service-row:hover .service-row-arrow {
  transform: translateX(4px);
}

.contact-page {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact-map {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--line);
  margin-top: 2rem;
  background: var(--bg-2);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.legal-page {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--font-body);
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
  color: var(--text);
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content ul li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0.35rem;
  list-style: disc;
}
.legal-content a {
  color: var(--brand);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .nav-left,
  .nav-right,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-drawer {
    display: flex;
  }
  .nav-inner {
    grid-template-columns: auto 1fr auto;
  }
  .hero {
    background-position: center center;
  }
  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(28, 28, 30, 0.94) 0%,
      rgba(28, 28, 30, 0.84) 52%,
      rgba(28, 28, 30, 0.72) 100%
    );
  }
  .hero-body {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .hero-left {
    min-height: calc(100vh - 72px);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item {
    border-bottom: 1px solid var(--line);
  }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .about-badge {
    right: 1rem;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .process-steps::before {
    display: none;
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-card.featured {
    grid-row: auto;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-actions {
    justify-content: center;
  }
  .contact-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .cookie-bar {
    flex-direction: column;
    border-radius: 16px;
    text-align: center;
  }
}
