/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Work Sans', sans-serif;
  background: #0D0D0D;
  color: #E8E8E8;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── VARIABLES ── */
:root {
  --black:   #0D0D0D;
  --black2:  #1A1A1A;
  --black3:  #222222;
  --gold:    #C9A84C;
  --gold-l:  #F0D080;
  --gold-d:  #A07828;
  --white:   #FFFFFF;
  --gray:    #888888;
  --lgray:   #2A2A2A;
  --nav-h:   72px;
}

/* ── CONTAINER ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 700;
  line-height: 1.2; color: var(--white); margin-bottom: 18px;
}
.section-sub {
  font-size: 16px; color: var(--gray); max-width: 600px; line-height: 1.7;
  margin-bottom: 48px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 4px;
  font-family: 'Work Sans', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.5px; cursor: pointer; transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn--gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-l); border-color: var(--gold-l); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--outline:hover { border-color: var(--white); }
.btn--outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--outline-gold:hover { background: var(--gold); color: var(--black); }
.btn--lg { padding: 16px 36px; font-size: 16px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(13,13,13,0.95);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: box-shadow 0.3s ease;
}
.nav--scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.nav__inner {
  max-width: 1140px; margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.nav__brand-text { display: flex; flex-direction: column; }
.nav__name { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; color: var(--white); line-height: 1.2; }
.nav__tagline { font-size: 9px; color: var(--gold); letter-spacing: 0.5px; line-height: 1.3; }
.nav__powered { font-size: 8px; color: var(--gray); letter-spacing: 0.3px; margin-top: 1px; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { font-size: 13px; font-weight: 500; color: #BBBBBB; letter-spacing: 0.5px; transition: color 0.2s; }
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  background: var(--gold); color: var(--black) !important;
  padding: 8px 20px; border-radius: 3px; font-weight: 600 !important;
}
.nav__cta:hover { background: var(--gold-l) !important; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; flex-direction: column; position: fixed;
  top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: var(--black2); border-bottom: 1px solid var(--lgray);
  padding: 24px 32px; gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; font-weight: 500; color: #BBBBBB; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu__cta { color: var(--gold) !important; font-weight: 600 !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
              linear-gradient(180deg, #0D0D0D 0%, #111111 100%);
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(201,168,76,0.04) 80px),
                    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(201,168,76,0.04) 80px);
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: 1140px; margin: 0 auto; padding: 80px 32px;
}
.hero__badge {
  display: inline-block; background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3); color: var(--gold);
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 2px;
  margin-bottom: 28px;
}
.hero__headline {
  font-size: clamp(40px, 6vw, 72px); font-weight: 700;
  line-height: 1.1; color: var(--white); margin-bottom: 24px;
  max-width: 700px;
}
.hero__gold { color: var(--gold); }
.hero__sub {
  font-size: 17px; color: #AAAAAA; max-width: 560px;
  line-height: 1.75; margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll span {
  display: block; width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto; animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ── WHAT WE DO ── */
.what { padding: 100px 0; background: var(--black); }
.what__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; margin-top: 8px;
}
.what__card {
  background: var(--black2); border: 1px solid var(--lgray);
  padding: 32px 28px; border-radius: 4px;
  transition: border-color 0.3s, transform 0.3s;
}
.what__card:hover { border-color: var(--gold); transform: translateY(-4px); }
.what__icon {
  font-size: 32px; font-weight: 700; color: var(--gold);
  opacity: 0.4; margin-bottom: 16px; line-height: 1;
}
.what__card h3 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.what__card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ── PACKAGES ── */
.packages { padding: 100px 0; background: var(--black2); }
.packages__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}
.pkg-card {
  background: var(--black); border: 1px solid var(--lgray);
  border-radius: 4px; overflow: hidden; position: relative;
  display: flex; flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}
.pkg-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.4); }
.pkg-card--featured { border-color: var(--gold); transform: scale(1.03); }
.pkg-card--featured:hover { transform: scale(1.03) translateY(-6px); }
.pkg-card__badge {
  background: var(--gold); color: var(--black);
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-align: center; padding: 6px;
}
.pkg-card__header { padding: 28px 24px 20px; background: var(--black2); }
.pkg-card--featured .pkg-card__header { background: #1C1400; }
.pkg-card__name { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--gold); margin-bottom: 4px; }
.pkg-card__tagline { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.pkg-card__price { font-size: 36px; font-weight: 700; color: var(--white); line-height: 1; }
.pkg-card__price span { font-size: 16px; font-weight: 500; color: var(--gray); }
.pkg-card__note { font-size: 11px; color: var(--gray); margin-top: 4px; }
.pkg-card__list { list-style: none; padding: 20px 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.pkg-card__list li { font-size: 14px; color: #CCCCCC; padding-left: 20px; position: relative; line-height: 1.4; }
.pkg-card__list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.pkg-card__support { font-size: 11px; color: var(--gray); padding: 0 24px 16px; font-style: italic; }
.pkg-card .btn { margin: 0 24px 24px; }

/* ── ADD-ON ── */
.packages__addon {
  margin-top: 32px; background: var(--black); border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px; padding: 18px 28px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.packages__addon-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  background: rgba(201,168,76,0.1); padding: 4px 10px; border-radius: 2px;
}
.packages__addon-text { font-size: 14px; color: #CCCCCC; }
.packages__addon-text strong { color: var(--white); }

/* ── PROCESS ── */
.process { padding: 100px 0; background: var(--black); }
.process__steps { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.process__step {
  display: flex; align-items: flex-start; gap: 28px;
  padding: 28px 0; border-bottom: 1px solid var(--lgray);
}
.process__step:last-child { border-bottom: none; }
.process__num {
  font-size: 28px; font-weight: 700; color: var(--gold);
  opacity: 0.35; min-width: 48px; line-height: 1.2; flex-shrink: 0;
}
.process__step h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.process__step p { font-size: 14px; color: var(--gray); line-height: 1.6; max-width: 560px; }

/* ── ABOUT ── */
.about { padding: 100px 0; background: var(--black2); }
.about__inner { display: grid; grid-template-columns: 1fr 280px; gap: 80px; align-items: center; }
.about__text p { font-size: 15px; color: #BBBBBB; line-height: 1.75; margin-bottom: 16px; }
.about__disclaimer {
  margin-top: 28px; font-size: 12px; color: var(--gray);
  border-left: 2px solid rgba(201,168,76,0.3); padding-left: 16px; line-height: 1.6;
}
.about__disclaimer strong { color: #AAAAAA; }
.about__logo-block { text-align: center; }
.about__logo-img { width: 160px; margin: 0 auto 16px; }
.about__powered { font-size: 11px; color: var(--gold); letter-spacing: 0.5px; }

/* ── CONTACT ── */
.contact { padding: 100px 0; background: #0A0A0A; }
.contact__inner { text-align: center; }
.contact__inner .section-label { display: block; text-align: center; }
.contact__inner .section-title { margin: 0 auto 16px; }
.contact__inner .section-sub { margin: 0 auto 36px; text-align: center; }
.contact__note { margin-top: 20px; font-size: 13px; color: var(--gray); }

/* ── FOOTER ── */
.footer { background: var(--black2); border-top: 1px solid var(--lgray); padding: 48px 0 0; }
.footer__inner {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; padding-bottom: 40px;
}
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__logo { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.footer__name { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; color: var(--white); }
.footer__tagline { font-size: 11px; color: var(--gold); margin-top: 3px; letter-spacing: 0.3px; }
.footer__powered { font-size: 10px; color: var(--gray); margin-top: 2px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 13px; color: var(--gray); transition: color 0.2s; }
.footer__links a:hover { color: var(--gold); }
.footer__contact { display: flex; flex-direction: column; gap: 8px; }
.footer__contact a { font-size: 14px; color: var(--gold); font-weight: 600; }
.footer__contact span { font-size: 13px; color: var(--gray); }
.footer__bottom {
  border-top: 1px solid var(--lgray); padding: 16px 32px;
  text-align: center; font-size: 12px; color: var(--gray);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .packages__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pkg-card--featured { transform: none; }
  .pkg-card--featured:hover { transform: translateY(-6px); }
  .about__inner { grid-template-columns: 1fr; }
  .about__logo-block { order: -1; }
  .about__logo-img { width: 100px; }
  .footer__inner { flex-direction: column; gap: 32px; }
}
@media (max-width: 700px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero__headline { font-size: 36px; }
  .what__grid { grid-template-columns: 1fr; }
  .process__step { gap: 16px; }
  .container { padding: 0 20px; }
}

/* ── COMPARISON TABLE ── */
.compare-wrap {
  margin-top: 56px;
}
.compare-scroll {
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}
.compare-table thead tr {
  background: #1a1a1a;
}
.compare-table th {
  padding: 16px 12px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  border: 1px solid #333;
}
.compare-table th.compare-feature {
  text-align: left;
  color: #C9A84C;
}
.compare-table th.compare-featured {
  background: #C9A84C;
  color: #111;
}
.compare-price {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #C9A84C;
  margin-top: 4px;
}
.compare-table th.compare-featured .compare-price {
  color: #111;
}
.compare-table tbody tr {
  border-bottom: 1px solid #222;
}
.compare-table tbody tr:nth-child(odd) {
  background: #161616;
}
.compare-table tbody tr:nth-child(even) {
  background: #1c1c1c;
}
.compare-table td {
  padding: 12px 12px;
  text-align: center;
  color: #ccc;
  border: 1px solid #2a2a2a;
}
.compare-table td:first-child {
  text-align: left;
  color: #fff;
  font-weight: 500;
}
.compare-table td.compare-featured {
  background: rgba(201,168,76,0.08);
  border-left: 1px solid #C9A84C;
  border-right: 1px solid #C9A84C;
}
.compare-table tbody tr:last-child td.compare-featured {
  border-bottom: 1px solid #C9A84C;
}

/* ── LANGUAGE TOGGLE ── */
.lang-toggle {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.03em;
  margin-left: 12px;
  transition: background 0.2s, color 0.2s;
}
.lang-toggle:hover {
  background: var(--gold);
  color: #111;
}

/* RTL support */
[dir="rtl"] .nav__inner {
  flex-direction: row-reverse;
}
[dir="rtl"] .nav__links {
  flex-direction: row-reverse;
}
[dir="rtl"] .lang-toggle {
  margin-left: 0;
  margin-right: 12px;
}
[dir="rtl"] .hero__inner {
  text-align: right;
}
[dir="rtl"] .hero__actions {
  justify-content: flex-start;
}
[dir="rtl"] .section-label,
[dir="rtl"] .section-title,
[dir="rtl"] .section-sub {
  text-align: right;
}
[dir="rtl"] .what__card,
[dir="rtl"] .pkg-card,
[dir="rtl"] .process__step,
[dir="rtl"] .about__text p,
[dir="rtl"] .contact__inner {
  text-align: right;
}
[dir="rtl"] .process__step {
  flex-direction: row-reverse;
}
[dir="rtl"] .footer__inner {
  flex-direction: row-reverse;
}
[dir="rtl"] .compare-table {
  direction: rtl;
}

/* ── MOBILE LANGUAGE TOGGLE ── */
.mobile-lang-toggle {
  display: block;
  width: calc(100% - 48px);
  margin: 8px 24px 16px;
  text-align: center;
  font-size: 15px;
  padding: 12px;
}

/* ── ABOUT BRAND HEADER ── */
.about__brand-header {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #1A1A1A;
  border-radius: 8px;
  padding: 24px 28px;
}
.about__brand-logo {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}
.about__brand-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about__brand-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.about__brand-tagline {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.about__powered {
  font-size: 10px;
  color: var(--gold);
  opacity: 0.7;
  margin-top: 2px;
}
