/* ==========================================================================
   SHREEJI PRODUCTION - DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* --- CSS Variables & Color Palette --- */
:root {
  --bg-primary: #06070B;
  --bg-secondary: #0D0E15;
  --bg-card: rgba(18, 20, 30, 0.65);
  --bg-card-hover: rgba(28, 31, 46, 0.8);
  
  --gold-primary: #FFD700;
  --gold-secondary: #F39C12;
  --gold-dark: #D4AC0D;
  --gold-glow: rgba(255, 215, 0, 0.35);
  --gold-border: rgba(255, 215, 0, 0.2);

  --text-main: #FFFFFF;
  --text-muted: #A0A5BB;
  --text-subtle: #6B728E;

  --font-heading: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Cursor Ambient Light Glow --- */
.cursor-glow {
  position: fixed;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, rgba(243, 156, 18, 0.04) 45%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
}

/* --- Background Canvas & Overlays --- */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.cinematic-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(13, 14, 21, 0.2) 0%, rgba(6, 7, 11, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

.grid-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 215, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
  pointer-events: none;
}

/* --- Typography & Gradient Utils --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
}

.gradient-gold {
  background: linear-gradient(135deg, #FFF5C0 0%, #FFD700 35%, #F39C12 70%, #D4AC0D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 35px rgba(255, 215, 0, 0.25);
}

/* --- Header Navigation --- */
.site-header {
  position: relative;
  z-index: 10;
  padding: 1.25rem 1.5rem;
  width: 100%;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text-main);
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.brand-logo:hover {
  transform: translateY(-2px);
}

.logo-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-full);
  flex-shrink: 0;
}

.brand-img {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-full);
  object-fit: cover;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}

.logo-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 1px dashed rgba(255, 215, 0, 0.4);
  border-radius: var(--border-radius-full);
  animation: spinRing 25s linear infinite;
}

@keyframes spinRing {
  100% { transform: rotate(360deg); }
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: -3px;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-primary);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.nav-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-main);
  padding: 0.55rem 1.1rem;
  border-radius: var(--border-radius-full);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.nav-btn:hover {
  background: rgba(255, 215, 0, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

.nav-btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  border: none;
  color: #06070B;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.25);
}

.nav-btn-primary:hover {
  background: linear-gradient(135deg, #FFF5C0, var(--gold-primary));
  color: #06070B;
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  z-index: 5;
  padding: 2.5rem 1.5rem 3.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
}

.hero-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-secondary);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(12px);
  max-width: 100%;
}

.hero-badge i {
  color: var(--gold-primary);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-description {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.65;
}

.hero-description strong {
  color: var(--text-main);
  font-weight: 600;
}

/* --- Timeless Coming Soon Banner --- */
.coming-soon-banner {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius-lg);
  padding: 2.2rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  margin-bottom: 2.8rem;
  width: 100%;
  max-width: 780px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.coming-soon-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.banner-top-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold-secondary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.banner-main-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFD700 70%, #F39C12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
}

.banner-sub-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.shimmer-progress-bar {
  width: 100%;
  max-width: 440px;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-full);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.shimmer-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 215, 0, 0.2) 20%, 
    var(--gold-primary) 50%, 
    rgba(255, 215, 0, 0.2) 80%, 
    transparent 100%);
  background-size: 200% 100%;
  animation: shimmerAnim 2.5s infinite linear;
}

@keyframes shimmerAnim {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* --- CTA Buttons --- */
.cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  width: 100%;
}

.btn {
  padding: 0.9rem 1.6rem;
  border-radius: var(--border-radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  transition: var(--transition-normal);
  border: none;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, #FFE066 0%, #FFD700 40%, #E67E22 100%);
  color: #06070B;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.45);
}

.btn-gold .arrow-icon {
  transition: transform 0.3s ease;
}

.btn-gold:hover .arrow-icon {
  transform: translateX(4px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  backdrop-filter: blur(15px);
}

.btn-glass:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

/* --- Service Pills --- */
.service-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  width: 100%;
}

.service-pill {
  padding: 0.45rem 1rem;
  background: rgba(18, 20, 30, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-full);
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  backdrop-filter: blur(8px);
  transition: var(--transition-normal);
}

.service-pill i {
  color: var(--gold-primary);
}

.service-pill:hover {
  border-color: var(--gold-border);
  color: var(--text-main);
  transform: translateY(-2px);
  background: rgba(255, 215, 0, 0.08);
}

/* --- Floating Sound / Controls Bar --- */
.floating-controls {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.control-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(18, 20, 30, 0.85);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: var(--transition-normal);
}

.control-btn:hover {
  transform: scale(1.1);
  background: var(--gold-primary);
  color: #06070B;
  box-shadow: 0 10px 30px var(--gold-glow);
}

.sound-wave-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}

.sound-wave-bars span {
  width: 3px;
  height: 100%;
  background: var(--gold-primary);
  border-radius: 2px;
  animation: waveAnim 1s ease-in-out infinite alternate;
}

.sound-wave-bars span:nth-child(1) { animation-delay: 0.1s; }
.sound-wave-bars span:nth-child(2) { animation-delay: 0.3s; }
.sound-wave-bars span:nth-child(3) { animation-delay: 0.2s; }
.sound-wave-bars span:nth-child(4) { animation-delay: 0.4s; }

@keyframes waveAnim {
  0% { height: 20%; }
  100% { height: 100%; }
}

.hidden {
  display: none !important;
}

/* --- Footer --- */
.site-footer {
  position: relative;
  z-index: 10;
  padding: 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 7, 11, 0.85);
  backdrop-filter: blur(15px);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.copyright {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.copyright strong {
  color: var(--text-main);
}

.domain-tag {
  font-size: 0.8rem;
  color: var(--gold-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* --- Modal Base --- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 7, 11, 0.85);
  backdrop-filter: blur(16px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #0F111A;
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius-lg);
  padding: 2.2rem 1.8rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.1);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-backdrop.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-card-large {
  max-width: 820px;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.modal-close:hover {
  background: var(--gold-primary);
  color: #06070B;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 1.8rem;
}

.modal-icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem auto;
  box-shadow: 0 0 25px var(--gold-glow);
}

.modal-title {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Form Controls --- */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 0.9rem;
  color: var(--gold-primary);
  font-size: 0.95rem;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: 0.8rem 0.9rem 0.8rem 2.6rem;
  background: rgba(6, 7, 11, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-md);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition-normal);
}

.text-area-wrapper i {
  top: 0.9rem;
}

.input-wrapper textarea {
  resize: vertical;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.input-wrapper select option {
  background: #0F111A;
  color: var(--text-main);
}

.modal-footer-note {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--text-subtle);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* --- Services Grid inside Modal --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.8rem;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 0.4rem;
}

.services-grid::-webkit-scrollbar {
  width: 5px;
}
.services-grid::-webkit-scrollbar-thumb {
  background: var(--gold-border);
  border-radius: 4px;
}

.service-card {
  background: rgba(6, 7, 11, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  padding: 1.25rem;
  transition: var(--transition-normal);
}

.service-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  background: rgba(255, 215, 0, 0.05);
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.service-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.modal-actions {
  display: flex;
  justify-content: center;
}

/* --- Toast Notifications --- */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  pointer-events: none;
  width: 90%;
  max-width: 420px;
}

.toast {
  background: #0F111A;
  border: 1px solid var(--gold-primary);
  border-radius: var(--border-radius-full);
  padding: 0.8rem 1.4rem;
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.8), 0 0 20px var(--gold-glow);
  opacity: 0;
  transform: translateY(20px);
  animation: toastIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  text-align: center;
  justify-content: center;
}

.toast i {
  color: var(--gold-primary);
  font-size: 1rem;
}

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

/* --- Entrance Animations --- */
.animate-fade-down {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

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

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE OVERHAUL (< 768px & < 500px)
   ========================================================================== */

@media (max-width: 860px) {
  .header-actions .status-badge {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  .header-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .brand-logo {
    gap: 0.6rem;
  }

  .logo-wrapper {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .brand-sub {
    font-size: 0.52rem;
    letter-spacing: 0.2em;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .nav-btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.78rem;
    border-radius: var(--border-radius-full);
  }

  .hero-section {
    padding: 1.5rem 1rem 3rem 1rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
    white-space: normal;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }

  .coming-soon-banner {
    padding: 1.6rem 1.2rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius-md);
  }

  .banner-top-tag {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
  }

  .banner-main-text {
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
  }

  .banner-sub-text {
    font-size: 0.82rem;
    margin-bottom: 1.25rem;
  }

  .cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 2.2rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.2rem;
    font-size: 0.88rem;
  }

  .service-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    width: 100%;
  }

  .service-pill {
    font-size: 0.75rem;
    padding: 0.45rem 0.6rem;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    justify-content: center;
  }

  .footer-left, .footer-right {
    justify-content: center;
    width: 100%;
  }

  .floating-controls {
    bottom: 1.2rem;
    right: 1rem;
  }

  .control-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .brand-name {
    font-size: 0.9rem;
  }
  .brand-sub {
    display: none;
  }
  .nav-btn {
    padding: 0.4rem 0.65rem;
    font-size: 0.75rem;
  }
  .service-pills {
    grid-template-columns: 1fr;
  }
}
