@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  --color-bg-base: #060609;
  --color-bg-card: rgba(18, 18, 26, 0.7);
  --color-bg-card-hover: rgba(26, 26, 38, 0.85);
  
  --color-primary: #dfa63b; /* Royal Gold */
  --color-primary-light: #ffd580;
  --color-primary-glow: rgba(223, 166, 59, 0.4);
  
  --color-accent: #c73838; /* Crimson Blood Red */
  --color-accent-light: #ff5252;
  --color-accent-glow: rgba(199, 56, 56, 0.4);
  
  --color-text-main: #f3f3f6;
  --color-text-sub: #a1a1b5;
  --color-text-muted: #6e6e82;
  
  --font-title: 'Cinzel', 'Noto Sans KR', serif;
  --font-body: 'Noto Sans KR', sans-serif;
  
  --border-glass: 1px solid rgba(223, 166, 59, 0.15);
  --border-glass-hover: 1px solid rgba(223, 166, 59, 0.4);
  --shadow-gold: 0 8px 32px 0 rgba(223, 166, 59, 0.1);
  --shadow-gold-hover: 0 12px 40px 0 rgba(223, 166, 59, 0.25);
  
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Reset & Base Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-base);
  color: var(--color-text-main);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  background-color: var(--color-bg-base);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(199, 56, 56, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(223, 166, 59, 0.06) 0%, transparent 40%);
  background-attachment: fixed;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #08080c;
}
::-webkit-scrollbar-thumb {
  background: #252535;
  border: 2px solid #08080c;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* --- Typography Utilities --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Gold Gradient Text */
.gold-text-gradient {
  background: linear-gradient(135deg, #ffe599 0%, #dfa63b 50%, #ae7a1e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(223, 166, 59, 0.1);
}

.crimson-text-gradient {
  background: linear-gradient(135deg, #ff7a7a 0%, #c73838 50%, #801d1d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobile-br {
  display: none;
}

/* --- Structure Components --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 60px;
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  margin: 12px auto 0;
}

.section-header p {
  color: var(--color-text-sub);
  font-size: 1.1rem;
}

/* --- Header / Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 6, 9, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(6, 6, 9, 0.95);
  border-bottom: 1px solid rgba(223, 166, 59, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

header.scrolled .nav-container {
  height: 70px;
}

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

.logo img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 8px var(--color-primary-glow));
}

.logo span {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #fff 30%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-item a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-sub);
  position: relative;
  padding: 8px 0;
}

.nav-item a:hover, .nav-item.active a {
  color: var(--color-primary-light);
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-item a:hover::after, .nav-item.active a::after {
  width: 100%;
}

.nav-btn {
  background: linear-gradient(135deg, var(--color-accent) 0%, #9a2020 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(199, 56, 56, 0.3);
  letter-spacing: 0.03em;
}

.nav-btn:hover {
  background: linear-gradient(135deg, #e04444 0%, var(--color-accent) 100%);
  box-shadow: 0 4px 25px rgba(199, 56, 56, 0.5);
  transform: translateY(-2px);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--color-text-main);
  transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #040406;
}

/* Background Image with Dark Overlays */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/hero_bg.png') no-repeat center center;
  background-size: cover;
  transform: scale(1.02);
  animation: slowZoom 20s infinite alternate ease-in-out;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(to bottom, rgba(6, 6, 9, 0.5) 0%, rgba(6, 6, 9, 0.9) 80%, rgba(6, 6, 9, 1) 100%),
    linear-gradient(to right, rgba(6, 6, 9, 0.8) 0%, rgba(6, 6, 9, 0.4) 50%, rgba(6, 6, 9, 0.8) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 20px;
  margin-top: 60px;
}

.hero-badge-wrap {
  margin-bottom: 25px;
  animation: fadeInUp 1s ease-out;
}

.hero-emblem {
  height: 110px;
  width: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 15px rgba(223, 166, 59, 0.5));
}

.hero-subtitle-top {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 900;
  letter-spacing: -0.01em;
  animation: fadeInUp 1.2s ease-out;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--color-text-sub);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
  animation: fadeInUp 1.4s ease-out;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1.6s ease-out;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.05em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #ad7c22 100%);
  color: #060609;
  border: 1px solid #ffe89e;
  box-shadow: 0 4px 20px var(--color-primary-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffd785 0%, var(--color-primary) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(223, 166, 59, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* --- Features Section (Grid) --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-card {
  background: var(--color-bg-card);
  border: var(--border-glass);
  border-radius: 8px;
  padding: 35px 25px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  background: var(--color-bg-card-hover);
  border: var(--border-glass-hover);
  box-shadow: var(--shadow-gold-hover);
}

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

.feature-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(223, 166, 59, 0.05);
  border: 1px solid rgba(223, 166, 59, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-box {
  background: rgba(223, 166, 59, 0.15);
  border-color: var(--color-primary);
  box-shadow: 0 0 15px var(--color-primary-glow);
}

.feature-icon-box svg {
  width: 28px;
  height: 28px;
  fill: var(--color-primary);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-box svg {
  transform: rotateY(180deg);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-text-main);
  font-weight: 700;
  transition: var(--transition-smooth);
}

.feature-card:hover h3 {
  color: var(--color-primary-light);
}

.feature-card p {
  color: var(--color-text-sub);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
}

/* --- Banner Mid Callout --- */
.banner-callout {
  background: linear-gradient(135deg, #09090e 0%, #151522 100%);
  border-top: 1px solid rgba(223, 166, 59, 0.2);
  border-bottom: 1px solid rgba(223, 166, 59, 0.2);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-callout::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(199, 56, 56, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.banner-callout h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.banner-callout p {
  color: var(--color-text-sub);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* --- Process Timeline Section --- */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(223, 166, 59, 0.3) 10%, rgba(223, 166, 59, 0.3) 90%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-badge {
  position: absolute;
  top: 25px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #12121a;
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--color-primary-light);
  box-shadow: 0 0 15px var(--color-primary-glow);
  z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-badge {
  right: -20px;
}

.timeline-item:nth-child(even) .timeline-badge {
  left: -20px;
}

.timeline-panel {
  background: var(--color-bg-card);
  border: var(--border-glass);
  border-radius: 8px;
  padding: 25px;
  position: relative;
  transition: var(--transition-smooth);
}

.timeline-panel:hover {
  background: rgba(223, 166, 59, 0.05);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.timeline-panel h3 {
  font-size: 1.3rem;
  color: var(--color-primary-light);
  margin-bottom: 10px;
}

.timeline-panel p {
  color: var(--color-text-sub);
  font-size: 0.95rem;
}

/* --- FAQ Section --- */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-bg-card);
  border: var(--border-glass);
  border-radius: 6px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(223, 166, 59, 0.3);
}

.faq-header {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-smooth);
}

.faq-header h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-text-main);
  padding-right: 15px;
  line-height: 1.5;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-sub);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item:hover .faq-icon {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.faq-icon::before {
  content: '+';
  font-size: 1.2rem;
  font-weight: 500;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid transparent;
}

.faq-content {
  padding: 20px 25px 25px;
  color: var(--color-text-sub);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Active FAQ Item */
.faq-item.active {
  border-color: var(--color-primary);
  background: var(--color-bg-card-hover);
  box-shadow: var(--shadow-gold);
}

.faq-item.active .faq-header h3 {
  color: var(--color-primary-light);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-glow);
}

.faq-item.active .faq-body {
  border-top-color: rgba(223, 166, 59, 0.1);
}

/* --- Contact & Consultation --- */
.contact-section {
  position: relative;
  background-image: 
    linear-gradient(to bottom, var(--color-bg-base) 0%, rgba(26, 26, 38, 0.3) 50%, var(--color-bg-base) 100%);
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.channels-grid.single-channel {
  display: flex;
  justify-content: center;
}
.channels-grid.single-channel .channel-card {
  width: 100%;
  max-width: 500px;
}

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

.contact-info-panel {
  background: var(--color-bg-card);
  border: var(--border-glass);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-gold);
}

.contact-info-panel h3 {
  font-size: 1.6rem;
  color: var(--color-primary-light);
  margin-bottom: 25px;
  border-left: 4px solid var(--color-primary);
  padding-left: 15px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.channel-card:hover {
  background: rgba(223, 166, 59, 0.04);
  border-color: var(--color-primary-glow);
  transform: translateX(5px);
}

.channel-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}

/* Brand specific colors */
.channel-card.kakao .channel-icon {
  background: #fee500;
  color: #000;
}
.channel-card.telegram .channel-icon {
  background: #0088cc;
}
.channel-card.phone .channel-icon {
  background: #34b7f1;
}

.channel-details h4 {
  font-size: 1.05rem;
  color: var(--color-text-main);
  margin-bottom: 4px;
}

.channel-details p {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.channel-action {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.channel-card:hover .channel-action {
  background: var(--color-primary);
  color: #000;
  border-color: var(--color-primary);
}



/* --- Slogans / Bottom Banner --- */
.bottom-slogan-section {
  background: linear-gradient(180deg, var(--color-bg-base) 0%, #0c0b12 100%);
  border-top: 1px solid rgba(223, 166, 59, 0.1);
  padding: 80px 0;
  text-align: center;
}

.slogans-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.slogan-badge {
  background: rgba(223, 166, 59, 0.05);
  border: 1px solid rgba(223, 166, 59, 0.2);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  color: var(--color-primary-light);
  font-size: 1rem;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-gold);
}

.bottom-slogan-section h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.4;
}

.bottom-slogan-section p {
  color: var(--color-text-sub);
  font-size: 1.15rem;
  margin-bottom: 35px;
}

/* --- Footer --- */
footer {
  background: #030305;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 50px 0;
  color: var(--color-text-muted);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 36px;
}

.footer-logo span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-main);
  font-family: var(--font-title);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

/* --- Floating Quick Menu --- */
.floating-consult {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  position: relative;
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

.floating-btn img {
  width: 32px;
  height: 32px;
}

.floating-btn.kakao {
  background: #fee500;
  border: 1px solid #ebd000;
}

.floating-btn.telegram {
  background: #0088cc;
  border: 1px solid #0077b3;
}

.floating-btn .tooltip-text {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #111116;
  border: var(--border-glass);
  color: var(--color-primary-light);
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.floating-btn:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* --- Keyframe Animations --- */
@keyframes slowZoom {
  0% { transform: scale(1.02) rotate(0deg); }
  100% { transform: scale(1.08) rotate(0.5deg); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Reveal animation classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; /* Hide standard menu on mobile */
  }
  
  .nav-btn {
    display: none; /* Hide nav button in header on mobile */
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  /* Mobile Navigation Menu Drawer */
  .nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(6, 6, 9, 0.98);
    border-bottom: 1px solid var(--color-primary-glow);
    padding: 30px;
    gap: 25px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
  }
  
  /* Hamburger active state */
  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .mobile-br {
    display: block;
  }

  body {
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 2rem !important;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .feature-card h3, .timeline-panel h3, .faq-header h3 {
    font-size: 1.2rem;
  }

  .feature-card p, .timeline-panel p, .faq-content {
    font-size: 0.85rem;
  }

  .slogans-container {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 10px 15px;
    gap: 12px;
    margin-bottom: 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .slogans-container::-webkit-scrollbar {
    display: none;
  }

  .slogan-badge {
    flex-shrink: 0;
    font-size: 0.85rem;
    padding: 8px 16px;
  }

  .hero h1 {
    font-size: 2.0rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 15px;
    padding: 0 30px;
  }
  
  .timeline::before {
    left: 40px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 80px;
    padding-right: 20px;
  }
  
  .timeline-item:nth-child(odd) {
    text-align: left;
  }
  
  .timeline-item:nth-child(even) {
    left: 0; /* Reset left position on mobile */
  }
  
  .timeline-item:nth-child(odd) .timeline-badge,
  .timeline-item:nth-child(even) .timeline-badge {
    left: 20px;
  }
  
  .channels-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .contact-info-panel, .consultation-form {
    padding: 25px 20px;
  }
  
  .floating-consult {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
  }
}
