/* =========================================
   LOBBI HOTEL - REFINED PROFESSIONAL DESIGN
   Enhanced with brand-aligned backgrounds
   ========================================= */

:root {
  /* Brand Colors - Logo-Aligned Gradient */
  --brand-green: #4EC475; /* Logo left green */
  --brand-teal: #35A8A7; /* Logo right teal */
  --brand-green-dark: #3DA85E; /* Darker green */
  --brand-teal-dark: #2B8A89; /* Darker teal */
  --brand-gradient: linear-gradient(135deg, #4EC475 0%, #35A8A7 100%);
  
  /* NEW: Soft brand background tints */
  --bg-green-soft: #f0faf3; /* Very soft green tint */
  --bg-teal-soft: #f0f9f9; /* Very soft teal tint */
  --bg-brand-gradient-soft: linear-gradient(135deg, #f4fbf6 0%, #f0f9f9 100%);
  --bg-brand-gradient-medium: linear-gradient(135deg, #e8f7ed 0%, #e5f5f5 100%);
  
  /* Text Colors - Enhanced Contrast */
  --text-dark: #0f172a;
  --text-body: #475569;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  
  /* Backgrounds - Brand-aligned */
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-lighter: #f1f5f9;
  
  /* Shadows & Effects */
  --shadow: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 12px 48px rgba(0,0,0,0.12);
  --shadow-green: 0 8px 32px rgba(78, 196, 117, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  background-color: var(--bg-white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: sans-serif;
  color: var(--text-dark);
  font-weight: 200;
  line-height: 1.25;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   HEADER - REFINED WITH BRAND HINT
   ========================================= */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 3%;
  background: var(--bg-white);
  border-bottom: 1px solid rgba(78, 196, 117, 0.15); /* Subtle green border */
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.98);
}

.brand-logo {
  height: 58px;
  width: auto;
  transition: transform 0.2s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
}

.header-nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}

.nav-link:hover {
  color: var(--brand-green);
}

.nav-link-primary {
  background: var(--brand-green);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
}

.nav-link-primary:hover {
  background: var(--brand-green-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.25);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

@media(max-width: 900px) {
  .header-nav { display: none; }
  .mobile-toggle { display: flex; }
}

/* =========================================
   HERO - WITH SOFT BRAND GRADIENT
   ========================================= */
.hero-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #000000;
  padding: 20px 20px;
}

.hero-text-zone {
  margin-bottom: 40px;
}

.hero-headline {
  font-size: clamp(3rem, 8vw, 6rem); /* Large and bold brand name */
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  margin-bottom: 10px; /* Tight gap to the H2 */
  letter-spacing: -0.02em;
}

.hero-subheadline {
  font-size: clamp(1.5rem, 3vw, 2.2rem); /* Noticeably smaller than H1 */
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.hero-image-container {
  width: 100%;
  max-width: 750px; /* Reduced image size slightly as requested */
  margin-bottom: 20px;
}

.product-shot {
  width: 100%;
  height: auto;
  border-radius: 12px;
  /* Soft glow to prevent image from disappearing into the black background */
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.05); 
}

.hero-bottom-content {
  max-width: 650px;
}

.hero-subtext {
  font-size: 1.3rem;
  color: #bbbbbb; /* Softer gray so the H1/H2 remain the stars */
  line-height: 1.6;
  margin-bottom: 15px;
}
/* =========================================
   BUTTONS - REFINED
   ========================================= */
.btn {
  display: inline-block;
  padding: 16px 42px;
  border-radius: 35px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-large {
  padding: 20px 54px;
  font-size: 1.2rem;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-primary {
  background: var(--brand-green);
  color: white;
  box-shadow: 0 4px 16px rgba(78, 196, 117, 0.25);
}

.btn-primary:hover {
  background: var(--brand-teal);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(53, 168, 167, 0.35);
}

.btn-secondary {
  background: white;
  color: var(--brand-green);
  border: 2px solid var(--brand-green);
}

.btn-secondary:hover {
  background: var(--brand-green);
  color: white;
  transform: translateY(-2px);
}

/* =========================================
   STATS BAR - BRAND GRADIENT BACKGROUND
   ========================================= */
.stats-bar {
  background: var(--bg-brand-gradient-medium); /* Medium brand gradient */
  padding: 70px 7% 75px;
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(78, 196, 117, 0.2);
  border-bottom: 1px solid rgba(53, 168, 167, 0.2);
  position: relative;
}

/* Decorative accent */
.stats-bar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-gradient);
  opacity: 0.3;
}

.stat-item-bar {
  text-align: center;
  min-width: 180px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
}

.stat-text {
  font-size: 1rem;
  color: var(--text-body);
  font-weight: 500;
  line-height: 1.4;
}

/* =========================================
   CONTENT SECTIONS - BRAND-ALIGNED ALTERNATION
   ========================================= */
.content-section {
  padding: 140px 7% 145px;
  background: var(--bg-white);
  position: relative;
}

/* Alt background with soft teal tint */
.content-section.alt-bg {
  background: var(--bg-teal-soft);
}

/* Dark contrast section - for Problem */
.content-section.dark-bg {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
}

.content-section.dark-bg .section-headline {
  color: white;
}

.content-section.dark-bg .section-lead {
  color: #94a3b8;
}

.content-section.dark-bg .feature-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.content-section.dark-bg .feature-box:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--brand-green);
  box-shadow: 0 8px 32px rgba(78, 196, 117, 0.2);
}

.content-section.dark-bg .feature-title {
  color: white;
}

.content-section.dark-bg .feature-text {
  color: #94a3b8;
}

.content-section.dark-bg .feature-icon-large {
  opacity: 1;
}

/* Optional: Green tinted sections */
.content-section.green-bg {
  background: var(--bg-green-soft);
}

/* Gradient background option */
.content-section.gradient-bg {
  background: var(--bg-brand-gradient-soft);
}

.section-container {
  max-width: 1450px;
  margin: 0 auto;
}

.section-header-center {
  text-align: center;
  margin-bottom: 90px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.section-headline {
  font-size: clamp(2.75rem, 5vw, 4rem);
  color: var(--text-dark);
  margin-bottom: 30px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section-lead {
  font-size: 1.35rem;
  color: var(--text-body);
  line-height: 1.75;
  font-weight: 400;
}

/* =========================================
   THREE COLUMN GRID - ENHANCED CARDS
   ========================================= */
.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 70px;
}

.feature-box {
  text-align: center;
  padding: 50px 35px;
  background: white;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(78, 196, 117, 0.1); /* Subtle brand border */
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-green); /* Brand-colored shadow */
  border-color: rgba(78, 196, 117, 0.3);
}

.feature-icon-large {
  font-size: 4.5rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.feature-stat {
  font-size: 4rem;
  font-weight: 900;
  color: var(--brand-green);
  margin-bottom: 20px;
  line-height: 1;
}

.feature-title {
  font-size: 1.65rem;
  margin-bottom: 18px;
  color: var(--text-dark);
  font-weight: 700;
}

.feature-text {
  color: var(--text-body);
  line-height: 1.75;
  font-size: 1.1rem;
}

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

/* =========================================
   TWO COLUMN FEATURES - ENHANCED
   ========================================= */
.two-col-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  margin-bottom: 120px;
}

.two-col-feature.reverse {
  direction: rtl;
}

.two-col-feature.reverse > * {
  direction: ltr;
}

.feature-content {
  max-width: 620px;
}

.feature-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.feature-heading {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.25;
}

.feature-description {
  font-size: 1.25rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 35px;
  font-weight: 400;
}

.feature-checklist {
  list-style: none;
  padding: 0;
}

.feature-checklist li {
  padding: 14px 0;
  padding-left: 38px;
  position: relative;
  color: var(--text-body);
  font-size: 1.15rem;
  line-height: 1.6;
}

.feature-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-green);
  font-weight: bold;
  font-size: 1.3rem;
}

.feature-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

@media(max-width: 1100px) {
  .two-col-feature {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .two-col-feature.reverse {
    direction: ltr;
  }
}

/* =========================================
   ANIMATED CARD STACK - REFINED
   ========================================= */
.card-stack-container {
  display: flex;
  justify-content: center;
  margin: 80px 0;
}

.card-stack {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 420px;
}

.feature-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(78, 196, 117, 0.15);
  text-align: center;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-icon {
  font-size: 4rem;
  margin-bottom: 25px;
  background: var(--bg-green-soft); /* Brand-tinted background */
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.feature-card h3 {
  margin-bottom: 18px;
  color: var(--text-dark);
  font-size: 1.75rem;
}

.feature-card p {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 30px;
  line-height: 1.7;
}

.add-btn {
  background: var(--brand-green);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(46, 204, 113, 0.25);
}

.add-btn:hover {
  background: var(--brand-green-dark);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.35);
}

.dashboard-preview {
  margin-top: 100px;
  text-align: center;
}

.dashboard-preview img {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
}

/* =========================================
   CASE STUDIES - BRAND-ENHANCED CARDS
   ========================================= */
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 80px;
}

.case-study-card {
  background: white;
  padding: 50px;
  border-radius: 24px;
  border: 2px solid rgba(78, 196, 117, 0.15);
  transition: all 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-green);
  border-color: var(--brand-green);
}

.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid var(--bg-green-soft);
}

.case-name {
  font-size: 1.65rem;
  color: var(--text-dark);
  font-weight: 700;
}

.case-badge {
  background: var(--brand-green);
  color: white;
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 700;
}

.case-problem {
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 35px;
  padding: 24px;
  background: #fffbf0;
  border-radius: 16px;
  border-left: 4px solid #f59e0b;
  font-size: 1.15rem;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.case-metric {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-green-soft); /* Brand-tinted background */
  border-radius: 16px;
}

.metric-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand-green);
  margin-bottom: 10px;
  line-height: 1;
}

.metric-label {
  font-size: 0.95rem;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

@media(max-width: 1000px) {
  .case-study-grid {
    grid-template-columns: 1fr;
  }
  
  .case-metrics {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =========================================
   CTA SECTION - BRAND GRADIENT
   ========================================= */
.cta-section {
  padding: 110px 7%;
  background: var(--brand-gradient);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Decorative pattern overlay */
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 40%),
              radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.cta-container {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-size: clamp(2.75rem, 5vw, 4rem);
  color: white;
  margin-bottom: 30px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.cta-text {
  font-size: 1.35rem;
  margin-bottom: 50px;
  opacity: 0.96;
  line-height: 1.75;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--brand-green);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cta-buttons .btn-primary:hover {
  background: var(--bg-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.cta-buttons .btn-secondary {
  background: rgba(255,255,255,0.15);
  border-color: white;
  color: white;
  backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
  background: white;
  color: var(--brand-green);
}

/* =========================================
   FAQ - ENHANCED CONTRAST & READABILITY
   ========================================= */
.faq-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--brand-green);
  box-shadow: 0 4px 20px rgba(78, 196, 117, 0.1);
}

.faq-item.open {
  border-color: var(--brand-green);
  box-shadow: 0 4px 20px rgba(78, 196, 117, 0.15);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 28px;
  background: none;
  border: none;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
  line-height: 1.5;
}

.faq-q:hover {
  color: var(--brand-green);
}

.faq-icon {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--brand-green);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-green-soft);
  border-radius: 50%;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--brand-green);
  color: white;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 28px 24px;
}

.faq-a p {
  color: var(--text-body);
  font-size: 1.1rem;
  line-height: 1.75;
  margin: 0;
}

/* =========================================
   FOOTER - BRAND-ALIGNED DARK
   ========================================= */
.site-footer {
  background: linear-gradient(135deg, #1a3a2f 0%, #1e3a4a 100%);
  color: #94a3b8;
  padding: 0;
}

/* App Download Section - Separate top area */
.footer-app {
  text-align: center;
  padding: 60px 7%;
  background: var(--bg-light);
  border-top: 1px solid #e2e8f0;
}

.footer-app-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.store-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.store-link {
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-link:hover {
  transform: translateY(-3px);
}

.store-badge {
  height: 52px;
  width: auto;
  border-radius: 10px;
}

/* Main Footer Content */
.footer-main {
  padding: 60px 7% 40px;
}

.footer-content {
  max-width: 1450px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(78, 196, 117, 0.2);
  margin-bottom: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  height: 44px;
  width: auto;
}

.footer-tagline {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.3s;
}

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

.footer-bottom {
  max-width: 1450px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 0.95rem;
}

.footer-legal {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-legal a {
  color: #94a3b8;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--brand-green);
}

.footer-divider {
  color: #64748b;
}

@media(max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-brand {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media(max-width: 480px) {
  .store-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 18px;
  }
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media(max-width: 768px) {
  body {
    font-size: 16px;
  }
  
  .site-header {
    padding: 20px 5%;
  }
  
  .content-section {
    padding: 90px 5%;
  }
  
  .stats-bar {
    gap: 50px;
    padding: 50px 5%;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .card-stack {
    max-width: 100%;
    height: 480px;
  }
  
  .section-header-center {
    margin-bottom: 60px;
  }
  
  .hero-modern {
    padding: 80px 5% 70px;
  }
  
  .two-col-feature {
    margin-bottom: 80px;
  }
}

@media(max-width: 480px) {
  .stat-number {
    font-size: 2.5rem;
  }
  
  .feature-stat {
    font-size: 3rem;
  }
  
  .metric-num {
    font-size: 2rem;
  }
}