/* ==========================================================================
   Theme 5: Organic Growth & Creative Studio (Earthy & Warm)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
   /* Earthy Color Palette */
   --color-bg-sand: #F7F4EB;
   --color-bg-sage: #E9F1E8;
   --color-bg-white: #FFFFFF;

   --color-forest-dark: #0A231C;
   /* For Header/Footer to contrast white logo */
   --color-forest-main: #143D31;
   --color-forest-light: #2A604F;

   --color-coral: #E06D53;
   /* Vibrant Accent */
   --color-coral-hover: #C95A41;

   --color-text-main: #2C3532;
   --color-text-muted: #5C6B66;
   --color-text-light: #F7F4EB;

   --color-border: #D1DED9;

   /* Layout & Spacing */
   --container-width: 1240px;
   --section-pad: 8rem 2rem;

   /* Organic Border Radii */
   --radius-sm: 8px;
   --radius-md: 16px;
   --radius-lg: 32px;
   --radius-pill: 100px;
   --radius-blob: 40% 60% 70% 30% / 40% 50% 60% 50%;

   /* Shadows */
   --shadow-soft: 0 10px 40px rgba(10, 35, 28, 0.05);
   --shadow-hover: 0 20px 50px rgba(10, 35, 28, 0.1);
   --shadow-coral: 0 10px 25px rgba(224, 109, 83, 0.3);

   /* Transitions */
   --trans-fast: 0.25s ease;
   --trans-smooth: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   Base & Typography
   ========================================================================== */
*,
*::before,
*::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
   font-size: 16px;
}

body {
   font-family: 'Outfit', sans-serif;
   background-color: var(--color-bg-sand);
   color: var(--color-text-main);
   line-height: 1.7;
   overflow-x: hidden;
   -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: 'Lora', serif;
   color: var(--color-forest-dark);
   font-weight: 500;
   line-height: 1.2;
}

p {
   margin-bottom: 1.2rem;
}

a {
   text-decoration: none;
   color: inherit;
   transition: var(--trans-fast);
}

ul {
   list-style: none;
}

img {
   max-width: 100%;
   height: auto;
   display: block;
}

.container {
   max-width: var(--container-width);
   margin: 0 auto;
   padding: 0 1.5rem;
   position: relative;
}

/* Section Typography */
.section-title {
   font-size: 3.2rem;
   text-align: center;
   margin-bottom: 1.2rem;
   color: var(--color-forest-dark);
}

.section-subtitle {
   text-align: center;
   font-size: 1.15rem;
   max-width: 650px;
   margin: 0 auto 4rem auto;
   color: var(--color-text-muted);
}

/* ==========================================================================
   Buttons (Soft & Approachable)
   ========================================================================== */
.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 1.1rem 2.5rem;
   font-family: 'Outfit', sans-serif;
   font-weight: 600;
   font-size: 1rem;
   cursor: pointer;
   transition: var(--trans-smooth);
   border-radius: var(--radius-pill);
   border: none;
   position: relative;
   overflow: hidden;
   z-index: 1;
}

.btn-primary {
   background: var(--color-coral);
   color: var(--color-bg-white);
   box-shadow: var(--shadow-coral);
}

.btn-primary::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: var(--color-coral-hover);
   border-radius: var(--radius-pill);
   z-index: -1;
   transform: scaleX(0);
   transform-origin: left;
   transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-primary:hover {
   transform: translateY(-3px);
   color: var(--color-bg-white);
   box-shadow: 0 15px 35px rgba(224, 109, 83, 0.4);
}

.btn-primary:hover::before {
   transform: scaleX(1);
}

.btn-outline {
   background: transparent;
   color: var(--color-forest-main);
   border: 2px solid var(--color-forest-main);
}

.btn-outline:hover {
   background: var(--color-forest-main);
   color: var(--color-bg-white);
}

/* ==========================================================================
   Strict Header (Deep Forest Green)
   ========================================================================== */
.site-header {
   position: fixed;
   top: 0;
   width: 100%;
   background-color: var(--color-forest-dark);
   z-index: 1000;
   padding: 1.5rem 0;
   transition: var(--trans-smooth);
   border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.scrolled {
   padding: 0.8rem 0;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
   background-color: rgba(10, 35, 28, 0.98);
   backdrop-filter: blur(10px);
}

.header-container {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.logo-container img {
   height: 42px;
}

.nav-menu {
   display: flex;
   gap: 2.5rem;
   align-items: center;
}

.nav-link {
   color: var(--color-bg-sand);
   font-family: 'Outfit', sans-serif;
   font-weight: 500;
   font-size: 1rem;
   position: relative;
   padding: 0.5rem 0;
   opacity: 0.9;
}

.nav-link::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 0;
   height: 2px;
   background: var(--color-coral);
   transition: var(--trans-smooth);
   border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
   opacity: 1;
   color: var(--color-bg-white);
}

.nav-link:hover::after,
.nav-link.active::after {
   width: 100%;
}

.mobile-menu-btn {
   display: none;
   background: none;
   border: none;
   color: var(--color-bg-sand);
   font-size: 2rem;
   cursor: pointer;
}

/* ==========================================================================
   1. Hero Section (Organic Blobs)
   ========================================================================== */
.hero {
   padding: 12rem 0 8rem;
   min-height: 100vh;
   display: flex;
   align-items: center;
   position: relative;
   overflow: hidden;
   background-color: var(--color-bg-sand);
}

/* Morphing Background Blobs */
.blob-1,
.blob-2 {
   position: absolute;
   filter: blur(60px);
   z-index: 0;
   border-radius: var(--radius-blob);
   animation: morphBlob 15s ease-in-out infinite alternate;
   opacity: 0.6;
}

.blob-1 {
   top: -10%;
   right: -5%;
   width: 600px;
   height: 600px;
   background: var(--color-bg-sage);
}

.blob-2 {
   bottom: -20%;
   left: -10%;
   width: 500px;
   height: 500px;
   background: rgba(224, 109, 83, 0.15);
   animation-delay: -5s;
   animation-direction: alternate-reverse;
}

.hero-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
   z-index: 1;
}

.hero-content h1 {
   font-size: 4rem;
   margin-bottom: 1.5rem;
   line-height: 1.1;
   animation: slideFadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-content h1 span {
   color: var(--color-coral);
   font-style: italic;
}

.hero-content p {
   font-size: 1.2rem;
   color: var(--color-text-muted);
   margin-bottom: 2.5rem;
   animation: slideFadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards;
   opacity: 0;
}

.hero-buttons {
   display: flex;
   gap: 1.5rem;
   animation: slideFadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) 0.4s forwards;
   opacity: 0;
}

/* 3D Floating Organic Cards */
.hero-visual {
   position: relative;
   height: 550px;
}

.organic-card {
   position: absolute;
   background: rgba(255, 255, 255, 0.7);
   backdrop-filter: blur(15px);
   border: 1px solid rgba(255, 255, 255, 0.5);
   border-radius: var(--radius-lg);
   padding: 2.5rem;
   box-shadow: var(--shadow-soft);
}

.card-main {
   top: 10%;
   right: 5%;
   width: 320px;
   animation: floatOrganic 6s ease-in-out infinite;
}

.card-sub {
   bottom: 5%;
   left: 0;
   width: 280px;
   background: var(--color-forest-main);
   color: var(--color-bg-white);
   animation: floatOrganic 8s ease-in-out infinite alternate-reverse;
}

.card-icon {
   width: 50px;
   height: 50px;
   border-radius: 50%;
   background: var(--color-bg-sage);
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--color-forest-main);
   margin-bottom: 1rem;
}

.card-sub .card-icon {
   background: rgba(255, 255, 255, 0.1);
   color: var(--color-coral);
}

.organic-card h4 {
   font-family: 'Outfit', sans-serif;
   font-size: 1.2rem;
   margin-bottom: 0.5rem;
   color: inherit;
}

.card-main h4 {
   color: var(--color-forest-dark);
}

.card-sub h4 {
   color: var(--color-bg-white);
}

.organic-card h2 {
   font-size: 2.5rem;
   margin: 0;
   color: inherit;
}

/* ==========================================================================
   2. Growth Stats Section
   ========================================================================== */
.stats {
   padding: 3rem 0;
   position: relative;
   z-index: 2;
   margin-top: -5rem;
}

.stats-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
   background: var(--color-bg-white);
   padding: 3rem 2rem;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-soft);
   text-align: center;
}

.stat-item h3 {
   font-size: 2.8rem;
   color: var(--color-forest-main);
   margin-bottom: 0.5rem;
}

.stat-item p {
   font-weight: 500;
   color: var(--color-coral);
   text-transform: uppercase;
   letter-spacing: 1px;
   font-size: 0.9rem;
   margin: 0;
}

/* ==========================================================================
   3. About Us (Creative Philosophy)
   ========================================================================== */
.about {
   padding: var(--section-pad);
}

.about-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 5rem;
   align-items: center;
}

.about-visual {
   position: relative;
}

.about-img {
   width: 100%;
   border-radius: var(--radius-blob);
   box-shadow: var(--shadow-soft);
   animation: morphBlob 10s ease-in-out infinite alternate;
   object-fit: cover;
}

.about-badge {
   position: absolute;
   bottom: 20px;
   right: -20px;
   background: var(--color-coral);
   color: white;
   padding: 1.5rem;
   border-radius: 50%;
   width: 120px;
   height: 120px;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   font-family: 'Lora', serif;
   font-size: 1.2rem;
   line-height: 1.1;
   box-shadow: var(--shadow-coral);
   animation: rotateBadge 15s linear infinite;
}

.about-content h2 {
   text-align: left;
}

.about-content p {
   font-size: 1.1rem;
}

/* ==========================================================================
   4. Services (Soft Cards)
   ========================================================================== */
.services {
   padding: var(--section-pad);
   background: var(--color-bg-white);
}

.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2.5rem;
}

.service-card {
   background: var(--color-bg-sand);
   padding: 3rem 2.5rem;
   border-radius: var(--radius-lg);
   transition: var(--trans-smooth);
   border: 1px solid transparent;
}

.service-card:hover {
   transform: translateY(-10px);
   background: var(--color-bg-sage);
   border-color: var(--color-border);
   box-shadow: var(--shadow-hover);
}

.service-icon {
   width: 60px;
   height: 60px;
   background: var(--color-bg-white);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--color-coral);
   margin-bottom: 1.5rem;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   transition: var(--trans-fast);
}

.service-card:hover .service-icon {
   background: var(--color-coral);
   color: var(--color-bg-white);
   transform: scale(1.1);
}

.service-card h3 {
   font-size: 1.5rem;
   margin-bottom: 1rem;
}

.service-card p {
   margin: 0;
}

/* ==========================================================================
   5. Growth Calculator
   ========================================================================== */
.calculator-section {
   padding: var(--section-pad);
   background: var(--color-bg-sage);
}

.calc-wrapper {
   max-width: 800px;
   margin: 0 auto;
   background: var(--color-bg-white);
   padding: 4rem;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-soft);
   text-align: center;
}

.calc-wrapper label {
   display: block;
   font-family: 'Lora', serif;
   font-size: 1.5rem;
   color: var(--color-forest-dark);
   margin-bottom: 1rem;
}

.range-slider {
   width: 100%;
   -webkit-appearance: none;
   height: 8px;
   background: var(--color-border);
   border-radius: 4px;
   outline: none;
   margin: 2rem 0 3rem;
}

.range-slider::-webkit-slider-thumb {
   -webkit-appearance: none;
   width: 30px;
   height: 30px;
   border-radius: 50%;
   background: var(--color-coral);
   cursor: pointer;
   box-shadow: var(--shadow-coral);
   transition: transform 0.2s;
}

.range-slider::-webkit-slider-thumb:hover {
   transform: scale(1.2);
}

.calc-result {
   padding-top: 2rem;
   border-top: 1px dashed var(--color-border);
}

.calc-result h4 {
   color: var(--color-text-muted);
   font-weight: 500;
   margin-bottom: 0.5rem;
}

.calc-result h2 {
   font-size: 3.5rem;
   color: var(--color-forest-main);
   margin: 0;
}

/* ==========================================================================
   6. Our Process (Curved Flow)
   ========================================================================== */
.process {
   padding: var(--section-pad);
   background: var(--color-bg-sand);
}

.process-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 3rem;
   margin-top: 4rem;
}

.process-step {
   background: var(--color-bg-white);
   padding: 3rem 2rem;
   border-radius: var(--radius-lg);
   text-align: center;
   box-shadow: var(--shadow-soft);
   position: relative;
}

.step-num {
   width: 50px;
   height: 50px;
   background: var(--color-forest-main);
   color: var(--color-bg-white);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: 'Lora', serif;
   font-size: 1.5rem;
   position: absolute;
   top: -25px;
   left: 50%;
   transform: translateX(-50%);
   border: 5px solid var(--color-bg-sand);
}

.process-step h4 {
   margin-top: 1.5rem;
   margin-bottom: 1rem;
   font-size: 1.3rem;
}

/* ==========================================================================
   7. Industry Specializations
   ========================================================================== */
.industries {
   padding: var(--section-pad);
   background: var(--color-forest-dark);
   color: var(--color-bg-sand);
}

.industries .section-title {
   color: var(--color-bg-sand);
}

.industries .section-subtitle {
   color: var(--color-bg-sage);
   opacity: 0.8;
}

.industry-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 1.5rem;
}

.industry-card {
   padding: 2.5rem 1.5rem;
   background: rgba(255, 255, 255, 0.05);
   border-radius: var(--radius-md);
   text-align: center;
   transition: var(--trans-smooth);
   border: 1px solid rgba(255, 255, 255, 0.05);
}

.industry-card:hover {
   background: var(--color-forest-main);
   border-color: var(--color-coral);
   transform: translateY(-5px);
}

.industry-card svg {
   stroke: var(--color-coral);
   margin-bottom: 1rem;
}

.industry-card h4 {
   color: var(--color-bg-white);
   font-family: 'Outfit', sans-serif;
   font-weight: 500;
   font-size: 1.1rem;
   margin: 0;
}

/* ==========================================================================
   8. Organic Data Chart (CSS Only)
   ========================================================================== */
.reports {
   padding: var(--section-pad);
   background: var(--color-bg-white);
}

.chart-container {
   background: var(--color-bg-sand);
   padding: 4rem 3rem 2rem;
   border-radius: var(--radius-lg);
   max-width: 900px;
   margin: 0 auto;
   height: 400px;
   display: flex;
   align-items: flex-end;
   justify-content: space-around;
   border-bottom: 2px solid var(--color-forest-main);
}

.chart-bar {
   width: 70px;
   background: linear-gradient(to top, var(--color-forest-light), var(--color-coral));
   border-radius: var(--radius-sm) var(--radius-sm) 0 0;
   position: relative;
   transform-origin: bottom;
   animation: growTree 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
   opacity: 0;
}

.chart-bar:nth-child(1) {
   height: 30%;
   animation-delay: 0.1s;
}

.chart-bar:nth-child(2) {
   height: 50%;
   animation-delay: 0.3s;
}

.chart-bar:nth-child(3) {
   height: 75%;
   animation-delay: 0.5s;
}

.chart-bar:nth-child(4) {
   height: 100%;
   animation-delay: 0.7s;
}

.chart-bar::before {
   content: attr(data-label);
   position: absolute;
   bottom: -35px;
   left: 50%;
   transform: translateX(-50%);
   color: var(--color-text-main);
   font-weight: 500;
}

.chart-bar::after {
   content: attr(data-val);
   position: absolute;
   top: -35px;
   left: 50%;
   transform: translateX(-50%);
   color: var(--color-forest-dark);
   font-family: 'Lora', serif;
   font-weight: bold;
}

/* ==========================================================================
   9. Friendly Testimonials
   ========================================================================== */
.testimonials {
   padding: var(--section-pad);
   background: var(--color-bg-sand);
}

.testi-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 3rem;
}

.testi-card {
   background: var(--color-bg-white);
   padding: 3rem;
   border-radius: var(--radius-lg);
   border-bottom-left-radius: 0;
   box-shadow: var(--shadow-soft);
   position: relative;
}

.testi-card::before {
   content: '"';
   position: absolute;
   top: 10px;
   left: 20px;
   font-size: 5rem;
   font-family: 'Lora', serif;
   color: var(--color-bg-sage);
   line-height: 1;
}

.testi-card p {
   font-size: 1.1rem;
   position: relative;
   z-index: 1;
   color: var(--color-text-main);
   margin-bottom: 2rem;
}

.testi-author {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.testi-author .avatar {
   width: 50px;
   height: 50px;
   background: var(--color-coral);
   color: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: bold;
   font-family: 'Lora', serif;
}

.testi-author h5 {
   margin: 0;
   font-family: 'Outfit', sans-serif;
   font-size: 1.1rem;
   color: var(--color-forest-dark);
}

.testi-author span {
   font-size: 0.85rem;
   color: var(--color-text-muted);
}

/* ==========================================================================
   10. CTA Form Section
   ========================================================================== */
.cta-section {
   padding: var(--section-pad);
   text-align: center;
   background: var(--color-bg-sage);
}

.cta-form {
   max-width: 600px;
   margin: 3rem auto 0;
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
   background: var(--color-bg-white);
   padding: 3rem;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-soft);
}

.input-field {
   width: 100%;
   padding: 1.2rem;
   background: var(--color-bg-sand);
   border: 1px solid var(--color-border);
   border-radius: var(--radius-sm);
   font-family: 'Outfit', sans-serif;
   font-size: 1rem;
   color: var(--color-text-main);
   transition: var(--trans-fast);
}

.input-field:focus {
   outline: none;
   border-color: var(--color-forest-main);
   box-shadow: 0 0 0 3px rgba(10, 35, 28, 0.1);
}

textarea.input-field {
   resize: vertical;
   min-height: 120px;
}

/* ==========================================================================
   11. Strict Footer (Deep Forest Green)
   ========================================================================== */
.site-footer {
   background-color: var(--color-forest-dark);
   padding: 5rem 0 2rem;
   color: var(--color-bg-sand);
}

.footer-grid {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1.5fr;
   gap: 4rem;
   margin-bottom: 4rem;
}

.footer-logo img {
   height: 45px;
   margin-bottom: 1.5rem;
}

.footer-col p {
   color: rgba(247, 244, 235, 0.7);
   font-size: 0.95rem;
}

.footer-col h4 {
   font-family: 'Outfit', sans-serif;
   font-size: 1.2rem;
   color: var(--color-bg-white);
   margin-bottom: 1.5rem;
}

.footer-links li {
   margin-bottom: 0.8rem;
}

.footer-links a {
   color: rgba(247, 244, 235, 0.7);
}

.footer-links a:hover {
   color: var(--color-coral);
   padding-left: 5px;
}

.footer-bottom {
   text-align: center;
   padding-top: 2rem;
   border-top: 1px solid rgba(247, 244, 235, 0.1);
   color: rgba(247, 244, 235, 0.5);
   font-size: 0.9rem;
}

/* ==========================================================================
   12. Live Chat Widget (Soft & Friendly)
   ========================================================================== */
.chat-widget {
   position: fixed;
   bottom: 2rem;
   right: 2rem;
   z-index: 999;
}

.chat-btn {
   width: 65px;
   height: 65px;
   border-radius: var(--radius-blob);
   background: var(--color-coral);
   color: var(--color-bg-white);
   border: none;
   cursor: pointer;
   box-shadow: var(--shadow-coral);
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--trans-smooth);
}

.chat-btn:hover {
   transform: scale(1.1);
   background: var(--color-coral-hover);
}

.chat-panel {
   position: absolute;
   bottom: 80px;
   right: 0;
   width: 320px;
   background: var(--color-bg-white);
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-hover);
   display: none;
   flex-direction: column;
   overflow: hidden;
   border: 1px solid var(--color-border);
}

.chat-panel.active {
   display: flex;
   animation: slideFadeUp 0.3s ease;
}

.chat-header {
   background: var(--color-forest-main);
   padding: 1.2rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.chat-header h4 {
   font-family: 'Outfit', sans-serif;
   font-size: 1rem;
   color: var(--color-bg-white);
   margin: 0;
}

.close-chat {
   background: none;
   border: none;
   color: white;
   font-size: 1.5rem;
   cursor: pointer;
}

.chat-body {
   height: 250px;
   padding: 1.5rem;
   background: var(--color-bg-sand);
   overflow-y: auto;
}

.chat-msg {
   background: var(--color-bg-white);
   padding: 1rem;
   border-radius: var(--radius-md);
   border-bottom-left-radius: 0;
   font-size: 0.9rem;
   color: var(--color-text-main);
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.chat-input {
   display: flex;
   padding: 1rem;
   background: var(--color-bg-white);
   border-top: 1px solid var(--color-border);
}

.chat-input input {
   flex: 1;
   background: transparent;
   border: none;
   outline: none;
   font-family: inherit;
}

.chat-input button {
   background: none;
   border: none;
   color: var(--color-coral);
   font-weight: bold;
   cursor: pointer;
   font-family: inherit;
}

/* ==========================================================================
   Legal Pages Styling
   ========================================================================== */
.legal-wrapper {
   padding: 12rem 0 6rem;
   min-height: 100vh;
   background: var(--color-bg-sand);
}

.legal-container {
   max-width: 900px;
   margin: 0 auto;
   background: var(--color-bg-white);
   padding: 4rem;
   border-radius: var(--radius-lg);
   box-shadow: var(--shadow-soft);
}

.legal-container h1 {
   font-size: 2.5rem;
   color: var(--color-forest-dark);
   margin-bottom: 2rem;
   border-bottom: 1px solid var(--color-border);
   padding-bottom: 1rem;
}

.legal-container h2 {
   font-size: 1.5rem;
   margin: 2rem 0 1rem;
   font-family: 'Outfit', sans-serif;
   color: var(--color-forest-main);
}

.legal-container p {
   color: var(--color-text-muted);
}

.legal-container ul {
   list-style: disc;
   margin-left: 2rem;
   margin-bottom: 1.5rem;
   color: var(--color-text-muted);
}

.legal-container li {
   margin-bottom: 0.5rem;
}

/* ==========================================================================
   Animations & Responsive
   ========================================================================== */
@keyframes slideFadeUp {
   from {
      opacity: 0;
      transform: translateY(40px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

@keyframes growTree {
   from {
      transform: scaleY(0);
      opacity: 0;
   }

   to {
      transform: scaleY(1);
      opacity: 1;
   }
}

@keyframes morphBlob {
   0% {
      border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
   }

   100% {
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
   }
}

@keyframes floatOrganic {
   0% {
      transform: translateY(0px) rotate(0deg);
   }

   50% {
      transform: translateY(-20px) rotate(2deg);
   }

   100% {
      transform: translateY(0px) rotate(0deg);
   }
}

@keyframes rotateBadge {
   from {
      transform: rotate(0deg);
   }

   to {
      transform: rotate(360deg);
   }
}

.reveal {
   opacity: 0;
   transform: translateY(40px);
   transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
   opacity: 1;
   transform: translateY(0);
}

@media (max-width: 1024px) {

   .hero-grid,
   .about-grid {
      grid-template-columns: 1fr;
      text-align: center;
   }

   .hero-buttons {
      justify-content: center;
   }

   .hero-visual {
      height: 400px;
   }

   .card-main {
      right: 10%;
   }

   .card-sub {
      left: 10%;
   }

   .about-content h2 {
      text-align: center;
   }

   .stats-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .process-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
   }

   .footer-grid {
      grid-template-columns: 1fr 1fr;
   }
}

@media (max-width: 768px) {
   .nav-menu {
      position: fixed;
      top: 75px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 75px);
      background: var(--color-forest-dark);
      flex-direction: column;
      justify-content: center;
      transition: var(--trans-smooth);
   }

   .nav-menu.active {
      left: 0;
   }

   .mobile-menu-btn {
      display: block;
   }

   .hero-content h1 {
      font-size: 3rem;
   }

   .footer-grid {
      grid-template-columns: 1fr;
      gap: 2.5rem;
   }

   .chart-container {
      height: auto;
      flex-direction: column;
      align-items: stretch;
      padding: 2rem;
      gap: 3rem;
   }

   .chart-bar {
      width: 100%;
      height: 40px !important;
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      transform-origin: left;
      animation: growRight 1.5s forwards;
   }

   .chart-bar::before {
      left: 0;
      top: -25px;
      transform: none;
   }

   .chart-bar::after {
      left: auto;
      right: 0;
      top: -25px;
      transform: none;
   }

   .legal-container {
      padding: 2rem;
   }
}

@keyframes growRight {
   from {
      transform: scaleX(0);
      opacity: 0;
   }

   to {
      transform: scaleX(1);
      opacity: 1;
   }
}