/* =====================
   RESET & BASE
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --gold: #C9A84C;
  --gold-light: #d4b96a;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #cccccc;
  --font-serif: 'Bodoni Moda', Georgia, serif;
  --font-sans: 'DM Sans', sans-serif;
  --transition: 0.3s ease;
  --radius: 4px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

img { display: block; width: 100%; object-fit: cover; filter: grayscale(100%); transition: filter 0.4s ease; will-change: filter; backface-visibility: hidden; }
img:hover { filter: grayscale(0%); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* =====================
   TYPOGRAPHY
===================== */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
}
.section-title.center { text-align: center; }

.section-sub {
  color: var(--gray);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 12px;
}
.section-sub.center { text-align: center; }

.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 32px;
}
.gold-line.center { margin: 16px auto 40px; }

/* =====================
   BUTTONS
===================== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-outline {
  border: 1.5px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 1.5px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

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

.full-width { width: 100%; text-align: center; }

/* =====================
   NAVBAR
===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), backdrop-filter var(--transition);
  will-change: background;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--gray-light);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-icon {
  color: var(--gray);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.social-icon:hover { color: var(--gold); }


.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* =====================
   HERO
===================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 40%, #2a1f00 0%, #0a0a0a 60%);
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 40px;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-divider {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto;
}

.hero-desc {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 2;
}

.hero-desc-short { display: none; }

.hero-theme-switcher {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.theme-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  backdrop-filter: blur(4px);
}
.theme-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.theme-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  min-width: 60px;
  text-align: center;
}

/* =====================
   ABOUT ME
===================== */
.about {
  padding: 120px 0;
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 600px;
  overflow: hidden;
  filter: grayscale(20%);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s ease; }
.about-image:hover img { transform: scale(1.03); }

.about-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  margin-bottom: 20px;
}

/* =====================
   SKILLS
===================== */
.skills {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skill-item {}

.skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.skill-name {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.skill-pct {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--gold);
  opacity: 0.8;
}

.skill-bar {
  height: 2px;
  background: rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.5));
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================
   CERTIFICATES
===================== */
.certificates {
  padding: 100px 0;
  background: var(--dark);
}

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

.cert-card {
  position: relative;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(201,168,76,0.15);
  transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.4s ease;
  cursor: default;
}
.cert-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(201,168,76,0.08);
}

/* Shine sweep on hover */
.cert-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.04) 50%, transparent 60%);
  transition: left 0.6s ease;
  z-index: 2;
  pointer-events: none;
}
.cert-card:hover .cert-shine { left: 160%; }

.cert-top-bar {
  height: 4px;
  width: 100%;
}

.cert-body {
  padding: 36px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cert-brand-logo {
  margin-bottom: 20px;
}
.cert-brand-logo svg { display: block; }

.cert-seal {
  position: absolute;
  top: 28px;
  right: 24px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.cert-card:hover .cert-seal { opacity: 1; }

.cert-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.cert-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cert-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 16px;
  opacity: 0.5;
}

.cert-issuer-name {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 6px 14px;
  border-radius: 2px;
}

.cert-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .cert-grid { grid-template-columns: 1fr; }
}

/* =====================
   CERT FEATURED (Google Partner)
===================== */
.cert-featured {
  position: relative;
  overflow: hidden;
  background: #0e0e0e;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  transition: border-color 0.3s ease, box-shadow 0.4s ease;
}
.cert-featured:hover {
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 40px rgba(201,168,76,0.06);
}

.cert-featured-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 120% at 25% 50%, rgba(66,133,244,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 100% at 75% 50%, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cert-featured-left {
  position: relative;
  z-index: 1;
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

.cert-featured-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0.7;
}

.google-partner-badge {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gp-bar {
  width: 8px;
  height: 80px;
  background: #4285F4;
  border-radius: 2px;
  flex-shrink: 0;
}

.gp-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.gp-google {
  font-size: 40px;
  font-weight: 400;
  font-family: 'Google Sans', var(--font-sans), sans-serif;
  letter-spacing: 0;
}

.gp-partner {
  font-size: 40px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-sans);
  letter-spacing: 0.5px;
}

.cert-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.cert-featured-link:hover { color: var(--gold); }

.cert-featured-divider {
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.4), transparent);
  flex-shrink: 0;
}

.cert-featured-right {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 56px;
}

.rotating-text-wrap {
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  min-width: 320px;
}

.partner-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

.rotating-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateY(16px);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  white-space: nowrap;
}
.rotating-text.active {
  opacity: 1;
  transform: translateY(-50%) translateY(0);
  pointer-events: auto;
}
.rotating-text.exit {
  opacity: 0;
  transform: translateY(-50%) translateY(-16px);
}

@media (max-width: 767px) {
  .cert-featured { flex-direction: column; }
  .cert-featured-left { padding: 36px 24px 24px; }
  .cert-featured-right { padding: 24px 24px 36px; justify-content: flex-start; }
  .cert-featured-divider {
    width: 80px; height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
  }
  .rotating-text-wrap { min-width: 260px; }
}

/* =====================
   LATEST WORK
===================== */
.services {
  padding: 100px 0;
  background: var(--black);
}

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

.work-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--dark2);
}
.work-img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.work-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  filter: none !important;
}
.work-item:hover .work-img-wrap img { transform: scale(1.08); filter: none !important; }

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  padding: 24px;
  text-align: center;
}
.work-overlay span {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
}
.work-item:hover .work-overlay { opacity: 1; }

/* Work placeholder when no images */
.work-img-wrap:not(:has(img[src*="work"])) {
  background: var(--dark2);
}

/* =====================
   MY VIDEO / REELS
===================== */
.reels-section {
  background: var(--black);
  padding: 100px 0 60px;
  overflow: hidden;
}

.reels-track-wrap {
  margin-top: 48px;
  overflow-x: auto;
  overflow-y: visible;
  cursor: grab;
  padding-bottom: 32px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.reels-track-wrap::-webkit-scrollbar { display: none; }
.reels-track-wrap.dragging { cursor: grabbing; }

.reels-track {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  padding: 20px 60px 20px;
  width: max-content;
  align-items: center;
}

/* Card — vertical 9:16 */
.reel-card {
  flex-shrink: 0;
  width: 220px;
  aspect-ratio: 9/16;
  position: relative;
  overflow: hidden;
  background: #111;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1),
              border-color 0.3s ease,
              box-shadow 0.4s ease;
}
.reel-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 32px 60px rgba(0,0,0,0.7), 0 0 30px rgba(201,168,76,0.08);
  z-index: 2;
}

/* Thumbnail */
.reel-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(30%) brightness(0.85) !important;
  transition: filter 0.4s ease, transform 0.6s ease, opacity 0.4s ease;
}
.reel-card:hover .reel-thumb {
  filter: grayscale(0%) brightness(1) !important;
  transform: scale(1.08);
}
.reel-card.playing .reel-thumb { opacity: 0; pointer-events: none; }

/* Watch label */
.reel-watch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}
.reel-card:hover .reel-watch {
  opacity: 1;
  transform: translateY(0);
}

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-modal.open {
  opacity: 1;
  pointer-events: all;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
}
.video-modal-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}
.video-modal.open .video-modal-box { transform: scale(1); }
.video-modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Hover UI */
.reel-hover-ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  opacity: 1;
  transition: opacity 0.35s ease;
}
.reel-card:hover .reel-hover-ui,
.reel-card.playing .reel-hover-ui { opacity: 0; }

.reel-play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
  padding-left: 4px;
}
.reel-card:hover .reel-play-btn {
  transform: scale(1.15);
  border-color: var(--gold);
}

/* Number */
.reel-num {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-family: var(--font-serif);
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
  transition: color 0.3s ease;
}
.reel-card:hover .reel-num { color: var(--gold); }

/* Muted badge */
.reel-card.playing::after {
  content: '🔇 muted';
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.5);
  padding: 4px 8px;
  border-radius: 2px;
}

/* Progress */
.reels-progress-wrap {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  margin: 0 auto;
  border-radius: 2px;
}
.reels-progress-bar {
  height: 100%;
  width: 25%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.2s ease;
}

/* Featured middle card */
.reel-card.reel-featured {
  width: 220px;
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

@media (max-width: 767px) {
  .reel-card { width: 160px; }
  .reel-card.reel-featured { width: 190px; }
  .reels-track { padding: 16px 20px; gap: 10px; }
}

/* =====================
   CTA SECTION
===================== */
.cta-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.cta-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
  opacity: 0.8;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}

.cta-sub {
  color: rgba(255,255,255,0.45);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 48px;
}

.cta-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cta-stat {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

.cta-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.cta-stat-num span {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.7;
}

.cta-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

.cta-vline {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================
   WHY ME
===================== */
.why-me {
  padding: 100px 0;
  background: var(--black);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  position: relative;
  padding: 40px 28px 36px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(201,168,76,0.05);
}
.why-card:hover::before { opacity: 1; }

.why-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(201,168,76,0.3);
}

.why-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--gold);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.why-icon-wrap svg {
  width: 28px;
  height: 28px;
}
.why-card:hover .why-icon-wrap {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.3);
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #fff;
  letter-spacing: 0.5px;
}

.why-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
}

/* =====================
   PARTNERS
===================== */
.partners {
  padding: 80px 0;
  background: var(--dark);
}

.partners-quote {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  max-width: 640px;
  margin: 24px auto 0;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

.partners-grid {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.partner-item {
  flex: 1;
  min-width: 140px;
  max-width: 220px;
  padding: 36px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}
.partner-item:last-child { border-right: none; }
.partner-item:hover { background: rgba(255,255,255,0.02); }

.partner-item img {
  max-width: 110px;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.partner-item:hover img {
  opacity: 1;
}
.partner-item img.partner-blend {
  filter: none;
  mix-blend-mode: lighten;
  max-width: 160px;
  max-height: 78px;
  opacity: 0.9;
}
.partner-item:hover img.partner-blend {
  opacity: 1;
}

/* =====================
   HOW TO START
===================== */
.how-to-start {
  padding: 100px 0;
  background: var(--black);
}

.start-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.start-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%);
  animation: glow-pulse 3s ease infinite;
  z-index: 0;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
}

.phone-frame {
  position: relative;
  z-index: 1;
  width: 260px;
  height: 460px;
  border-radius: 36px;
  border: 1.5px solid rgba(201,168,76,0.4);
  background: #0d0d0d;
  padding: 16px;
  box-shadow: 0 0 40px rgba(201,168,76,0.1), inset 0 0 20px rgba(0,0,0,0.5);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: #111;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #161616;
}

.chat-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8B6914);
  flex-shrink: 0;
}

.chat-info { display: flex; flex-direction: column; }
.chat-name { font-size: 12px; font-weight: 600; color: var(--white); }
.chat-status { font-size: 10px; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 4px; }
.status-green {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-core 2s ease infinite;
}

.chat-messages {
  flex: 1;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.msg {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 11px;
  line-height: 1.5;
  animation: msg-appear 0.4s ease both;
}

.msg-in {
  background: #1e1e1e;
  color: rgba(255,255,255,0.8);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg-out {
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.msg:nth-child(1) { animation-delay: 0.5s; }
.msg:nth-child(2) { animation-delay: 1.2s; }
.msg:nth-child(3) { animation-delay: 2s; }
.msg:nth-child(4) { animation-delay: 2.8s; }
.msg:nth-child(5) { animation-delay: 3.6s; }

@keyframes msg-appear {
  from { opacity: 0; transform: translateY(8px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.msg-typing {
  background: #1e1e1e;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 10px 14px;
}
.msg-typing span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: typing 1.2s ease infinite;
}
.msg-typing span:nth-child(2) { animation-delay: 0.2s; }
.msg-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-4px); opacity: 1; }
}

/* Timeline */
.steps-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-line {
  position: absolute;
  left: 24px;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: rgba(201,168,76,0.15);
  z-index: 0;
}

.timeline-progress {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.3));
  transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 24px 0;
  position: relative;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.step-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.step-item:nth-child(2) { transition-delay: 0.1s; }
.step-item:nth-child(3) { transition-delay: 0.25s; }
.step-item:nth-child(4) { transition-delay: 0.4s; }
.step-item:nth-child(5) { transition-delay: 0.55s; }

.step-num-wrap {
  flex-shrink: 0;
  z-index: 1;
}

.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
  background: var(--black);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 rgba(201,168,76,0);
}
.step-item:hover .step-num {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.08);
}

.step-text h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* =====================
   CONTENT CTA
===================== */
.content-cta {
  padding: 90px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.content-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 100% at 0% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 30% 80% at 100% 50%, rgba(201,168,76,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.content-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
}

.content-cta-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.content-cta-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.content-cta-left h2 em {
  font-style: italic;
  color: var(--gold);
}

.content-cta-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.content-cta-right p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
}

/* =====================
   PRICING
===================== */
.pricing {
  padding: 100px 0;
  background: var(--black);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-top: 48px;
}

.pricing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark2);
  overflow: hidden;
  transition: var(--transition);
  min-height: 320px;
}
.pricing-card:hover { background: #1f1f1f; }

.pricing-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) !important;
  display: block;
}
.pricing-card:hover .pricing-img { filter: grayscale(100%) !important; }

.pricing-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-content h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-price {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.pricing-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 24px;
  flex: 1;
}

.pricing-link {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: var(--transition);
}
.pricing-link:hover { color: var(--gold); border-color: var(--gold); }

/* =====================
   PHOTO SECTION
===================== */
.photo-section {
  padding: 100px 0;
  background: var(--dark);
}

.photo-grid {
  display: flex;
  gap: 6px;
  overflow-x: scroll;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-top: 40px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,0.2) transparent;
}
.photo-grid::-webkit-scrollbar { height: 3px; }
.photo-grid::-webkit-scrollbar-track { background: transparent; }
.photo-grid::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.25); border-radius: 2px; }

.photo-item {
  flex: 0 0 auto;
  height: 380px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
  border-radius: 2px;
}

.photo-item.photo-big { height: 380px; }

.photo-item img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  object-fit: unset;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: grayscale(10%);
}
.photo-item:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.photo-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
}
.photo-item:hover .photo-hover { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
}

.lightbox-img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  filter: none !important;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255,255,255,0.06);
}
.lightbox.open .lightbox-img { transform: scale(1); }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.18); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* =====================
   BLOG
===================== */
.blog {
  padding: 100px 0;
  background: var(--black);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.blog-card { display: flex; flex-direction: column; }

.blog-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img-wrap img { transform: scale(1.05); }

.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.blog-excerpt {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-date {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-link {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 1px;
  transition: var(--transition);
}
.blog-link:hover { color: var(--gold-light); }

/* =====================
   TESTIMONIALS
===================== */
.testimonials {
  padding: 100px 0;
  background: var(--dark);
  overflow: hidden;
}

.testi-slider {
  margin-top: 56px;
  position: relative;
}

.testi-track {
  display: grid;
  grid-template-columns: 1fr;
}

.testi-card {
  grid-area: 1 / 1;
  padding: 56px 80px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid rgba(201,168,76,0.3);
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.testi-card.active {
  opacity: 1;
  pointer-events: auto;
}
.testi-card:hover {
  border-top-color: var(--gold);
  border-color: rgba(201,168,76,0.15);
}

.testi-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 3px;
}

.testi-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  max-width: 760px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.testi-name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}

.testi-role {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.12);
  background: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s;
}
.testi-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.testi-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .testimonials { padding: 60px 0; }
  .testi-slider { margin-top: 32px; }
  .testi-card { padding: 32px 24px; gap: 20px; }
  .testi-text { font-size: 16px; line-height: 1.7; }
  .testi-controls { margin-top: 24px; }
}

/* =====================
   FAQ
===================== */
.faq {
  padding: 100px 0;
  background: var(--dark);
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--gold);
  gap: 20px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-light); }

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 24px; }

.faq-answer p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
}

/* =====================
   CONTACT
===================== */
.contact {
  padding: 100px 0;
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.contact-form-wrap { padding: 20px 0; }

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
  resize: none;
  min-height: 44px;
}
.form-input.form-textarea { min-height: 110px; }
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus { border-color: var(--gold); }

/* =====================
   FOOTER
===================== */
.footer {
  background: var(--dark);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-menu {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-menu a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  letter-spacing: 0.5px;
}
.footer-menu a:hover { color: var(--gold); }

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

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  transition: border-color 0.3s, color 0.3s;
}

.footer-social-link:hover {
  border-color: rgba(201,168,76,0.5);
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}

/* =====================
   RESPONSIVE
===================== */
/* =====================
   CERTIFICATE MODAL
===================== */
.cert-badge-btn {
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.cert-badge-btn:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.6);
  color: var(--gold-light);
}

.cert-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cert-modal.open {
  opacity: 1;
  pointer-events: all;
}

.cert-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
}

.cert-modal-box {
  position: relative;
  z-index: 1;
  background: #fff;
  max-width: 860px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  transform: scale(0.92) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.cert-modal.open .cert-modal-box {
  transform: scale(1) translateY(0);
}

.cert-modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
  z-index: 10;
}
.cert-modal-close:hover { background: rgba(255,255,255,0.2); }

/* Close button inside boxed modals — position relative to the box */
.cert-modal-box .cert-modal-close,
.video-modal-box .cert-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,0.15);
  border-color: rgba(0,0,0,0.15);
  color: #333;
}
.cert-modal-box .cert-modal-close:hover,
.video-modal-box .cert-modal-close:hover {
  background: rgba(0,0,0,0.08);
  color: #000;
}

.cert-modal-img {
  display: block;
  width: 100%;
  height: auto;
  filter: none !important;
}

.cert-modal-frame {
  display: none;
  width: 100%;
  height: 636px;
  border: none;
}

/* =====================
   SCROLL ANIMATIONS
===================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 991px) {
  .container { padding: 0 24px; }
  .nav-container { padding: 0 24px; }

  .nav-menu { display: none; }
  .burger { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    padding: 40px;
    gap: 24px;
    z-index: 1001;
  }

  /* Section padding */
  .about, .services, .cta-section, .why-me, .how-to-start,
  .pricing, .photo-section, .blog, .faq, .contact { padding: 72px 0; }
  .certificates { padding: 72px 0; }
  .reels-section { padding: 72px 0 40px; }
  .testimonials { padding: 72px 0; }
  .partners { padding: 60px 0; }

  /* Navbar */
  .nav-container { height: 64px; }
  .social-icons { display: none; }
  .navbar.scrolled { backdrop-filter: blur(6px); }

  /* Убираем grayscale на мобильном — экономия GPU */
  img { filter: none; transition: none; }
  img:hover { filter: none; }

  /* Grids */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .start-grid { grid-template-columns: 1fr; gap: 40px; }
  .start-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-image { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; gap: 24px; }
  .cert-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { grid-template-columns: 1fr; }
  .pricing-img { height: 220px; }

  /* CTA */
  .cta-stat { padding: 0 16px; }
  .cta-stat-num { font-size: 32px; }

  /* Content CTA */
  .content-cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .content-cta { padding: 60px 0; }
  .content-cta-left h2 { font-size: 48px; }

  /* Cert featured */
  .cert-featured-left { padding: 36px 32px; }
  .cert-featured-right { padding: 36px 32px; }

  /* Reels */
  .reels-track { padding: 16px 24px; }

  /* Footer */
  .footer { padding: 40px 0 24px; }
  .footer-inner { margin-bottom: 24px; }
}

@media (max-width: 767px) {
  /* Section padding */
  .about, .services, .cta-section, .why-me, .how-to-start,
  .pricing, .photo-section, .blog, .faq, .contact { padding: 56px 0; }
  .certificates { padding: 56px 0; }
  .reels-section { padding: 56px 0 32px; }
  .testimonials { padding: 60px 0; }
  .partners { padding: 48px 0; }

  /* Navbar */
  .nav-container { height: 60px; }
  .logo-img { height: 40px; }

  /* Hero */
  .hero-title { font-size: 44px; }
  .hero-content { padding: 0 20px; }
  .hero-theme-switcher { display: none; }
  .hero-desc-full { display: none; }
  .hero-desc-short { display: inline; }
  .hero-desc { letter-spacing: 1.5px; font-size: 12px; line-height: 1.8; }
  .hero-eyebrow { letter-spacing: 3px; font-size: 11px; }

  /* About */
  .about-grid { gap: 32px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 28px 20px 24px; }
  .why-grid { margin-top: 32px; }

  /* Work */
  .work-grid { grid-template-columns: 1fr; }

  /* Certs */
  .cert-grid { grid-template-columns: 1fr; }

  /* Photo */
  .photo-item { height: 280px; }
  .photo-item.photo-big { height: 280px; }
  .photo-item.photo-big { grid-column: span 2; grid-row: span 2; }

  /* Steps */
  .step-item { padding: 16px 0; }
  .steps-timeline { margin-top: 8px; }

  /* Testimonials */
  .testi-slider { margin-top: 32px; }
  .testi-card { padding: 32px 24px; gap: 20px; }
  .testi-text { font-size: 16px; line-height: 1.7; }
  .testi-controls { margin-top: 24px; }

  /* Blog */
  .blog-grid { gap: 20px; margin-top: 32px; }

  /* FAQ */
  .faq-list { margin-top: 32px; }
  .faq-question { font-size: 15px; padding: 20px 0; }

  /* Contact */
  .contact-form-wrap { padding: 0; }

  /* Footer */
  .footer { padding: 32px 0 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 20px; }
  .footer-menu { gap: 16px; }
  .social-icons { display: none; }

  /* Gold line */
  .gold-line { margin: 12px 0 24px; }
  .gold-line.center { margin: 12px auto 28px; }

  /* Reels */
  .reel-card { width: 160px; }
  .reel-card.reel-featured { width: 190px; }
  .reels-track { padding: 16px 20px; gap: 10px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Section padding */
  .about, .services, .cta-section, .why-me, .how-to-start,
  .pricing, .photo-section, .blog, .faq, .contact { padding: 40px 0; }
  .certificates { padding: 40px 0; }
  .reels-section { padding: 40px 0 24px; }
  .testimonials { padding: 40px 0; }
  .partners { padding: 36px 0; }

  /* Navbar */
  .nav-container { height: 56px; padding: 0 16px; }
  .logo-img { height: 36px; }

  /* Typography */
  .section-title { font-size: 22px; letter-spacing: 0.5px; }
  .section-sub { font-size: 11px; letter-spacing: 0.5px; }

  /* Hero */
  .hero-title { font-size: 34px; }
  .hero-desc { font-size: 11px; letter-spacing: 1px; line-height: 1.7; margin-bottom: 28px; }
  .hero-eyebrow { margin-bottom: 12px; letter-spacing: 1px; font-size: 10px; }
  .hero-divider { margin: 14px auto; }

  /* Photo */
  .photo-grid { gap: 4px; padding-left: 16px; padding-right: 16px; }
  .photo-item { height: 240px; }
  .photo-item.photo-big { height: 240px; }

  /* Work grid — 2 columns on small phones */
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }

  /* Reels */
  .reel-card { width: 140px; }
  .reel-card.reel-featured { width: 160px; }
  .reels-track { padding: 12px 16px; gap: 8px; }

  /* CTA title */
  .cta-title { font-size: 30px; }
  .cta-sub { font-size: 14px; margin-bottom: 32px; }

  /* CTA stats */
  .cta-stats { flex-direction: column; gap: 12px; padding: 20px 0; margin-bottom: 32px; }
  .cta-stat { padding: 0; }
  .cta-vline { display: none; }
  .cta-stat-num { font-size: 36px; margin-bottom: 6px; }

  /* Cert featured */
  .cert-featured { flex-direction: column; }
  .cert-featured-divider { width: 100%; height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent); }
  .cert-featured-left { padding: 24px 20px 16px; }
  .cert-featured-right { padding: 16px 20px 24px; }
  .gp-google, .gp-partner { font-size: 28px; }
  .gp-bar { height: 60px; }

  /* Cert card body */
  .cert-body { padding: 24px 16px 20px; }
  .cert-title { font-size: 20px; }

  /* Why */
  .why-card { padding: 24px 16px; }
  .why-icon-wrap { width: 56px; height: 56px; margin: 0 auto 16px; }
  .why-icon-wrap svg { width: 22px; height: 22px; }
  .why-card h3 { font-size: 15px; }
  .why-card p { font-size: 13px; }
  .why-num { top: 12px; right: 12px; font-size: 10px; }
  .why-grid { margin-top: 24px; gap: 12px; }

  /* Steps */
  .step-item { gap: 16px; padding: 12px 0; }
  .step-num { width: 40px; height: 40px; font-size: 17px; }
  .step-text h3 { font-size: 15px; }
  .step-text p { font-size: 13px; line-height: 1.7; }

  /* Content CTA */
  .content-cta-left h2 { font-size: 34px; }
  .content-cta-inner { gap: 20px; }

  /* Pricing */
  .pricing-content { padding: 24px 20px; }
  .pricing-content h3 { font-size: 20px; }
  .pricing-img { min-height: 200px; height: 200px; }

  /* Buttons */
  .btn { padding: 13px 28px; font-size: 12px; letter-spacing: 1.5px; min-height: 44px; }

  /* Testimonials */
  .testi-card { padding: 24px 16px; gap: 16px; }
  .testi-text { font-size: 14px; line-height: 1.65; }
  .testi-avatar { width: 40px; height: 40px; font-size: 12px; }

  /* FAQ */
  .faq-question { font-size: 14px; padding: 18px 0; }

  /* Footer */
  .footer { padding: 28px 0 16px; }
  .footer-menu { flex-wrap: wrap; gap: 12px; }
  .footer-menu a { font-size: 12px; }
  .footer-socials { gap: 8px; padding: 16px 0; }
  .footer-social-link { width: 44px; height: 44px; }

  /* Gold line */
  .gold-line { margin: 10px 0 20px; }
  .gold-line.center { margin: 10px auto 20px; }
}
