/* ==========================================================================
   Base Variables & Modern SaaS Theme
   ========================================================================== */
:root {
   --bg-main: #0B0E14;
   --bg-surface: #151A25;
   --bg-surface-light: #1E2535;
   --glass-bg: rgba(21, 26, 37, 0.6);
   --glass-border: rgba(255, 255, 255, 0.08);

   --brand-magenta: #F22283;
   --brand-orange: #FF512F;
   --brand-gradient: linear-gradient(135deg, var(--brand-magenta), var(--brand-orange));
   --brand-gradient-hover: linear-gradient(135deg, var(--brand-orange), var(--brand-magenta));
   --brand-glow: rgba(242, 34, 131, 0.4);

   --text-primary: #FFFFFF;
   --text-secondary: #94A3B8;

   --font-main: 'Nunito', 'Segoe UI', Roboto, sans-serif;
   --header-height: 90px;
   --border-rad-lg: 24px;
   --border-rad-md: 16px;
   --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
   font-size: 16px;
   overflow-x: hidden;
}

body {
   font-family: var(--font-main);
   background-color: var(--bg-main);
   color: var(--text-primary);
   line-height: 1.7;
   overflow-x: hidden;
   position: relative;
}

a {
   text-decoration: none;
   color: inherit;
   transition: var(--transition-smooth);
}

ul {
   list-style: none;
}

/* ==========================================================================
   Typography & Layout Utilities
   ========================================================================== */
h1,
h2,
h3,
h4 {
   font-weight: 800;
   line-height: 1.2;
   margin-bottom: 1rem;
}

h1 {
   font-size: 4.5rem;
   letter-spacing: -1.5px;
}

h2 {
   font-size: 3.2rem;
   text-align: center;
   letter-spacing: -1px;
}

h3 {
   font-size: 1.8rem;
}

p {
   color: var(--text-secondary);
   margin-bottom: 1.5rem;
   font-size: 1.1rem;
}

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
   position: relative;
   z-index: 10;
}

.section-spacing {
   padding: 8rem 0;
}

.text-center {
   text-align: center;
}

.text-gradient {
   background: var(--brand-gradient);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   display: inline-block;
}

/* Modern Buttons */
.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 1.2rem 2.5rem;
   font-size: 1rem;
   font-weight: 700;
   border-radius: 50px;
   cursor: pointer;
   transition: var(--transition-smooth);
   border: none;
   outline: none;
   position: relative;
   overflow: hidden;
   z-index: 1;
}

.btn-primary {
   background: var(--brand-gradient);
   color: #fff;
   box-shadow: 0 10px 25px var(--brand-glow);
}

.btn-primary::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: var(--brand-gradient-hover);
   z-index: -1;
   transition: opacity 0.4s;
   opacity: 0;
}

.btn-primary:hover::before {
   opacity: 1;
}

.btn-primary:hover {
   transform: translateY(-4px);
   box-shadow: 0 15px 35px rgba(255, 81, 47, 0.5);
}

.btn-outline {
   background: transparent;
   color: #fff;
   border: 2px solid var(--glass-border);
   backdrop-filter: blur(5px);
}

.btn-outline:hover {
   border-color: var(--brand-magenta);
   background: rgba(242, 34, 131, 0.1);
   transform: translateY(-4px);
}

/* ==========================================================================
   Animations & Keyframes
   ========================================================================== */
@keyframes blobShape {

   0%,
   100% {
      border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
      transform: translate3d(0, 0, 0) rotateZ(0.01deg);
   }

   34% {
      border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
      transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
   }

   50% {
      transform: translate3d(0, 0, 0) rotateZ(0.01deg);
   }

   67% {
      border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
      transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
   }
}

@keyframes float {
   0% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-20px);
   }

   100% {
      transform: translateY(0);
   }
}

@keyframes fadeUpIn {
   from {
      opacity: 0;
      transform: translateY(50px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

@keyframes pulseRing {
   0% {
      box-shadow: 0 0 0 0 var(--brand-glow);
   }

   100% {
      box-shadow: 0 0 0 30px rgba(0, 0, 0, 0);
   }
}

.scroll-reveal {
   opacity: 0;
   transform: translateY(40px);
   transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
   opacity: 1;
   transform: translateY(0);
}

/* ==========================================================================
   Strict Header
   ========================================================================== */
.site-header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: var(--header-height);
   z-index: 1000;
   background: rgba(11, 14, 20, 0.7);
   backdrop-filter: blur(12px);
   -webkit-backdrop-filter: blur(12px);
   border-bottom: 1px solid transparent;
   transition: var(--transition-smooth);
}

.site-header.scrolled {
   height: 75px;
   background: rgba(11, 14, 20, 0.95);
   border-bottom: 1px solid var(--glass-border);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 100%;
   max-width: 1300px;
   margin: 0 auto;
   padding: 0 2rem;
}

.logo-container img {
   height: 50px;
   filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
   transition: var(--transition-smooth);
}

.nav-links {
   display: flex;
   gap: 2.5rem;
   align-items: center;
}

.nav-item {
   font-size: 1rem;
   font-weight: 600;
   color: var(--text-secondary);
   position: relative;
   padding: 0.5rem 0;
}

.nav-item:hover,
.nav-item.active {
   color: var(--text-primary);
}

.nav-item::before {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 10px;
   height: 3px;
   background: var(--brand-gradient);
   border-radius: 2px;
   opacity: 0;
   transition: var(--transition-smooth);
}

.nav-item:hover::before,
.nav-item.active::before {
   opacity: 1;
   width: 100%;
}

.mobile-menu-btn {
   display: none;
   background: none;
   border: none;
   color: var(--text-primary);
   font-size: 2rem;
   cursor: pointer;
}

/* ==========================================================================
   Hero Section (Fluid Blobs & Glassmorphism)
   ========================================================================== */
.hero {
   min-height: 100vh;
   display: flex;
   align-items: center;
   position: relative;
   padding-top: var(--header-height);
   overflow: hidden;
}

/* Animated Background Blobs */
.bg-blob {
   position: absolute;
   filter: blur(80px);
   opacity: 0.6;
   z-index: 0;
   animation: blobShape 15s ease-in-out infinite alternate;
}

.blob-1 {
   top: 10%;
   left: -10%;
   width: 500px;
   height: 500px;
   background: rgba(242, 34, 131, 0.3);
}

.blob-2 {
   bottom: -10%;
   right: -10%;
   width: 600px;
   height: 600px;
   background: rgba(255, 81, 47, 0.2);
   animation-delay: -5s;
}

.hero-content {
   display: grid;
   grid-template-columns: 1.2fr 0.8fr;
   gap: 4rem;
   align-items: center;
}

.hero-text h1 {
   animation: fadeUpIn 1s forwards;
}

.hero-text p {
   animation: fadeUpIn 1s 0.2s forwards;
   font-size: 1.25rem;
}

.hero-cta {
   display: flex;
   gap: 1.5rem;
   animation: fadeUpIn 1s 0.4s forwards;
   margin-top: 2.5rem;
}

/* Hero Floating Glass Card */
.hero-visual {
   animation: float 6s ease-in-out infinite;
}

.glass-card {
   background: var(--glass-bg);
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
   border: 1px solid var(--glass-border);
   border-radius: var(--border-rad-lg);
   padding: 3rem;
   box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
   position: relative;
   overflow: hidden;
}

.glass-card::before {
   content: '';
   position: absolute;
   top: -50%;
   left: -50%;
   width: 200%;
   height: 200%;
   background: conic-gradient(transparent, rgba(255, 255, 255, 0.1), transparent 30%);
   animation: spin 4s linear infinite;
   z-index: 0;
   pointer-events: none;
}

@keyframes spin {
   100% {
      transform: rotate(360deg);
   }
}

.glass-card>* {
   position: relative;
   z-index: 1;
}

.growth-metric {
   display: flex;
   align-items: center;
   gap: 1.5rem;
   margin-bottom: 1.5rem;
}

.metric-icon {
   width: 60px;
   height: 60px;
   background: var(--brand-gradient);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   font-weight: bold;
   box-shadow: 0 0 20px var(--brand-glow);
}

/* ==========================================================================
   Stats / Marquee Section
   ========================================================================== */
.stats-section {
   border-top: 1px solid var(--glass-border);
   border-bottom: 1px solid var(--glass-border);
   background: var(--bg-surface);
   padding: 3rem 0;
   overflow: hidden;
}

.stats-grid {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 2rem;
}

.stat-item {
   text-align: center;
   flex: 1;
   min-width: 200px;
}

.stat-item h3 {
   font-size: 3rem;
   color: var(--text-primary);
   margin-bottom: 0;
}

.stat-item p {
   font-size: 1rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin: 0;
   color: var(--brand-orange);
   font-weight: 700;
}

/* ==========================================================================
   Services Section (Gradient Border Cards)
   ========================================================================== */
.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2.5rem;
   margin-top: 4rem;
}

.svc-card {
   background: var(--bg-surface);
   border-radius: var(--border-rad-md);
   padding: 3rem 2rem;
   text-align: center;
   position: relative;
   transition: var(--transition-smooth);
   z-index: 1;
   overflow: hidden;
}

/* Gradient Border Effect */
.svc-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   border-radius: var(--border-rad-md);
   padding: 2px;
   background: var(--brand-gradient);
   -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
   -webkit-mask-composite: destination-out;
   mask-composite: exclude;
   opacity: 0.3;
   transition: var(--transition-smooth);
   z-index: -1;
}

.svc-card:hover::before {
   opacity: 1;
}

.svc-card:hover {
   transform: translateY(-10px);
   background: var(--bg-surface-light);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.svc-icon {
   font-size: 3.5rem;
   margin-bottom: 1.5rem;
   display: inline-block;
   background: var(--brand-gradient);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Industry specific
   ========================================================================== */
.industry-box {
   background: url('data:image/svg+xml;utf8,<svg opacity="0.03" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,50 Q25,0 50,50 T100,50" stroke="%23FFFFFF" stroke-width="2" fill="none"/></svg>') repeat center center;
   background-size: 200px;
}

.ind-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   margin-top: 4rem;
}

.ind-card {
   background: var(--glass-bg);
   border: 1px solid var(--glass-border);
   border-radius: var(--border-rad-md);
   padding: 2.5rem;
   text-align: left;
   transition: var(--transition-smooth);
}

.ind-card:hover {
   background: var(--brand-gradient);
   border-color: transparent;
}

.ind-card:hover p,
.ind-card:hover h3 {
   color: #fff;
}

/* ==========================================================================
   ROI Calculator (SaaS Slider UI)
   ========================================================================== */
.calc-wrapper {
   background: var(--bg-surface);
   border: 1px solid var(--glass-border);
   border-radius: var(--border-rad-lg);
   padding: 4rem;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
   margin-top: 4rem;
   position: relative;
}

.calc-wrapper::after {
   content: '';
   position: absolute;
   top: -2px;
   left: 10%;
   width: 80%;
   height: 2px;
   background: var(--brand-gradient);
   filter: blur(5px);
}

.sliders-container {
   display: flex;
   flex-direction: column;
   gap: 2.5rem;
}

.slider-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 1rem;
   font-weight: 700;
}

.val-badge {
   background: rgba(242, 34, 131, 0.15);
   border: 1px solid var(--brand-magenta);
   color: var(--text-primary);
   padding: 0.3rem 1rem;
   border-radius: 50px;
   font-size: 0.9rem;
}

input[type=range] {
   -webkit-appearance: none;
   width: 100%;
   height: 8px;
   background: var(--bg-main);
   border-radius: 4px;
   outline: none;
}

input[type=range]::-webkit-slider-thumb {
   -webkit-appearance: none;
   width: 24px;
   height: 24px;
   border-radius: 50%;
   background: var(--text-primary);
   border: 4px solid var(--brand-orange);
   cursor: pointer;
   box-shadow: 0 0 15px rgba(255, 81, 47, 0.5);
   transition: transform 0.2s;
}

input[type=range]::-webkit-slider-thumb:hover {
   transform: scale(1.2);
}

.result-container {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   background: var(--bg-main);
   border-radius: var(--border-rad-md);
   border: 1px solid var(--glass-border);
   padding: 3rem;
   text-align: center;
   position: relative;
   overflow: hidden;
}

.result-container::before {
   content: '';
   position: absolute;
   width: 150px;
   height: 150px;
   background: var(--brand-magenta);
   filter: blur(100px);
   opacity: 0.3;
   top: 0;
   left: 0;
}

.result-container h4 {
   color: var(--text-secondary);
   text-transform: uppercase;
   letter-spacing: 2px;
   font-size: 0.9rem;
   margin-bottom: 1rem;
}

.final-revenue {
   font-size: 4.5rem;
   font-weight: 800;
   background: var(--brand-gradient);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   line-height: 1;
}

/* ==========================================================================
   Campaign Reports (Animated Bar Chart)
   ========================================================================== */
.reports-section {
   background: var(--bg-surface-light);
}

.chart-box {
   background: var(--bg-main);
   border-radius: var(--border-rad-lg);
   padding: 3rem;
   margin-top: 4rem;
   border: 1px solid var(--glass-border);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
   height: 350px;
   position: relative;
}

.chart-col {
   display: flex;
   flex-direction: column;
   align-items: center;
   width: 12%;
   position: relative;
}

.chart-bar {
   width: 100%;
   background: var(--brand-gradient);
   border-radius: 8px 8px 0 0;
   height: 0;
   transition: height 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
   position: relative;
}

.chart-bar::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
   border-radius: 8px 8px 0 0;
}

.bar-tooltip {
   position: absolute;
   top: -45px;
   background: var(--bg-surface);
   border: 1px solid var(--glass-border);
   padding: 0.5rem 1rem;
   border-radius: 8px;
   font-weight: 700;
   font-size: 0.9rem;
   opacity: 0;
   transform: translateY(10px);
   transition: var(--transition-smooth);
   pointer-events: none;
}

.chart-col:hover .bar-tooltip {
   opacity: 1;
   transform: translateY(0);
}

.chart-label {
   margin-top: 1.5rem;
   color: var(--text-secondary);
   font-weight: 600;
   font-size: 0.9rem;
}

/* ==========================================================================
   Live Chat Mockup
   ========================================================================== */
.chat-layout {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
   margin-top: 4rem;
}

.chat-app {
   background: var(--glass-bg);
   border: 1px solid var(--glass-border);
   border-radius: var(--border-rad-md);
   overflow: hidden;
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.app-header {
   background: rgba(0, 0, 0, 0.2);
   padding: 1.5rem;
   display: flex;
   align-items: center;
   gap: 1rem;
   border-bottom: 1px solid var(--glass-border);
}

.online-dot {
   width: 12px;
   height: 12px;
   background: #00E676;
   border-radius: 50%;
   box-shadow: 0 0 10px #00E676;
}

.app-body {
   padding: 2rem;
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.message {
   padding: 1rem 1.5rem;
   border-radius: 18px;
   max-width: 85%;
   font-size: 0.95rem;
}

.msg-client {
   background: var(--bg-surface-light);
   align-self: flex-start;
   border-bottom-left-radius: 4px;
}

.msg-team {
   background: var(--brand-gradient);
   color: #fff;
   align-self: flex-end;
   border-bottom-right-radius: 4px;
   box-shadow: 0 5px 15px var(--brand-glow);
}

/* ==========================================================================
   Testimonials (Cards)
   ========================================================================== */
.testi-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   margin-top: 4rem;
}

.testi-card {
   background: var(--bg-surface);
   padding: 3rem 2rem;
   border-radius: var(--border-rad-md);
   border: 1px solid var(--glass-border);
   position: relative;
}

.testi-card::before {
   content: '"';
   position: absolute;
   top: 1rem;
   right: 2rem;
   font-size: 6rem;
   color: var(--glass-border);
   font-family: serif;
   line-height: 1;
}

.client-profile {
   display: flex;
   align-items: center;
   gap: 1rem;
   margin-top: 2rem;
}

.client-avatar {
   width: 50px;
   height: 50px;
   background: var(--brand-gradient);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: bold;
}

.client-info h4 {
   margin: 0;
   font-size: 1rem;
}

.client-info p {
   margin: 0;
   font-size: 0.85rem;
   color: var(--brand-magenta);
}

/* ==========================================================================
   Strict Footer
   ========================================================================== */
.site-footer {
   background: #07090D;
   padding: 6rem 0 2rem;
   border-top: 1px solid var(--glass-border);
   position: relative;
   overflow: hidden;
}

/* Decorative footer element */
.site-footer::before {
   content: '';
   position: absolute;
   top: 0;
   left: 50%;
   transform: translateX(-50%);
   width: 50%;
   height: 1px;
   background: var(--brand-gradient);
   opacity: 0.5;
   box-shadow: 0 0 20px var(--brand-magenta);
}

.footer-grid {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1.5fr;
   gap: 4rem;
   margin-bottom: 4rem;
   position: relative;
   z-index: 1;
}

.footer-logo img {
   height: 50px;
   margin-bottom: 1.5rem;
   filter: brightness(0) invert(1);
}

.footer-desc {
   color: var(--text-secondary);
   font-size: 0.95rem;
   line-height: 1.8;
}

.footer-title {
   color: var(--text-primary);
   font-size: 1.2rem;
   margin-bottom: 1.5rem;
   font-weight: 700;
}

.footer-links li {
   margin-bottom: 0.8rem;
}

.footer-links a {
   color: var(--text-secondary);
   font-size: 0.95rem;
}

.footer-links a:hover {
   color: var(--brand-orange);
   padding-left: 5px;
}

.footer-contact li {
   display: flex;
   align-items: center;
   gap: 1rem;
   margin-bottom: 1rem;
   color: var(--text-secondary);
   font-size: 0.95rem;
}

.footer-contact strong {
   color: var(--brand-magenta);
}

.footer-bottom {
   border-top: 1px solid var(--glass-border);
   padding-top: 2rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
   position: relative;
   z-index: 1;
}

.footer-bottom p {
   margin: 0;
   font-size: 0.9rem;
}

.legal-links {
   display: flex;
   gap: 1.5rem;
}

.legal-links a {
   font-size: 0.9rem;
   color: var(--text-secondary);
}

.legal-links a:hover {
   color: var(--text-primary);
}

/* ==========================================================================
   Legal Pages Styling
   ========================================================================== */
.legal-hero {
   padding: 12rem 0 6rem;
   background: radial-gradient(circle at top, var(--bg-surface-light), var(--bg-main));
   text-align: center;
   border-bottom: 1px solid var(--glass-border);
}

.legal-content-wrap {
   max-width: 900px;
   margin: -3rem auto 4rem;
   background: var(--bg-surface);
   padding: 4rem;
   border-radius: var(--border-rad-lg);
   border: 1px solid var(--glass-border);
   position: relative;
   z-index: 10;
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.legal-content-wrap h2 {
   font-size: 1.8rem;
   color: var(--text-primary);
   text-align: left;
   margin: 2.5rem 0 1rem;
}

.legal-content-wrap h2::after {
   content: '';
   display: block;
   width: 40px;
   height: 3px;
   background: var(--brand-gradient);
   margin-top: 10px;
   border-radius: 2px;
}

.legal-content-wrap p {
   font-size: 1.05rem;
   margin-bottom: 1.5rem;
}

.legal-content-wrap ul {
   padding-left: 1.5rem;
   margin-bottom: 1.5rem;
}

.legal-content-wrap li {
   margin-bottom: 0.5rem;
   color: var(--text-secondary);
   list-style-type: disc;
}

/* ==========================================================================
   Contact Page Form
   ========================================================================== */
.contact-hero {
   padding: 10rem 0 5rem;
   text-align: center;
}

.contact-container {
   max-width: 800px;
   margin: 0 auto;
   background: var(--glass-bg);
   padding: 4rem;
   border-radius: var(--border-rad-lg);
   border: 1px solid var(--glass-border);
   backdrop-filter: blur(10px);
}

.form-row {
   display: flex;
   gap: 2rem;
   margin-bottom: 2rem;
}

.form-group {
   flex: 1;
   position: relative;
}

.form-control {
   width: 100%;
   background: var(--bg-main);
   border: 1px solid var(--glass-border);
   padding: 1.2rem;
   border-radius: 8px;
   color: var(--text-primary);
   font-family: inherit;
   font-size: 1rem;
   transition: var(--transition-smooth);
   outline: none;
}

.form-control:focus {
   border-color: var(--brand-magenta);
   box-shadow: 0 0 15px rgba(242, 34, 131, 0.2);
}

textarea.form-control {
   resize: vertical;
   min-height: 150px;
}

select.form-control {
   appearance: none;
   cursor: pointer;
}

/* ==========================================================================
   Responsive Design Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
   h1 {
      font-size: 3.5rem;
   }

   .hero-content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 3rem;
   }

   .hero-cta {
      justify-content: center;
   }

   .hero-visual {
      max-width: 500px;
      margin: 0 auto;
   }

   .stats-grid,
   .ind-grid,
   .testi-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .calc-wrapper,
   .chat-layout {
      grid-template-columns: 1fr;
      gap: 3rem;
      padding: 3rem;
   }

   .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
   }
}

@media (max-width: 768px) {
   .nav-links {
      position: fixed;
      top: var(--header-height);
      left: -100%;
      width: 100%;
      height: calc(100vh - var(--header-height));
      background: var(--bg-main);
      flex-direction: column;
      justify-content: center;
      transition: var(--transition-smooth);
      gap: 2rem;
   }

   .nav-links.active {
      left: 0;
   }

   .mobile-menu-btn {
      display: block;
   }

   h1 {
      font-size: 2.8rem;
   }

   h2 {
      font-size: 2.2rem;
   }

   .form-row {
      flex-direction: column;
      gap: 2rem;
   }

   .ind-grid,
   .testi-grid {
      grid-template-columns: 1fr;
   }

   .footer-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
   }

   .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
   }

   .chart-box {
      padding: 1.5rem;
      overflow-x: auto;
      justify-content: flex-start;
      gap: 2rem;
   }

   .chart-col {
      min-width: 40px;
   }

   .legal-content-wrap {
      padding: 2rem;
      margin-top: -2rem;
   }

   .contact-container {
      padding: 2rem;
   }
}