:root {
  color-scheme: dark;
  --bg: #020607;
  --panel: rgba(6, 12, 15, 0.78);
  --panel-strong: rgba(2, 8, 10, 0.92);
  --line: rgba(255, 255, 255, 0.18);
  --text: #f8f9f7;
  --muted: #cfd5d7;
  --gold: #ffc433;
  --gold-soft: #ffd55c;
  --red: #ff4658;
  --ink: #071014;
  --paper: #f8f8f6;
  --paper-muted: #697179;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
}

button,
input,
select {
  font: inherit;
}

.icon {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-fill {
  fill: currentColor;
  stroke: none;
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 6, 7, 0.96) 0%, rgba(2, 6, 7, 0.86) 44%, rgba(2, 6, 7, 0.58) 100%),
    linear-gradient(180deg, rgba(2, 6, 7, 0.18) 0%, #020607 76%);
}

.page::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: 0;
  background-image: url("../img/brand-reference.jpeg");
  background-size: cover;
  background-position: top center;
  opacity: 0.28;
  filter: blur(3px) saturate(0.9);
  transform: scale(1.02);
}

.page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 7, 0.2) 0%, #020607 88%),
    linear-gradient(90deg, #020607 0%, rgba(2, 6, 7, 0.8) 42%, rgba(2, 6, 7, 0.62) 100%);
}

.shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 42px 36px 28px;
}

.topbar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 56px;
}

.brand-name {
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: var(--text);
  line-height: 0.95;
  font-size: 3rem;
  font-weight: 300;
}

.brand-name strong {
  font-weight: 850;
}

.brand-dot {
  width: 10px;
  height: 10px;
  margin-left: -2px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 26px rgba(255, 196, 51, 0.55);
}

.brand-sub {
  margin-top: 12px;
  color: #ccd1d2;
  font-size: 0.83rem;
  font-weight: 500;
  text-transform: uppercase;
}

.brand-sub span {
  margin: 0 14px;
  color: var(--gold);
}

.top-keywords {
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 18px;
  align-items: start;
  color: #d9dcde;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
  text-transform: uppercase;
}

.top-keywords::before {
  content: "";
  width: 3px;
  height: 104px;
  border-radius: 999px;
  background: var(--gold);
}

.hero {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 470px));
  max-width: 760px;
  padding-bottom: 24px;
}

.eyebrow {
  margin: 0 0 8px;
  color: #e7ebec;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(4.1rem, 5vw, 4.85rem);
  line-height: 0.98;
  font-weight: 950;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

.accent {
  color: var(--gold);
  padding-top: 0.04em;
  text-shadow: 0 0 30px rgba(255, 196, 51, 0.18);
}

.hero-copy {
  width: min(100%, 690px);
  margin-top: 24px;
  color: #f4f6f6;
  font-size: 1.47rem;
  line-height: 1.28;
}

.hero-copy p {
  margin: 0 0 16px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin-top: 32px;
}

.stat {
  display: grid;
  grid-template-columns: 70px auto;
  gap: 18px;
  align-items: center;
  min-width: 245px;
}

.stat + .stat {
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.stat .icon {
  width: 62px;
  height: 62px;
  color: var(--gold);
}

.stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: #f1f4f4;
  font-size: 1rem;
}

.right-visual {
  position: absolute;
  top: 92px;
  right: 36px;
  z-index: 1;
  width: min(35vw, 400px);
  height: 610px;
  overflow: hidden;
  border-left: 3px solid rgba(255, 196, 51, 0.9);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.right-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 50%;
  opacity: 0.92;
  filter: brightness(0.88) contrast(1.08) saturate(0.98);
}

.right-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 7, 0.58) 0%, rgba(2, 6, 7, 0.16) 42%, rgba(2, 6, 7, 0.02) 100%),
    linear-gradient(180deg, rgba(2, 6, 7, 0.03) 0%, rgba(2, 6, 7, 0.42) 100%);
}

.quota-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 16px;
  margin-top: 22px;
}

.quota-card,
.limit-card,
.service-card,
.drone-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.quota-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 18px 24px;
}

.quota-title {
  margin: 0 0 11px;
  color: #f1f4f4;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quota-bar {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 5px;
  height: 24px;
}

.quota-segment {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #283239;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.quota-segment::before {
  content: "";
  display: block;
  width: var(--fill, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 20px rgba(255, 196, 51, 0.28);
  transition: width 300ms ease;
}

.quota-percent {
  color: var(--gold);
  font-size: 2.3rem;
  font-weight: 900;
  white-space: nowrap;
}

.limit-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  color: var(--gold);
}

.limit-card .icon {
  width: 44px;
  height: 44px;
}

.limit-card p {
  margin: 0;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.24;
}

.content-area {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
  margin-top: 28px;
}

.section-title {
  margin: 0 0 17px;
  color: #f1f4f4;
  font-size: 1.35rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

.service-card {
  min-height: 222px;
  padding: 22px 20px 18px;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 196, 51, 0.45);
  background: rgba(7, 16, 20, 0.88);
}

.service-card-closed {
  border-color: rgba(255, 70, 88, 0.55);
  background: rgba(13, 9, 12, 0.85);
}

.service-icon {
  height: 46px;
  margin-bottom: 18px;
  color: var(--gold);
}

.service-card h3,
.drone-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.07;
  font-weight: 900;
}

.service-card p,
.drone-card p {
  margin: 11px 0 0;
  color: #d4d8da;
  font-size: 0.94rem;
  line-height: 1.35;
}

.service-status {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  margin-top: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--red);
  color: #220406;
  font-size: 0.75rem;
  font-weight: 900;
}

.brand-pair {
  display: flex;
  gap: 16px;
  align-items: center;
  height: 46px;
}

.google-mark {
  font-size: 2.7rem;
  line-height: 1;
  font-weight: 900;
  background: conic-gradient(from -42deg, #4285f4 0 23%, #34a853 23% 38%, #fbbc05 38% 62%, #ea4335 62% 76%, #4285f4 76% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.meta-mark {
  color: #2779ff;
  font-size: 3.7rem;
  line-height: 0.6;
  font-weight: 700;
}

.x-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #f9fbfb;
  font-size: 2.55rem;
  font-weight: 300;
  line-height: 1;
}

.instagram-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffd45a 0%, #ff3f5d 45%, #7a3cff 72%, #2a9bff 100%);
}

.instagram-mark::before {
  content: "";
  width: 29px;
  height: 29px;
  border: 3px solid #071014;
  border-radius: 8px;
}

.instagram-mark span {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 3px solid #071014;
  border-radius: 50%;
}

.drone-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 12px;
  align-items: center;
  grid-column: span 2;
  min-height: 150px;
  padding: 20px 24px;
}

.drone-icon {
  width: 112px;
  height: 72px;
  color: var(--gold);
}

.contact-card {
  position: sticky;
  top: 24px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 22px 18px 24px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
}

.contact-icon .icon {
  width: 38px;
  height: 38px;
}

.contact-card h2 {
  margin: 0;
  color: #05090b;
  font-size: 2rem;
  line-height: 1.03;
  text-align: center;
  font-weight: 950;
}

.contact-card > p {
  margin: 14px auto 19px;
  max-width: 270px;
  color: #535d66;
  font-size: 1rem;
  line-height: 1.32;
  text-align: center;
}

.form-field {
  position: relative;
  display: grid;
  align-items: center;
  margin-top: 8px;
}

.form-field .icon {
  position: absolute;
  left: 14px;
  width: 24px;
  height: 24px;
  color: #152026;
  pointer-events: none;
}

.form-field input,
.form-field select {
  width: 100%;
  height: 56px;
  border: 1px solid #d9dee1;
  border-radius: 8px;
  background: #fff;
  color: #13191d;
  font-size: 0.95rem;
  outline: none;
  padding: 0 14px 0 54px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field select {
  appearance: none;
  padding-right: 38px;
  background-image: linear-gradient(45deg, transparent 50%, #111 50%), linear-gradient(135deg, #111 50%, transparent 50%);
  background-position: calc(100% - 20px) 24px, calc(100% - 14px) 24px;
  background-size: 7px 7px;
  background-repeat: no-repeat;
}

.phone-prefix {
  position: absolute;
  left: 45px;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 18px;
  border-radius: 4px;
  background: #df2736;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 850;
  pointer-events: none;
}

.form-field-phone input {
  padding-left: 84px;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 196, 51, 0.26);
}

.trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 62px;
  margin-top: 13px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--gold), #ffcf48);
  color: #060a0b;
  font-size: 1.08rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.submit-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(255, 196, 51, 0.34);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.74;
  transform: none;
  box-shadow: none;
}

.submit-button .icon {
  width: 23px;
  height: 23px;
}

.privacy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 19px;
  color: #727a81;
  font-size: 0.78rem;
}

.privacy .icon {
  width: 18px;
  height: 18px;
}

.form-status {
  min-height: 42px;
  margin: 12px 0 0;
  color: #44505a;
  font-size: 0.86rem;
  line-height: 1.28;
  text-align: center;
}

.form-status strong,
.form-status a {
  color: #11181d;
  font-weight: 850;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
}

.footer-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding: 0 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  color: #e5e9eb;
}

.footer-item:first-child {
  padding-left: 0;
}

.footer-item .icon {
  width: 44px;
  height: 44px;
}

.footer-item span {
  max-width: 140px;
  color: #e5e9eb;
  font-size: 0.82rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-script {
  width: 215px;
  color: #fff;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 1.75rem;
  line-height: 1.03;
  transform: rotate(-8deg);
}

.footer-script span {
  display: block;
}

.footer-script::after {
  content: "";
  display: block;
  width: 158px;
  height: 3px;
  margin-top: 8px;
  background: var(--gold);
  transform: rotate(-8deg);
  transform-origin: left center;
}

@media (max-width: 1120px) {
  .shell {
    padding: 32px 24px 26px;
  }

  h1 {
    font-size: clamp(3.55rem, 5.4vw, 4.15rem);
  }

  .hero {
    width: min(700px, calc(100% - 380px));
  }

  .right-visual {
    width: min(33vw, 350px);
    height: 540px;
  }

  .hero-copy {
    font-size: 1.25rem;
  }

  .content-area {
    grid-template-columns: minmax(0, 1fr) 324px;
  }

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

@media (max-width: 880px) {
  .topbar,
  .quota-wrap,
  .content-area,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .topbar {
    margin-bottom: 36px;
  }

  .top-keywords {
    width: max-content;
  }

  .top-keywords::before {
    height: 86px;
  }

  .hero {
    width: 100%;
    max-width: 760px;
  }

  .right-visual {
    display: none;
  }

  .contact-card {
    position: static;
    width: min(100%, 460px);
    margin: 8px auto 0;
  }

  .footer-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 0;
  }

  .footer-item:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .shell {
    padding: 24px 16px;
  }

  .brand-name {
    font-size: 2.38rem;
  }

  .brand-sub {
    font-size: 0.75rem;
  }

  .brand-sub span {
    margin: 0 8px;
  }

  .eyebrow {
    font-size: 0.92rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8.5vw, 2.72rem);
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .stats,
  .stat {
    display: grid;
    gap: 14px;
  }

  .stat {
    grid-template-columns: 56px auto;
    min-width: 0;
  }

  .stat + .stat {
    padding-left: 0;
    border-left: 0;
  }

  .stat .icon {
    width: 52px;
    height: 52px;
  }

  .quota-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .quota-percent {
    font-size: 2rem;
  }

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

  .service-card {
    min-height: 0;
  }

  .drone-card {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .footer-item,
  .footer-item:nth-child(2) {
    border-right: 0;
    padding: 0;
  }
}
