/* ==========================================================================
   CSS Variables & Premium Light Theme Configuration
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Syne:wght@600;700;800&display=swap');

:root {
   --bg-main: #f8fafc;
   --bg-alt: #ffffff;
   --bg-dark: #0f172a;
   --bg-darker: #020617;
   --text-main: #0f172a;
   --text-muted: #475569;
   --text-light: #f8fafc;
   --primary: #2563eb;
   --primary-hover: #1d4ed8;
   --primary-glow: rgba(37, 99, 235, 0.2);
   --secondary: #0ea5e9;
   --accent: #f59e0b;
   /* Amber for ROI/Growth metrics */
   --gradient-brand: linear-gradient(135deg, var(--primary), var(--secondary));
   --border-soft: rgba(15, 23, 42, 0.08);
   --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
   --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
   --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
   --font-sans: 'Plus Jakarta Sans', sans-serif;
   --font-display: 'Syne', sans-serif;
   --nav-height: 90px;
   --transition-fast: 0.3s ease;
   --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
   font-size: 16px;
}

body {
   font-family: var(--font-sans);
   background-color: var(--bg-main);
   color: var(--text-main);
   line-height: 1.7;
   overflow-x: hidden;
   -webkit-font-smoothing: antialiased;
}

a {
   text-decoration: none;
   color: inherit;
   transition: var(--transition-fast);
}

ul {
   list-style: none;
}

img {
   max-width: 100%;
   height: auto;
   display: block;
}

button {
   cursor: pointer;
   border: none;
   background: none;
   font-family: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: var(--font-display);
   font-weight: 700;
   line-height: 1.1;
   color: var(--text-main);
}

.text-gradient {
   background: var(--gradient-brand);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.section-title {
   font-size: 3.5rem;
   margin-bottom: 1.2rem;
   text-align: center;
   letter-spacing: -1px;
}

.section-subtitle {
   font-size: 1.15rem;
   color: var(--text-muted);
   text-align: center;
   max-width: 700px;
   margin: 0 auto 4rem auto;
}

/* Layout Utility */
.container {
   width: 100%;
   max-width: 1320px;
   margin: 0 auto;
   padding: 0 2rem;
}

.section-padding {
   padding: 8rem 0;
}

.relative {
   position: relative;
}

.hidden {
   display: none !important;
}

/* Custom Grid Background for Light Theme */
.grid-bg {
   background-size: 40px 40px;
   background-image: linear-gradient(to right, rgba(15, 23, 42, 0.03) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
}

/* ==========================================================================
   Strict Global Header
   ========================================================================== */
.site-header {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   height: var(--nav-height);
   background: var(--bg-dark);
   border-bottom: 1px solid rgba(255, 255, 255, 0.05);
   z-index: 1000;
   transition: var(--transition-fast);
}

.site-header.scrolled {
   height: 75px;
   background: rgba(15, 23, 42, 0.98);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
   backdrop-filter: blur(10px);
}

.nav-container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 100%;
}

.logo-wrapper img {
   height: 100px;
   filter: brightness(0) invert(1);
}

.main-nav ul {
   display: flex;
   gap: 3rem;
}

.main-nav a {
   font-size: 0.95rem;
   font-weight: 600;
   color: var(--text-light);
   position: relative;
   padding: 0.5rem 0;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.main-nav a::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 0;
   height: 2px;
   background: var(--accent);
   transition: var(--transition-fast);
}

.main-nav a:hover::after {
   width: 100%;
}

.header-cta {
   background: var(--primary);
   color: #fff;
   padding: 0.8rem 2rem;
   border-radius: 4px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   box-shadow: 0 4px 15px var(--primary-glow);
   transition: var(--transition-fast);
}

.header-cta:hover {
   background: var(--primary-hover);
   transform: translateY(-2px);
}

.mobile-toggle {
   display: none;
   flex-direction: column;
   gap: 6px;
   width: 30px;
   cursor: pointer;
   z-index: 1001;
}

.mobile-toggle span {
   display: block;
   height: 2px;
   width: 100%;
   background: #fff;
   transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section & Clean Animations
   ========================================================================== */
.hero-section {
   min-height: 100vh;
   display: flex;
   align-items: center;
   position: relative;
   padding-top: var(--nav-height);
   background-color: var(--bg-alt);
   overflow: hidden;
}

.hero-grid {
   display: grid;
   grid-template-columns: 1.2fr 0.8fr;
   gap: 4rem;
   align-items: center;
   position: relative;
   z-index: 2;
}

.hero-content h1 {
   font-size: 5rem;
   margin-bottom: 1.5rem;
   letter-spacing: -2px;
}

.hero-content p {
   font-size: 1.25rem;
   color: var(--text-muted);
   margin-bottom: 3rem;
   max-width: 550px;
   font-weight: 500;
}

.hero-buttons {
   display: flex;
   gap: 1.5rem;
}

.btn-primary {
   background: var(--text-main);
   color: #fff;
   padding: 1.2rem 2.5rem;
   border-radius: 4px;
   font-size: 1.1rem;
   font-weight: 700;
   transition: var(--transition-fast);
   display: inline-flex;
   align-items: center;
   gap: 12px;
}

.btn-primary:hover {
   background: var(--primary);
   box-shadow: 0 15px 30px var(--primary-glow);
   transform: translateY(-3px);
}

.btn-secondary {
   background: transparent;
   border: 2px solid var(--text-main);
   color: var(--text-main);
   padding: 1.2rem 2.5rem;
   border-radius: 4px;
   font-size: 1.1rem;
   font-weight: 700;
   transition: var(--transition-fast);
}

.btn-secondary:hover {
   background: var(--bg-main);
   transform: translateY(-3px);
}

/* Geometric Hero Art */
.hero-visuals {
   position: relative;
   height: 600px;
}

.geo-shape {
   position: absolute;
   border-radius: 20px;
   box-shadow: var(--shadow-lg);
   animation: floatFloat 8s infinite ease-in-out;
}

.shape-1 {
   width: 300px;
   height: 400px;
   top: 50px;
   right: 20px;
   background: var(--gradient-brand);
   z-index: 2;
}

.shape-2 {
   width: 250px;
   height: 250px;
   bottom: 50px;
   left: 0;
   background: var(--bg-alt);
   border: 1px solid var(--border-soft);
   z-index: 3;
   display: flex;
   flex-direction: column;
   justify-content: center;
   padding: 2rem;
   animation-delay: 1s;
}

.shape-2-title {
   font-size: 3rem;
   font-family: var(--font-display);
   color: var(--text-main);
}

.shape-2-sub {
   color: var(--accent);
   font-weight: 700;
   font-size: 1.1rem;
}

/* ==========================================================================
   About / Stats Section
   ========================================================================== */
.about-section {
   background: var(--bg-main);
   border-top: 1px solid var(--border-soft);
}

.about-grid {
   display: grid;
   grid-template-columns: 1fr 1.2fr;
   gap: 5rem;
   align-items: center;
}

.about-stats {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 2rem;
}

.stat-box {
   background: var(--bg-alt);
   padding: 3rem 2rem;
   border-radius: 8px;
   border: 1px solid var(--border-soft);
   text-align: left;
   box-shadow: var(--shadow-sm);
   transition: var(--transition-slow);
   position: relative;
   overflow: hidden;
}

.stat-box::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 4px;
   height: 100%;
   background: var(--primary);
   transform: scaleY(0);
   transform-origin: bottom;
   transition: transform 0.4s ease;
}

.stat-box:hover {
   transform: translateY(-10px);
   box-shadow: var(--shadow-md);
}

.stat-box:hover::before {
   transform: scaleY(1);
}

.stat-number {
   font-size: 3.5rem;
   font-family: var(--font-display);
   font-weight: 800;
   color: var(--text-main);
   margin-bottom: 0.5rem;
   line-height: 1;
}

.stat-label {
   color: var(--text-muted);
   font-weight: 600;
   font-size: 1rem;
   text-transform: uppercase;
   letter-spacing: 1px;
}

/* ==========================================================================
   Services Section (Clean White Cards)
   ========================================================================== */
.services-section {
   background: var(--bg-alt);
}

.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2.5rem;
}

.service-card {
   background: var(--bg-alt);
   border: 1px solid var(--border-soft);
   border-radius: 8px;
   padding: 3rem;
   position: relative;
   transition: all 0.4s ease;
   box-shadow: var(--shadow-sm);
}

.service-card:hover {
   transform: translateY(-12px);
   box-shadow: var(--shadow-lg);
   border-color: var(--primary);
}

.service-icon {
   width: 60px;
   height: 60px;
   background: var(--bg-main);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 2rem;
   color: var(--primary);
   transition: var(--transition-fast);
}

.service-card:hover .service-icon {
   background: var(--primary);
   color: #fff;
}

.service-card h3 {
   font-size: 1.6rem;
   margin-bottom: 1rem;
}

.service-card p {
   color: var(--text-muted);
   margin-bottom: 0;
   line-height: 1.6;
}

/* ==========================================================================
   Industry Specific Section
   ========================================================================== */
.industry-section {
   background: var(--bg-main);
}

.industry-track {
   display: flex;
   gap: 2rem;
   overflow-x: auto;
   padding: 2rem 0;
   scrollbar-width: none;
}

.industry-track::-webkit-scrollbar {
   display: none;
}

.industry-card {
   min-width: 320px;
   background: var(--bg-dark);
   color: var(--text-light);
   padding: 3rem 2.5rem;
   border-radius: 8px;
   flex-shrink: 0;
   transition: var(--transition-fast);
   position: relative;
   overflow: hidden;
}

.industry-card::after {
   content: '';
   position: absolute;
   bottom: -20px;
   right: -20px;
   width: 100px;
   height: 100px;
   background: var(--primary);
   border-radius: 50%;
   opacity: 0.1;
   transition: var(--transition-fast);
}

.industry-card:hover {
   transform: scale(1.03);
}

.industry-card:hover::after {
   transform: scale(2);
   opacity: 0.2;
}

.industry-card h4 {
   font-size: 1.4rem;
   margin-bottom: 1rem;
   color: #fff;
}

.industry-card p {
   color: #cbd5e1;
}

/* ==========================================================================
   Interactive Calculator Section
   ========================================================================== */
.calc-section {
   background: var(--bg-alt);
}

.calc-container {
   background: var(--bg-main);
   border: 1px solid var(--border-soft);
   border-radius: 12px;
   padding: 4rem;
   max-width: 900px;
   margin: 0 auto;
   box-shadow: var(--shadow-md);
}

.calc-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 2.5rem;
   margin-bottom: 2.5rem;
}

.calc-group {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.calc-group label {
   font-size: 1rem;
   font-weight: 700;
   color: var(--text-main);
}

.calc-group select,
.calc-group input {
   width: 100%;
   padding: 1.2rem;
   background: var(--bg-alt);
   border: 2px solid var(--border-soft);
   border-radius: 6px;
   color: var(--text-main);
   font-size: 1.1rem;
   font-family: inherit;
   font-weight: 500;
   outline: none;
   transition: border 0.3s;
}

.calc-group select:focus,
.calc-group input:focus {
   border-color: var(--primary);
}

.calc-result {
   margin-top: 3rem;
   padding-top: 2.5rem;
   border-top: 2px dashed var(--border-soft);
   text-align: center;
}

.result-value {
   font-size: 4.5rem;
   font-family: var(--font-display);
   font-weight: 800;
   color: var(--text-main);
}

/* ==========================================================================
   Sample Reports Section (Visual Data)
   ========================================================================== */
.reports-section {
   background: var(--bg-dark);
   color: var(--text-light);
}

.reports-section .section-title,
.reports-section .section-subtitle {
   color: var(--text-light);
}

.report-visual {
   background: var(--bg-darker);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 8px;
   padding: 4rem 2rem;
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
   height: 450px;
}

/* CSS Only Line/Area Chart Representation */
.chart-container {
   width: 80%;
   height: 200px;
   display: flex;
   align-items: flex-end;
   gap: 2%;
   position: relative;
}

.chart-bar {
   flex: 1;
   background: var(--accent);
   animation: barGrow 2s ease-out forwards;
   transform-origin: bottom;
   opacity: 0;
   border-radius: 4px 4px 0 0;
}

.chart-bar:nth-child(1) {
   height: 20%;
   animation-delay: 0.1s;
   background: rgba(245, 158, 11, 0.4);
}

.chart-bar:nth-child(2) {
   height: 35%;
   animation-delay: 0.2s;
   background: rgba(245, 158, 11, 0.6);
}

.chart-bar:nth-child(3) {
   height: 50%;
   animation-delay: 0.3s;
   background: rgba(245, 158, 11, 0.8);
}

.chart-bar:nth-child(4) {
   height: 80%;
   animation-delay: 0.4s;
   background: rgba(245, 158, 11, 1);
}

.chart-bar:nth-child(5) {
   height: 100%;
   animation-delay: 0.5s;
   background: var(--primary);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonial-section {
   background: var(--bg-main);
}

.testimonial-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 3rem;
}

.testimonial-card {
   background: var(--bg-alt);
   padding: 3rem;
   border-radius: 8px;
   border: 1px solid var(--border-soft);
   box-shadow: var(--shadow-md);
   position: relative;
}

.quote-icon {
   font-size: 5rem;
   color: var(--primary-glow);
   position: absolute;
   top: 0rem;
   right: 2rem;
   font-family: serif;
   line-height: 1;
}

.client-text {
   font-size: 1.15rem;
   font-weight: 500;
   color: var(--text-main);
   margin-bottom: 2.5rem;
   z-index: 1;
   position: relative;
}

.client-info {
   display: flex;
   align-items: center;
   gap: 1.2rem;
}

.client-avatar {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   background: var(--text-main);
}

.client-name {
   font-weight: 700;
   color: var(--text-main);
   font-size: 1.1rem;
}

.client-role {
   font-size: 0.9rem;
   color: var(--text-muted);
   font-weight: 600;
   text-transform: uppercase;
}

/* ==========================================================================
   Contact / Quote Section
   ========================================================================== */
.contact-section {
   background: var(--bg-alt);
   position: relative;
}

.contact-grid {
   display: grid;
   grid-template-columns: 1fr 1.2fr;
   gap: 5rem;
}

.contact-info-block {
   padding-right: 2rem;
}

.contact-info-block h2 {
   font-size: 3.5rem;
   margin-bottom: 1.5rem;
}

.contact-info-block p {
   color: var(--text-muted);
   margin-bottom: 3rem;
   font-size: 1.15rem;
}

.contact-detail {
   display: flex;
   align-items: center;
   gap: 1.5rem;
   margin-bottom: 2rem;
}

.contact-icon {
   width: 55px;
   height: 55px;
   border-radius: 50%;
   background: var(--bg-main);
   color: var(--primary);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.25rem;
   border: 1px solid var(--border-soft);
}

.contact-form {
   background: var(--bg-main);
   padding: 4rem;
   border-radius: 12px;
   border: 1px solid var(--border-soft);
   box-shadow: var(--shadow-lg);
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-control {
   width: 100%;
   padding: 1.25rem;
   background: var(--bg-alt);
   border: 2px solid var(--border-soft);
   border-radius: 6px;
   color: var(--text-main);
   font-size: 1.05rem;
   font-family: inherit;
   font-weight: 500;
   transition: var(--transition-fast);
}

.form-control:focus {
   outline: none;
   border-color: var(--primary);
   background: #fff;
}

textarea.form-control {
   resize: vertical;
   min-height: 160px;
}

.btn-submit {
   width: 100%;
   border: none;
   cursor: pointer;
   text-align: center;
   justify-content: center;
   font-size: 1.2rem;
   padding: 1.5rem;
}

/* ==========================================================================
   Strict Global Footer (Exactly identical across pages - DARK for contrast)
   ========================================================================== */
.site-footer {
   background: var(--bg-darker);
   color: #fff;
   padding: 6rem 0 2rem 0;
   position: relative;
   overflow: hidden;
}

.footer-grid {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1.5fr;
   gap: 4rem;
   margin-bottom: 5rem;
}

.footer-about img {
   height: 100px;
   margin-bottom: 1.5rem;
   filter: brightness(0) invert(1);
}

.footer-about p {
   color: #94a3b8;
   margin-bottom: 2rem;
   max-width: 320px;
   font-size: 1.05rem;
}

.social-links {
   display: flex;
   gap: 1rem;
}

.social-link {
   width: 45px;
   height: 45px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.05);
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-weight: 600;
   transition: var(--transition-fast);
}

.social-link:hover {
   background: var(--primary);
   transform: translateY(-3px);
}

.footer-widget h4 {
   font-size: 1.3rem;
   margin-bottom: 1.8rem;
   color: #fff;
   font-family: var(--font-display);
}

.footer-links li {
   margin-bottom: 1rem;
}

.footer-links a {
   color: #94a3b8;
   font-weight: 500;
   transition: var(--transition-fast);
}

.footer-links a:hover {
   color: #fff;
   padding-left: 8px;
}

.footer-bottom {
   padding-top: 2.5rem;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   display: flex;
   justify-content: space-between;
   align-items: center;
   color: #94a3b8;
   font-size: 0.95rem;
   font-weight: 500;
}

.footer-legal-links {
   display: flex;
   gap: 2rem;
}

.footer-legal-links a:hover {
   color: #fff;
}

/* ==========================================================================
   Legal & Static Pages Typography & Layout
   ========================================================================== */
.page-header {
   padding: 12rem 0 6rem;
   text-align: center;
   background: var(--bg-main);
   border-bottom: 1px solid var(--border-soft);
}

.page-header h1 {
   font-size: 4.5rem;
   margin-bottom: 1rem;
   color: var(--text-main);
}

.page-content {
   max-width: 900px;
   margin: 0 auto;
   padding: 6rem 2rem;
}

.prose {
   color: var(--text-muted);
   font-size: 1.15rem;
   line-height: 1.9;
}

.prose h2 {
   color: var(--text-main);
   font-size: 2.2rem;
   margin: 3.5rem 0 1.5rem;
   font-family: var(--font-display);
}

.prose h3 {
   color: var(--text-main);
   font-size: 1.6rem;
   margin: 2.5rem 0 1rem;
}

.prose p {
   margin-bottom: 1.8rem;
}

.prose ul {
   margin-bottom: 1.8rem;
   padding-left: 1.5rem;
   list-style: disc;
}

.prose li {
   margin-bottom: 0.8rem;
}

/* ==========================================================================
   Interactive Live Chat UI (Simulated)
   ========================================================================== */
.chat-widget {
   position: fixed;
   bottom: 30px;
   right: 30px;
   z-index: 999;
}

.chat-button {
   width: 65px;
   height: 65px;
   border-radius: 50%;
   background: var(--text-main);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   box-shadow: var(--shadow-lg);
   cursor: pointer;
   transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-button:hover {
   transform: scale(1.1);
   background: var(--primary);
}

.chat-window {
   position: absolute;
   bottom: 90px;
   right: 0;
   width: 360px;
   background: var(--bg-alt);
   border: 1px solid var(--border-soft);
   border-radius: 12px;
   box-shadow: var(--shadow-lg);
   overflow: hidden;
   opacity: 0;
   visibility: hidden;
   transform: translateY(20px);
   transition: all 0.3s ease;
}

.chat-widget.active .chat-window {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}

.chat-header {
   background: var(--text-main);
   color: #fff;
   padding: 1.5rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.chat-body {
   padding: 1.5rem;
   height: 300px;
   overflow-y: auto;
   display: flex;
   flex-direction: column;
   gap: 1rem;
   background: var(--bg-main);
}

.msg {
   padding: 1rem;
   border-radius: 8px;
   max-width: 85%;
   font-size: 0.95rem;
   font-weight: 500;
}

.msg.bot {
   background: var(--bg-alt);
   align-self: flex-start;
   border: 1px solid var(--border-soft);
   box-shadow: var(--shadow-sm);
}

.chat-input {
   display: flex;
   padding: 1rem;
   border-top: 1px solid var(--border-soft);
   background: var(--bg-alt);
}

.chat-input input {
   flex: 1;
   background: none;
   border: none;
   color: var(--text-main);
   outline: none;
   padding-right: 1rem;
   font-size: 1rem;
}

.chat-input button {
   color: var(--primary);
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 1px;
}

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */
@keyframes floatFloat {
   0% {
      transform: translateY(0px) rotate(0deg);
   }

   50% {
      transform: translateY(-20px) rotate(2deg);
   }

   100% {
      transform: translateY(0px) rotate(0deg);
   }
}

@keyframes barGrow {
   0% {
      transform: scaleY(0);
      opacity: 0;
   }

   100% {
      transform: scaleY(1);
      opacity: 1;
   }
}

.reveal {
   opacity: 0;
   transform: translateY(50px);
   transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
   opacity: 1;
   transform: translateY(0);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
   .hero-content h1 {
      font-size: 4rem;
   }

   .hero-grid {
      grid-template-columns: 1fr;
      text-align: center;
   }

   .hero-content p {
      margin: 0 auto 3rem auto;
   }

   .hero-buttons {
      justify-content: center;
   }

   .hero-visuals {
      display: none;
   }

   .about-grid,
   .contact-grid {
      grid-template-columns: 1fr;
   }

   .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
   }
}

@media (max-width: 768px) {

   .main-nav,
   .header-cta {
      display: none;
   }

   .mobile-toggle {
      display: flex;
   }

   .section-title {
      font-size: 2.8rem;
   }

   .stat-box {
      padding: 2rem 1rem;
   }

   .calc-row {
      grid-template-columns: 1fr;
   }

   .footer-grid {
      grid-template-columns: 1fr;
   }

   .footer-bottom {
      flex-direction: column;
      gap: 1.5rem;
      text-align: center;
   }

   .page-header h1 {
      font-size: 3rem;
   }
}