@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ======================================================
   WealthAria V1.0
   Premium FinTech UI
====================================================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#F8FAFC;
    color:#0F172A;
    line-height:1.7;
}

/* Links */

a{
    text-decoration:none;
    transition:.3s;
}

/* Images */

img{
    max-width:100%;
    display:block;
}

/* Sections */

section{
    padding:80px 8%;
}

/* Headings */

h1{
    font-size:56px;
    line-height:1.2;
    margin-bottom:20px;
}

h2{
    font-size:38px;
    margin-bottom:20px;
}

h3{
    font-size:24px;
}

p{
    color:#475569;
    font-size:18px;
}

/* ======================================================
   Header
====================================================== */

.header{

    position:sticky;
    top:0;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 8%;

    background:white;

    box-shadow:0 2px 15px rgba(0,0,0,.08);

    z-index:999;

}

.logo{

    font-size:30px;
    font-weight:bold;
    color:#16A34A;

}

.nav{

    display:flex;
    gap:28px;

}

.nav a{

    color:#0F172A;
    font-weight:600;

}

.nav a:hover{

    color:#16A34A;

}

.cta-btn{

    background:#16A34A;
    color:white;

    padding:14px 26px;

    border-radius:10px;

    font-weight:bold;

}

.cta-btn:hover{

    background:#15803D;

}

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

.hero{

    text-align:center;

    background:linear-gradient(135deg,#16A34A,#0F172A);

    color:white;

    padding:120px 10%;

}

.hero p{

    color:white;

    max-width:800px;

    margin:auto;

    font-size:20px;

}

.buttons{

    margin-top:45px;

}

.btn{

    display:inline-block;

    background:#16A34A;

    color:white;

    padding:16px 34px;

    border-radius:12px;

    margin:10px;

    font-weight:bold;

}

.btn:hover{

    background:#15803D;

    transform:translateY(-4px);

}

.btn2{

    display:inline-block;

    border:2px solid white;

    color:white;

    padding:16px 34px;

    border-radius:12px;

    margin:10px;

    font-weight:bold;

}

.btn2:hover{

    background:white;

    color:#16A34A;

}

/* ======================================================
   Statistics
====================================================== */

.stats{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}

.stat{

    background:white;

    padding:35px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.stat:hover{

    transform:translateY(-8px);

}

.stat h2{

    color:#16A34A;

    font-size:42px;

}


/* ======================================================
   Section Titles
====================================================== */

.section-title{

    text-align:center;

    padding:40px 8%;

}

.section-title h2{

    color:#0F172A;

}

.section-title p{

    max-width:650px;

    margin:auto;

}

/* ======================================================
   Features
====================================================== */

.features{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.card{

    background:#ffffff;

    padding:35px;

    border-radius:20px;

    border:1px solid #E2E8F0;

    box-shadow:0 10px 30px rgba(15,23,42,.08);

    transition:all .35s ease;

}
.card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 35px rgba(0,0,0,.12);

}

.card h2,
.card h3{

    margin-bottom:15px;

    color:#16A34A;

}

.card p{

    font-size:17px;

}

/* ======================================================
   Calculator Section
====================================================== */

.calculators{

    background:#F1F5F9;

    text-align:center;

}

.calculators h2{

    margin-bottom:40px;

}

/* ======================================================
   AI Assistant
====================================================== */

.ai-section{

    background:white;

    text-align:center;

}

.ai-section p{

    max-width:750px;

    margin:0 auto 30px;

}

.ai-section .card{

    max-width:700px;

    margin:auto;

}

/* ======================================================
   Learning Hub
====================================================== */

.learning{

    background:#F8FAFC;

    text-align:center;

}

.learning h2{

    margin-bottom:40px;

}

/* ======================================================
   Mission
====================================================== */

.vision{

    background:#0F172A;

    color:white;

    text-align:center;

    border-radius:24px;

    margin:60px 8%;

}

.vision h2{

    color:white;

}

.vision p{

    color:#E2E8F0;

    max-width:850px;

    margin:auto;

}

/* ======================================================
   Newsletter
====================================================== */

.newsletter{

    background:#16A34A;

    color:white;

    text-align:center;

    border-radius:24px;

    margin:70px 8%;

}

.newsletter h2{

    color:white;

    margin-bottom:15px;

}

.newsletter p{

    color:#F8FAFC;

    margin-bottom:30px;

}

.newsletter form{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

}

.newsletter input{

    width:350px;

    max-width:90%;

    padding:16px;

    border:none;

    border-radius:12px;

    font-size:16px;

    outline:none;

}

.newsletter button{

    cursor:pointer;

    border:none;

}

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

footer{

    background:#0F172A;

    color:white;

    text-align:center;

    padding:60px 20px;

    margin-top:80px;

}

footer h3{

    color:#16A34A;

    margin-bottom:15px;

    font-size:30px;

}

footer p{

    color:#CBD5E1;

    margin:10px 0;

}

/* ======================================================
   Hover Effects
====================================================== */

.btn,
.btn2,
.cta-btn{

    transition:.35s;

}

.btn:hover,
.btn2:hover,
.cta-btn:hover{

    box-shadow:0 12px 25px rgba(0,0,0,.18);

}

.card{

    overflow:hidden;

}

.card:hover{

    border-top:5px solid #16A34A;

}

/* ======================================================
   Utilities
====================================================== */

.text-center{

    text-align:center;

}

.mt-40{

    margin-top:40px;

}

.mb-40{

    margin-bottom:40px;

}

/* ======================================================
   Mobile Responsive
====================================================== */

@media(max-width:900px){

.header{

    flex-direction:column;

    gap:20px;

}

.nav{

    flex-wrap:wrap;

    justify-content:center;

}

.hero{

    padding:80px 25px;

}

.hero h1{

    font-size:40px;

}

h2{

    font-size:30px;

}

.features{

    grid-template-columns:1fr;

}

.stats{

    grid-template-columns:1fr 1fr;

}

.newsletter form{

    flex-direction:column;

    align-items:center;

}

}

@media(max-width:600px){

.hero h1{

    font-size:32px;

}

.stats{

    grid-template-columns:1fr;

}

.logo{

    font-size:26px;

}

.nav{

    gap:15px;

}

.nav a{

    font-size:15px;

}

.btn,
.btn2,
.cta-btn{

    width:100%;

    text-align:center;

}

section{

    padding:60px 6%;

}

}

textarea{
    width:100%;
    padding:12px;
    border:1px solid #CBD5E1;
    border-radius:10px;
    font-size:16px;
    resize:vertical;
    font-family:inherit;
}

.calculator-card{

    max-width:700px;

    margin:auto;

}

/* Beautiful Selection */

::selection{
    background:#16A34A;
    color:white;
}

/* Better Focus */

input:focus,
textarea:focus{

    outline:none;

    border:2px solid #16A34A;

    box-shadow:0 0 10px rgba(22,163,74,.20);

}

button,
a,
.card,
input,
textarea{

    transition:all .25s ease;

}

.container{

    width:min(1200px,92%);

    margin:auto;

}
