/* ==========================================================================
   Design System & Variables
   ========================================================================== */
:root {
  /* Color Palette */
  --bg-dark: #070709;
  --bg-card: rgba(16, 16, 20, 0.6);
  --border-card: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(0, 242, 254, 0.3);
  
  --text-white: #F4F4F7;
  --text-muted: #9F9FAD;
  --text-dark: #121214;
  
  --primary: #00F2FE;
  --primary-glow: rgba(0, 242, 254, 0.35);
  --secondary: #10B981;
  --secondary-glow: rgba(16, 185, 129, 0.25);
  
  --accent-blue: #4FACFE;
  
  /* Typography */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Grid & Spacing */
  --max-width: 1200px;
  --container-padding: 2rem;
  
  /* Transitions & Shadows */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-neon: 0 8px 32px 0 rgba(0, 242, 254, 0.12);
  --blur-glass: 16px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #1F1F2E;
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Typography elements */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
}

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

button, input, textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ==========================================================================
   Layout & Reusable Utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Background Ambient Glows */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(140px);
  opacity: 0.15;
  z-index: -1;
  transition: var(--transition-smooth);
}
.glow-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -200px;
  left: -100px;
  animation: floatGlow 20s infinite alternate;
}
.glow-2 {
  width: 600px;
  height: 600px;
  background: var(--accent-blue);
  bottom: -300px;
  right: -100px;
  animation: floatGlow 25s infinite alternate-reverse;
}
.glow-3 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.08;
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(100px, 80px) scale(1.15); }
}

/* Gradients */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-blue) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-title);
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-blue) 100%);
  color: var(--text-dark);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--primary-glow);
}
.btn-glow {
  position: relative;
}
.btn-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-blue) 100%);
  border-radius: 14px;
  z-index: -1;
  opacity: 0.5;
  filter: blur(8px);
  transition: var(--transition-smooth);
}
.btn-glow:hover::after {
  filter: blur(14px);
  opacity: 0.8;
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-white);
  border: 1px solid var(--border-card);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 8px;
}
.btn-block {
  display: flex;
  width: 100%;
}

/* Section Header styling */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}
.section-title {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}
.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
}

/* Scroll reveal class base */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* ==========================================================================
   Header / Navigation Menu
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: rgba(7, 7, 9, 0.7);
  backdrop-filter: blur(var(--blur-glass));
  border-bottom: 1px solid var(--border-card);
  transition: var(--transition-smooth);
}
.header.scrolled {
  height: 70px;
  background: rgba(7, 7, 9, 0.9);
}

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

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}
.logo-text {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}
.logo-text span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}
.nav-link:hover {
  color: var(--primary);
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
}
.mobile-nav-toggle .bar {
  width: 25px;
  height: 2px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: 180px;
  padding-bottom: 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
}

.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 2rem;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulseDot 1.5s infinite alternate;
}
@keyframes pulseDot {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 1; }
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-svg {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 15px 35px rgba(0, 242, 254, 0.07));
}

/* SVG floating keyframes */
.floating-orb-1 {
  animation: orbFloatY 6s infinite ease-in-out alternate;
}
.floating-orb-2 {
  animation: orbFloatY 8s infinite ease-in-out alternate-reverse;
}
@keyframes orbFloatY {
  0% { transform: translateY(0); }
  100% { transform: translateY(-25px); }
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
  padding: 100px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 3rem 2.2rem;
  backdrop-filter: blur(var(--blur-glass));
  transition: var(--transition-smooth);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-neon);
}

.card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 2rem;
}
.card-icon svg {
  width: 100%;
  height: 100%;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   Identity Section (The Cyber Dog)
   ========================================================================== */
.identity-section {
  padding: 100px 0;
}

.identity-card {
  background: linear-gradient(135deg, rgba(16, 16, 20, 0.8) 0%, rgba(8, 8, 10, 0.9) 100%);
  border: 1px solid var(--border-card);
  border-radius: 28px;
  padding: 4.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(var(--blur-glass));
}
.identity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.identity-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 5rem;
}

.identity-image-container {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
}
.avatar-neon-ring {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: rotateRing 15s linear infinite;
  opacity: 0.65;
}
@keyframes rotateRing {
  100% { transform: rotate(360deg); }
}

.identity-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--bg-dark);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.15);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.identity-title {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.identity-paragraph {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.identity-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}
.identity-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.identity-list li strong {
  color: var(--text-white);
}
.identity-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-weight: bold;
  font-size: 1.1rem;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-card);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
}
.flag-icon {
  font-size: 1.2rem;
}

/* ==========================================================================
   Estimator Section
   ========================================================================== */
.estimator-section {
  padding: 100px 0;
}

.estimator-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 3.5rem;
  backdrop-filter: blur(var(--blur-glass));
}

.control-group {
  margin-bottom: 2.5rem;
}
.control-group:last-child {
  margin-bottom: 0;
}
.control-label {
  display: block;
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

/* Selectors Styles */
.platform-selector {
  display: flex;
  gap: 1rem;
}
.platform-selector .selector-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 1.2rem 1rem;
  cursor: pointer;
  font-family: var(--font-title);
  font-weight: 600;
  transition: var(--transition-smooth);
}
.platform-selector .selector-option:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}
.platform-selector .selector-option.active {
  background: rgba(0, 242, 254, 0.06);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}
.option-icon {
  font-size: 1.3rem;
}

.scale-selector {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.scale-selector .selector-option {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.scale-selector .selector-option:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}
.scale-selector .selector-option.active {
  background: rgba(16, 185, 129, 0.06);
  border-color: var(--secondary);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
}
.scale-selector .selector-option h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.scale-selector .selector-option.active h4 {
  color: var(--secondary);
}
.scale-selector .selector-option p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Result display */
.result-card {
  background: rgba(7, 7, 9, 0.5);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.result-title {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-white);
}

.result-main {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 2.5rem;
}
.result-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.metric-value {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.result-divider {
  width: 1px;
  height: 60px;
  background-color: var(--border-card);
}

.complexity-badge-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}
.complexity-badge {
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
.badge-low {
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--secondary);
}
.badge-medium {
  background-color: rgba(239, 68, 68, 0.15);
  color: #EF4444;
}
.badge-high {
  background-color: rgba(167, 61, 245, 0.15);
  color: #A73DF5;
}

.result-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  padding: 100px 0;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 4.5rem;
  backdrop-filter: blur(var(--blur-glass));
}

.contact-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem auto;
}
.contact-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.contact-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.contact-content {
  max-width: 750px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.form-group label {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
}
.form-group input, .form-group textarea {
  background: rgba(7, 7, 9, 0.4);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  padding: 1rem;
  color: var(--text-white);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

.contact-divider {
  text-align: center;
  position: relative;
  margin: 2.5rem 0;
}
.contact-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--border-card);
  z-index: 1;
}
.contact-divider span {
  position: relative;
  background-color: #0d0d11;
  padding: 0 1.2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  z-index: 2;
}

.direct-contact {
  text-align: center;
}
.direct-contact p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.email-copy-container {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(7, 7, 9, 0.5);
  border: 1px solid var(--border-card);
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
}
.email-address {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
}

.copy-success-toast {
  display: block;
  font-size: 0.85rem;
  color: var(--secondary);
  margin-top: 0.8rem;
  opacity: 0;
  transform: translateY(-5px);
  transition: var(--transition-smooth);
}
.copy-success-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border-card);
  background-color: #050507;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--secondary);
}
.footer-brand-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
}
.footer-brand-name span {
  color: var(--primary);
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-links a:hover {
  color: var(--primary);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.4rem;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-desc {
    margin: 0 auto 2.5rem auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .hero-svg {
    max-width: 340px;
  }
  
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid .service-card:last-child {
    grid-column: span 2;
  }
  
  .identity-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .identity-image-container {
    width: 200px;
    height: 200px;
  }
  .identity-list {
    text-align: left;
  }
  
  .estimator-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1.5rem;
  }
  
  .header {
    height: 70px;
  }
  
  /* Mobile Navigation Menu */
  .mobile-nav-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(7, 7, 9, 0.98);
    border-bottom: 1px solid var(--border-card);
    flex-direction: column;
    padding: 3rem 0;
    gap: 2rem;
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
  }
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .mobile-nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .mobile-nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-grid .service-card:last-child {
    grid-column: span 1;
  }
  
  .identity-card {
    padding: 2.5rem 1.5rem;
  }
  .identity-title {
    font-size: 2rem;
  }
  
  .estimator-container {
    padding: 2rem 1.5rem;
  }
  .platform-selector {
    flex-direction: column;
  }
  .result-card {
    padding: 1.5rem;
  }
  .result-main {
    flex-direction: column;
    gap: 1.5rem;
  }
  .result-divider {
    width: 80%;
    height: 1px;
  }
  .metric-value {
    font-size: 2.5rem;
  }
  
  .contact-card {
    padding: 2.5rem 1.5rem;
  }
  .contact-title {
    font-size: 1.8rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .email-copy-container {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .email-address {
    font-size: 0.95rem;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}
