/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f8fa;
  color: #111827;
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: #111827;
  color: #fff;
}

/* =========================================================
   VARIABLES
   ========================================================= */

:root {
  --dark: #0b1220;
  --dark-soft: #111b2d;
  --text: #111827;
  --muted: #667085;
  --light: #f7f8fa;
  --white: #ffffff;
  --border: #e4e7ec;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;

  --container: 1240px;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

/* =========================================================
   GLOBAL
   ========================================================= */

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

section {
  position: relative;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
}

em {
  color: var(--accent);
  font-style: normal;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
}

.header-inner {
  min-height: 90px;

  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;

  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.08);

  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.brand-text {
  display: flex;
  flex-direction: column;

  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
}

.brand-text small {
  margin-top: 4px;

  color: rgba(255, 255, 255, 0.55);

  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;

  margin-left: auto;
}

.main-nav a {
  position: relative;

  color: rgba(255, 255, 255, 0.7);

  font-size: 13px;
  font-weight: 600;

  transition: color 0.25s ease;
}

.main-nav a::after {
  position: absolute;
  content: "";

  left: 0;
  right: 0;
  bottom: -8px;

  height: 2px;

  background: #fff;

  transform: scaleX(0);
  transform-origin: center;

  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.preview-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 15px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.07);

  color: #fff;

  font-size: 11px;
  font-weight: 700;

  white-space: nowrap;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.preview-button:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  padding: 10px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;

  width: 100%;
  height: 2px;

  margin: 5px 0;

  background: #fff;

  transition: 0.25s ease;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  min-height: 52px;

  padding: 0 23px;

  border-radius: 9px;

  font-size: 13px;
  font-weight: 700;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.button span {
  font-size: 17px;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--accent);
  color: #fff;

  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.22);
}

.button-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.3);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-light {
  background: #fff;
  color: var(--dark);
}

.button-light:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  min-height: 850px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 75% 25%,
      rgba(37, 99, 235, 0.22),
      transparent 30%
    ),
    var(--dark);

  color: #fff;
}

.hero-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;

  gap: 80px;

  padding-top: 100px;
}

.hero-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(100px);

  opacity: 0.5;
}

.hero-glow-one {
  width: 400px;
  height: 400px;

  top: 250px;
  left: -150px;

  background: rgba(37, 99, 235, 0.15);
}

.hero-glow-two {
  width: 300px;
  height: 300px;

  right: -100px;
  bottom: -50px;

  background: rgba(59, 130, 246, 0.12);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 25px;

  padding: 8px 13px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.05);

  color: rgba(255, 255, 255, 0.72);

  font-size: 11px;
  font-weight: 600;
}

.hero-badge span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #60a5fa;

  box-shadow: 0 0 15px #60a5fa;
}

.hero h1 {
  max-width: 760px;

  margin-bottom: 25px;

  font-size: clamp(48px, 6vw, 78px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;
  color: #60a5fa;
}

.hero-description {
  max-width: 610px;

  margin-bottom: 35px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  display: flex;
  align-items: center;

  margin-top: 55px;
}

.trust-item {
  display: flex;
  flex-direction: column;

  padding-right: 25px;
}

.trust-item strong {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.trust-item span {
  margin-top: 2px;

  color: rgba(255, 255, 255, 0.45);

  font-size: 10px;
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 35px;

  margin-right: 25px;

  background: rgba(255, 255, 255, 0.12);
}

/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
  position: relative;

  max-width: 550px;
  margin-left: auto;
}

.hero-image-card {
  position: relative;

  height: 570px;

  overflow: hidden;

  border-radius: 28px;

  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

.hero-image-card img {
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgba(5, 11, 20, 0.75), transparent 55%);
}

.hero-card-content {
  position: absolute;

  left: 35px;
  bottom: 35px;

  display: flex;
  flex-direction: column;
}

.hero-card-label {
  margin-bottom: 8px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-card-content strong {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  line-height: 1.15;
}

.floating-card {
  position: absolute;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 17px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;

  background: rgba(14, 24, 40, 0.88);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);

  backdrop-filter: blur(15px);
}

.floating-card-top {
  top: 35px;
  left: -40px;
}

.floating-card-bottom {
  right: -30px;
  bottom: 30px;
}

.floating-icon {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 9px;

  background: rgba(37, 99, 235, 0.2);

  color: #60a5fa;

  font-weight: 800;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  color: #fff;
  font-size: 11px;
}

.floating-card span {
  margin-top: 2px;

  color: rgba(255, 255, 255, 0.45);

  font-size: 9px;
}

.status-dot {
  width: 8px;
  height: 8px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #22c55e;

  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
}

.hero-scroll {
  position: absolute;

  left: 50%;
  bottom: 30px;

  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

  color: rgba(255, 255, 255, 0.4);

  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  transform: translateX(-50%);
}

.hero-scroll i {
  width: 1px;
  height: 30px;

  background: rgba(255, 255, 255, 0.3);
}

/* =========================================================
   INTRO
   ========================================================= */

.intro-section {
  padding: 140px 0;

  background: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 180px 1fr;

  gap: 70px;
}

.intro-label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.intro-label span {
  color: var(--accent);

  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.intro-label small {
  color: #98a2b3;

  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro-content {
  max-width: 850px;
}

.intro-content h2 {
  max-width: 850px;

  margin-bottom: 25px;

  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.intro-text {
  max-width: 700px;

  margin-bottom: 28px;

  color: var(--muted);

  font-size: 17px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding-bottom: 5px;

  border-bottom: 1px solid #cbd5e1;

  font-size: 13px;
  font-weight: 700;

  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.text-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* =========================================================
   COMPANY
   ========================================================= */

.company-section {
  padding: 140px 0;

  background: var(--light);
}

.company-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  align-items: center;

  gap: 110px;
}

.company-image-wrap {
  position: relative;
}

.company-image {
  height: 650px;

  overflow: hidden;

  border-radius: var(--radius-lg);
}

.company-image img {
  height: 100%;
  object-fit: cover;
}

.experience-card {
  position: absolute;

  right: -35px;
  bottom: 35px;

  display: flex;
  align-items: center;
  gap: 16px;

  padding: 22px 25px;

  border-radius: 15px;

  background: #fff;

  box-shadow: var(--shadow);
}

.experience-card strong {
  color: var(--accent);

  font-family: "Manrope", sans-serif;
  font-size: 34px;
  font-weight: 800;
}

.experience-card span {
  color: #667085;

  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
}

.company-content h2 {
  margin-bottom: 25px;

  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.company-content > p {
  max-width: 600px;

  color: var(--muted);

  font-size: 15px;
  line-height: 1.8;
}

.company-points {
  margin-top: 40px;
}

.company-point {
  display: flex;
  gap: 18px;

  padding: 17px 0;

  border-top: 1px solid var(--border);
}

.company-point:last-child {
  border-bottom: 1px solid var(--border);
}

.company-point > span {
  color: var(--accent);

  font-size: 10px;
  font-weight: 800;
}

.company-point strong {
  display: block;

  margin-bottom: 3px;

  font-family: "Manrope", sans-serif;
  font-size: 13px;
}

.company-point p {
  margin: 0;

  color: #98a2b3;

  font-size: 11px;
}

/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
  padding: 140px 0;

  background: #fff;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 60px;

  margin-bottom: 60px;
}

.section-heading h2 {
  max-width: 700px;

  margin: 0;

  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.section-heading > p {
  max-width: 380px;

  margin: 0;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}

.service-card {
  position: relative;

  min-height: 390px;

  padding: 32px;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 20px;

  background: #fff;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-card:hover {
  border-color: #cbd5e1;

  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);

  transform: translateY(-7px);
}

.service-card-featured {
  border-color: transparent;

  background: var(--dark);

  color: #fff;
}

.service-card-featured:hover {
  border-color: transparent;
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-number {
  color: #98a2b3;

  font-size: 10px;
  font-weight: 800;
}

.service-card-featured .service-number {
  color: rgba(255, 255, 255, 0.4);
}

.service-icon {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border: 1px solid var(--border);
  border-radius: 50%;

  color: var(--accent);

  font-size: 16px;
}

.service-card-featured .service-icon {
  border-color: rgba(255, 255, 255, 0.15);
  color: #60a5fa;
}

.service-content {
  position: absolute;

  left: 32px;
  right: 32px;
  bottom: 32px;
}

.service-content h3 {
  max-width: 400px;

  margin-bottom: 15px;

  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.service-content p {
  max-width: 480px;

  margin-bottom: 25px;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.75;
}

.service-card-featured .service-content p {
  color: rgba(255, 255, 255, 0.55);
}

.service-content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--accent);

  font-size: 11px;
  font-weight: 800;
}

.service-card-featured .service-content a {
  color: #60a5fa;
}

/* =========================================================
   ADVANTAGES
   ========================================================= */

.advantages-section {
  padding: 140px 0;

  background: #f1f4f8;
}

.advantages-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  gap: 60px;

  margin-bottom: 65px;
}

.advantages-header h2 {
  margin: 0;

  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.advantages-header > p {
  max-width: 400px;

  margin: 0;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.8;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid #d9dee7;
}

.advantage {
  display: grid;
  grid-template-columns: 70px 1fr;

  gap: 25px;

  padding: 38px 30px;

  border-bottom: 1px solid #d9dee7;
}

.advantage:nth-child(odd) {
  border-right: 1px solid #d9dee7;
}

.advantage-icon {
  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: #fff;

  color: var(--accent);

  font-size: 10px;
  font-weight: 800;
}

.advantage h3 {
  margin-bottom: 8px;

  font-size: 18px;
  letter-spacing: -0.02em;
}

.advantage p {
  max-width: 420px;

  margin: 0;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.7;
}

/* =========================================================
   IMAGE BANNER
   ========================================================= */

.image-banner {
  height: 620px;

  overflow: hidden;

  color: #fff;
}

.image-banner > img {
  position: absolute;
  inset: 0;

  height: 100%;

  object-fit: cover;
}

.image-banner-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(6, 12, 22, 0.92),
    rgba(6, 12, 22, 0.52),
    rgba(6, 12, 22, 0.3)
  );
}

.image-banner-content {
  position: relative;
  z-index: 2;

  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.image-banner-content .eyebrow {
  color: #60a5fa;
}

.image-banner-content h2 {
  max-width: 760px;

  margin-bottom: 30px;

  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

/* =========================================================
   PROCESS
   ========================================================= */

.process-section {
  padding: 140px 0;

  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;

  align-items: start;

  gap: 20px;
}

.process-step span {
  display: block;

  margin-bottom: 20px;

  color: var(--accent);

  font-size: 11px;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 10px;

  font-size: 19px;
}

.process-step p {
  margin: 0;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.7;
}

.process-line {
  width: 45px;
  height: 1px;

  margin-top: 7px;

  background: #d9dee7;
}

/* =========================================================
   CTA
   ========================================================= */

.cta-section {
  padding: 130px 0;

  background: var(--dark);

  color: #fff;

  text-align: center;
}

.cta-inner {
  max-width: 900px;
}

.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 22px;

  color: rgba(255, 255, 255, 0.5);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-label span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #60a5fa;
}

.cta-inner h2 {
  margin-bottom: 22px;

  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.cta-inner p {
  max-width: 600px;

  margin: 0 auto 35px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 15px;
  line-height: 1.8;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
  padding: 140px 0;

  background: #f7f8fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;

  gap: 100px;
}

.contact-content h2 {
  margin-bottom: 25px;

  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.contact-content > p {
  max-width: 470px;

  color: var(--muted);

  font-size: 15px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;

  margin-top: 45px;
}

.contact-details a,
.contact-details div {
  display: flex;
  flex-direction: column;

  gap: 4px;

  padding: 17px 0;

  border-bottom: 1px solid var(--border);

  font-size: 13px;
  font-weight: 600;
}

.contact-details span {
  color: #98a2b3;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details a:hover {
  color: var(--accent);
}

/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form {
  padding: 40px;

  border: 1px solid var(--border);
  border-radius: 22px;

  background: #fff;

  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.06);
}

.form-heading {
  margin-bottom: 30px;
}

.form-heading span {
  display: block;

  margin-bottom: 5px;

  font-family: "Manrope", sans-serif;
  font-size: 21px;
  font-weight: 800;
}

.form-heading p {
  margin: 0;

  color: var(--muted);

  font-size: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;

  margin-bottom: 18px;
}

.form-group label {
  margin-bottom: 7px;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;

  padding: 14px 15px;

  border: 1px solid #dfe3e8;
  border-radius: 9px;

  outline: none;

  background: #fafbfc;

  color: var(--text);

  font-size: 13px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.form-group textarea {
  min-height: 130px;

  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);

  background: #fff;

  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.form-button {
  width: 100%;

  border: 0;
}

.form-note {
  margin: 15px 0 0;

  color: #98a2b3;

  font-size: 9px;
  line-height: 1.5;

  text-align: center;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: #080e19;

  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;

  gap: 100px;

  padding-top: 80px;
  padding-bottom: 70px;
}

.footer-brand p {
  max-width: 330px;

  margin-top: 25px;

  color: rgba(255, 255, 255, 0.4);

  font-size: 11px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 40px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links strong {
  margin-bottom: 18px;

  color: #fff;

  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  margin-bottom: 9px;

  color: rgba(255, 255, 255, 0.4);

  font-size: 11px;

  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;

  padding-top: 20px;
  padding-bottom: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  color: rgba(255, 255, 255, 0.3);

  font-size: 9px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.8fr;

    gap: 45px;
  }

  .hero-image-card {
    height: 500px;
  }

  .floating-card-top {
    left: -20px;
  }

  .floating-card-bottom {
    right: -15px;
  }

  .company-grid {
    gap: 65px;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;

    gap: 45px;
  }

  .process-line {
    display: none;
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 850px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .main-nav {
    position: absolute;

    top: 78px;
    left: 18px;
    right: 18px;

    display: none;
    flex-direction: column;
    align-items: stretch;

    gap: 0;

    padding: 10px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;

    background: rgba(8, 14, 25, 0.97);

    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(20px);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 15px;
  }

  .main-nav a::after {
    display: none;
  }

  .preview-button {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;

    padding: 150px 0 100px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 700px;
  }

  .hero-visual {
    width: 100%;
    max-width: 650px;

    margin: 30px auto 0;
  }

  .hero-image-card {
    height: 550px;
  }

  .hero-scroll {
    display: none;
  }

  .intro-grid {
    grid-template-columns: 80px 1fr;

    gap: 30px;
  }

  .company-grid {
    grid-template-columns: 1fr;
  }

  .company-image {
    height: 500px;
  }

  .section-heading,
  .advantages-header {
    flex-direction: column;
    align-items: flex-start;

    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .footer-top {
    grid-template-columns: 1fr;

    gap: 50px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 76px;

    gap: 10px;
  }

  .brand-text {
    font-size: 12px;
  }

  .brand-text small {
    font-size: 7px;
  }

  .preview-button {
    padding: 8px 10px;

    font-size: 9px;
  }

  .preview-button span {
    display: none;
  }

  .hero {
    padding-top: 125px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    margin-top: 40px;
  }

  .trust-item {
    padding-right: 12px;
  }

  .trust-divider {
    margin-right: 12px;
  }

  .trust-item strong {
    font-size: 17px;
  }

  .trust-item span {
    font-size: 8px;
  }

  .hero-image-card {
    height: 430px;

    border-radius: 20px;
  }

  .hero-card-content {
    left: 22px;
    bottom: 22px;
  }

  .hero-card-content strong {
    font-size: 23px;
  }

  .floating-card {
    padding: 10px 12px;
  }

  .floating-card-top {
    top: 15px;
    left: 10px;
  }

  .floating-card-bottom {
    right: 10px;
    bottom: 15px;
  }

  .floating-card strong {
    font-size: 9px;
  }

  .floating-card span {
    font-size: 8px;
  }

  .intro-section,
  .company-section,
  .services-section,
  .advantages-section,
  .process-section,
  .contact-section {
    padding: 85px 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .intro-content h2,
  .company-content h2,
  .section-heading h2,
  .advantages-header h2,
  .contact-content h2 {
    font-size: 40px;
  }

  .company-image {
    height: 400px;
  }

  .experience-card {
    right: 10px;
    bottom: 15px;

    padding: 15px;
  }

  .experience-card strong {
    font-size: 26px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 370px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .advantage:nth-child(odd) {
    border-right: 0;
  }

  .advantage {
    grid-template-columns: 55px 1fr;

    padding: 28px 0;
  }

  .image-banner {
    height: 520px;
  }

  .image-banner-content h2 {
    font-size: 43px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .cta-section {
    padding: 90px 0;
  }

  .cta-inner h2 {
    font-size: 43px;
  }

  .contact-form {
    padding: 24px;

    border-radius: 17px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-top {
    padding-top: 60px;
    padding-bottom: 50px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;

    gap: 35px;
  }

  .footer-links div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {
  .brand-text {
    display: none;
  }

  .preview-button {
    font-size: 8px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-trust {
    gap: 0;
  }

  .trust-divider {
    margin-right: 8px;
  }

  .trust-item {
    padding-right: 8px;
  }

  .trust-item strong {
    font-size: 15px;
  }

  .trust-item span {
    font-size: 7px;
  }

  .hero-image-card {
    height: 380px;
  }

  .floating-card-bottom {
    display: none;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
