:root {
  --bg: #050505;
  --bg-2: #0c0c0c;
  --bg-3: #141414;
  --bg-4: #1c1c1c;
  --surface: #111111;
  --surface-2: #1a1a1a;
  --border: #222222;
  --border-2: #2a2a2a;
  --text: #f0f0f0;
  --text-2: #b0b0b0;
  --text-3: #707070;
  --gold: #D4AF37;
  --gold-light: #E8CC6E;
  --gold-dark: #B8960E;
  --gold-glow: rgba(212, 175, 55, 0.15);
  --gold-glow-2: rgba(212, 175, 55, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav__logo-lux { color: var(--gold); }
.nav__logo-dot { color: var(--gold); }
.nav__logo-connect { color: var(--text); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-xs);
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav__link--cta {
  color: var(--bg);
  background: var(--gold);
  font-weight: 600;
}

.nav__link--cta:hover {
  background: var(--gold-light);
  color: var(--bg);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: orbFloat 15s ease-in-out infinite;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: orbFloat 12s ease-in-out infinite reverse;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat 18s ease-in-out infinite;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}

.hero__badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--border-2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__title-line { display: block; }

.hero__title--gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}

.hero__stat-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.hero__stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-2);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -30px); }
  66% { transform: translate(-20px, 20px); }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--bg);
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.25);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-3);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold-glow);
}

.btn--full { width: 100%; justify-content: center; }

/* ========== SECTIONS ========== */
.section {
  padding: 100px 0;
  position: relative;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  background: var(--gold-glow-2);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section__sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 500px;
  margin: 0 auto;
}

/* ========== SERVICES ========== */
.services {
  background: var(--bg-2);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--gold-glow-2);
  border: 1px solid rgba(212, 175, 55, 0.15);
  margin-bottom: 20px;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--gold-glow);
  border-color: var(--gold);
}

.service-card__icon svg { width: 26px; height: 26px; }

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-card__tags span {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-3);
}

/* ========== PRODUCTS ========== */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-showcase__badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(0, 184, 148, 0.12);
  color: #00B894;
  border: 1px solid rgba(0, 184, 148, 0.25);
  margin-bottom: 20px;
}

.product-showcase__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.product-showcase__desc {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-showcase__features {
  list-style: none;
  margin-bottom: 32px;
}

.product-showcase__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-2);
  margin-bottom: 12px;
  line-height: 1.5;
}

.product-showcase__features li svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.product-showcase__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Phone mockup */
.product-showcase__visual {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.product-showcase__phone {
  width: 300px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: var(--transition-slow);
}

.product-showcase__phone:hover {
  transform: rotateY(0) rotateX(0);
}

.product-showcase__screen {
  background: var(--bg);
  border-radius: 24px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.phone-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bg);
}

.phone-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.phone-msg {
  padding: 8px 16px;
}

.phone-msg__bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.8rem;
  line-height: 1.5;
}

.phone-msg--bot .phone-msg__bubble {
  background: var(--surface-2);
  color: var(--text-2);
  border-bottom-left-radius: 4px;
}

.phone-msg--user .phone-msg__bubble {
  background: var(--gold);
  color: var(--bg);
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.phone-input {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  color: var(--text-3);
  font-size: 0.8rem;
}

.phone-input__btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
}

/* ========== PORTFOLIO ========== */
.portfolio {
  background: var(--bg-2);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.portfolio-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.portfolio-card__preview {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.portfolio-card__preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, var(--accent, var(--gold)), transparent 70%);
  opacity: 0.08;
}

.portfolio-card__icon {
  width: 64px;
  height: 64px;
  color: var(--accent, var(--gold));
  position: relative;
  z-index: 1;
}

.portfolio-card__icon svg { width: 100%; height: 100%; }

.portfolio-card--soon .portfolio-card__preview {
  background: var(--surface-2);
}

.portfolio-card--soon {
  opacity: 0.6;
}

.portfolio-card__body { padding: 24px; }

.portfolio-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.portfolio-card__desc {
  font-size: 0.85rem;
  color: var(--text-2);
  margin-bottom: 16px;
  line-height: 1.5;
}

.portfolio-card__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.portfolio-card__tech span {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  background: var(--gold-glow-2);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--gold);
}

/* ========== PRICING ========== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(212, 175, 55, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.price-card > * { position: relative; z-index: 1; }

.price-card:hover::before { opacity: 1; }

.price-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
}

.price-card--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.04), var(--surface));
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.1);
}

.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--gold);
  color: var(--bg);
}

.price-card__header {
  margin-bottom: 24px;
}

.price-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.price-card__desc {
  font-size: 0.85rem;
  color: var(--text-3);
}

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.price-card__old {
  font-size: 1.1rem;
  color: var(--text-3);
  text-decoration: line-through;
  font-weight: 400;
}

.price-card__amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-card--featured .price-card__amount {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-card__currency {
  font-size: 1.2rem;
  color: var(--text-3);
  font-weight: 500;
}

.price-card__list {
  list-style: none;
  margin-bottom: 28px;
}

.price-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--text-2);
}

.price-card__list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-glow-2);
  border: 1px solid rgba(212, 175, 55, 0.2);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.price-card__btn {
  width: 100%;
  justify-content: center;
}

/* ========== REVIEWS ========== */
.reviews {
  background: var(--bg-2);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--border-2);
  transform: translateY(-2px);
}

.review-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card__text {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-glow), var(--gold-glow-2));
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
}

.review-card__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.review-card__role {
  font-size: 0.75rem;
  color: var(--text-3);
}

/* ========== CONTACT ========== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  transition: var(--transition);
}

.contact__channel:hover {
  border-color: var(--gold);
  background: var(--gold-glow-2);
}

.contact__channel-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xs);
  background: var(--gold-glow-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact__channel-icon svg { width: 20px; height: 20px; }

.contact__channel-label {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-bottom: 2px;
}

.contact__channel-value {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.contact__response {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(0, 184, 148, 0.05);
  border: 1px solid rgba(0, 184, 148, 0.15);
}

.contact__response-icon { color: #00B894; flex-shrink: 0; }

.contact__response-title {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-bottom: 2px;
}

.contact__response-text {
  font-weight: 600;
  font-size: 0.9rem;
  color: #00B894;
}

.contact__form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder { color: var(--text-3); }

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow-2);
}

.form-input--textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 16px;
}

/* ========== FOOTER ========== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-top: 8px;
  text-align: center;
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  color: var(--text-3);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  width: 100%;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-3);
}

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 9999;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ========== ANIMATIONS ========== */
.anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger */
.anim:nth-child(2) { transition-delay: 0.1s; }
.anim:nth-child(3) { transition-delay: 0.2s; }
.anim:nth-child(4) { transition-delay: 0.3s; }

/* ========== CURSOR GLOW EFFECT ========== */
.service-card,
.price-card,
.review-card,
.portfolio-card,
.contact__channel {
  --mx: 50%;
  --my: 50%;
}

.service-card::after,
.review-card::after,
.portfolio-card::after,
.contact__channel::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(350px circle at var(--mx) var(--my), rgba(212, 175, 55, 0.07), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.service-card:hover::after,
.review-card:hover::after,
.portfolio-card:hover::after,
.contact__channel:hover::after {
  opacity: 1;
}

.service-card > *,
.review-card > *,
.portfolio-card > *,
.contact__channel > * {
  position: relative;
  z-index: 1;
}

/* ========== MAGNETIC BUTTON EFFECT ========== */
.btn--gold {
  position: relative;
  overflow: hidden;
}

.btn--gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.btn--gold:hover::after { opacity: 1; }

.btn--gold:active {
  transform: scale(0.96) translateY(0);
  transition-duration: 0.1s;
}

.btn--outline:hover,
.btn--ghost:hover {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
}

.btn--outline:active,
.btn--ghost:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

/* ========== SERVICE CARD HOVER GLOW ========== */
.service-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.service-card:hover .service-card__icon {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.service-card:hover .service-card__tags span {
  border-color: rgba(212, 175, 55, 0.2);
  color: var(--text-2);
}

/* ========== REVIEW CARD HOVER ========== */
.review-card {
  overflow: hidden;
}

.review-card:hover {
  border-color: rgba(212, 175, 55, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.review-card:hover .review-card__stars {
  letter-spacing: 4px;
  transition: letter-spacing 0.3s;
}

/* ========== PORTFOLIO CARD HOVER ========== */
.portfolio-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.portfolio-card:hover .portfolio-card__icon {
  transform: scale(1.1) rotate(3deg);
}

/* ========== CONTACT CHANNEL HOVER ========== */
.contact__channel {
  overflow: hidden;
}

.contact__channel:hover {
  transform: translateX(4px);
}

.contact__channel:hover .contact__channel-icon {
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.2);
}

/* ========== NAV LINK HOVER ========== */
.nav__link {
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s, left 0.3s;
  border-radius: 1px;
}

.nav__link:hover::after {
  width: 60%;
  left: 20%;
}

.nav__link--cta::after { display: none; }

/* ========== SECTION TAG HOVER ========== */
.section__tag {
  transition: var(--transition);
}

.section__tag:hover {
  background: var(--gold-glow);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

/* ========== STATS COUNTER HOVER ========== */
.hero__stat {
  transition: var(--transition);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.hero__stat:hover {
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-2px);
}

/* ========== FOOTER LINK HOVER ========== */
.footer__links a {
  position: relative;
}

.footer__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.footer__links a:hover::after {
  width: 100%;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid .price-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio__grid .portfolio-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid .review-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-2);
    border-left: 1px solid var(--border);
    flex-direction: column;
    padding: 80px 24px 32px;
    gap: 4px;
    transition: var(--transition);
    z-index: 999;
  }

  .nav__links.open { right: 0; }

  .nav__link {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav__link--cta {
    margin-top: 16px;
    text-align: center;
  }

  .nav__burger { display: flex; z-index: 1001; }

  .hero__content { padding: 100px 16px 60px; }

  .hero__stats { gap: 20px; }
  .hero__stat-divider { display: none; }

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

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-showcase__phone {
    transform: none;
    width: 280px;
  }

  .portfolio__grid { grid-template-columns: 1fr; }
  .portfolio__grid .portfolio-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing__grid .price-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__grid .review-card:last-child {
    grid-column: auto;
    max-width: none;
  }

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

  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { flex-direction: column; gap: 16px; }
  .container { padding: 0 16px; }
}
