@import url("https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700;800&family=Inter:wght@400;500;600&display=swap");

:root {
  --bg: #0b0b0c;
  --surface: #151412;
  --surface-2: #1b1a17;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --accent: #ecb933;
  --accent-2: #f5d061;
  --text: #f7f3ea;
  --muted: #a8a29a;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { overflow-x: hidden; }

body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(900px 460px at 78% -8%, rgba(236, 185, 51, 0.10), transparent 62%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--accent); color: #0b0b0c; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #24231f; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #33312b; }

h1, h2, h3, h4, h5 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
  line-height: 1.12;
}

h1 { font-size: clamp(38px, 5vw, 62px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; }
h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: 18px; font-weight: 700; }
p { margin: 0; color: var(--muted); }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.accent { color: var(--accent); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

/* Loader */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .45s ease, visibility .45s ease;
}
.loader .aloader {
  width: 34px; height: 34px;
  border: 2px solid rgba(255,255,255,0.08);
  border-top-color: var(--accent);
  border-radius: 50%;
  background: transparent;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Button */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0b0b0c;
  background: var(--accent);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.button:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px rgba(236, 185, 51, 0.45);
  color: #0b0b0c;
}

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
}
.navbar-fixed {
  background: rgba(11, 11, 12, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.navbar-brand img { height: 32px; width: auto; }
.navbar-nav { display: flex; gap: 34px; }
.navbar-nav .nav-link { font-size: 14.5px; font-weight: 500; color: var(--muted); transition: color .2s ease; }
.navbar-nav .nav-link:hover { color: var(--text); }
.button-navbar { display: flex; gap: 20px; align-items: center; }
.button-navbar a { font-size: 14px; color: var(--muted); transition: color .2s ease; display: inline-flex; align-items: center; gap: 6px; }
.button-navbar a .ic { color: var(--accent); }
.button-navbar a:hover { color: var(--text); }
.navbar-toggler { border: none; background: none; padding: 0; }
.navbar-toggler .ic { width: 24px; height: 24px; color: var(--text); }

/* Hero */
.hero { padding: 160px 0 88px; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy .lead { font-size: 19px; color: var(--muted); max-width: 460px; margin-bottom: 12px; }
.hero-copy .desc { font-size: 15px; color: var(--muted); max-width: 440px; margin-bottom: 30px; }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-note { font-size: 13px; color: var(--muted); }
.hero-visual {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8);
}
.hero-visual img { width: 100%; }

/* Sections */
.section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 17px; }

/* Features */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  display: flex; gap: 18px;
  transition: border-color .2s ease, background .2s ease;
}
.feature:hover { border-color: var(--border-strong); background: var(--surface-2); }
.feature .num {
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px;
  color: var(--accent); flex-shrink: 0; padding-top: 2px;
}
.feature p { font-size: 15.5px; line-height: 1.65; }

/* Advantages */
.adv { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.adv-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color .2s ease, background .2s ease;
}
.adv-item:hover { border-color: var(--border-strong); background: var(--surface-2); }
.adv-icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(236, 185, 51, 0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.adv-icon .ic { width: 21px; height: 21px; }
.adv-item h3 { margin-bottom: 10px; font-size: 17px; }
.adv-item p { font-size: 14.5px; }
.adv-note { margin-top: 44px; max-width: 620px; }
.adv-note p { font-size: 16px; }
.adv-note .accent { font-weight: 600; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 880px; }
.price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px;
  display: flex; flex-direction: column; gap: 20px; text-align: left;
  transition: border-color .2s ease, transform .2s ease;
}
.price-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.price-card.featured { border-color: rgba(236, 185, 51, 0.4); background: var(--surface-2); }
.price-card h3 { font-size: 16px; line-height: 1.4; }
.price-card .price b { font-size: 30px; font-weight: 700; color: var(--accent); letter-spacing: -0.02em; }
.price-card .price .price-small { font-size: 18px; font-weight: 600; line-height: 1.3; }
.price-card .button { align-self: flex-start; background: transparent; border: 1px solid var(--border-strong); color: var(--text); box-shadow: none; padding: 11px 20px; }
.price-card .button:hover { background: transparent; border-color: var(--accent); color: var(--accent); box-shadow: none; transform: none; }

/* Reviews */
.reviews-swiper { padding: 4px 4px 52px; }
.review {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; gap: 14px; height: 100%;
}
.review h3 { color: var(--accent); font-size: 17px; }
.review p { font-size: 15px; }
.img-review { display: block; }
.review img { width: 150px; max-width: 60%; border-radius: 8px; border: 1px solid var(--border); cursor: zoom-in; transition: border-color .2s ease; }
.review img:hover { border-color: var(--accent); }
.review-author { font-size: 13px; color: var(--muted); }
.reviews-swiper .swiper-button-prev, .reviews-swiper .swiper-button-next { color: var(--accent); }
.reviews-swiper .swiper-button-prev::after, .reviews-swiper .swiper-button-next::after { font-size: 20px; }

/* Goal */
.goal-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 56px;
  max-width: 800px; margin: 0 auto; text-align: center;
}
.goal-box h2 { margin-bottom: 16px; }
.goal-box p { font-size: 17px; }

/* Contacts */
.director { font-size: 15px; color: var(--text); margin-bottom: 22px; }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
  transition: border-color .2s ease;
}
.contact-item:hover { border-color: var(--border-strong); }
.c-icon {
  width: 46px; height: 46px; border-radius: 11px; flex-shrink: 0;
  background: rgba(236, 185, 51, 0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.c-icon .ic { width: 22px; height: 22px; }
.c-text h3 { font-size: 15px; margin-bottom: 3px; }
.c-text span { font-size: 14px; color: var(--muted); word-break: break-all; }

.company-card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; height: 100%;
}
.company-card h3 { font-size: 20px; margin-bottom: 24px; }
.company-row { margin-bottom: 18px; }
.company-row span { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 4px; }
.company-row b { font-size: 14.5px; font-weight: 500; color: var(--text); }

/* Footer */
footer { padding: 32px 0; border-top: 1px solid var(--border); }
.footer-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-row span, .footer-row a { color: var(--muted); font-size: 13.5px; }
.footer-row a:hover { color: var(--accent); }

/* Modal */
.modal {
  display: none; position: fixed; inset: 0; z-index: 2000;
  overflow: auto; background: rgba(0,0,0,0.7); backdrop-filter: blur(5px);
}
.modal-content {
  background: var(--surface-2); margin: 8% auto; padding: 28px;
  border: 1px solid var(--border); width: 92%; max-width: 440px;
  border-radius: var(--radius); color: var(--text);
}
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.modal-title { color: var(--text); }
.close { color: #888; font-size: 24px; font-weight: 300; line-height: 1; cursor: pointer; }
.close:hover { color: #fff; }

form { display: flex; flex-direction: column; }
label { margin-top: 14px; color: var(--muted); font-size: 13.5px; font-weight: 500; }
input, textarea {
  padding: 12px 14px; margin-top: 6px; font-size: 15px;
  border: 1px solid var(--border); background: var(--bg); color: var(--text);
  border-radius: 10px; font-family: 'Inter', sans-serif;
  transition: border-color .2s ease;
}
input:focus, textarea:focus { outline: none; border-color: var(--accent); }
textarea { resize: vertical; min-height: 76px; }
button[type="submit"] { margin-top: 22px; }
.form-text { color: var(--muted); font-size: 12px; margin-top: 5px; }
.success-message { display: none; text-align: center; margin-top: 20px; }
.success-message .thank-you-text { font-size: 20px; color: var(--accent); }
.blur { filter: blur(6px); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 991px) {
  .navbar .container { flex-wrap: wrap; }
  .navbar-collapse {
    background: rgba(11,11,12,.97); border: 1px solid var(--border);
    border-radius: 12px; padding: 18px; margin-top: 10px;
  }
  .navbar-nav { flex-direction: column; gap: 12px; }
  .button-navbar { display: none; }
  .hero { padding: 132px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .adv { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .features { grid-template-columns: 1fr; }
  .adv { grid-template-columns: 1fr; }
  .goal-box { padding: 36px 22px; }
}

section, .hero, footer { scroll-margin-top: 80px; }
