/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-orange: #E85D04;
    --secondary-red: #DC2F02;
    --secondary-orange-1: #F48C06;
    --secondary-orange-2: #FAA307;
    --bg-light: #F1FFFA;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --neutral-light: #E5E7E6;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.logo svg {
    height: 50px;
    width: auto;
    transition: all var(--transition-normal);
}

.logo:hover svg {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Logo colors - adapts to header state */
.logo svg path {
    stroke: #374151;
    transition: stroke var(--transition-fast);
}

.logo svg text {
    fill: #111827;
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: fill var(--transition-fast);
}

.header.scrolled .logo svg path {
    stroke: #E85D04;
}

.logo:hover svg path {
    stroke: #DC2F02;
}

.logo:hover svg text {
    fill: #E85D04;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E85D04;
    transition: var(--transition-fast);
}

.nav a:hover {
    color: #E85D04;
}

.nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    transition: var(--transition-fast);
}

/* ==================== BUTTONS ==================== */
.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #E85D04;
    color: white;
    box-shadow: 0 4px 15px rgba(232, 93, 4, 0.2);
}

.btn-primary:hover {
    background: #DC2F02;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 47, 2, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #4B5563;
    border: 2px solid #D1D5DB;
}

.btn-secondary:hover {
    background: transparent;
    color: #E85D04;
    border-color: #E85D04;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ==================== HERO SECTION ==================== */
.hero {
    margin-top: 80px;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #F1FFFA 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 93, 4, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(250, 163, 7, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: #111827;
}

.hero-title .line-1,
.hero-title .line-2 {
    display: block;
}

.hero-title .line-1 {
    margin-bottom: 0.2em;
}

.animated-word-container {
    display: inline-block;
    position: relative;
    width: 250px;
    height: 1.2em;
    vertical-align: bottom;
}

.animated-word {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    color: #E85D04;
    transition: opacity 0.6s ease-in-out;
    white-space: nowrap;
}

.animated-word.active {
    opacity: 1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #6B7280;
    margin-bottom: var(--spacing-lg);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== SECTIONS ==================== */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: #111827;
}

/* ==================== WHAT WE OFFER ==================== */
.offer-section {
    background: #FFFFFF;
    padding: 7rem 0;
}

.offer-section .premium-header {
    margin-bottom: 4rem;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.offer-card {
    padding: var(--spacing-md);
    text-align: center;
    border-radius: 12px;
    transition: var(--transition-normal);
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #E85D04;
}

.offer-card .icon {
    margin-bottom: var(--spacing-sm);
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F1FFFA;
    border-radius: 12px;
}

.offer-card .icon svg {
    stroke: #E85D04;
}

.offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: #111827;
}

.offer-card p {
    color: #6B7280;
    line-height: 1.8;
}

/* ==================== HOW IT WORKS - PREMIUM DESIGN ==================== */
.how-it-works-premium {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F1FFFA 0%, #FFFFFF 50%, rgba(250, 163, 7, 0.03) 100%);
}

/* Background Grid Pattern */
.how-it-works-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(229, 231, 230, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(229, 231, 230, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

/* Background Effects Container */
.premium-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

/* Blurred Background Circles */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.bg-circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 93, 4, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.bg-circle-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 140, 6, 0.06) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
}

.bg-circle-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(250, 163, 7, 0.05) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Premium Header */
.premium-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.premium-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #DC2F02 0%, #F48C06 50%, #FAA307 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.premium-subtitle {
    font-size: 1.35rem;
    color: #6B7280;
    max-width: 48rem;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

/* Premium Steps Grid - 2x2 Layout */
.premium-steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto auto;
    gap: 4rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Grid positioning for cards and arrows */
.premium-step-card:nth-child(1) { grid-column: 1; grid-row: 1; } /* Step 1 */
.connection-arrow:nth-child(2) { grid-column: 2; grid-row: 1; align-self: center; } /* Arrow 1 */
.premium-step-card:nth-child(3) { grid-column: 3; grid-row: 1; } /* Step 2 */
.connection-arrow:nth-child(4) { grid-column: 3; grid-row: 2; justify-self: center; } /* Arrow 2 */
.premium-step-card:nth-child(5) { grid-column: 3; grid-row: 3; } /* Step 3 */
.connection-arrow:nth-child(6) { grid-column: 2; grid-row: 3; align-self: center; } /* Arrow 3 */
.premium-step-card:nth-child(7) { grid-column: 1; grid-row: 3; } /* Step 4 */

/* Premium Step Cards - Glassmorphism */
.premium-step-card {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
                      linear-gradient(135deg, rgba(232, 93, 4, 0.2), rgba(250, 163, 7, 0.2));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.premium-step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(232, 93, 4, 0.15);
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                      linear-gradient(135deg, rgba(232, 93, 4, 0.4), rgba(250, 163, 7, 0.4));
}

/* Step Number Badge */
.step-number-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DC2F02, #F48C06);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(220, 47, 2, 0.3),
                0 0 40px rgba(232, 93, 4, 0.2);
    transition: all 0.3s ease;
}

.premium-step-card:hover .step-number-badge {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(220, 47, 2, 0.4),
                0 0 60px rgba(232, 93, 4, 0.3);
}

/* Premium Step Icon */
.premium-step-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 16px rgba(232, 93, 4, 0.15));
    transition: all 0.4s ease;
}

.premium-step-card:hover .premium-step-icon {
    transform: scale(1.1) translateY(-4px);
    filter: drop-shadow(0 8px 24px rgba(232, 93, 4, 0.25));
}

/* Typography */
.premium-step-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.premium-step-card p {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.8;
    font-weight: 400;
}

/* Connection Arrows */
.connection-arrow {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.connection-arrow.visible {
    opacity: 1;
    animation: draw-line 0.8s ease-out forwards;
}

@keyframes draw-line {
    from {
        stroke-dashoffset: 100;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* Animation Classes */
.fade-in-scale {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-scale.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fade-in-scale[data-delay="100"].visible { transition-delay: 0.1s; }
.fade-in-scale[data-delay="200"].visible { transition-delay: 0.2s; }
.fade-in-scale[data-delay="300"].visible { transition-delay: 0.3s; }
.fade-in-scale[data-delay="400"].visible { transition-delay: 0.4s; }

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1280px) {
    .premium-steps-grid {
        gap: 3rem 2rem;
    }

    .premium-step-card {
        padding: 2.5rem;
    }

    .premium-title {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    /* Switch to simple 2-column grid on tablet */
    .premium-steps-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 2.5rem;
    }

    /* Reset desktop grid positioning and apply tablet layout */
    .premium-step-card:nth-child(1),
    .premium-step-card:nth-child(3),
    .premium-step-card:nth-child(5),
    .premium-step-card:nth-child(7) {
        grid-column: auto;
        grid-row: auto;
    }

    .premium-step-card:nth-child(odd) { grid-column: 1; }
    .premium-step-card:nth-child(even) { grid-column: 2; }

    /* Hide connection arrows on tablet and mobile */
    .connection-arrow {
        display: none;
    }

    .premium-title {
        font-size: 2.5rem;
    }

    .premium-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .how-it-works-premium {
        padding: 5rem 0;
    }

    .premium-header {
        margin-bottom: 3rem;
    }

    .premium-title {
        font-size: 2rem;
    }

    .premium-subtitle {
        font-size: 1.1rem;
    }

    /* Single column on mobile */
    .premium-steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Reset all grid positioning for mobile - ensure all cards flow naturally */
    .premium-step-card:nth-child(1),
    .premium-step-card:nth-child(3),
    .premium-step-card:nth-child(5),
    .premium-step-card:nth-child(7) {
        grid-column: 1;
        grid-row: auto;
    }

    .premium-step-card {
        padding: 2rem;
    }

    .step-number-badge {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .premium-step-icon {
        width: 80px;
        height: 80px;
    }

    .premium-step-icon svg {
        width: 70px;
        height: 70px;
    }

    .premium-step-card h3 {
        font-size: 1.5rem;
    }

    .premium-step-card p {
        font-size: 1rem;
    }
}

/* ==================== ANIMATIONS (GLOBAL) ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== WHO WE SERVE ==================== */
.who-we-serve {
    background: #F1FFFA;
    padding: 7rem 0;
}

.who-we-serve .premium-header {
    margin-bottom: 4rem;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
    gap: var(--spacing-lg);
}

.serve-card {
    padding: var(--spacing-lg);
    background: #FFFFFF;
    border-radius: 16px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.serve-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.serve-card:hover.serve-card:nth-child(1) {
    border-color: #E85D04;
}

.serve-card:hover.serve-card:nth-child(2) {
    border-color: #FAA307;
}

.serve-icon {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: transform 0.3s ease;
}

.serve-card:hover .serve-icon {
    transform: scale(1.1);
}

.importers-icon {
    background: #E85D04;
}

.manufacturers-icon {
    background: #FAA307;
}

.serve-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    color: #111827;
    font-weight: 700;
}

.serve-description {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.benefits-list {
    list-style: none;
    width: 100%;
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: #4B5563;
    line-height: 1.6;
}

.bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.importers-bullet {
    background: #E85D04;
}

.manufacturers-bullet {
    background: #FAA307;
}

.serve-cta {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin-top: auto;
    width: 100%;
    color: white;
}

.importers-cta {
    background: #E85D04;
}

.importers-cta:hover {
    background: #DC2F02;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 93, 4, 0.3);
}

.manufacturers-cta {
    background: #FAA307;
}

.manufacturers-cta:hover {
    background: #F48C06;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 163, 7, 0.3);
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    background: #F1FFFA;
    padding: 7rem 0;
}

.contact-section .premium-header {
    margin-bottom: 3rem;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: #FFFFFF;
    padding: var(--spacing-lg);
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
    background: #FFFFFF;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E85D04;
}

.form-group textarea {
    resize: vertical;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #111827;
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: #E85D04;
}

/* Footer logo styling */
.footer-logo {
    margin-bottom: var(--spacing-sm);
}

.footer-logo svg {
    height: 50px;
    width: auto;
    transition: all var(--transition-normal);
}

.footer-logo svg path {
    stroke: #E85D04;
    transition: stroke var(--transition-fast);
}

.footer-logo svg text {
    fill: #FFFFFF;
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: fill var(--transition-fast);
}

.footer-logo:hover svg path {
    stroke: #FAA307;
}

.footer-logo:hover svg {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-column h4 {
    margin-bottom: var(--spacing-sm);
    color: #E85D04;
}

.footer-column p {
    color: #D1D5DB;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-column a {
    color: #D1D5DB;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: #E85D04;
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 93, 4, 0.1);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: #E85D04;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9CA3AF;
}

/* ==================== ANIMATIONS ==================== */
/* Removed duplicate - defined in HOW IT WORKS section */

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo svg {
        height: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .animated-word-container {
        width: 200px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .serve-grid {
        grid-template-columns: 1fr;
    }

    .serve-card {
        padding: var(--spacing-md);
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .logo svg {
        height: 35px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .animated-word-container {
        width: 180px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-large {
        width: 100%;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

    .serve-grid {
        grid-template-columns: 1fr;
    }

    .serve-icon {
        width: 80px;
        height: 80px;
    }

    .serve-card h3 {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}
