/* ==========================================
   LEDYVAS WEBSITE
   Sistema de diseno premium — v2
   Navy + azul claro, mucho blanco, tipografia
   moderna, tarjetas finas, sin fotos de personas.
   ========================================== */

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

:root{
    --navy: #0b1f3a;
    --navy-soft: #13294b;
    --blue: #2f6fed;
    --blue-dark: #1d4fc4;
    --blue-soft: #eaf1fe;
    --bg: #ffffff;
    --bg-alt: #f7f9fc;
    --border: #e6eaf1;
    --text: #14213d;
    --text-muted: #5b6b87;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 20px 45px rgba(11, 31, 58, .07);
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter', -apple-system, 'Segoe UI', sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.65;
    -webkit-font-smoothing:antialiased;
}

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

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1180px;
    margin:auto;
}

/* HEADER */

.header{
    position:sticky;
    top:0;
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--border);
    z-index:1000;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:84px;
    gap:30px;
}

.logo img{
    width:170px;
}

.menu{
    display:flex;
    gap:30px;
}

.menu a{
    font-weight:600;
    font-size:15px;
    color:var(--navy);
    transition:.2s;
    letter-spacing:.1px;
}

.menu a:hover{
    color:var(--blue);
}

.languages select{
    padding:9px 14px;
    border:1px solid var(--border);
    border-radius:var(--radius-sm);
    background:var(--bg);
    font-family:inherit;
    font-size:14px;
    color:var(--text);
}

/* HERO */

.hero{
    padding:110px 0 100px;
    background:linear-gradient(180deg,var(--bg-alt) 0%,var(--bg) 100%);
    overflow:hidden;
}

.hero .container{
    display:flex;
    align-items:center;
    gap:60px;
}

.hero-content{
    max-width:560px;
    flex:1;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    background:var(--blue-soft);
    color:var(--blue-dark);
    border-radius:30px;
    font-weight:700;
    font-size:13px;
    letter-spacing:.4px;
    text-transform:uppercase;
    margin-bottom:26px;
}

.hero h1{
    font-size:52px;
    font-weight:800;
    line-height:1.12;
    color:var(--navy);
    margin-bottom:22px;
    letter-spacing:-1px;
}

.hero p{
    font-size:19px;
    color:var(--text-muted);
    margin-bottom:36px;
}

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

.hero-visual{
    flex:1;
    display:flex;
    justify-content:center;
}

.device-frame{
    background:var(--navy);
    border-radius:14px;
    padding:10px 10px 0;
    box-shadow:var(--shadow);
    max-width:640px;
    width:100%;
}

.device-frame-bar{
    display:flex;
    gap:6px;
    padding:0 6px 10px;
}

.device-frame-bar span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:rgba(255,255,255,.25);
}

.device-frame img{
    border-radius:8px 8px 0 0;
    display:block;
    width:100%;
}

/* BUTTONS */

.button,
.button-secondary{
    padding:15px 30px;
    border-radius:var(--radius-sm);
    font-weight:700;
    font-size:15px;
    transition:.2s;
    display:inline-block;
    border:none;
    cursor:pointer;
    font-family:inherit;
}

.button{
    background:var(--navy);
    color:#fff;
}

.button:hover{
    background:var(--blue-dark);
}

.button-secondary{
    border:1.5px solid var(--border);
    color:var(--navy);
    background:transparent;
}

.button-secondary:hover{
    border-color:var(--navy);
}

/* SECTIONS */

section{
    padding:90px 0;
}

section.bg-alt{
    background:var(--bg-alt);
}

h2{
    text-align:center;
    font-size:34px;
    font-weight:800;
    color:var(--navy);
    margin-bottom:16px;
    letter-spacing:-.5px;
}

.section-subtitle{
    text-align:center;
    color:var(--text-muted);
    font-size:17px;
    max-width:600px;
    margin:0 auto 56px;
}

/* FEATURES / INDUSTRY GRID */

.features-grid,
.industry-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
}

.feature-card,
.industry-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:32px;
    transition:.25s;
}

.feature-card:hover,
.industry-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow);
    border-color:#d3ddec;
}

.feature-card h3,
.industry-card h3{
    color:var(--navy);
    font-size:17px;
    font-weight:700;
    margin-bottom:10px;
}

.feature-card p,
.industry-card p{
    color:var(--text-muted);
    font-size:14.5px;
}

/* ICON CIRCLE */

.icon-circle{
    width:52px;
    height:52px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--blue-soft);
    margin-bottom:22px;
}

.icon-circle svg{
    width:24px;
    height:24px;
}

/* CTA */

.cta{
    text-align:center;
    background:var(--navy);
    color:#fff;
}

.cta h2{
    color:#fff;
}

.cta p{
    max-width:600px;
    margin:0 auto 36px;
    color:rgba(255,255,255,.75);
}

.cta .button{
    background:#fff;
    color:var(--navy);
}

.cta .button:hover{
    background:var(--blue-soft);
}

.cta .button-secondary{
    border-color:rgba(255,255,255,.35);
    color:#fff;
}

.cta .button-secondary:hover{
    border-color:#fff;
}

/* FOOTER */

footer{
    background:var(--navy);
    color:rgba(255,255,255,.85);
    text-align:center;
    padding:44px 0;
}

/* SCREENSHOTS */

.screenshot-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:26px;
}

.screenshot-card{
    border:1px solid var(--border);
    border-radius:var(--radius);
    overflow:hidden;
    background:#fff;
}

.screenshot-card img{
    width:100%;
    display:block;
    border-bottom:1px solid var(--border);
}

.screenshot-card h3{
    padding:20px 22px 4px;
    color:var(--navy);
    font-weight:700;
}

.screenshot-card p{
    padding:0 22px 22px;
    color:var(--text-muted);
    font-size:14.5px;
}

/* STEP LIST */

.step-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:24px;
    counter-reset:step;
}

.step{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:30px;
    position:relative;
}

.step::before{
    counter-increment:step;
    content:counter(step);
    display:flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    border-radius:10px;
    background:var(--blue-soft);
    color:var(--blue-dark);
    font-weight:800;
    margin-bottom:18px;
}

.step h3{
    color:var(--navy);
    margin-bottom:10px;
    font-weight:700;
}

.step p{
    color:var(--text-muted);
    font-size:14.5px;
}

/* PRICING */

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
}

.pricing-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:38px;
    text-align:center;
}

.pricing-card h3{
    color:var(--navy);
    margin-bottom:6px;
    font-size:19px;
    font-weight:700;
}

.pricing-card p{
    color:var(--text-muted);
}

/* CHECKLIST */

.checklist{
    max-width:600px;
    margin:0 auto 40px;
}

.checklist li{
    padding:11px 0 11px 32px;
    position:relative;
    color:var(--text);
}

.checklist li::before{
    content:"";
    position:absolute;
    left:0;
    top:15px;
    width:16px;
    height:16px;
    border-radius:50%;
    background:var(--blue-soft);
    box-shadow:inset 0 0 0 5px var(--blue);
}

/* DOCS */

.docs-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:24px;
}

.docs-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:30px;
    text-align:center;
}

.docs-card .icon-circle{
    margin:0 auto 18px;
}

.docs-card h3{
    color:var(--navy);
    margin-bottom:8px;
    font-weight:700;
}

.docs-card p{
    color:var(--text-muted);
    font-size:14px;
}

.docs-badge{
    display:inline-block;
    margin-top:12px;
    padding:4px 14px;
    border-radius:20px;
    background:var(--blue-soft);
    color:var(--blue-dark);
    font-size:12px;
    font-weight:700;
}

/* ABOUT / EMPRESA */

.about-section{
    max-width:800px;
    margin:0 auto;
}

.about-section h2{
    text-align:left;
    margin-bottom:20px;
}

.about-section p{
    color:var(--text-muted);
    margin-bottom:20px;
    font-size:16.5px;
}

.about-section + .about-section{
    border-top:1px solid var(--border);
    padding-top:56px;
    margin-top:0;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:24px;
    margin-top:10px;
}

.values-grid .feature-card{
    text-align:left;
}

/* FOOTER LINKS */

.footer-links{
    display:flex;
    justify-content:center;
    gap:26px;
    flex-wrap:wrap;
    margin-bottom:18px;
}

.footer-links a{
    opacity:.85;
    transition:.2s;
    font-size:14.5px;
    font-weight:500;
}

.footer-links a:hover{
    opacity:1;
}

.footer-email{
    opacity:.7;
    font-size:14px;
    margin-top:10px;
}

.footer-links-secondary{
    font-size:13px;
    opacity:.6;
    margin-bottom:14px;
    gap:20px;
}

.footer-links-secondary a:hover{
    opacity:1;
}

/* LEGAL PAGES */

.legal-content{
    max-width:800px;
    margin:0 auto;
}

.legal-content h2{
    text-align:left;
    margin:50px 0 16px;
    font-size:22px;
}

.legal-content h2:first-child{
    margin-top:0;
}

.legal-content p,
.legal-content li{
    color:var(--text-muted);
    margin-bottom:14px;
}

.legal-content ul{
    list-style:disc;
    padding-left:22px;
}

.legal-updated{
    color:var(--text-muted);
    font-size:14px;
    margin-bottom:40px;
}

/* FUNDADOR */

.founder-photo{
    width:180px;
    height:180px;
    border-radius:50%;
    object-fit:cover;
    margin:0 auto 24px;
    display:block;
    border:4px solid #fff;
    box-shadow:var(--shadow);
}

.founder-photo-placeholder{
    width:180px;
    height:180px;
    border-radius:50%;
    margin:0 auto 24px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--blue-soft);
    color:var(--blue);
    font-size:52px;
}

.tag-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:20px;
}

.tag-list span{
    background:var(--blue-soft);
    color:var(--blue-dark);
    padding:8px 16px;
    border-radius:20px;
    font-size:13.5px;
    font-weight:600;
}

.country-list{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:20px;
}

.country-list span{
    background:#fff;
    border:1px solid var(--border);
    padding:8px 18px;
    border-radius:var(--radius-sm);
    font-size:14px;
    font-weight:600;
    color:var(--navy);
}

.founder-quote{
    border-left:3px solid var(--blue);
    padding:4px 0 4px 24px;
    font-size:19px;
    font-weight:500;
    color:var(--navy);
    margin:24px 0 32px;
}

/* CONTACTO */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:24px;
    max-width:900px;
    margin:0 auto;
}

/* RESPONSIVE */

@media(max-width:900px){

.hero .container{
    flex-direction:column;
    text-align:center;
}

.hero-content{
    max-width:100%;
}

.hero-buttons{
    justify-content:center;
}

.header .container{
    flex-wrap:wrap;
    justify-content:center;
    padding:16px 0;
    min-height:auto;
}

.menu{
    flex-wrap:wrap;
    justify-content:center;
}

.hero h1{
    font-size:38px;
}

}

@media(max-width:600px){

.hero{
    padding:70px 0 60px;
}

.hero p{
    font-size:17px;
}

.button,
.button-secondary{
    width:100%;
    text-align:center;
}

.logo img{
    width:150px;
}

h2{
    font-size:27px;
}

section{
    padding:64px 0;
}

}
