:root {
  --blue: #1025a9;
  --orange: #ff6416;
  --dark: #161616;
  --text: #2b2b2b;
  --light: #f1f1f1;
  --white: #ffffff;
  --border: #d7d7d7;
  --shadow: 0 12px 30px rgba(16, 37, 169, 0.08);
  --radius: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: #f7f7f7;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 34px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 24px;
}

.section-heading h1,
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  font-weight: 800;
}

.section-heading p {
  margin-top: 8px;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 3px solid var(--orange);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
}

.brand {
  width: 170px;
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--dark);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
}

.call-now {
  color: var(--orange);
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
  line-height: 1.1;
}

.call-now span {
  display: block;
  font-size: 1.15rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--blue);
  border-radius: 999px;
}

.hero {
  padding: 24px 0 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 22px;
  background: linear-gradient(135deg, #1226b4, #09146e);
  border-radius: 0 0 18px 18px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.video-card,
.hero-content,
.light-box,
.service-card,
.testimonial-card,
.contact-card,
.gallery-grid img,
.preview-grid img,
.image-box {
  border-radius: var(--radius);
}

.video-card {
  position: relative;
  max-width: 100%;
}

.video-card video {
  width: 100%;
  display: block;
  border-radius: 10px;
  cursor: pointer;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: red;
  color: white;
  font-size: 40px;
  padding: 15px 20px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 2;
}

.video-placeholder {
  background: #ececec;
  border: 8px solid rgba(255, 255, 255, 0.08);
  min-height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--dark);
  position: relative;
  aspect-ratio: 16/10;
}

.video-placeholder span {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.play-btn {
  width: 88px;
  height: 58px;
  background: var(--orange);
  border-radius: 10px;
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
}

.play-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-left: 18px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.hero-content {
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  color: #cdd4ff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.82rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.hero-brand-card {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  width: min(390px, 100%);
  margin-top: 4px;
}

.hero-brand-card img {
  object-fit: contain;
  max-height: 110px;
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}

.socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.socials a {
  width: 34px;
  height: 34px;
  display: inline-flex;
}

.hero-phone,
.info-phone {
  color: #fff;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
}

.split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.content-box {
  padding: 28px;
}

.light-box {
  background: #ececec;
  border: 1px solid var(--border);
}

.content-box h2 {
  color: var(--blue);
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}

.content-box h3 {
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}

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

.image-box {
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.image-box img,
.preview-grid img,
.gallery-grid img,
.client-photo img,
.map-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process {
  background: #fff;
}

.intro-copy {
  max-width: 900px;
  margin: 0 auto 26px;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.step-card {
  background: var(--blue);
  color: var(--white);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.step-card img {
  width: 64px;
  margin: 0 auto 14px;
}

.step-card h3 {
  font-size: 1rem;
  line-height: 1.35;
}

.workflow-box {
  background: #ececec;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.workflow-box h3 {
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.workflow-box ul {
  padding-left: 20px;
}

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

.service-card {
  background: #f2f2f2;
  border: 2px solid var(--blue);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.service-card img {
  width: 82px;
  margin: 0 auto 14px;
}

.service-card h3 {
  color: var(--blue);
  font-size: 1.1rem;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--orange);
  font-weight: 600;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.preview-grid img {
  aspect-ratio: 16/10;
}

.center-btn {
  margin-top: 22px;
  text-align: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.testimonial-card {
  background: #d9d9d9;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  padding: 24px;
  align-items: center;
}

.client-photo img {
  border: 6px solid var(--orange);
  border-radius: 999px;
  aspect-ratio: 1/1;
  object-position: center top;
}

.client-review {
  background: var(--blue);
  border-radius: 20px;
  color: #fff;
  padding: 24px;
  text-align: center;
}

.client-review h2 {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.client-review h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.stars {
  color: var(--orange);
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  margin-top: 14px;
}

.contact-card {
  background: #efefef;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  padding: 24px;
  margin-bottom: 18px;
}

.contact-form-wrap h2 {
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  background: #d8d8d8;
  padding: 14px 16px;
  border-radius: 8px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 18px;
}

.info-block {
  display: grid;
  gap: 8px;
  place-items: center;
}

.info-block img {
  width: 42px;
}

.info-block p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.contact .info-phone {
  color: var(--dark);
}

.big-socials a {
  width: 42px;
  height: 42px;
}

.map-box {
  overflow: hidden;
  border-radius: 12px;
  min-height: 120px;
}

.site-footer {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 14px 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-page {
  min-height: calc(100vh - 160px);
}

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

.gallery-grid img {
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
    order: 3;
  }

  .call-now {
    margin-left: auto;
    order: 2;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 3px solid var(--orange);
    display: none;
    flex-direction: column;
    padding: 18px;
    gap: 16px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  }

  .main-nav.active {
    display: flex;
  }

  .hero-grid,
  .split-card,
  .contact-card,
  .testimonial-card {
    grid-template-columns: 1fr;
  }

  .preview-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-wrap {
    min-height: 78px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .hero-grid {
    padding: 18px;
  }

  .mini-columns,
  .services-grid,
  .process-grid,
  .preview-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .call-now {
    display: none;
  }

  .content-box,
  .workflow-box,
  .contact-card,
  .testimonial-card,
  .service-card {
    padding: 18px;
  }

  .brand {
    width: 145px;
  }
}
