/* ==========================================================
   HISPANO ACCOUNTING SOLUTIONS
   MASTER STYLE.CSS
   PART 1 - FOUNDATION
========================================================== */

/* ==========================
   GOOGLE FONTS
========================== */

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

/* ==========================
   VARIABLES
========================== */

:root{

    --primary:#15803D;
    --primary-dark:#166534;
    --primary-light:#DCFCE7;

    --navy:#0F172A;
    --navy-light:#1E293B;

    --white:#FFFFFF;
    --light:#F8FAFC;
    --gray:#64748B;
    --gray-light:#E5E7EB;

    --shadow-sm:0 10px 25px rgba(15,23,42,.06);
    --shadow-md:0 20px 45px rgba(15,23,42,.10);
    --shadow-lg:0 30px 70px rgba(15,23,42,.18);

    --radius:22px;

}

/* ==========================
   RESET
========================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;
    background:var(--light);
    color:var(--navy);
    line-height:1.7;
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;
    color:inherit;

}

ul{

    list-style:none;

}

section{

    padding:110px 0;

}

/* ==========================
   CONTAINER
========================== */

.container{

    width:min(1200px,92%);
    margin:auto;

}

/* ==========================
   TYPOGRAPHY
========================== */

h1,h2,h3,h4{

    font-family:'Poppins',sans-serif;
    color:var(--navy);

}

h1{

    font-size:4rem;
    line-height:1.1;

}

h2{

    font-size:3rem;
    line-height:1.2;

}

p{

    color:var(--gray);

}

/* ==========================
   SECTION TITLE
========================== */

.section-title{

    text-align:center;
    max-width:760px;
    margin:0 auto 70px;

}

.section-title span{

    color:var(--primary);
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;

}

.section-title h2{

    margin:20px 0;

}

.section-title p{

    font-size:1.1rem;

}

/* ==========================
   BUTTONS
========================== */

.btn-primary{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 34px;

    background:var(--primary);

    color:#fff;

    border-radius:14px;

    font-weight:700;

    transition:.3s;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-secondary{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 34px;

    border:2px solid white;

    color:white;

    border-radius:14px;

    transition:.3s;

}

.btn-secondary:hover{

    background:white;
    color:var(--navy);

}

/* ==========================
   HEADER
========================== */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(12px);

    z-index:1000;

    box-shadow:0 6px 20px rgba(0,0,0,.05);

}

.navbar{

    height:92px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    flex-direction:column;

}

.logo h2{

    font-size:2rem;

    line-height:1;

}

.logo span{

    color:var(--primary);

    font-weight:700;

    margin-top:2px;

}

.logo-tagline{

    font-size:.75rem;

    color:var(--gray);

    margin-top:5px;

}

.nav-links{

    display:flex;

    gap:42px;

}

.nav-links a{

    font-weight:600;

    transition:.3s;

}

.nav-links a:hover{

    color:var(--primary);

}

/* ==========================
   UTILITIES
========================== */

.text-center{

    text-align:center;

}

.bg-white{

    background:white;

}

.bg-light{

    background:var(--light);

}
/* =========================================
HERO
========================================= */

.hero{

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

    padding:180px 0 120px;

    overflow:hidden;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

.hero-left h1{

    color:white;

    font-size:72px;

    line-height:1.05;

    margin:25px 0;

}

.hero-left h1 span{

    color:#22C55E;

}

.hero-left h2{

    color:white;

    font-size:34px;

    font-weight:600;

    margin-bottom:30px;

}

.hero-left p{

    color:#CBD5E1;

    font-size:20px;

    line-height:1.8;

    max-width:620px;

    margin-bottom:45px;

}

.hero-badge{

    display:inline-block;

    background:rgba(34,197,94,.15);

    color:#BBF7D0;

    padding:12px 22px;

    border-radius:999px;

    border:1px solid rgba(34,197,94,.3);

    font-weight:700;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:55px;

}

.hero-features{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.hero-feature{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.check-circle{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#22C55E;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:bold;

    flex-shrink:0;

}

.hero-feature strong{

    display:block;

    color:white;

    font-size:18px;

    margin-bottom:6px;

}

.hero-feature span{

    color:#CBD5E1;

    line-height:1.7;

}

.hero-right{

    text-align:center;

}

.hero-right img{

    width:100%;

    max-width:560px;

    border-radius:28px;

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

}

@media(max-width:992px){

.hero{

padding:150px 0 80px;

}

.hero-grid{

grid-template-columns:1fr;

}

.hero-left{

text-align:center;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.hero-left h1{

font-size:52px;

}

.hero-left h2{

font-size:28px;

}

.hero-feature{

text-align:left;

}

}