/* ==========================================
   TAMIL TRADING PROFIT — MAIN STYLESHEET
   Dark Gold · Premium Financial Design
   ========================================== */

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

:root {
  --gold:        #D4A832;
  --gold-light:  #F5C842;
  --gold-pale:   #F5C84215;
  --gold-border: #D4A83230;
  --dark:        #080C10;
  --dark-2:      #0D1520;
  --dark-3:      #111A27;
  --dark-card:   #0F1929;
  --blue:        #1A3A6E;
  --blue-bright: #2B5BB4;
  --white:       #FFFFFF;
  --text:        #C8D6E8;
  --text-muted:  #7A8FA8;
  --red:         #E63946;
  --green:       #2ECC71;
  --font-display: 'Cinzel', serif;
  --font-body:    'DM Sans', sans-serif;
  --radius:       14px;
  --radius-sm:    8px;
  --shadow-gold:  0 0 40px rgba(212,168,50,.2);
  --shadow-card:  0 8px 40px rgba(0,0,0,.4);
  --transition:   .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold-text { color: var(--gold-light); }
.section { padding: 100px 0; position: relative; overflow: hidden; }
.dark-section { background: var(--dark-2); }

/* Section header */
.section-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-header.centered { text-align: center; }
.section-header.centered .section-eyebrow { justify-content: center; }
.section-header.centered .section-eyebrow::before { display: none; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .875rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9375rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0D1520;
  box-shadow: 0 4px 20px rgba(212,168,50,.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,168,50,.55);
}
.btn-outline-gold {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
}
.btn-outline-gold:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
}
.btn-red {
  background: linear-gradient(135deg, #c62828, #e53935);
  color: #fff;
  box-shadow: 0 4px 20px rgba(229,57,53,.35);
}
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(229,57,53,.5); }
.btn-full { width: 100%; justify-content: center; }

/* ===== ANIMATIONS ===== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .7s ease forwards;
}
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: .875rem 0;
  background: rgba(8,12,16,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(212,168,50,.15), 0 4px 30px rgba(0,0,0,.5);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.header.scrolled {
  background: rgba(8,12,16,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(212,168,50,.15), 0 4px 30px rgba(0,0,0,.5);
  padding: .625rem 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.logo-img { height: 70px; width: auto; max-width: 200px; object-fit: contain; }
.logo-fallback { display: none; align-items: center; gap: .6rem; }
.logo-icon { font-size: 1.8rem; color: var(--gold); }
.logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
  line-height: 1.2;
}
.logo-tag {
  display: block;
  font-size: .65rem;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  padding: .5rem .875rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--gold-light); background: var(--gold-pale); }
.nav-cta {
  padding: .5rem 1.125rem !important;
  background: linear-gradient(135deg, #128c7e, #25d366);
  color: #fff !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: #25d366 !important; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  display: block;
  transition: all .3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,168,50,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,50,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,168,50,.12), transparent 70%);
  top: -200px; right: -100px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(27,59,110,.3), transparent 70%);
  bottom: 0; left: -100px;
}

/* Animated candlesticks */
.candle-bg {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  display: flex;
  align-items: flex-end;
  gap: 30px;
  padding: 0 60px;
  opacity: .12;
  pointer-events: none;
}
.candle {
  flex: 1;
  border-radius: 4px 4px 0 0;
  animation: candleAnim 3s ease-in-out infinite;
  position: relative;
}
.candle::before {
  content: '';
  position: absolute;
  top: -20px; left: 50%; transform: translateX(-50%);
  width: 3px;
  background: inherit;
  border-radius: 2px;
}
.c1 { height: 80px; background: var(--gold); animation-delay: 0s; }
.c1::before { height: 20px; }
.c2 { height: 120px; background: var(--red); animation-delay: .3s; }
.c2::before { height: 30px; }
.c3 { height: 60px; background: var(--gold); animation-delay: .6s; }
.c3::before { height: 15px; }
.c4 { height: 150px; background: var(--green); animation-delay: .9s; }
.c4::before { height: 25px; }
.c5 { height: 90px; background: var(--red); animation-delay: 1.2s; }
.c5::before { height: 20px; }
.c6 { height: 130px; background: var(--gold); animation-delay: 1.5s; }
.c6::before { height: 30px; }
.c7 { height: 170px; background: var(--green); animation-delay: 1.8s; }
.c7::before { height: 35px; }

@keyframes candleAnim {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(.9); }
}

/* Ticker */
.ticker-wrap {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: rgba(212,168,50,.1);
  border-top: 1px solid var(--gold-border);
  overflow: hidden;
  padding: 8px 0;
  z-index: 5;
}
.ticker {
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 35s linear infinite;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--gold-light);
}
.ticker span { padding: 0 20px; }
.ticker .sep { color: var(--gold); opacity: .5; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(212,168,50,.12);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.live-dot {
  width: 7px; height: 7px;
  background: #2ECC71;
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(46,204,113,.4);
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,204,113,.4); }
  70%  { box-shadow: 0 0 0 8px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 2.25rem;
}
.hero-sub strong { color: var(--gold-light); font-weight: 600; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  width: fit-content;
}
.stat { text-align: center; }
.stat strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  display: inline;
}
.stat span { font-size: .875rem; color: var(--text-muted); }
.stat p { font-size: .75rem; color: var(--text-muted); margin-top: 2px; }
.stat-div { width: 1px; height: 40px; background: var(--gold-border); }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 60px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  position: relative;
}
.scroll-line::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-8px); }
}

/* ===== ABOUT ===== */
.about { background: var(--dark-3); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-card-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,168,50,.1), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.about-img-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse at center, #1a1200 0%, #0d0d0d 70%);
  border-radius: 20px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-card), var(--shadow-gold), 0 0 60px rgba(212,175,55,.12);
  padding: 1.5rem;
  overflow: hidden;
}
.about-monogram {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--dark);
}
.about-candles-deco { font-size: 3rem; }
.about-badge-float, .about-badge-float-2 {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .625rem;
  background: var(--dark-card);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  padding: .625rem .875rem;
  box-shadow: var(--shadow-card);
  animation: float 4s ease-in-out infinite;
}
.about-badge-float { bottom: -20px; left: -20px; }
.about-badge-float-2 { top: -20px; right: -20px; animation-delay: 2s; }
.about-badge-float i, .about-badge-float-2 i {
  font-size: 1.25rem;
  color: var(--gold);
}
.about-badge-float strong, .about-badge-float-2 strong {
  display: block; font-size: .875rem; color: var(--white); font-weight: 700;
}
.about-badge-float span, .about-badge-float-2 span {
  display: block; font-size: .75rem; color: var(--text-muted);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-lead {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-lead strong { color: var(--gold-light); }
.about-body { color: var(--text-muted); line-height: 1.75; margin-bottom: 1.75rem; }
.about-body strong { color: var(--text); }

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 2rem;
}
.pillar {
  display: flex;
  align-items: center;
  gap: .625rem;
  background: rgba(212,168,50,.06);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: .625rem .875rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
}
.pillar i { font-size: 1rem; }

/* ===== SERVICES ===== */
.services-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(212,168,50,.06), transparent 70%);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}
.service-card.visible { opacity: 1; transform: none; }
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,168,50,.04), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: var(--shadow-gold), var(--shadow-card); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  border-color: var(--gold-border);
  background: linear-gradient(135deg, rgba(212,168,50,.08), var(--dark-card));
}
.service-popular-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .625rem;
  border-radius: 50px;
}
.service-icon-wrap {
  width: 56px; height: 56px;
  position: relative;
  margin-bottom: 1.25rem;
}
.service-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
}
.service-icon-wrap i {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  color: var(--gold-light);
  line-height: 56px;
  padding-left: 14px;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .625rem;
}
.service-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: var(--text);
}
.service-features li i { color: var(--gold); font-size: .65rem; }
.service-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: .2rem .5rem;
  text-transform: uppercase;
}

/* ===== YOUTUBE ===== */
.youtube-section { background: var(--dark-3); }
.yt-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.yt-desc {
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.yt-desc strong { color: var(--white); }
.yt-stats { display: flex; flex-direction: column; gap: .875rem; margin-bottom: 2rem; }
.yt-stat {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .875rem 1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  transition: all var(--transition);
}
.yt-stat:hover { border-color: var(--gold-border); background: var(--gold-pale); }
.yt-stat i { font-size: 1.5rem; }
.yt-stat strong { display: block; font-size: .9375rem; color: var(--white); font-weight: 700; }
.yt-stat span { font-size: .8125rem; color: var(--text-muted); }
.yt-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.yt-embed-wrap { position: relative; }
.yt-frame-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse, rgba(212,168,50,.1), transparent 70%);
  pointer-events: none;
}
.yt-embed {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  aspect-ratio: 16/9;
}
.yt-embed iframe { width: 100%; height: 100%; display: block; }
.yt-channel-banner {
  margin-top: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--gold-border);
}

/* ===== BENEFITS ===== */
.benefits-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(212,168,50,.015) 0px,
    rgba(212,168,50,.015) 1px,
    transparent 1px,
    transparent 40px
  );
  pointer-events: none;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.benefit-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.benefit-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.benefit-number {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(212,168,50,.08);
  line-height: 1;
}
.benefit-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 1.125rem;
}
.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.benefit-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Testimonials */
.testimonials-strip { margin-top: 5rem; }
.strip-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-align: center;
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.testi-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
}
.testi-card:hover { border-color: var(--gold-border); }
.testi-stars { color: var(--gold); font-size: .875rem; margin-bottom: .75rem; letter-spacing: .05em; }
.testi-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .625rem; }
.testi-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--dark);
  font-size: .875rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .875rem; color: var(--white); font-weight: 700; }
.testi-author span { font-size: .75rem; color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact { background: var(--dark-3); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-lead {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-items { display: flex; flex-direction: column; gap: .875rem; margin-bottom: 2rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.125rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
}
.contact-item:hover { border-color: var(--gold-border); background: var(--gold-pale); transform: translateX(4px); }
.contact-item.contact-whatsapp:hover { border-color: #25d36650; background: rgba(37,211,102,.05); }
.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.contact-whatsapp .contact-item-icon { background: rgba(37,211,102,.12); border-color: #25d36640; color: #25d366; }
.contact-item strong { display: block; font-size: .875rem; color: var(--white); font-weight: 700; }
.contact-item span { font-size: .8125rem; color: var(--text-muted); }
.contact-arrow { margin-left: auto; color: var(--text-muted); font-size: .75rem; }
.contact-hours {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .875rem 1rem;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
}
.contact-hours i { font-size: 1.25rem; }
.contact-hours strong { display: block; font-size: .875rem; color: var(--white); }
.contact-hours span { font-size: .8125rem; color: var(--text-muted); }

/* Form */
.contact-form-wrap { position: relative; }
.form-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(212,168,50,.07), transparent 70%);
  pointer-events: none;
}
.contact-form {
  background: var(--dark-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.125rem; }
.form-group label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrap i {
  position: absolute;
  left: .875rem;
  color: var(--text-muted);
  font-size: .875rem;
  pointer-events: none;
}
.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  padding: .75rem .875rem .75rem 2.5rem;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}
.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: var(--gold);
  background: rgba(212,168,50,.05);
}
.input-wrap input::placeholder,
.input-wrap textarea::placeholder { color: var(--text-muted); }
.input-wrap select { color: var(--text); cursor: pointer; }
.input-wrap select option { background: var(--dark-2); color: var(--text); }
.textarea-wrap { align-items: flex-start; }
.textarea-wrap i { top: .875rem; }
.form-error {
  display: block;
  font-size: .775rem;
  color: #e63946;
  margin-top: .3rem;
  min-height: 16px;
}
.form-success {
  display: none;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(46,204,113,.1);
  border: 1px solid rgba(46,204,113,.3);
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}
.form-success i { font-size: 1.5rem; color: var(--green); flex-shrink: 0; }
.form-success strong { display: block; color: var(--white); font-size: .9375rem; margin-bottom: .25rem; }
.form-success p { font-size: .8125rem; color: var(--text-muted); }
.form-success.show { display: flex; }

.whatsapp-shortcut {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .875rem;
  padding: .625rem;
  border-radius: var(--radius-sm);
  font-size: .8125rem;
  color: #25d366;
  border: 1px dashed #25d36640;
  transition: all var(--transition);
}
.whatsapp-shortcut:hover { background: rgba(37,211,102,.07); }
.whatsapp-shortcut i { font-size: 1rem; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); border-top: 1px solid var(--gold-border); }
.footer-top { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo img { height: 40px; width: auto; }
.footer-logo-text { display: flex; flex-direction: column; }
.footer-tagline { font-size: .875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; max-width: 280px; }
.footer-socials { display: flex; gap: .625rem; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text-muted);
  transition: all var(--transition);
  background: rgba(255,255,255,.03);
}
.social-btn.whatsapp:hover { background: #25d366; border-color: #25d366; color: #fff; }
.social-btn.youtube:hover { background: #e63946; border-color: #e63946; color: #fff; }
.social-btn.email:hover { background: var(--blue-bright); border-color: var(--blue-bright); color: #fff; }
.social-btn.twitter:hover { background: #000; border-color: #000; color: #fff; }
.social-btn.instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: #e6683c; color: #fff; }
.social-btn.telegram:hover { background: #229ED9; border-color: #229ED9; color: #fff; }
.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a {
  font-size: .875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .875rem;
  color: var(--text-muted);
}
.footer-contact-list i { color: var(--gold); width: 14px; }
.footer-contact-list a { color: var(--text-muted); }
.footer-contact-list a:hover { color: var(--gold-light); }
.footer-disclaimer {
  margin-top: 1.25rem;
  padding: .75rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-disclaimer strong { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.04);
  padding: 1.25rem 0;
  text-align: center;
  font-size: .8125rem;
  color: var(--text-muted);
}
.footer-bottom strong { color: var(--gold-light); }

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #128c7e, #25d366);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 999;
  transition: all var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.6); }
.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.3); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark-2);
  color: #25d366;
  font-size: .8125rem;
  font-weight: 600;
  padding: .4rem .875rem;
  border-radius: 6px;
  white-space: nowrap;
  border: 1px solid #25d36640;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .about-grid, .yt-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 360px; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; width: auto; }
  .stat-div { display: none; }
  .hero-scroll { display: none; }
}
@media (max-width: 768px) {
  .logo-img { height: 56px !important; max-width: 160px !important; }
  .header { padding: .5rem 0; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(8,12,16,.99);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: .25rem;
    border-bottom: 1px solid var(--gold-border);
    transform: translateY(-130%);
    transition: transform .35s ease;
    z-index: 999;
    visibility: hidden;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; pointer-events: auto; }
  .nav-links a { padding: .75rem 1rem; border-radius: 8px; }
  .hamburger { display: flex; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
  .services-grid, .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 70px 0; }
  .hero { padding: 100px 0 70px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .hero-ctas { flex-direction: column; }
  .about-badge-float, .about-badge-float-2 { display: none; }
  .yt-ctas { flex-direction: column; }
}

/* logo size handled above */
