/* ==========================================================================
   CPPIDE Premium Landing Page Stylesheet (Ultra Modern Dark IDE Theme v4.0)
   Palette: #10141A (Dark Bg), #1C2026 (Surface), #58A6FF (Primary Blue), 
            #00E5FF (Neon Cyan), #3FB950 (Success Green), #F85149 (Accent Red)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:ital,wght@0,400;0,500;0,700;1,400&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #10141A;
  --bg-darker: #090C10;
  --bg-translucent: rgba(16, 20, 26, 0.85);
  --surface: #1C2026;
  --surface-light: #242A34;
  --surface-hover: #2E3644;
  --border: #393E48;
  --border-subtle: #242932;
  --border-glow: rgba(88, 166, 255, 0.3);
  
  /* Accents */
  --primary: #58A6FF;
  --primary-rgb: 88, 166, 255;
  --primary-glow: rgba(88, 166, 255, 0.3);
  --cyan: #00E5FF;
  --cyan-rgb: 0, 229, 255;
  --cyan-glow: rgba(0, 229, 255, 0.25);
  --green: #3FB950;
  --green-glow: rgba(63, 185, 80, 0.25);
  --red: #F85149;
  --yellow: #E3B341;
  
  /* Text */
  --text-main: #DFE2EB;
  --text-muted: #8B949E;
  --text-dim: #57606A;
  --terminal-bg: #0D1117;
  
  /* Layout Metrics */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --container-width: 1240px;
  --navbar-height: 76px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Strict Horizontal Overflow Containment */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Fix for Scroll Offset under Fixed Navbar */
section[id] {
  scroll-margin-top: calc(var(--navbar-height) + 20px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Container Utility */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Background Ambient Glows */
.bg-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  max-width: 100vw;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}
.bg-glow-1 {
  top: -180px;
  left: -120px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}
.bg-glow-2 {
  top: 45%;
  right: -180px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
}
.bg-glow-3 {
  bottom: -150px;
  left: 25%;
  background: radial-gradient(circle, var(--green) 0%, transparent 70%);
}

/* Header & Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  z-index: 1000;
  transition: var(--transition-normal);
  border-bottom: 1px solid transparent;
  width: 100%;
  max-width: 100%;
}
.navbar.scrolled {
  background: var(--bg-translucent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand picture {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px var(--primary-glow));
  flex-shrink: 0;
}

.brand-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.brand-text span {
  color: var(--primary);
}

.brand-badge {
  font-size: 0.62rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: #000;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Mobile Toggle & Drawer Overlay */
.mobile-nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-main);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.mobile-nav-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  height: calc(100vh - var(--navbar-height));
  background: rgba(16, 20, 26, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  padding: 24px 20px;
  gap: 20px;
  overflow-y: auto;
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  pointer-events: none;
  box-sizing: border-box;
}

.mobile-nav-overlay.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  max-width: 100%;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #2B7FFF);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(88, 166, 255, 0.45);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-main);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--surface-light);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-cyan {
  background: linear-gradient(135deg, var(--cyan), #00B4D8);
  color: #05131C;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--cyan-glow);
}
.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.45);
}

.btn-store {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
}
.btn-store:hover {
  background: var(--surface-light);
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 229, 255, 0.2);
}
.btn-store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.btn-store-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-store-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
}

.soon-tag {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(227, 179, 65, 0.15);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 6px;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: 80px;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-text-content {
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(88, 166, 255, 0.1);
  border: 1px solid rgba(88, 166, 255, 0.3);
  border-radius: 30px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  max-width: 100%;
  word-break: break-word;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: #ffffff;
  margin-bottom: 20px;
  word-break: break-word;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 50%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Fira Code', monospace;
}

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

/* Hero Screenshot Frame Placeholder */
/* Hero Screenshot */
.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.hero-mockup-frame {
  width: 100%;
  max-width: 340px;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: var(--transition-normal);
  box-shadow: none;
  box-sizing: border-box;
}

.hero-mockup-frame:hover {
  transform: translateY(-4px);
}

.hero-mockup-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Technology & Toolchain Marquee Strip */
.tech-marquee-strip {
  background: var(--bg-darker);
  border-y: 1px solid var(--border-subtle);
  padding: 20px 0;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.tech-marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 8px 18px;
  border-radius: 30px;
  font-family: 'Fira Code', monospace;
  font-size: 0.85rem;
  font-weight: 600;
}

.marquee-badge span {
  color: var(--cyan);
}

/* Section Styling */
.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  width: 100%;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.section-tag {
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--cyan);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 14px;
  word-break: break-word;
}

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

/* Bento Grid Features Layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.bento-card {
  background: linear-gradient(145deg, var(--surface) 0%, rgba(28, 32, 38, 0.6) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  position: relative;
  box-sizing: border-box;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px var(--primary-glow);
}

.bento-large {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(88, 166, 255, 0.12) 0%, var(--surface) 100%);
  border-color: rgba(88, 166, 255, 0.3);
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(88, 166, 255, 0.1);
  border: 1px solid rgba(88, 166, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 18px;
  transition: var(--transition-fast);
}
.feature-link:hover {
  color: var(--cyan);
}

/* Use-Cases Applications Section */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  width: 100%;
}

.usecase-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition-normal);
}

.usecase-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px var(--cyan-glow);
  transform: translateY(-4px);
}

.usecase-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.usecase-info h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.usecase-info p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Architecture & Tooling Section */
.architecture-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  width: 100%;
}

.architecture-card {
  background: linear-gradient(145deg, var(--surface) 0%, rgba(28, 32, 38, 0.6) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  box-sizing: border-box;
}

.architecture-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 30px var(--cyan-glow);
  transform: translateY(-4px);
}

.arch-header {
  margin-bottom: 14px;
}

.arch-badge {
  font-size: 0.72rem;
  font-family: 'Fira Code', monospace;
  font-weight: 700;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.arch-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.arch-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.arch-tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-pill {
  background: var(--bg-darker);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-family: 'Fira Code', monospace;
  font-weight: 500;
}

/* Developer Section */
.developer-card {
  background: linear-gradient(145deg, var(--surface) 0%, var(--surface-light) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

.developer-avatar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.developer-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  padding: 4px;
  background: var(--bg-darker);
  box-shadow: 0 0 25px var(--primary-glow);
  object-fit: cover;
  margin-bottom: 14px;
}

.developer-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
}

.developer-handle {
  font-size: 0.88rem;
  font-family: 'Fira Code', monospace;
  color: var(--primary);
}

.developer-bio-content h3 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.developer-bio-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.developer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.dev-tag {
  background: rgba(88, 166, 255, 0.1);
  border: 1px solid rgba(88, 166, 255, 0.25);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
}

.developer-socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Scroll-Driven Sticky Showcase Section (Pure & Unbound)
   ========================================================================== */
.showcase-section {
  position: relative;
  padding-top: 60px;
  padding-bottom: 80px;
}

.showcase-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  width: 100%;
}

/* Left Column Stories */
.showcase-stories-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.showcase-story-card {
  padding: 40px 0;
  box-sizing: border-box;
  width: 100%;
  transition: opacity 0.4s ease;
  opacity: 0.25;
}

.showcase-story-card.active {
  opacity: 1;
}

.showcase-step-badge {
  display: inline-block;
  font-family: 'Fira Code', monospace;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(88, 166, 255, 0.12);
  border: 1px solid rgba(88, 166, 255, 0.3);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.story-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.story-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.story-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.story-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.5;
}

/* Enforce strict 18px SVG icon sizes */
.story-bullets li svg,
.bullet-icon {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0 !important;
  color: var(--green) !important;
}

.story-mobile-image {
  display: none;
}

/* Right Column Sticky Screen Frame (Desktop) */
@media (min-width: 1024px) {
  .showcase-story-card {
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .showcase-sticky-column {
    position: sticky;
    top: 120px;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .showcase-sticky-viewport {
    position: relative;
    width: 100%;
    max-width: 290px;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .showcase-sticky-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .showcase-sticky-screen.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .showcase-sticky-screen picture {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .showcase-sticky-screen img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.7));
  }
}

/* Mobile & Tablet Styles (< 1024px) */
@media (max-width: 1023px) {
  .showcase-grid-container {
    display: block;
  }

  .showcase-sticky-column {
    display: none;
  }

  .showcase-stories-column {
    gap: 48px;
  }

  .showcase-story-card {
    opacity: 1;
    min-height: auto;
    padding: 0 0 36px 0;
    border-bottom: 1px solid var(--border-subtle);
  }
  .showcase-story-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .story-title {
    font-size: 1.65rem;
  }

  .story-mobile-image {
    display: block;
    width: 100%;
    margin-top: 24px;
    text-align: center;
  }

  .story-mobile-image img {
    max-width: 270px;
    width: 100%;
    height: auto;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  }
}

/* Comparison Table Horizontal Wrapper */
.table-wrapper {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 100%;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.comparison-table th, 
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.92rem;
}

.comparison-table th {
  background: var(--surface-light);
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
}

.comparison-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.015);
}

.comparison-table tbody tr:hover {
  background: rgba(88, 166, 255, 0.03);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.highlight-col {
  background: rgba(88, 166, 255, 0.04);
}
th.highlight-col {
  color: var(--primary);
}

.check-icon {
  color: var(--green);
  font-weight: 800;
}
.cross-icon {
  color: var(--red);
}

/* FAQ Accordion */
.faq-grid {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
  width: 100%;
  box-sizing: border-box;
}

.faq-question {
  padding: 18px 22px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-question:hover {
  color: var(--primary);
}

.faq-toggle {
  width: 22px;
  height: 22px;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}
.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}
.faq-item.active .faq-answer {
  max-height: 260px;
  padding-bottom: 20px;
}

/* Footer Section */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px 0;
  position: relative;
  z-index: 1;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  width: 100%;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 12px;
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* RESPONSIVE MEDIA QUERIES FOR MOBILE & TABLET DEVICES */
@media (max-width: 1100px) {
  .nav-links {
    gap: 16px;
  }
  .nav-link {
    font-size: 0.85rem;
  }
  .nav-actions {
    gap: 10px;
  }
  .nav-actions .btn {
    padding: 8px 12px;
    font-size: 0.82rem;
  }
}

@media (max-width: 992px) {
  .nav-links, .nav-actions {
    display: none !important;
  }
  .mobile-nav-toggle {
    display: flex !important;
  }
  .mobile-nav-overlay {
    display: flex;
  }
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-badge, .hero-cta {
    justify-content: center;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-mockup-frame {
    min-height: 380px;
    padding: 24px 16px;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-large {
    grid-column: span 2;
  }
  .usecase-grid {
    grid-template-columns: 1fr;
  }
  .architecture-grid {
    grid-template-columns: 1fr;
  }
  .developer-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }
  .developer-avatar-wrapper {
    margin-bottom: 8px;
  }
  .developer-tags, .developer-socials {
    justify-content: center;
  }
  .showcase-pane {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta .btn, .hero-cta .btn-store {
    width: 100%;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 18px;
  }
  .stat-number {
    font-size: 1.25rem;
  }
  .stat-label {
    font-size: 0.75rem;
  }
  .section {
    padding: 50px 0;
  }
  .section-header {
    margin-bottom: 32px;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .section-subtitle {
    font-size: 0.92rem;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-large {
    grid-column: span 1;
  }
  .bento-card {
    padding: 22px 18px;
  }
  .usecase-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }
  .architecture-card {
    padding: 22px 18px;
  }
  .developer-card {
    padding: 22px 16px;
  }
  .developer-bio-content h3 {
    font-size: 1.45rem;
  }
  .showcase-content {
    padding: 20px 14px;
  }
  .showcase-pane {
    gap: 20px;
  }
  .showcase-text h3 {
    font-size: 1.45rem;
  }
  .placeholder-screen-frame {
    min-height: 260px;
    padding: 20px 12px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .brand-text {
    font-size: 1.15rem;
  }
  .brand-badge {
    display: none;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }
  .hero-mockup-frame {
    padding: 0;
  }
}

/* ==========================================================================
   Changelog Timeline Page Styles
   ========================================================================== */
.changelog-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 24px 80px 24px;
}

.changelog-header-main {
  text-align: center;
  margin-bottom: 50px;
}

.changelog-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.changelog-timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 20px;
  bottom: 15px;
  width: 2px;
  background: var(--border);
  z-index: 1;
}

.changelog-item {
  position: relative;
  padding-left: 56px;
}

.changelog-node {
  position: absolute;
  left: 11px;
  top: 24px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 3px solid var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
  z-index: 2;
}

.changelog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition-normal);
}

.changelog-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

.changelog-version-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

.changelog-version-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.changelog-version-title h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
}

.changelog-badge-main {
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(88, 166, 255, 0.15);
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.changelog-date {
  font-size: 0.88rem;
  color: var(--text-dim);
}

.changelog-cat-group {
  margin-bottom: 20px;
}

.changelog-cat-group:last-child {
  margin-bottom: 0;
}

.changelog-cat-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.cat-added {
  background: rgba(46, 160, 67, 0.18);
  color: #3fb950;
  border: 1px solid rgba(46, 160, 67, 0.4);
}

.cat-fixed {
  background: rgba(248, 81, 73, 0.18);
  color: #f85149;
  border: 1px solid rgba(248, 81, 73, 0.4);
}

.cat-improved {
  background: rgba(88, 166, 255, 0.18);
  color: #58a6ff;
  border: 1px solid rgba(88, 166, 255, 0.4);
}

.cat-changed {
  background: rgba(227, 179, 65, 0.18);
  color: #e3b341;
  border: 1px solid rgba(227, 179, 65, 0.4);
}

.changelog-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.changelog-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.changelog-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--primary);
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .changelog-wrapper {
    padding: 100px 16px 60px 16px;
  }
  .changelog-item {
    padding-left: 0;
  }
  .changelog-node, .changelog-timeline::before {
    display: none;
  }
  .changelog-card {
    padding: 20px 16px;
  }
  .changelog-version-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ==========================================================================
   Telegram Community Section Styling
   ========================================================================== */
.community-section {
  position: relative;
}

.telegram-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(36, 161, 222, 0.12) 0%, rgba(13, 17, 23, 0.95) 50%, rgba(0, 229, 255, 0.08) 100%);
  border: 1px solid rgba(36, 161, 222, 0.35);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(36, 161, 222, 0.15);
}

.telegram-banner-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(36, 161, 222, 0.25) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.telegram-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.telegram-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(36, 161, 222, 0.15);
  border: 1px solid rgba(36, 161, 222, 0.4);
  border-radius: 30px;
  color: #24A1DE;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.telegram-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.telegram-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.telegram-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.telegram-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 20, 26, 0.7);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
}

.telegram-pill svg {
  color: #24A1DE;
}

.btn-telegram-hero {
  background: linear-gradient(135deg, #24A1DE 0%, #0088CC 100%);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 25px rgba(36, 161, 222, 0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.btn-telegram-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(36, 161, 222, 0.6);
  color: #ffffff;
}

.btn-telegram-sm {
  background: rgba(36, 161, 222, 0.12);
  border: 1px solid rgba(36, 161, 222, 0.35);
  color: #24A1DE;
}

.btn-telegram-sm:hover {
  background: #24A1DE;
  color: #ffffff;
  border-color: #24A1DE;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(36, 161, 222, 0.4);
}

@media (max-width: 768px) {
  .telegram-banner {
    padding: 36px 20px;
  }
  .telegram-title {
    font-size: 1.8rem;
  }
  .telegram-subtitle {
    font-size: 0.98rem;
  }
}

/* ==========================================================================
   Legal Pages Styling (Privacy Policy & Terms of Service)
   ========================================================================== */
.legal-wrapper {
  padding-top: 130px;
  padding-bottom: 90px;
  max-width: 920px;
  margin: 0 auto;
}

.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.legal-header {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 28px;
  margin-bottom: 36px;
}

.legal-header h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.legal-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-body {
  color: var(--text-main);
  line-height: 1.8;
  font-size: 1rem;
}

.legal-body h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 36px;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
  border-left: 3px solid var(--primary);
  padding-left: 14px;
}

.legal-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-body p {
  margin-bottom: 18px;
  color: var(--text-muted);
}

.legal-body ul, .legal-body ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.legal-body li {
  margin-bottom: 10px;
  color: var(--text-muted);
}

.legal-body strong {
  color: #ffffff;
}

.legal-highlight-box {
  background: rgba(88, 166, 255, 0.08);
  border: 1px solid rgba(88, 166, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
  color: var(--text-main);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .legal-wrapper {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .legal-card {
    padding: 28px 20px;
  }
  .legal-header h1 {
    font-size: 1.9rem;
  }
}

/* ==========================================================================
   Contact Us Page Styling
   ========================================================================== */
.contact-wrapper {
  padding-top: 130px;
  padding-bottom: 90px;
  max-width: 1140px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px auto;
}

.contact-header h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

/* Contact Info Column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition-fast);
}

.contact-info-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(88, 166, 255, 0.12);
  border: 1px solid rgba(88, 166, 255, 0.3);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.telegram-icon {
  background: rgba(36, 161, 222, 0.12);
  border-color: rgba(36, 161, 222, 0.35);
  color: #24A1DE;
}

.github-icon {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.contact-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.contact-info-card p a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  word-break: break-all;
}

.contact-info-card p a:hover {
  text-decoration: underline;
}

.info-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

/* Contact Form Column */
.contact-form-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-group label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-group label .required {
  color: var(--red);
}

.form-input {
  width: 100%;
  background: var(--bg-darker);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.98rem;
  transition: var(--transition-fast);
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.char-counter {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 2px;
}

.btn-submit-full {
  width: 100%;
  margin-top: 8px;
}

.form-alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
}

.alert-success {
  background: rgba(63, 185, 80, 0.15);
  border: 1px solid rgba(63, 185, 80, 0.4);
  color: #3FB950;
}

.alert-error {
  background: rgba(248, 81, 73, 0.15);
  border: 1px solid rgba(248, 81, 73, 0.4);
  color: #F85149;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .contact-wrapper {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .contact-form-col {
    padding: 24px 18px;
  }
  .contact-header h1 {
    font-size: 2rem;
  }
}
