/* ========================================
   Triple Canopy Commerce - Global Styles
   ======================================== */

:root {
    /* Color Palette */
    --deep-blue: #102A43;
    --teal: #4FB0AE;
    --vibrant-green: #6B9E6A;
    --light-bg: #F8FAFB;
    --white: #ffffff;
    --gray-100: #F0F4F8;
    --gray-200: #D9E2EC;
    --gray-300: #BCCCDC;
    --gray-500: #627D98;
    --gray-700: #334E68;
    --gray-900: #102A43;
    
    /* Accent Colors */
    --accent-blue: #3E92CC;
    --accent-orange: #F57C00;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    --spacing-huge: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(16, 42, 67, 0.1);
    --shadow-md: 0 4px 6px rgba(16, 42, 67, 0.1);
    --shadow-lg: 0 10px 25px rgba(16, 42, 67, 0.15);
    --shadow-xl: 0 20px 40px rgba(16, 42, 67, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   Reset & Base Styles
   ======================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-900);
    line-height: 1.7;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-family: var(--font-display);
}

h2 {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-family: var(--font-display);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

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

/* ========================================
   Container & Layout
   ======================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(16, 42, 67, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.logo i {
    font-size: 1.5rem;
    color: var(--teal);
}

.nav-cta {
    background: var(--vibrant-green);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition-base);
}

.nav-cta:hover {
    background: #5DAF5C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
    .logo span {
        font-size: 1rem;
    }
    
    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.0625rem;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--vibrant-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(107, 158, 106, 0.3);
}

.btn-primary:hover {
    background: #5DAF5C;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 158, 106, 0.4);
}

.btn-secondary {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(79, 176, 174, 0.3);
}

.btn-secondary:hover {
    background: #459E9C;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 176, 174, 0.4);
}

.btn-full {
    width: 100%;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--deep-blue) 0%, #1a4368 100%);
    color: var(--white);
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(79, 176, 174, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(107, 158, 106, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--gray-200);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero .btn-primary {
    animation: fadeInUp 0.8s ease 0.4s both;
    font-size: 1.125rem;
    padding: 1.125rem 2.5rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--vibrant-green);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .stat-label {
        font-size: 0.8125rem;
    }
}

@media (max-width: 640px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ========================================
   Section Styles
   ======================================== */

section {
    padding: var(--spacing-huge) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-500);
}

/* ========================================
   Problem/Solution Section
   ======================================== */

.problem-section {
    background: var(--light-bg);
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.problem-visual {
    position: sticky;
    top: 120px;
}

.bottleneck-diagram {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.bottleneck-top {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.constraint-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-orange);
}

.constraint-item i {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.constraint-item span {
    font-weight: 600;
    color: var(--gray-700);
}

.bottleneck-arrow {
    text-align: center;
    font-size: 3rem;
    color: var(--accent-orange);
    margin: 1.5rem 0;
}

.bottleneck-result {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border: 2px solid var(--accent-orange);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    color: var(--gray-900);
    font-weight: 600;
}

.problem-text .lead {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.problem-list {
    list-style: none;
    margin-bottom: 2rem;
}

.problem-list li {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.problem-list li:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.problem-list i {
    font-size: 1.25rem;
    color: var(--accent-orange);
    margin-top: 0.25rem;
}

.problem-quote {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--deep-blue) 0%, #1a4368 100%);
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--vibrant-green);
}

.problem-quote blockquote {
    color: var(--white);
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .problem-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .problem-visual {
        position: static;
    }
}

/* ========================================
   Services Section
   ======================================== */

.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    border-top: 4px solid transparent;
}

.service-card:nth-child(1) {
    border-top-color: var(--vibrant-green);
}

.service-card:nth-child(2) {
    border-top-color: var(--teal);
}

.service-card:nth-child(3) {
    border-top-color: var(--accent-blue);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.icon-execution {
    background: linear-gradient(135deg, var(--vibrant-green) 0%, #5DAF5C 100%);
}

.icon-scalable {
    background: linear-gradient(135deg, var(--teal) 0%, #459E9C 100%);
}

.icon-mastery {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #2E7DB8 100%);
}

.service-title {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-description {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

.service-features i {
    color: var(--vibrant-green);
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    padding: var(--spacing-huge) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border-top: 4px solid var(--teal);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card:nth-child(1) {
    border-top-color: var(--vibrant-green);
}

.testimonial-card:nth-child(2) {
    border-top-color: var(--teal);
}

.testimonial-card:nth-child(3) {
    border-top-color: var(--accent-blue);
}

.testimonial-card:nth-child(4) {
    border-top-color: var(--accent-orange);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.company-logo {
    flex-shrink: 0;
}

.logo-placeholder {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

.testimonial-card:nth-child(1) .logo-placeholder {
    background: linear-gradient(135deg, var(--vibrant-green) 0%, #5DAF5C 100%);
}

.testimonial-card:nth-child(2) .logo-placeholder {
    background: linear-gradient(135deg, var(--teal) 0%, #459E9C 100%);
}

.testimonial-card:nth-child(3) .logo-placeholder {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #2E7DB8 100%);
}

.testimonial-card:nth-child(4) .logo-placeholder {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #E67300 100%);
}

.company-info {
    flex-grow: 1;
}

.company-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.25rem;
}

.company-category {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #FFA500;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    border-left: 3px solid var(--teal);
    padding-left: 1rem;
}

.testimonial-card:nth-child(1) .testimonial-text {
    border-left-color: var(--vibrant-green);
}

.testimonial-card:nth-child(2) .testimonial-text {
    border-left-color: var(--teal);
}

.testimonial-card:nth-child(3) .testimonial-text {
    border-left-color: var(--accent-blue);
}

.testimonial-card:nth-child(4) .testimonial-text {
    border-left-color: var(--accent-orange);
}

.testimonial-author {
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.author-name {
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
}

.author-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 0;
    text-align: center;
}

.testimonial-metric {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--vibrant-green);
    line-height: 1;
    font-family: var(--font-display);
}

.testimonial-card:nth-child(1) .metric-number {
    color: var(--vibrant-green);
}

.testimonial-card:nth-child(2) .metric-number {
    color: var(--teal);
}

.testimonial-card:nth-child(3) .metric-number {
    color: var(--accent-blue);
}

.testimonial-card:nth-child(4) .metric-number {
    color: var(--accent-orange);
}

.metric-label {
    font-size: 0.8125rem;
    color: var(--gray-700);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonials-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-200);
}

.testimonials-cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonials-cta-text {
        font-size: 1.25rem;
    }
}

/* ========================================
   Comparison Section
   ======================================== */

.comparison-section {
    background: var(--light-bg);
}

.comparison-table {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    background: var(--deep-blue);
    color: var(--white);
    font-weight: 700;
    text-align: center;
}

.comparison-header .comparison-col {
    padding: 1.5rem 1rem;
    font-size: 1.125rem;
}

.comparison-header .comparison-col:first-child {
    text-align: left;
}

.comparison-header .comparison-col.highlight {
    background: var(--vibrant-green);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.comparison-row:hover {
    background: var(--gray-100);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-col {
    padding: 1.25rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-col.feature {
    font-weight: 600;
    color: var(--deep-blue);
    text-align: left;
    justify-content: flex-start;
}

.comparison-col.highlight {
    background: rgba(107, 158, 106, 0.08);
    color: var(--gray-900);
}

@media (max-width: 768px) {
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-header .comparison-col:first-child {
        display: none;
    }
    
    .comparison-col.feature {
        font-weight: 700;
        background: var(--gray-100);
        text-align: center;
        justify-content: center;
        font-size: 0.9375rem;
    }
    
    .comparison-col {
        padding: 1rem;
    }
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #1a4368 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(79, 176, 174, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(107, 158, 106, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.cta-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    color: var(--gray-200);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.cta-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.cta-benefit i {
    font-size: 2.5rem;
    color: var(--vibrant-green);
}

.cta-benefit span {
    font-weight: 600;
    color: var(--white);
}

.cta-guarantee {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--gray-300);
    font-size: 0.9375rem;
}

.cta-guarantee i {
    color: var(--vibrant-green);
    font-size: 1.25rem;
}

/* ========================================
   Contact Form
   ======================================== */

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
}

.contact-form h3 {
    color: var(--deep-blue);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.875rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-base);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(79, 176, 174, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--gray-700);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.form-privacy {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--gray-500);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-privacy i {
    color: var(--vibrant-green);
}

@media (max-width: 768px) {
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--deep-blue);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-300);
    margin-bottom: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--gray-300);
    transition: var(--transition-base);
}

.footer-col a:hover {
    color: var(--vibrant-green);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-300);
    font-size: 0.875rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Animations & Utilities
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}