/* ==========================================================================
   VELAN IT SOLUTION - Premium Cyber Obsidian & Radiant Gold Design System
   With Seamless Dynamic Light / Dark Mode & Universal Device Responsiveness
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* --------------------------------------------------------------------------
   1. Theme Variables: Dark (Default) & Vibrant Colorful Light Mode
   -------------------------------------------------------------------------- */
:root,
[data-theme="dark"] {
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-accent: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Theme: Dark Obsidian & Radiant Cyber Gold */
  --bg-darkest: #05060a;
  --bg-dark: #080a10;
  --bg-surface: #0f121d;
  --bg-surface-elevated: #151a29;
  --bg-card: rgba(18, 22, 36, 0.76);
  --bg-card-hover: rgba(25, 31, 51, 0.9);
  --bg-glass: rgba(255, 255, 255, 0.035);
  --navbar-bg: rgba(5, 6, 10, 0.85);

  --gold-primary: #FFB800;
  --gold-light: #FFE066;
  --gold-vibrant: #FFC72C;
  --gold-deep: #D97706;
  --gold-glow: rgba(255, 184, 0, 0.28);
  --gold-glow-intense: rgba(255, 184, 0, 0.5);

  --gold-gradient: linear-gradient(135deg, #FFE873 0%, #FFB800 50%, #D97706 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(217, 119, 6, 0.05) 100%);
  --text-gradient: linear-gradient(135deg, #FFFFFF 20%, #F5D480 60%, #FFB800 100%);

  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #64748B;

  --border-subtle: rgba(255, 215, 0, 0.14);
  --border-card: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 184, 0, 0.45);

  --shadow-gold: 0 10px 30px -10px rgba(255, 184, 0, 0.35);
  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.7);

  --page-radial-1: radial-gradient(circle at 50% 0%, rgba(255, 184, 0, 0.09) 0%, transparent 60%);
  --page-radial-2: radial-gradient(circle at 10% 40%, rgba(217, 119, 6, 0.05) 0%, transparent 50%);
  --page-radial-3: radial-gradient(circle at 90% 80%, rgba(255, 184, 0, 0.05) 0%, transparent 50%);
  
  --logo-filter: drop-shadow(0 0 14px rgba(255, 184, 0, 0.45));
}

/* Light Mode: Vibrant, Colorful, Radiant & High Contrast */
[data-theme="light"] {
  --bg-darkest: #F4F6FB;
  --bg-dark: #FFFFFF;
  --bg-surface: #FFFFFF;
  --bg-surface-elevated: #F8FAFC;
  --bg-card: rgba(255, 255, 255, 0.94);
  --bg-card-hover: #FFFFFF;
  --bg-glass: rgba(0, 0, 0, 0.02);
  --navbar-bg: rgba(255, 255, 255, 0.88);

  --gold-primary: #D97706;
  --gold-light: #B45309;
  --gold-vibrant: #F59E0B;
  --gold-deep: #92400E;
  --gold-glow: rgba(217, 119, 6, 0.18);
  --gold-glow-intense: rgba(217, 119, 6, 0.3);

  --gold-gradient: linear-gradient(135deg, #F59E0B 0%, #D97706 60%, #B45309 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(245, 158, 11, 0.14) 0%, rgba(99, 102, 241, 0.06) 100%);
  --text-gradient: linear-gradient(135deg, #0F172A 20%, #D97706 70%, #B45309 100%);

  --text-main: #0F172A;
  --text-muted: #475569;
  --text-dim: #64748B;

  --border-subtle: rgba(217, 119, 6, 0.22);
  --border-card: rgba(226, 232, 240, 0.95);
  --border-hover: rgba(217, 119, 6, 0.55);

  --shadow-gold: 0 10px 25px -5px rgba(217, 119, 6, 0.28);
  --shadow-card: 0 12px 35px -8px rgba(15, 23, 42, 0.08), 0 4px 10px -2px rgba(245, 158, 11, 0.05);

  --page-radial-1: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.12) 0%, transparent 55%);
  --page-radial-2: radial-gradient(circle at 15% 30%, rgba(99, 102, 241, 0.09) 0%, transparent 50%);
  --page-radial-3: radial-gradient(circle at 85% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);

  --logo-filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-darkest);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  background-image: var(--page-radial-1), var(--page-radial-2), var(--page-radial-3);
  background-attachment: fixed;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: #2b3347;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-main);
}

.text-gradient {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-accent {
  color: var(--gold-primary);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   2. Navbar with Clean Logo, Theme Switcher & Mobile Menu
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: var(--navbar-bg);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: var(--logo-filter);
  transition: transform 0.2s ease, filter 0.3s ease;
}

.brand-link:hover .brand-logo-img {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.2s ease;
  border-radius: 2px;
}

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

.mobile-nav-cta {
  display: none;
}

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

/* Theme Toggle Button */
.theme-toggle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.theme-toggle-btn:hover {
  transform: rotate(20deg) scale(1.08);
  border-color: var(--gold-primary);
  box-shadow: 0 0 16px var(--gold-glow);
}

/* Show sun in dark mode, moon in light mode */
[data-theme="dark"] .theme-icon-sun { display: inline-block; }
[data-theme="dark"] .theme-icon-moon { display: none; }
[data-theme="light"] .theme-icon-sun { display: none; }
[data-theme="light"] .theme-icon-moon { display: inline-block; }

.admin-link-btn {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-card);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-surface);
  transition: all 0.2s ease;
}

.admin-link-btn:hover {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
}

/* Modern Hamburger Button */
.mobile-toggle {
  display: none;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  transition: border-color 0.2s ease;
}

.mobile-toggle .hamburger-bar {
  width: 20px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.mobile-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #000000 !important;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(255, 184, 0, 0.5);
}

.btn-outline {
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  background: var(--gold-gradient-subtle);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.86rem;
}

/* ==========================================================================
   3. Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 70px;
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

.hero-container-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 50px;
}

.hero-text-col {
  text-align: left;
}

.badge-pulse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 9999px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-primary);
  margin-bottom: 22px;
  box-shadow: 0 0 20px var(--gold-glow);
}

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

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

.hero-title {
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.dynamic-word-wrapper {
  display: inline-block;
  position: relative;
  min-height: 1.2em;
}

#heroDynamicWord {
  display: inline-block;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-bottom: 2px dashed rgba(255, 184, 0, 0.45);
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 0 30px 0;
  font-weight: 400;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Trust value chips */
.hero-trust-chips {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  padding: 6px 14px;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.trust-chip:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  color: var(--text-main);
}

/* ==========================================================================
   Hero Visual Right: Cyber Developer Terminal & Holograms
   ========================================================================== */
.hero-visual-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.terminal-showcase-box {
  position: relative;
  width: 100%;
  max-width: 540px;
}

.cyber-terminal {
  background: rgba(12, 15, 25, 0.92);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  box-shadow: var(--shadow-card), 0 0 35px var(--gold-glow);
  overflow: hidden;
  backdrop-filter: blur(18px);
  position: relative;
  font-family: var(--font-mono);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="light"] .cyber-terminal {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(217, 119, 6, 0.3);
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.12), 0 0 30px rgba(245, 158, 11, 0.18);
}

.cyber-terminal:hover {
  transform: translateY(-4px);
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border-card);
}

[data-theme="light"] .terminal-header {
  background: #f1f5f9;
}

.terminal-dots {
  display: flex;
  gap: 7px;
}

.dot-red { width: 11px; height: 11px; border-radius: 50%; background: #ef4444; }
.dot-yellow { width: 11px; height: 11px; border-radius: 50%; background: #f59e0b; }
.dot-green { width: 11px; height: 11px; border-radius: 50%; background: #10b981; }

.terminal-title {
  font-size: 0.76rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  font-weight: 600;
}

.terminal-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}

.terminal-body {
  padding: 22px 24px;
  font-size: 0.84rem;
  line-height: 1.85;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

.terminal-line {
  margin-bottom: 4px;
}

.t-prompt {
  color: var(--gold-primary);
  font-weight: 800;
  margin-right: 8px;
}

.t-cmd {
  color: var(--text-main);
  font-weight: 700;
}

.t-log {
  padding-left: 18px;
  font-size: 0.8rem;
}

.t-success {
  color: #10b981;
  font-weight: 800;
  margin-right: 6px;
}

.t-accent {
  color: var(--gold-primary);
  font-weight: 700;
}

.t-highlight {
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(255, 184, 0, 0.08);
  border-left: 3px solid var(--gold-primary);
  border-radius: 4px;
  color: var(--text-main);
  font-size: 0.82rem;
}

.t-highlight code {
  color: var(--gold-primary);
  font-weight: 700;
}

.t-cursor-line {
  margin-top: 8px;
}

.t-cursor {
  color: var(--gold-primary);
  animation: blink 1s infinite;
  font-weight: 900;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.terminal-watermark-logo {
  position: absolute;
  right: -25px;
  bottom: -25px;
  width: 240px;
  height: auto;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(255, 184, 0, 0.3));
}

[data-theme="light"] .terminal-watermark-logo {
  opacity: 0.06;
}

/* Hologram Badges */
.hologram-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 20px var(--gold-glow);
  backdrop-filter: blur(14px);
  z-index: 3;
  animation: floatHolo 4s ease-in-out infinite alternate;
}

.hologram-top {
  top: -24px;
  right: -20px;
}

.hologram-bottom {
  bottom: -22px;
  left: -18px;
  animation-delay: -2s;
}

@keyframes floatHolo {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.hologram-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  border: 2px solid #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hologram-pulse-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Stats Ribbon */
.stats-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(14px);
  padding: 24px 28px;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.stat-item {
  text-align: center;
  border-right: 1px solid var(--border-card);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ==========================================================================
   4. Section Base Styles
   ========================================================================== */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

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

/* ==========================================================================
   5. Services Grid - Vibrant & Rich in Both Modes
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 34px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card), 0 0 25px var(--gold-glow);
}

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

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin-bottom: 22px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.service-card:hover .service-icon-box {
  background: var(--gold-gradient);
  color: #000;
  transform: scale(1.08);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.service-bullets {
  list-style: none;
  border-top: 1px solid var(--border-card);
  padding-top: 16px;
}

.service-bullets li {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-bullets li::before {
  content: '✓';
  color: var(--gold-primary);
  font-weight: 800;
}

/* ==========================================================================
   6. Portfolio Showcase & Horizontal Scroll Filters on Mobile
   ========================================================================== */
.portfolio-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: var(--bg-surface);
  color: var(--text-muted);
  border: 1px solid var(--border-card);
  padding: 9px 20px;
  border-radius: 9999px;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-gradient);
  color: #000000;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 15px var(--gold-glow);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card), 0 0 30px var(--gold-glow);
}

.project-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--bg-surface-elevated);
  overflow: hidden;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img {
  transform: scale(1.05);
}

.project-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 11px;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
}

.project-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-client {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  font-weight: 600;
}

.project-title {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.project-tagline {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 16px;
  flex-grow: 1;
}

.project-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.tech-tag {
  background: var(--bg-surface-elevated);
  color: var(--text-muted);
  font-size: 0.74rem;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-card);
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-card);
  padding-top: 14px;
}

.btn-project-preview {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease;
  cursor: pointer;
  background: none;
  border: none;
}

.btn-project-preview:hover {
  transform: translateX(3px);
}

.btn-project-live {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-project-live:hover {
  color: var(--text-main);
}

/* ==========================================================================
   7. Interactive Project Cost Estimator
   ========================================================================== */
.estimator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  padding: 45px 35px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.estimator-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 36px;
}

.calc-step {
  margin-bottom: 28px;
}

.calc-step-label {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.calc-step-label span {
  width: 24px;
  height: 24px;
  background: var(--gold-primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}

.calc-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.calc-radio-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  user-select: none;
}

.calc-radio-label input {
  display: none;
}

.calc-radio-label .opt-icon {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.calc-radio-label .opt-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-main);
}

.calc-radio-label .opt-desc {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.calc-radio-label:has(input:checked) {
  background: var(--gold-gradient-subtle);
  border-color: var(--gold-primary);
  box-shadow: 0 0 16px var(--gold-glow);
}

.features-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.calc-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.86rem;
  transition: all 0.2s ease;
}

.calc-check-label input {
  accent-color: var(--gold-primary);
  width: 16px;
  height: 16px;
}

.calc-check-label:has(input:checked) {
  border-color: var(--gold-primary);
  background: var(--gold-gradient-subtle);
}

.calc-result-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.result-header h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.result-price-display {
  margin: 20px 0;
  padding: 18px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px dashed var(--gold-primary);
}

.result-price-range {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1.1;
}

.result-delivery-time {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.result-bullets {
  text-align: left;
  list-style: none;
  margin-bottom: 22px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.result-bullets li {
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}

/* ==========================================================================
   8. About Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-card-visual {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  padding: 45px 35px;
  text-align: center;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.about-logo-center {
  max-width: 250px;
  width: 100%;
  height: auto;
  filter: var(--logo-filter);
  margin-bottom: 20px;
  animation: floatSoft 4s ease-in-out infinite alternate;
}

@keyframes floatSoft {
  0% { transform: translateY(0px) scale(1); }
  100% { transform: translateY(-8px) scale(1.02); }
}

.about-badge-dev {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--gold-primary);
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-primary);
}

.about-text h3 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 18px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 18px;
}

.developer-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}

.dev-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-card);
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border-card);
}

.dev-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gold-gradient-subtle);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.dev-feature-item h4 {
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.dev-feature-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   9. 5-Step Process Workflow
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 28px 18px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--shadow-card);
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
}

.process-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.process-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.process-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ==========================================================================
   10. Tech Stack Badges
   ========================================================================== */
.tech-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.tech-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 10px 18px;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tech-badge:hover {
  border-color: var(--gold-primary);
  background: var(--gold-gradient-subtle);
  transform: translateY(-3px);
  color: var(--gold-primary);
}

/* ==========================================================================
   11. Testimonials
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 32px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.rating-stars {
  color: var(--gold-primary);
  margin-bottom: 14px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-content {
  font-size: 1rem;
  color: var(--text-main);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 22px;
}

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

.client-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.client-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}

.client-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   12. FAQ Accordion
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
  box-shadow: var(--shadow-card);
}

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

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--gold-primary);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 18px;
}

/* ==========================================================================
   13. Contact Section & Quote Form
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

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

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gold-gradient-subtle);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 3px;
  font-weight: 600;
}

.contact-info-val {
  color: var(--text-main);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}

.contact-info-val:hover {
  color: var(--gold-primary);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

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

/* ==========================================================================
   14. Modal & Floating Action
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

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

.modal-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--gold-primary);
  color: #000;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.65);
}

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

.toast {
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid var(--gold-primary);
  padding: 14px 20px;
  border-radius: 9999px;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px var(--gold-glow);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   15. Footer
   ========================================================================== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-card);
  padding: 70px 0 25px 0;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.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.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-primary);
  transform: translateX(3px);
}

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

/* ==========================================================================
   16. Universal Responsive Breakpoints for Mobile, Tablet & Desktop
   ========================================================================== */

/* Laptops & Small Desktops (<= 1199px) */
@media (max-width: 1199px) {
  .nav-links {
    gap: 20px;
  }
  .services-grid,
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets (<= 991px) */
@media (max-width: 991px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-text-col {
    text-align: center;
  }
  .hero-subtitle {
    margin: 0 auto 30px auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust-chips {
    justify-content: center;
  }
  .about-grid,
  .estimator-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .stats-ribbon {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-item {
    border-right: none;
  }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 0;
  }
  .brand-logo-img {
    height: 40px;
    max-width: 140px;
  }
  .admin-link-btn,
  .nav-cta-btn {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }

  /* Mobile Slide-down Menu Drawer */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
    padding: 24px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  }

  .nav-links.mobile-open {
    display: flex;
    animation: slideDownMenu 0.3s ease forwards;
  }

  @keyframes slideDownMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-links a {
    font-size: 1.05rem;
    padding: 10px 14px;
    border-radius: 8px;
    display: block;
  }

  .nav-links a:hover {
    background: var(--bg-card);
  }

  .mobile-nav-cta {
    display: block;
    margin-top: 8px;
  }

  /* Section Spacings & Typography */
  .section {
    padding: 70px 0;
  }
  .hero-section {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  /* Filter buttons horizontal swipe scroll */
  .portfolio-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    margin-bottom: 28px;
  }
  .portfolio-filters::-webkit-scrollbar {
    display: none;
  }

  .services-grid,
  .projects-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .features-check-grid,
  .form-group-row,
  .developer-features {
    grid-template-columns: 1fr;
  }

  .calc-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .estimator-card {
    padding: 30px 18px;
  }

  .contact-form-card {
    padding: 30px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Small SmartPhones (<= 480px) */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .stats-ribbon {
    grid-template-columns: 1fr 1fr;
    padding: 18px 14px;
  }
  .calc-options-grid {
    grid-template-columns: 1fr;
  }
}
