/* =============================================
   ALIDA HOLDINGS — MAIN STYLESHEET v3.0
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #DFA91F;
  --gold2: #BB7A1E;
  --gold-grad: linear-gradient(135deg, #DFA91F 0%, #DFA91F 60%, #BB7A1E 100%);
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --white: #ffffff;
  --off-white: #F8F6F1;
  --gray-bg: #F2F1EE;
  --body-text: #505050;
  --muted: #868686;
  --border: rgba(0,0,0,0.08);
  --font: 'Pretendard', -apple-system, 'Apple SD Gothic Neo', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--body-text); line-height: 1.7; overflow-x: hidden; word-break: keep-all; }

/* CONTAINERS */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
@media(max-width:768px){ .container { padding: 0 24px; } }

/* SECTIONS */
.section-white { background: var(--white); padding: 120px 0; }
.section-dark  { background: var(--dark); padding: 120px 0; }
.section-gray  { background: var(--gray-bg); padding: 120px 0; }
.section-gold  { background: var(--gold-grad); padding: 100px 0; }
@media(max-width:768px){
  .section-white, .section-dark, .section-gray, .section-gold { padding: 80px 0; }
}

/* TAGS / LABELS */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(223,169,31,0.35);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.tag-gold { background: rgba(223,169,31,0.12); }
.tag-dark { color: var(--dark); border-color: rgba(0,0,0,0.2); }

/* SECTION HEADERS */
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header h2 { font-size: clamp(36px, 4vw, 52px); font-weight: 800; color: var(--dark); line-height: 1.2; }
.section-dark .section-header h2 { color: var(--white); }

h2 em { font-style: normal; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* BUTTONS */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px;
  background: var(--gold-grad);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter 0.25s, transform 0.25s;
}
.btn-gold:hover { filter: brightness(1.12); transform: translateY(-2px); }
.btn-gold--lg { padding: 20px 48px; font-size: 17px; }
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}
.btn-dark:hover { background: #222; transform: translateY(-2px); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-diamond { color: var(--gold); font-size: 16px; }
.logo-text { font-size: 17px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links > a, .nav-parent {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  cursor: pointer;
}
.nav-links > a:hover, .nav-parent:hover { color: var(--white); }
.nav-parent i { font-style: normal; font-size: 10px; opacity: 0.6; }
.nav-cta {
  background: var(--gold-grad) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: filter 0.2s !important;
}
.nav-cta:hover { filter: brightness(1.1); }

.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 180px;
  white-space: nowrap;
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s, background 0.2s;
}
.dropdown-menu a:hover { color: var(--gold); background: rgba(223,169,31,0.08); }

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

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--black);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-close {
  position: absolute; top: 28px; right: 28px;
  background: none; border: none; color: var(--white);
  font-size: 22px; cursor: pointer;
}
.mobile-menu a { font-size: 24px; font-weight: 700; color: var(--white); text-decoration: none; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-cta { background: var(--gold-grad); padding: 14px 32px; border-radius: 50px; color: var(--white) !important; }

@media(max-width:900px){
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { padding: 0 24px; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: url(/wp-content/themes/agency-pro/hero-bg.webp) center/cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.76);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 140px 48px 100px;
}
.hero-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.25em;
  color: var(--gold); margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.hero-line1 { display: block; color: rgba(255,255,255,0.9); font-weight: 400; }
.hero-line2 { display: block; color: var(--white); }
.hero-title em {
  font-style: normal;
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255,255,255,0.75);
  font-weight: 400; line-height: 1.7;
  margin-bottom: 48px; max-width: 560px;
}
.hero-scroll {
  position: absolute; bottom: 48px; right: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.35);
  font-size: 10px; letter-spacing: 0.2em;
}
.scroll-bar {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.3;transform:scaleY(0.6)}
}
@media(max-width:768px){
  .hero-content { padding: 120px 24px 80px; }
  .hero-scroll { display: none; }
}

/* =============================================
   PHILOSOPHY
   ============================================= */
.philo-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.philo-left h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800; line-height: 1.15; color: var(--dark);
}
.philo-right .philo-body {
  font-size: 18px; color: var(--body-text); line-height: 1.85;
  margin-bottom: 40px;
}
.philo-quote {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px 32px;
  background: var(--gray-bg);
  border-radius: 12px;
}
.quote-bar { width: 3px; flex-shrink: 0; height: auto; background: var(--gold-grad); border-radius: 3px; align-self: stretch; }
.philo-quote p { font-size: 18px; color: var(--dark); line-height: 1.7; }
.philo-quote strong { font-weight: 800; }
@media(max-width:900px){ .philo-grid { grid-template-columns: 1fr; gap: 48px; } }

/* =============================================
   PROOF / STATS
   ============================================= */
.proof-top { margin-bottom: 60px; }
.proof-top h2 { font-size: clamp(36px, 4.5vw, 56px); font-weight: 800; color: var(--white); line-height: 1.2; }
.proof-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.proof-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 44px 36px;
  transition: border-color 0.3s, transform 0.3s;
}
.proof-card:hover { border-color: rgba(223,169,31,0.4); transform: translateY(-4px); }
.proof-icon { font-size: 32px; margin-bottom: 20px; }
.proof-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 14px; line-height: 1.5; }
.proof-card p { color: rgba(255,255,255,0.55); font-size: 15px; line-height: 1.7; }
.proof-card--center { text-align: center; border-color: rgba(223,169,31,0.25); }
.proof-num {
  font-size: 88px; font-weight: 900; line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.proof-num span { font-size: 48px; }
.proof-formula {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 20px; flex-wrap: wrap;
}
.proof-formula span {
  font-size: 22px; font-weight: 800; color: var(--white);
}
.proof-formula .eq { color: var(--gold); font-size: 28px; }
@media(max-width:900px){ .proof-grid { grid-template-columns: 1fr; } }

/* =============================================
   SERVICES KR
   ============================================= */
.services-kr-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.skr-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.skr-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0); transition: transform 0.3s;
}
.skr-card:hover::before { transform: scaleX(1); }
.skr-card:hover { border-color: rgba(223,169,31,0.2); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.skr-num { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 16px; }
.skr-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.skr-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
@media(max-width:1100px){ .services-kr-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width:600px){ .services-kr-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:400px){ .services-kr-grid { grid-template-columns: 1fr; } }

/* =============================================
   REVIEWS
   ============================================= */
.reviews-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.review-card {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.14); }
.review-card img { width: 100%; height: auto; display: block; }
@media(max-width:900px){ .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:480px){ .reviews-grid { grid-template-columns: 1fr; } }

/* =============================================
   KNOW-HOW
   ============================================= */
.kh-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.kh-left h2 { font-size: clamp(36px, 4.5vw, 56px); font-weight: 800; color: var(--white); margin-bottom: 8px; }
.kh-sub { font-size: 22px; font-weight: 500; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.kh-sub em { font-style: normal; color: var(--gold); }
.kh-body { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 36px; }
.kh-badge {
  display: inline-flex; flex-direction: column; gap: 4px;
  background: rgba(223,169,31,0.12);
  border: 1px solid rgba(223,169,31,0.3);
  border-radius: 10px; padding: 18px 24px;
}
.kh-badge strong { font-size: 13px; font-weight: 800; color: var(--gold); letter-spacing: 0.05em; }
.kh-badge span { font-size: 15px; font-weight: 600; color: var(--white); }

.kh-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.pain-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.pain-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 20px 24px;
  display: flex; gap: 14px; align-items: flex-start;
}
.pain-quote { font-size: 36px; line-height: 0.7; color: var(--gold); opacity: 0.6; flex-shrink: 0; font-family: Georgia, serif; }
.pain-card p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.kh-answer {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 28px;
  background: var(--gold-grad);
  border-radius: 12px;
}
.kh-arrow { font-size: 22px; color: var(--white); }
.kh-answer p { font-size: 17px; color: var(--white); }
.kh-answer strong { font-weight: 800; }
@media(max-width:900px){ .kh-grid { grid-template-columns: 1fr; gap: 56px; } }

/* =============================================
   PRINCIPLES
   ============================================= */
.principles-list { display: flex; flex-direction: column; gap: 0; }
.principle-item {
  display: flex; align-items: center; gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.25s;
}
.principle-item:first-child { border-top: 1px solid var(--border); }
.principle-item:hover .pi-num { color: var(--gold); }
.principle-item:hover .pi-arrow { transform: translateX(6px); color: var(--gold); }
.pi-num { font-size: 13px; font-weight: 800; color: var(--muted); letter-spacing: 0.1em; min-width: 36px; transition: color 0.2s; }
.pi-content { flex: 1; }
.pi-content h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.pi-content p { font-size: 14px; color: var(--muted); }
.pi-arrow { font-size: 20px; color: var(--muted); transition: all 0.25s; }

/* =============================================
   PROCESS
   ============================================= */
.process-steps {
  display: flex; align-items: flex-start; gap: 0;
  flex-wrap: wrap; justify-content: center;
}
.step {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  flex: 1; min-width: 160px; max-width: 200px;
  transition: background 0.3s, transform 0.3s;
}
.step:hover { background: rgba(255,255,255,0.22); transform: translateY(-4px); }
.step-num {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  color: var(--dark); opacity: 0.5; margin-bottom: 16px;
}
.step h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.step p { font-size: 13px; color: rgba(0,0,0,0.6); line-height: 1.6; }
.step-arrow { font-size: 24px; color: rgba(0,0,0,0.3); align-self: center; padding: 0 4px; }
@media(max-width:900px){
  .process-steps { gap: 16px; }
  .step-arrow { display: none; }
  .step { min-width: calc(50% - 8px); max-width: none; }
}

/* =============================================
   PRICING
   ============================================= */
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 800px; margin: 0 auto 40px;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.pricing-card--featured {
  background: var(--dark);
  border-color: var(--dark);
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.pricing-badge {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 20px;
}
.pricing-badge--gold { color: var(--gold); }
.pricing-card h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 24px; }
.pricing-card--featured h3 { color: var(--white); }
.pricing-price {
  font-size: 52px; font-weight: 900; color: var(--dark);
  letter-spacing: -0.03em; margin-bottom: 32px; line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-price span { font-size: 22px; font-weight: 600; }
.pricing-features { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li { font-size: 15px; color: var(--body-text); }
.pricing-card--featured .pricing-features li { color: rgba(255,255,255,0.7); }
.pricing-note { text-align: center; font-size: 15px; color: var(--muted); }
.pricing-note a { color: var(--gold); text-decoration: none; font-weight: 600; }
@media(max-width:640px){ .pricing-grid { grid-template-columns: 1fr; max-width: 420px; } }

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final { text-align: center; }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800; color: var(--white);
  line-height: 1.25; margin-bottom: 24px;
}
.cta-inner p { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 48px; line-height: 1.7; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 24px; }
.footer-info { display: flex; flex-direction: column; gap: 6px; }
.footer-info span { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px; margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-cta {
  background: var(--gold-grad) !important;
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-align: center;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px; color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }
@media(max-width:900px){
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media(max-width:480px){ .footer-grid { grid-template-columns: 1fr; } }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.animate {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
