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

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #f8fafd;
    color: #1a2b3c;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* header / nav - UPDATED WITH HAMBURGER MENU */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2b3c;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

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

.logo-highlight {
    color: #53b2a5;
    position: relative;
}

.logo-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #53b2a5, transparent);
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #1a2b3c;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #53b2a5;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #53b2a5;
}

.nav-link:hover::before {
    width: 100%;
}

/* Active link style */
.nav-link.active {
    color: #53b2a5;
}

.nav-link.active::before {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-outline {
    border: 1.5px solid #53b2a5;
    background: transparent;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    color: #53b2a5;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(83, 178, 165, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.btn-outline:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(83, 178, 165, 0.2);
}

.btn-primary {
    background: #53b2a5;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(83, 178, 165, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #48a094;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(83, 178, 165, 0.35);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.bar {
    width: 30px;
    height: 3px;
    background: #1a2b3c;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* hero section - with accounting professional image */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin: 40px 0 60px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1 1 500px;
}

.hero-image {
    flex: 1 1 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accountant-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 30px 30px 30px 30px;
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.3);
    border: 4px solid white;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.accountant-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 40px 60px -15px rgba(83, 178, 165, 0.4);
}

.image-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 450px;
    border: 3px solid #53b2a5;
    border-radius: 30px 30px 30px 30px;
    top: 20px;
    left: 20px;
    z-index: 1;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.hero-image:hover .image-accent {
    top: 15px;
    left: 15px;
    opacity: 0.6;
}

.badge {
    background: rgba(83, 178, 165, 0.1);
    color: #53b2a5;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 40px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 20px 0 24px;
}

.hero-content h1 .highlight {
    color: #53b2a5;
    font-size: 2.8rem;
    font-weight: 700;
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    color: #4a5a6e;
    max-width: 550px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* dashboard image */
.dashboard-image-container {
    margin: 40px 0 60px;
    text-align: center;
}

.dashboard-image {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
    border: 1px solid #edf2f7;
}

/* features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #edf2f7;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -10px rgba(83, 178, 165, 0.15);
    border-color: rgba(83, 178, 165, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: #1a2b3c;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* section titles */
.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a2b3c;
}

.section-title p {
    color: #4a5568;
    font-size: 1.2rem;
}

/* how it works */
.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin: 40px 0 80px;
}

.step {
    flex: 1 1 200px;
    background: white;
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #edf2f7;
    text-align: center;
    transition: all 0.3s;
}

.step:hover {
    border-color: #53b2a5;
}

.step .number {
    background: #53b2a5;
    color: white;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.step h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #1a2b3c;
}

.step p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* pricing section */
.pricing-section {
    margin: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 32px;
    padding: 32px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf2f7;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(83, 178, 165, 0.15);
}

.pricing-card.popular {
    border: 2px solid #53b2a5;
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #53b2a5;
    color: white;
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #edf2f7;
    margin-bottom: 24px;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2b3c;
    margin-bottom: 8px;
}

.plan-billing {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #53b2a5;
}

.pricing-features {
    margin-bottom: 32px;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f4f9;
}

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

.feature-name {
    color: #2d3a4f;
    font-size: 0.95rem;
}

.feature-check {
    font-weight: 700;
    font-size: 1.1rem;
}

.feature-check.yes {
    color: #10b981;
}

.feature-check.no {
    color: #ef4444;
}

.pricing-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

/* currency section - MARQUEE STYLE */
.currency-section {
    background: linear-gradient(135deg, #1a2b3c 0%, #0f1e2c 100%);
    border-radius: 48px;
    padding: 50px 0;
    margin: 60px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.currency-section .section-title {
    padding: 0 40px;
}

.currency-section .section-title h2 {
    color: white;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #0f1e2c, transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #0f1e2c, transparent);
}

.marquee-content {
    display: inline-flex;
    animation: scroll 30s linear infinite;
    gap: 20px;
    padding: 10px 0;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.currency-item {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #53b2a5;
    border-radius: 60px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    white-space: nowrap;
    margin: 0 5px;
}

.currency-item:hover {
    background: rgba(83, 178, 165, 0.15);
    transform: scale(1.05);
    border-color: #6cd9c9;
    box-shadow: 0 5px 15px rgba(83, 178, 165, 0.3);
    cursor: pointer;
}

.country-flag {
    font-size: 1.8rem;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.country-name {
    font-weight: 600;
    color: white;
    font-size: 1rem;
    margin-right: 12px;
}

.currency-code {
    background: #53b2a5;
    color: white;
    padding: 4px 12px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(83, 178, 165, 0.3);
}

/* testimonials */
.testimonials-section {
    margin: 60px 0;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #edf2f7;
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    margin: 16px 0 24px;
    color: #2d3a4f;
    line-height: 1.6;
}

.customer {
    font-weight: 700;
    color: #1a2b3c;
}

.customer small {
    font-weight: 400;
    color: #718096;
    font-size: 0.9rem;
    display: block;
    margin-top: 4px;
}

/* cta */
.cta-block {
    background: linear-gradient(135deg, #53b2a5 0%, #3d9589 100%);
    color: white;
    border-radius: 40px;
    padding: 64px 40px;
    text-align: center;
    margin: 60px 0 40px;
}

.cta-block h2 {
    font-size: 2.5rem;
    max-width: 700px;
    margin: 0 auto 20px;
    font-weight: 700;
}

.cta-block p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: white;
    color: #53b2a5;
    border: none;
    padding: 16px 42px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

footer {
    text-align: center;
    padding: 40px 0 60px;
    color: #718096;
    border-top: 1px solid #e2e8f0;
    margin-top: 20px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    display: block;
    margin-bottom: 8px;
}

hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 40px 0 20px;
}

/* Medal Icons */
.medal-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 10px;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
    animation: medalGlow 2s infinite alternate;
}

@keyframes medalGlow {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

/* Bronze Medal & Colors */
.bronze-medal {
    text-shadow: 0 0 20px rgba(205, 127, 50, 0.5);
}

.bronze-text {
    color: #cd7f32 !important;
    background: linear-gradient(135deg, #cd7f32, #b87333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bronze-card {
    border-top: 5px solid #cd7f32;
    background: linear-gradient(145deg, #fff9f0, #fff);
}

.bronze-btn {
    background: linear-gradient(135deg, #cd7f32, #b87333);
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(205, 127, 50, 0.3);
}

.bronze-btn:hover {
    background: linear-gradient(135deg, #b87333, #a05e2c);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(205, 127, 50, 0.4);
}

/* Silver Medal & Colors */
.silver-medal {
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
}

.silver-text {
    color: #c0c0c0 !important;
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.silver-card {
    border-top: 5px solid #c0c0c0;
    background: linear-gradient(145deg, #f8f9ff, #fff);
}

.silver-btn {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(192, 192, 192, 0.3);
}

.silver-btn:hover {
    background: linear-gradient(135deg, #a0a0a0, #808080);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(192, 192, 192, 0.4);
}

/* Gold Medal & Colors */
.gold-medal {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.gold-text {
    color: #ffd700 !important;
    background: linear-gradient(135deg, #ffd700, #daa520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-card {
    border-top: 5px solid #ffd700;
    background: linear-gradient(145deg, #fff9e6, #fff);
}

.gold-btn {
    background: linear-gradient(135deg, #ffd700, #daa520);
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.gold-btn:hover {
    background: linear-gradient(135deg, #daa520, #b8860b);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 215, 0, 0.4);
}

/* Update pricing card styles */
.pricing-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
}

/* Popular badge enhancement */
.popular-badge {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #1a2b3c;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 20px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Plan name styling */
.plan-name {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.plan-period {
    color: #718096;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Update existing pricing button class */
.pricing-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    margin-top: 20px;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content h1 .highlight {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(8px, 6px);
        background: #53b2a5;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -6px);
        background: #53b2a5;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 12px 24px;
        font-size: 1.2rem;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-link:hover {
        background: rgba(83, 178, 165, 0.1);
    }
    
    .nav-buttons {
        margin-left: auto;
        margin-right: 20px;
    }
    
    .btn-outline, .btn-primary {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h1 .highlight {
        font-size: 2.2rem;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .accountant-image {
        max-width: 350px;
    }
    
    .image-accent {
        max-width: 350px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .cta-block h2 {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .medal-icon {
        font-size: 3rem;
    }
    
    .plan-name {
        font-size: 1.8rem;
    }
    
    .currency-section {
        padding: 30px 0;
    }
    
    .currency-section .section-title {
        padding: 0 20px;
    }
    
    .currency-item {
        padding: 10px 18px;
    }
    
    .country-flag {
        font-size: 1.5rem;
        margin-right: 8px;
    }
    
    .country-name {
        font-size: 0.9rem;
        margin-right: 8px;
    }
    
    .currency-code {
        padding: 3px 10px;
        font-size: 0.8rem;
    }
    
    .marquee-container::before,
    .marquee-container::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 12px 16px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-buttons {
        display: none; /* Hide buttons on very small screens */
    }
    
    .nav-menu {
        width: 100%;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .marquee-container::before,
    .marquee-container::after {
        width: 30px;
    }
}

/* Footer - Symmetrical Design */
.footer {
    background: #0f1e2c;
    color: #e2e8f0;
    padding: 40px 0 20px;
    margin-top: 60px;
    border-top: 3px solid #53b2a5;
    width: 100%;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Main footer content - 4 equal columns */
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Column 1 - Logo and Social */
.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.footer-description {
    color: #a0b3cc;
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 20px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1rem;
}

.social-icon:hover {
    background: #53b2a5;
    transform: translateY(-3px);
}

/* Columns 2-4 - Links */
.footer-heading {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #a0b3cc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: #53b2a5;
}

/* Bottom copyright */
.footer-bottom {
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    color: #718096;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-col:first-child {
        grid-column: span 2;
    }
    
    .footer-description {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-col:first-child {
        grid-column: span 1;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-description {
        margin-left: auto;
        margin-right: auto;
    }
}