:root{
    --bg:#0b0b0c;
    --text:#f2f2f2;
    --muted:#8f8f8f;
    --card:#141414;
    --border:rgba(255,255,255,0.05);
}

body.light-mode{
    --bg:#f5f5f2;
    --text:#111111;
    --muted:#555555;
    --card:#ffffff;
    --border:rgba(0,0,0,0.08);
}

body{
    background:var(--bg);
    color:var(--text);
    font-family:'Inter',sans-serif;
    font-optical-sizing:auto;
    text-rendering:optimizeLegibility;
    margin:0;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    transition:background 0.4s ease,color 0.4s ease;
}

*{
    box-sizing:border-box;
    letter-spacing:0 !important;
}

::selection{
    background:#ff3b30;
    color:#fff;
}

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

.container{
    width:min(980px,90%);
    margin:auto;
}

.nav{
    position:fixed;
    top:0;
    width:100%;
    z-index:999;
    background:color-mix(in srgb, var(--bg) 72%, transparent);
    backdrop-filter:blur(18px);
    border-bottom:1px solid var(--border);
}

.nav-wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 0;
    gap:20px;
}

.logo{
    font-size:28px;
    font-weight:700;
}

.red{
    color:#ff3b30;
}

.nav-links{
    display:flex;
    gap:34px;
    font-size:15px;
    font-weight:500;
    color:var(--muted);
}

.nav-links a{
    transition:0.3s ease;
}

.nav-links a:hover{
    color:var(--text);
}

.theme-toggle{
    width:42px;
    height:42px;
    border:none;
    border-radius:999px;
    background:var(--card);
    color:var(--text);
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    transition:0.3s ease;
}

.theme-toggle:hover{
    transform:rotate(12deg);
}

.menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    margin-left:14px;
    z-index:1001;
}

.menu-toggle span{
    width:24px;
    height:2px;
    background:var(--text);
    border-radius:10px;
    transition:0.3s ease;
}

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:100%;
    height:100vh;
    background:var(--bg);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:28px;
    transition:0.4s ease;
    z-index:1000;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu a{
    font-size:34px;
    font-weight:600;
    color:var(--text);
}

.hero{
    padding-top:170px;
    padding-bottom:110px;
    position:relative;
}

.glow{
    position:absolute;
    width:520px;
    height:520px;
    background:radial-gradient(circle,#ff3b300f,transparent 70%);
    right:-120px;
    top:-120px;
    pointer-events:none;
}

.hero-title{
    width:100%;
    max-width:100%;
    font-size:clamp(58px,9vw,118px);
    line-height:0.92;
    font-weight:700;
    margin:0;
}

.hero-sub{
    width:100%;
    max-width:100%;
    margin-top:34px;
    font-size:21px;
    line-height:1.8;
    font-weight:400;
    color:var(--muted);
}

.section{
    padding:105px 0;
}

.label{
    font-size:12px;
    font-weight:500;
    color:#626262;
    text-transform:uppercase;
    margin-bottom:28px;
}

.statement{
    font-size:clamp(32px,4.5vw,60px);
    line-height:1.08;
    font-weight:600;
    max-width:100%;
}

.soft-text{
    width:100%;
    max-width:100%;
    margin-top:22px;
    font-size:18px;
    line-height:1.9;
    color:var(--muted);
}
.large-copy{
    width:100%;
    max-width:100%;
    margin-top:22px;
    font-size:18px;
    line-height:1.9;
    color:white;
}
.editorial{
    display:grid;
    grid-template-columns:1fr 0.9fr;
    gap:70px;
    align-items:center;
}

.panel{
    height:460px;
    background:var(--card);
    border-radius:36px;
    position:relative;
    overflow:hidden;
    transition:0.5s ease;
}

.panel:hover{
    transform:translateY(-6px);
}

.panel::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:radial-gradient(circle,#ff3b3012,transparent 70%);
    right:-80px;
    top:-80px;
    transition:0.6s ease;
}

.panel:hover::before{
    transform:scale(1.1);
}

.panel-content{
    position:absolute;
    bottom:36px;
    left:36px;
}

.panel-title{
    font-size:48px;
    line-height:0.96;
    font-weight:700;
}

.panel-text{
    margin-top:16px;
    max-width:310px;
    font-size:15px;
    line-height:1.9;
    color:var(--muted);
}

.services{
    margin-top:42px;
}

.service{
    padding:24px 0;
    border-bottom:1px solid var(--border);
    transition:0.35s ease;
}

.service:hover{
    padding-left:10px;
}

.service-title{
    font-size:clamp(32px,4vw,48px);
    line-height:1;
    font-weight:600;
}

.service-desc{
    width:100%;
    max-width:100%;
    margin-top:10px;
    font-size:16px;
    line-height:1.8;
    color:var(--muted);
}

.meaning-box{
    background:var(--card);
    border-radius:36px;
    padding:52px;
}

.meaning-text{
    font-size:24px;
    line-height:1.8;
    font-weight:400;
    max-width:660px;
    color:var(--muted);
}

.contact-grid{
    display:grid;
    grid-template-columns:0.9fr 1fr;
    gap:70px;
    align-items:start;
}

.input{
    width:100%;
    padding:22px;
    background:var(--card);
    border:none;
    border-radius:20px;
    margin-bottom:16px;
    color:var(--text);
    font-size:15px;
    font-family:'Inter',sans-serif;
    outline:none;
}

textarea.input{
    height:180px;
    resize:none;
}

.button{
    padding:18px 30px;
    border:none;
    border-radius:999px;
    background:var(--text);
    color:var(--bg);
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    font-family:'Inter',sans-serif;
}

.footer{
    padding-bottom:42px;
}

.footer-box{
    background:var(--card);
    padding:52px;
    border-radius:40px;
}

.footer-title{
    font-size:clamp(48px,7vw,92px);
    line-height:0.92;
    font-weight:700;
}

.footer-text{
    width:100%;
    max-width:100%;
    margin-top:24px;
    font-size:15px;
    line-height:1.9;
    color:var(--muted);
}

.footer-contact{
    margin-top:34px;
    line-height:2;
    font-size:15px;
    color:#707070;
}

.footer-bottom{
    margin-top:36px;
    padding-top:26px;
    border-top:1px solid var(--border);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-links{
    display:flex;
    gap:24px;
    font-size:14px;
    color:var(--muted);
}

.footer-links a:hover{
    color:var(--text);
}

.footer-copyright{
    margin-top:18px;
    font-size:13px;
    color:#666;
    padding-left:6px;
}

.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:9999;
    display:flex;
    align-items:center;
    gap:10px;
    padding:13px 18px;
    background:var(--card);
    border-radius:999px;
    font-size:13px;
    color:var(--text);
    box-shadow:0 10px 28px rgba(0,0,0,0.08);
    border:1px solid var(--border);
    transition:0.3s ease;
}

.whatsapp-float:hover{
    transform:translateY(-3px);
}

.whatsapp-dot{
    width:9px;
    height:9px;
    background:#25D366;
    border-radius:50%;
}

.fade{
    opacity:0;
    transform:translateY(40px);
    transition:1s ease;
}

.fade.show{
    opacity:1;
    transform:translateY(0);
}

.success{
    padding:16px;
    background:#173321;
    color:#9de0b0;
    border-radius:16px;
    margin-bottom:18px;
}

@media(max-width:900px){

    .nav-links{
        display:none;
    }

    .menu-toggle{
        display:flex;
    }

    .hero{
        padding-top:135px;
        padding-bottom:85px;
    }

    .hero-title{
        font-size:66px;
    }

    .hero-sub{
        font-size:19px;
    }

    .section{
        padding:82px 0;
    }

    .editorial,
    .contact-grid{
        grid-template-columns:1fr;
        gap:44px;
    }

    .panel{
        height:380px;
        border-radius:28px;
    }

    .panel-title{
        font-size:40px;
    }

    .meaning-box,
    .footer-box{
        padding:34px 28px;
        border-radius:28px;
    }

    .meaning-text{
        font-size:21px;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

    .whatsapp-float{
        right:14px;
        bottom:14px;
        padding:12px 16px;
        font-size:12px;
    }

}



