* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.6;
    color: #1A202C;
    scroll-behavior: smooth;
}

/* Financial Planning Background */
.financial-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0D9488 0%, #14B8A6 25%, #2DD4BF 50%, #5EEAD4 75%, #99F6E4 100%);
    background-size: 400% 400%;
    animation: financialFlow 35s ease infinite;
    z-index: -2;
}

@keyframes financialFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Financial Charts Pattern */
.charts-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><defs><pattern id="financial-charts" patternUnits="userSpaceOnUse" width="120" height="120"><rect width="120" height="120" fill="none"/><circle cx="30" cy="30" r="15" stroke="rgba(255,255,255,0.08)" fill="none" stroke-width="1"/><path d="M22,30 A8,8 0 0,1 30,22 A8,8 0 0,1 38,30 A8,8 0 0,1 32,36" stroke="rgba(255,255,255,0.1)" fill="rgba(255,255,255,0.02)" stroke-width="1.5"/><path d="M15,75 L25,65 L35,70 L45,60 L55,65 L65,55" stroke="rgba(255,255,255,0.09)" fill="none" stroke-width="1.2" stroke-linecap="round"/><rect x="75" y="60" width="6" height="20" fill="rgba(255,255,255,0.06)"/><rect x="83" y="65" width="6" height="15" fill="rgba(255,255,255,0.04)"/><rect x="91" y="55" width="6" height="25" fill="rgba(255,255,255,0.07)"/><rect x="99" y="70" width="6" height="10" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="100" r="3" fill="rgba(255,255,255,0.08)"/><text x="90" y="103" text-anchor="middle" font-size="3" fill="rgba(255,255,255,0.06)" font-family="Arial">%</text></pattern></defs><rect width="100" height="100" fill="url(%23financial-charts)"/></svg>') repeat;
    z-index: -1;
    opacity: 0.35;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    border-bottom: 4px solid #0D9488;
    padding: 1.2rem 0;
    z-index: 1000;
    box-shadow: 0 8px 40px rgba(13, 148, 136, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0D9488;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo::before {
    content: '📈';
    font-size: 3.5rem;
    animation: chartGrowth 6s ease-in-out infinite;
}

@keyframes chartGrowth {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(5deg); }
    75% { transform: scale(1.1) rotate(-3deg); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3.2rem;
}

.nav-menu a {
    color: #1A202C;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    border-radius: 35px;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #0D9488, #14B8A6);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a:hover {
    color: #0D9488;
    background: rgba(13, 148, 136, 0.1);
}

/* Sections */
section {
    min-height: 100vh;
    padding: 10rem 2rem;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Home Section */
#home {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#home::before {
    content: '';
    position: absolute;
    top: -70%;
    left: -70%;
    width: 240%;
    height: 240%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="financial-symbols" patternUnits="userSpaceOnUse" width="60" height="60"><rect width="60" height="60" fill="none"/><text x="15" y="20" font-size="8" fill="rgba(255,255,255,0.08)" font-family="Arial">$</text><text x="40" y="15" font-size="6" fill="rgba(255,255,255,0.06)" font-family="Arial">%</text><path d="M10,35 L20,25 L30,30 L40,20" stroke="rgba(255,255,255,0.07)" fill="none" stroke-width="1" stroke-linecap="round"/><circle cx="45" cy="45" r="4" stroke="rgba(255,255,255,0.06)" fill="none" stroke-width="0.8"/><text x="45" y="48" text-anchor="middle" font-size="3" fill="rgba(255,255,255,0.07)" font-family="Arial">ROI</text></pattern></defs><rect width="100" height="100" fill="url(%23financial-symbols)"/></svg>') repeat;
    animation: symbolMove 45s linear infinite;
    opacity: 0.25;
}

@keyframes symbolMove {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-60px, -60px) rotate(360deg); }
}

.hero-financial {
    position: relative;
    z-index: 2;
}

.hero-financial h1 {
    font-size: 7.5rem;
    margin-bottom: 3rem;
    font-weight: bold;
    line-height: 1.0;
    text-shadow: 5px 5px 10px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, #fff, #99F6E4, #5EEAD4, #fff);
    background-size: 400% 400%;
    animation: financialShimmer 15s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes financialShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.financial-subtitle {
    font-size: 2.2rem;
    margin-bottom: 4rem;
    opacity: 0.98;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.financial-cta {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-financial {
    padding: 2.2rem 5rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    cursor: pointer;
    font-size: 1.3rem;
    position: relative;
    overflow: hidden;
}

.cta-primary-financial {
    background: linear-gradient(135deg, #0D9488, #14B8A6);
    color: white;
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.5);
}

.cta-secondary-financial {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: 3px solid white;
    backdrop-filter: blur(20px);
}

.cta-financial:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 50px rgba(13, 148, 136, 0.7);
}

/* About Section */
#about {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    padding-top: 12rem;
}

.section-title {
    text-align: center;
    font-size: 4.5rem;
    margin-bottom: 3rem;
    color: #1A202C;
    font-weight: bold;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 7px;
    background: linear-gradient(90deg, #0D9488, #14B8A6, #0D9488);
    border-radius: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.6rem;
    color: #718096;
    margin-bottom: 7rem;
    font-style: italic;
    font-weight: 400;
}

.about-financial {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 7rem;
    align-items: center;
    margin-bottom: 7rem;
}

.financial-visual {
    position: relative;
    text-align: center;
}

.financial-icon {
    font-size: 18rem;
    color: #0D9488;
    opacity: 0.9;
    animation: planningPulse 12s ease-in-out infinite;
}

@keyframes planningPulse {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(12deg) scale(1.1); }
}

.about-text h3 {
    font-size: 3.5rem;
    margin-bottom: 3.5rem;
    color: #1A202C;
    font-weight: bold;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 3rem;
    font-size: 1.4rem;
    line-height: 2;
    color: #4A5568;
    text-align: justify;
}

.financial-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 7rem;
}

.metric-financial {
    text-align: center;
    padding: 4.5rem 3rem;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(20, 184, 166, 0.1));
    border-radius: 30px;
    border: 3px solid rgba(13, 148, 136, 0.2);
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.18);
    transition: all 0.4s ease;
}

.metric-financial:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(13, 148, 136, 0.3);
}

.metric-number {
    font-size: 5rem;
    font-weight: bold;
    color: #0D9488;
    margin-bottom: 2rem;
}

.metric-label {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #718096;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Services Section */
#services {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(20, 184, 166, 0.08));
    backdrop-filter: blur(30px);
    padding-top: 12rem;
}

.financial-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 5rem;
    margin-top: 7rem;
}

.service-financial {
    background: white;
    border-radius: 35px;
    padding: 5rem;
    box-shadow: 0 20px 50px rgba(13, 148, 136, 0.2);
    border-top: 7px solid #0D9488;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-financial::before {
    content: '';
    position: absolute;
    top: -70%;
    right: -70%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
    transition: all 0.4s ease;
}

.service-financial:hover::before {
    top: -35%;
    right: -35%;
}

.service-financial:hover {
    transform: translateY(-20px) rotate(3deg);
    box-shadow: 0 35px 70px rgba(13, 148, 136, 0.4);
    border-top-color: #14B8A6;
}

.service-icon-financial {
    font-size: 5.5rem;
    color: #0D9488;
    margin-bottom: 3.5rem;
    display: block;
    text-align: center;
}

.service-financial h4 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1A202C;
    font-weight: bold;
    text-align: center;
}

.service-financial p {
    line-height: 2;
    color: #4A5568;
    margin-bottom: 3.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    margin-bottom: 3rem;
}

.service-features li {
    padding: 1rem 0;
    color: #718096;
    position: relative;
    padding-left: 3rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0D9488;
    font-weight: bold;
    font-size: 1.4rem;
}

.service-scope {
    text-align: center;
    font-size: 1.3rem;
    color: #0D9488;
    font-weight: 700;
    background: rgba(13, 148, 136, 0.1);
    padding: 1.5rem;
    border-radius: 18px;
}

/* Why Choose Section */
#why-choose {
    background: linear-gradient(135deg, #0D9488, #14B8A6, #2DD4BF);
    color: white;
    padding-top: 12rem;
}

.why-choose .section-title {
    color: white;
}

.why-choose .section-subtitle {
    color: rgba(255,255,255,0.9);
}

.financial-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 5rem;
    margin-top: 7rem;
}

.advantage-financial {
    text-align: center;
    padding: 5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 35px;
    backdrop-filter: blur(25px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
}

.advantage-financial:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-15px) scale(1.05);
}

.advantage-icon-financial {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 4rem;
    font-size: 4.5rem;
    color: #0D9488;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.advantage-financial h4 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    font-weight: bold;
}

/* Contact Section */
#contact {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    padding-top: 12rem;
}

.contact-financial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    margin-top: 7rem;
}

.consultation-form {
    background: linear-gradient(135deg, #fff, rgba(13, 148, 136, 0.05));
    padding: 5rem;
    border-radius: 40px;
    box-shadow: 0 30px 70px rgba(13, 148, 136, 0.3);
    border: 4px solid rgba(13, 148, 136, 0.15);
}

.consultation-form h3 {
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1A202C;
    text-align: center;
    font-weight: bold;
}

.form-group {
    margin-bottom: 3.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 1.5rem;
    color: #1A202C;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 2rem;
    border: 3px solid rgba(13, 148, 136, 0.2);
    border-radius: 20px;
    font-size: 1.3rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0D9488;
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.15);
}

.office-info {
    padding: 5rem 3rem;
}

.office-info h3 {
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1A202C;
    font-weight: bold;
}

.info-financial {
    display: flex;
    align-items: flex-start;
    margin-bottom: 4rem;
    padding: 3.5rem;
    background: linear-gradient(135deg, #fff, rgba(13, 148, 136, 0.05));
    border-radius: 30px;
    border-left: 7px solid #0D9488;
    transition: all 0.3s ease;
}

.info-financial:hover {
    transform: translateX(20px);
    box-shadow: 0 20px 50px rgba(13, 148, 136, 0.3);
}

.info-icon-financial {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0D9488, #14B8A6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 3rem;
    color: white;
    font-size: 3rem;
    flex-shrink: 0;
}

.info-content-financial strong {
    color: #1A202C;
    display: block;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.info-content-financial {
    color: #4A5568;
    line-height: 1.8;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1A202C, #2D3748);
    color: white;
    text-align: center;
    padding: 7rem 2rem;
    border-top: 7px solid #0D9488;
}

.footer-financial {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 5rem;
    margin-bottom: 5rem;
    text-align: left;
}

.footer-section h4 {
    font-size: 2.1rem;
    margin-bottom: 3rem;
    color: #2DD4BF;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-financial h1 {
        font-size: 4.5rem;
    }

    .about-financial,
    .contact-financial {
        grid-template-columns: 1fr;
    }

    .financial-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    section {
        padding: 8rem 1rem;
    }
    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .nav-menu {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.5rem 0;
    }
    .logo {
        font-size: 2rem;
    }
    .financial-icon {
        font-size: 8rem;
    }
    .service-financial,
    .advantage-financial,
    .consultation-form,
    .office-info {
        padding: 2rem 1rem;
    }
    .financial-services,
    .financial-advantages,
    .footer-financial {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-section h4 {
        font-size: 1.5rem;
    }
    .metric-number {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .section-subtitle {
        font-size: 1.1rem;
    }
    .service-icon-financial {
        font-size: 3rem;
    }
    .advantage-icon-financial {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    .info-icon-financial {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-right: 1rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
    }
    .cta-financial {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    .navbar {
        padding: 0.5rem 0;
    }
    footer {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-financial h1 {
        font-size: 2.2rem;
    }
    .financial-subtitle {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .about-text h3 {
        font-size: 1.2rem;
    }
    .service-financial h4,
    .advantage-financial h4 {
        font-size: 1.1rem;
    }
    .metric-number {
        font-size: 1.2rem;
    }
    .footer-section h4 {
        font-size: 1.1rem;
    }
}