:root {
  --ink: #0b1013;
  --ink-soft: #141c21;
  --panel: #f2f5f6;
  --panel-strong: #e3eaed;
  --text: #f8fbfc;
  --muted: #94a1a7;
  --dark-muted: #526066;
  --line: rgba(255, 255, 255, 0.15);
  --dark-line: rgba(11, 16, 19, 0.11);
  --accent: #36d1c4;
  --accent-warm: #d8b46a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px clamp(18px, 5vw, 68px);
  color: var(--text);
  background: rgba(8, 12, 15, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 118px;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(248, 251, 252, 0.78);
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a:hover,
.footer-socials a:hover {
  color: var(--accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 800;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 132px clamp(18px, 6vw, 88px) 76px;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 12, 15, 0.78) 0%, rgba(8, 12, 15, 0.48) 54%, rgba(8, 12, 15, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 12, 15, 0.62) 0%, rgba(8, 12, 15, 0) 56%);
}

.hero-panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  padding: clamp(24px, 3.4vw, 42px);
  color: var(--text);
  background: rgba(8, 12, 15, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.hero-logo {
  width: min(315px, 100%);
  margin: 0 0 18px;
}

.hero h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.35rem, 5vw, 4.55rem);
  line-height: 1;
}

.hero-panel p:not(.eyebrow) {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(248, 251, 252, 0.76);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: #061112;
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 6vw, 88px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading {
  max-width: 1120px;
  margin-bottom: 38px;
}

.section-heading h2,
.about-copy h2 {
  margin: 0;
  max-width: 1120px;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.packages {
  background: var(--panel);
}

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

.package-card {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--dark-line);
}

.package-card.featured {
  color: var(--text);
  background: var(--ink-soft);
}

.package-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  color: var(--dark-muted);
  background: var(--panel-strong);
  font-size: 0.78rem;
  font-weight: 900;
}

.package-card.featured span {
  color: #061112;
  background: var(--accent);
}

.package-card h3 {
  margin: 0 0 8px;
  font-size: 1.32rem;
}

.duration,
.note {
  color: var(--dark-muted);
}

.package-card.featured .duration,
.package-card.featured .note {
  color: rgba(248, 251, 252, 0.62);
}

.duration {
  margin: 0 0 20px;
  font-weight: 800;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding-left: 18px;
  color: var(--dark-muted);
  line-height: 1.45;
}

.package-card.featured ul {
  color: rgba(248, 251, 252, 0.72);
}

.note {
  margin: auto 0 16px;
  font-size: 0.92rem;
  font-style: italic;
}

.price {
  margin: 0;
  color: var(--ink);
  font-size: 2.15rem;
  font-weight: 900;
}

.package-card.featured .price {
  color: var(--text);
}

.reviews {
  color: var(--text);
  background: var(--ink);
}

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

.review-card {
  min-height: 250px;
  padding: 28px;
  background: var(--ink-soft);
  border: 1px solid var(--line);
}

.stars {
  margin-bottom: 30px;
  color: var(--accent-warm);
  font-size: 1.1rem;
}

.review-card p {
  margin: 0;
  color: rgba(248, 251, 252, 0.78);
  line-height: 1.65;
}

.review-card strong {
  display: block;
  margin-top: 22px;
  color: var(--muted);
}

.trustpilot-card {
  background: linear-gradient(135deg, #10201f 0%, #172429 100%);
}

.trustpilot-label {
  color: var(--accent) !important;
  font-weight: 900;
}

.trustpilot-card h3 {
  margin: 18px 0 12px;
  font-size: 1.7rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  background: var(--white);
}

.about-image {
  background: var(--panel);
  border: 1px solid var(--dark-line);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy p:not(.eyebrow) {
  max-width: 740px;
  margin: 22px 0 0;
  color: var(--dark-muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.contact {
  color: var(--text);
  background: linear-gradient(135deg, #10161b 0%, #182127 58%, #10161b 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 18px;
}

.contact-box,
.contact-form {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.contact-box span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-box h3 {
  max-width: 430px;
  margin: 16px 0;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.03;
}

.contact-box p {
  max-width: 560px;
  color: rgba(248, 251, 252, 0.68);
  line-height: 1.7;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-links a {
  padding: 13px 14px;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(248, 251, 252, 0.74);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(6, 10, 12, 0.44);
  color: var(--text);
  padding: 14px;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  gap: 22px;
  align-items: center;
  padding: 26px clamp(18px, 6vw, 88px);
  color: rgba(248, 251, 252, 0.62);
  background: #080a0c;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer p {
  margin: 0;
  line-height: 1.45;
}

.site-footer p:last-child {
  text-align: right;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer-socials a {
  color: rgba(248, 251, 252, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 7px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
  }

  .site-header.nav-open .site-nav {
    position: absolute;
    top: 68px;
    left: 18px;
    right: 18px;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 10px;
    background: rgba(8, 12, 15, 0.98);
    border: 1px solid var(--line);
  }

  .site-header.nav-open .site-nav a {
    width: 100%;
    padding: 16px;
  }

  .hero {
    min-height: 720px;
    align-items: end;
  }

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

  .site-footer p:last-child {
    text-align: left;
  }

  .footer-socials {
    justify-content: start;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 760px;
    padding-top: 110px;
  }

  .hero-bg {
    object-position: 60% center;
  }

  .hero-panel {
    padding: 22px;
  }

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

  .package-card,
  .review-card {
    min-height: auto;
  }
}
