
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
    --primary:#e8650a;
    --primary-dark:#cf5a09;
    --primary-light:rgba(232,101,10,0.12);
    --primary-glow:rgba(232,101,10,0.25);
    --bg:#fafaf8;
    --fg:#1a1d24;
    --muted:#6b7280;
    --border:#e5e7eb;
    --card:#ffffff;
    --dark-bg:#1a1d24;
    --dark-fg:#f5f5f4;
    --warm-bg:#f5f2ed;
    --radius:0.75rem;
}
html{scroll-behavior:smooth}
body{font-family:'Inter',system-ui,sans-serif;background:var(--bg);color:var(--fg);-webkit-font-smoothing:antialiased;line-height:1.6}
a{text-decoration:none;color:inherit}
ul{list-style:none}
img{max-width:100%;height:auto;display:block}

/* Header - same orange theme */
.header{
    position:fixed;top:0;left:0;right:0;z-index:50;
    background:rgba(250,250,248,0.9);backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(229,231,235,0.5);
}
.header-inner{
    max-width:1200px;margin:0 auto;display:flex;align-items:center;
    justify-content:space-between;height:80px;padding:0 1.5rem;
}
.logo{font-size:1.25rem;font-weight:700;letter-spacing:-0.02em;white-space:nowrap}
.logo span{color:var(--primary)}
.logo-link{display:flex;align-items:center;flex-shrink:0}
.logo-img{height:60px;width:auto;display:block;object-fit:contain}
.logo-img-white{height:90px;}
@media(max-width:768px){.logo-img{height:36px}}
nav.desktop{display:flex;gap:2rem}
nav.desktop a{font-size:0.875rem;font-weight:500;color:var(--muted);transition:color 0.2s}
nav.desktop a:hover{color:var(--fg)}
.header-right{display:flex;align-items:center;gap:0.75rem}
.lang{display:flex;border:1px solid var(--border);border-radius:0.5rem;overflow:hidden}
.lang a{
    padding:0.375rem 0.625rem;font-size:0.75rem;font-weight:600;
    color:var(--muted);transition:all 0.2s;display:block;
}
.lang a:hover{color:var(--fg);background:rgba(0,0,0,0.03)}
.lang a.active{background:var(--primary);color:white}

/* CSS-only mobile menu */
.menu-toggle{display:none}
.menu-btn{
    display:none;width:40px;height:40px;cursor:pointer;
    flex-direction:column;justify-content:center;align-items:center;gap:5px;
    background:none;border:none;overflow:visible;
}
.menu-btn i{display:block;width:20px;height:2px;background:var(--fg);border-radius:2px;transition:all 0.3s}
.mobile-nav{
    display:none;background:var(--bg);border-top:1px solid var(--border);padding:1rem 1.5rem;
}
.mobile-nav a{display:block;padding:0.75rem 0;font-size:0.875rem;font-weight:500;color:var(--muted);transition:color 0.2s}
.mobile-nav a:hover{color:var(--fg)}

@media(max-width:768px){
    nav.desktop{display:none}
    .menu-btn{display:flex}
    .menu-toggle:checked ~ .mobile-nav{display:block}
    .menu-toggle:checked ~ .header-inner .menu-btn i:nth-child(1){transform:translateY(7px) rotate(45deg)}
    .menu-toggle:checked ~ .header-inner .menu-btn i:nth-child(2){opacity:0}
    .menu-toggle:checked ~ .header-inner .menu-btn i:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
}

/* Hero - exact same as v1 */
.hero{
    position:relative;min-height:100vh;
    display:flex;align-items:center;justify-content:center;overflow:hidden;
}
.hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero-overlay{
    position:absolute;inset:0;
    background:linear-gradient(to bottom,rgba(0,0,0,0.7),rgba(0,0,0,0.5),rgba(0,0,0,0.7));
}
.hero-content{position:relative;z-index:2;text-align:center;padding:0 1.5rem;max-width:720px}
.hero h1{
    font-size:clamp(2.25rem,6vw,4.25rem);font-weight:700;color:white;
    line-height:1.05;letter-spacing:-0.03em;text-wrap:balance;
}
.hero p{
    margin-top:1.5rem;font-size:clamp(1rem,2vw,1.25rem);
    color:rgba(255,255,255,0.8);max-width:540px;margin-left:auto;margin-right:auto;text-wrap:balance;
}
.cta{
    display:inline-block;margin-top:2.5rem;padding:1rem 2rem;
    background:var(--primary);color:white;font-weight:600;font-size:1rem;
    border-radius:var(--radius);box-shadow:0 8px 24px var(--primary-glow);
    transition:all 0.2s;
}
.cta:hover{filter:brightness(1.1)}
.cta:active{transform:scale(0.97)}

/* Sections */
.section-lg{padding:5rem 1.5rem}
.container{max-width:1200px;margin:0 auto}
.section-title{
    font-size:clamp(1.75rem,3.5vw,2.5rem);font-weight:700;
    letter-spacing:-0.02em;line-height:1.1;text-wrap:balance;
}

/* About - warm bg, 2 col */
.about{background:var(--warm-bg)}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.about .accent{margin-top:0.75rem;font-size:1.125rem;color:var(--primary);font-weight:500}
.about .text{margin-top:1.5rem;color:var(--muted);line-height:1.7;max-width:60ch}
.about img{width:100%;border-radius:1rem;box-shadow:0 25px 50px rgba(0,0,0,0.12);aspect-ratio:4/3;object-fit:cover}

/* About-2 - white bg, image left */
.about-2{background:var(--bg)}
.about-2 .accent{font-size:1.125rem;color:var(--primary);font-weight:500;margin-bottom:0.75rem;display:block}
.about-2 .text{margin-top:1.5rem;color:var(--muted);line-height:1.7;max-width:60ch}
.about-2 img{width:100%;border-radius:1rem;box-shadow:0 25px 50px rgba(0,0,0,0.12);aspect-ratio:4/3;object-fit:cover}

/* Services - 3 col cards */
.services-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-top:4rem}
.card{
    background:var(--card);border-radius:1rem;padding:2rem;
    border:1px solid rgba(229,231,235,0.5);box-shadow:0 1px 3px rgba(0,0,0,0.04);
    transition:all 0.3s;
}
.card:hover{
    box-shadow:0 12px 32px rgba(0,0,0,0.08);transform:translateY(-4px);
    border-color:rgba(232,101,10,0.2);
}
.card:active{transform:scale(0.98)}
.card-icon{
    width:48px;height:48px;border-radius:0.75rem;background:var(--primary-light);
    display:flex;align-items:center;justify-content:center;margin-bottom:1.25rem;
    transition:background 0.3s;
}
.card:hover .card-icon{background:rgba(232,101,10,0.2)}
.card-icon svg{width:24px;height:24px;stroke:var(--primary);fill:none;stroke-width:2}
.card h3{font-size:1.125rem;font-weight:600;margin-bottom:0.75rem}
.card p{font-size:0.875rem;color:var(--muted);line-height:1.6}

/* Contact - dark bg */
.contact-section{background:var(--dark-bg);color:var(--dark-fg)}
.contact-list{max-width:480px;margin:4rem auto 0;display:flex;flex-direction:column;gap:2rem}
.contact-item{display:flex;align-items:flex-start;gap:1.25rem}
.contact-icon{
    width:48px;height:48px;border-radius:0.75rem;background:rgba(232,101,10,0.15);
    display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.contact-icon svg{width:20px;height:20px;stroke:var(--primary);fill:none;stroke-width:2}
.contact-item p{font-size:1.125rem;color:rgba(245,245,244,0.8);padding-top:0.625rem}
.contact-item a{color:rgba(245,245,244,0.8)}

/* Footer - same dark */
footer{background:var(--fg);color:var(--bg);padding:4rem 1.5rem}
.footer-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:3rem}
footer h3{font-size:1.25rem;font-weight:700;margin-bottom:1rem}
footer h3 span{color:var(--primary)}
footer h4{
    font-size:0.75rem;font-weight:600;text-transform:uppercase;
    letter-spacing:0.1em;color:rgba(250,250,248,0.4);margin-bottom:1rem;
}
footer p,footer li{font-size:0.875rem;color:rgba(250,250,248,0.5);line-height:1.8}
footer a:hover{color:var(--primary)}
.footer-bottom{
    border-top:1px solid rgba(250,250,248,0.08);
    margin-top:3rem;padding-top:2rem;text-align:center;
    font-size:0.875rem;color:rgba(250,250,248,0.3);
}

/* Animations - CSS only with scroll trigger via JS */
@keyframes fadeUp{
    from{opacity:0;transform:translateY(20px);filter:blur(4px)}
    to{opacity:1;transform:translateY(0);filter:blur(0)}
}
.reveal{animation:fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both;animation-play-state:paused}
.reveal.visible{animation-play-state:running}
.d1{animation-delay:0.1s}.d2{animation-delay:0.2s}.d3{animation-delay:0.3s}
.d4{animation-delay:0.4s}.d5{animation-delay:0.5s}.d6{animation-delay:0.6s}

/* Responsive */
@media(max-width:768px){
    .about-grid{grid-template-columns:1fr;gap:2rem}
    .services-grid{grid-template-columns:1fr}
    .footer-grid{grid-template-columns:1fr;gap:2rem}
    .section-lg{padding:3.5rem 1rem}
    .header-inner{height:60px}
    .contact-item{gap:0.5rem}
    .contact-icon{
        width: 40px;
        height: 40px;
    }
}
@media(min-width:769px) and (max-width:1024px){
    .services-grid{grid-template-columns:repeat(2,1fr)}
}
