:root {
  --navy: #071728;
  --navy-2: #0d2740;
  --gold: #c9974f;
  --gold-light: #e2b975;
  --white: #ffffff;
  --text: #111827;
  --muted: #667085;
  --light: #f5f6f8;
  --border: #d9dee5;
  --shadow: 0 18px 50px rgba(0, 0, 0, .12);
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.site-header.scrolled {
  position: fixed;
  background: rgba(5, 18, 31, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 26px rgba(0,0,0,.18);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.brand-main {
  font-size: 23px;
  line-height: .88;
  font-weight: 800;
  letter-spacing: -1.4px;
}

.brand-divider {
  width: 1px;
  height: 45px;
  background: rgba(255, 255, 255, .45);
}

.brand-sub {
  font-size: 8px;
  line-height: 1.6;
  letter-spacing: 1.6px;
  opacity: .72;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-left: auto;
}

.main-nav a {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: .9;
  transition: .25s;
}

.main-nav a:hover {
  color: var(--gold-light);
}

.btn {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .2px;
  cursor: pointer;
  transition: transform .2s, background .2s, border-color .2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 10px 24px rgba(201, 151, 79, .26);
}

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

.btn-nav {
  border-radius: 999px;
  min-height: 42px;
  padding-inline: 18px;
}

.hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 14, 26, .98) 0%, rgba(3,14,26,.84) 40%, rgba(3,14,26,.20) 72%),
    url("https://images.unsplash.com/photo-1551836022-4c4c79ecde51?auto=format&fit=crop&w=2000&q=90") center/cover;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 50%, transparent 0, rgba(0,0,0,.18) 52%, rgba(0,0,0,.36) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 110px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--gold);
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(42px, 5.1vw, 70px);
  line-height: 1.03;
  letter-spacing: -2.7px;
  margin-bottom: 24px;
}

.hero p {
  max-width: 600px;
  font-size: 18px;
  color: rgba(255,255,255,.84);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.section {
  padding: 86px 0;
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-heading h2,
.custom-intro h2,
.contact-copy h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -1.6px;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-controls button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.category-card {
  overflow: hidden;
  background: var(--light);
  border-radius: 4px;
  transition: transform .25s, box-shadow .25s;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.category-card img {
  aspect-ratio: .92;
  object-fit: cover;
}

.category-content {
  padding: 0 18px 22px;
  position: relative;
}

.category-icon {
  width: 48px;
  height: 48px;
  margin-top: -24px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 5px;
  font-size: 20px;
}

.category-card h3 {
  margin-bottom: 8px;
  font-size: 15px;
  text-transform: uppercase;
}

.category-card p {
  font-size: 13px;
  color: var(--muted);
}

.custom-section {
  padding: 70px 0;
  color: var(--white);
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
}

.custom-grid {
  display: grid;
  grid-template-columns: .8fr 2fr;
  gap: 70px;
  align-items: center;
}

.custom-intro p {
  margin: 18px 0 26px;
  color: rgba(255,255,255,.74);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.process-item {
  text-align: center;
  position: relative;
}

.process-item:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 31px;
  right: -15px;
  color: var(--gold);
}

.process-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 15px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-weight: 800;
}

.process-item h3 {
  font-size: 14px;
}

.process-item p {
  font-size: 12px;
  color: rgba(255,255,255,.68);
}

.benefits {
  padding-bottom: 70px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 25px;
}

.benefit {
  display: flex;
  gap: 16px;
}

.benefit > span {
  color: var(--gold);
  font-size: 28px;
}

.benefit h3 {
  margin-bottom: 7px;
  font-size: 15px;
}

.benefit p {
  color: var(--muted);
  font-size: 13px;
}

.works {
  background: var(--light);
}

.works-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}

.works-grid img {
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

.contact-section {
  padding: 74px 0 0;
  background: linear-gradient(to bottom, var(--light) 55%, var(--navy) 55%);
}

.contact-card {
  padding: 42px;
  display: grid;
  grid-template-columns: .75fr 1.8fr;
  gap: 48px;
  color: var(--white);
  background: linear-gradient(120deg, #071728, #0d2f4f);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-copy p {
  margin-top: 18px;
  color: rgba(255,255,255,.74);
}

.contact-form{
    width:100%;
    display:block;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
    margin-bottom:25px;
}

.form-grid input,
.form-grid select,
.form-grid textarea{

    width:100%;

    border:0;

    border-radius:6px;

    background:#fff;

    padding:16px;

    font-size:15px;
}

.form-grid input,
.form-grid select{

    height:56px;
}

.form-grid textarea{

    grid-column:1/-1;

    min-height:150px;

    resize:vertical;
}

.contact-form button{

    width:100%;

    height:60px;
}

.site-footer {
  padding: 74px 0 42px;
  color: var(--white);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 50px;
}

.site-footer h3 {
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-footer a,
.site-footer p {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.copyright {
  margin-top: 18px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  font-weight: 800;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

@media (max-width: 1050px) {
  .main-nav {
    position: fixed;
    top: 84px;
    left: 20px;
    right: 20px;
    padding: 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    color: var(--white);
    background: var(--navy);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;
  }

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

  .menu-toggle {
    display: block;
  }

  .btn-nav {
    display: none;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .contact-card {
    grid-template-columns: 1fr;
  }
}

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

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

  .brand-sub,
  .brand-divider {
    display: none;
  }

  .hero {
    min-height: 720px;
    background-position: 65% center;
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 43px;
    letter-spacing: -1.8px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .category-grid,
  .benefits-grid,
  .works-grid {
    grid-template-columns: 1fr;
  }

  .category-card img {
    aspect-ratio: 1.4;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .process-item:not(:last-child)::after {
    display: none;
  }

  .works-grid img {
    height: 280px;
  }

  .contact-card {
    padding: 28px 20px;
  }

  .contact-form {
    flex-direction: column;
  }

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

  .contact-form .btn {
    width: 100%;
  }

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

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
  }

  .slider-controls {
    display: none;
  }
}

.notice{width:min(1180px,calc(100% - 40px));margin:22px auto 0;padding:16px 18px;border-radius:8px;font-weight:700}.notice.success{background:#e8f8ef;color:#17643a}.notice.error{background:#fff0f0;color:#9a2424}.hp-field{position:absolute!important;left:-9999px!important;opacity:0!important}.contact-form{flex-direction:column}.contact-form textarea{grid-column:1/-1;min-height:110px}.privacy-check{display:flex;gap:10px;color:#ffffffbf;font-size:12px}.privacy-check input{width:auto;min-height:auto}
