:root{
  --royal:#4169E1;
  --vibrant-blue:#0066FF;
  --vibrant-purple:#7C3AED;
  --vibrant-cyan:#06B6D4;
  --vibrant-orange:#FF6B35;
  --vibrant-pink:#EC4899;
  --page-grey:#f3f4f6;
  --bg:#0f1724;
  --card:#ffffff;
  --muted:#6b7280;
  --accent:#0066FF;
  --max-width:1200px;
  --spacing-xs:8px;
  --spacing-sm:16px;
  --spacing-md:24px;
  --spacing-lg:40px;
  --spacing-xl:60px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; margin:0; color:#1a1a1a; background:linear-gradient(135deg,var(--vibrant-blue) 0%,var(--vibrant-purple) 50%,var(--vibrant-cyan) 100%);line-height:1.7;font-size:16px}
.container{max-width:var(--max-width);margin:0 auto;padding:var(--spacing-md)}
h1,h2,h3{font-weight:700;letter-spacing:-0.5px;color:#0a0a0a}
h1{font-size:2.6rem;margin:0 0 var(--spacing-md);line-height:1.2}
h2{font-size:1.9rem;margin:0 0 var(--spacing-sm);line-height:1.3}
h3{font-size:1.4rem;margin:0 0 var(--spacing-sm);line-height:1.3}
p{margin:0 0 var(--spacing-sm);color:#2d2d2d;font-size:16px;line-height:1.8}
.container{max-width:var(--max-width);margin:0 auto;padding:24px}
.site-header{background:rgba(255,255,255,0.98);border-bottom:3px solid var(--vibrant-blue);padding:16px 0;box-shadow:0 8px 24px rgba(0,102,255,0.12)}
.header-inner{display:flex;align-items:center;justify-content:space-between}
.brand{font-weight:700;color:var(--vibrant-blue);text-decoration:none;display:flex;align-items:center;gap:12px}
.brand img{height:324px;width:auto;display:block}
.brand-text{display:none;color:#fff;font-weight:700}
@media (max-width:799px){
  .brand img{height:264px;width:auto}
  .brand-text{display:none}
}
@media (min-width:800px){
  .brand img{height:324px;width:auto}
  .brand-text{display:inline;font-size:14px}
}
.nav{display:flex;gap:32px;align-items:center}
.nav a{color:#0f1724;text-decoration:none;font-weight:500;transition:color 0.3s}
.nav a:hover{color:var(--vibrant-blue)}
.nav-toggle{display:none;background:none;border:0;font-size:20px}

.hero{background:transparent;padding:80px 0}
.hero-content{display:flex;align-items:center;gap:60px}
.hero-text{flex:1}
.hero-image{flex:1;max-width:100%;height:auto;border-radius:16px;box-shadow:0 20px 40px rgba(0,0,0,0.15)}
.hero h1{font-size:2.8rem;margin:0 0 20px;color:#fff;line-height:1.2;text-shadow:0 2px 10px rgba(0,0,0,0.1)}
.lead{color:#fff;margin-bottom:28px;font-size:18px;line-height:1.8;text-shadow:0 1px 3px rgba(0,0,0,0.05)}
.btn{background:linear-gradient(135deg,var(--vibrant-orange) 0%,var(--vibrant-pink) 100%);color:#fff;padding:12px 24px;border-radius:8px;text-decoration:none;font-weight:600;box-shadow:0 6px 20px rgba(255,107,53,0.35);border:none;cursor:pointer;transition:transform 0.2s}
.btn:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(255,107,53,0.45)}
.btn-outline{background:transparent;border:2px solid #fff;color:#fff;margin-left:8px;font-weight:600;box-shadow:0 4px 12px rgba(255,255,255,0.2)}

.features{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;padding:80px 24px}
.features article{background:#fff;padding:40px;border-radius:16px;box-shadow:0 12px 32px rgba(0,0,0,0.08);border-top:5px solid var(--vibrant-cyan);transition:all 0.4s cubic-bezier(0.4,0,0.2,1)}
.features article:hover{transform:translateY(-12px);box-shadow:0 24px 48px rgba(0,102,255,0.15)}
.features article:nth-child(2){border-top-color:var(--vibrant-purple)}
.features article:nth-child(3){border-top-color:var(--vibrant-orange)}
.features article h3{color:#0a0a0a;font-size:1.5rem;font-weight:700}
.features article p{color:#3a3a3a;font-size:16px;line-height:1.8}
.feature-image{width:100%;height:240px;object-fit:cover;border-radius:12px;margin-bottom:20px}

.about-cta{padding:60px 40px;text-align:center;background:linear-gradient(135deg,rgba(0,102,255,0.12) 0%,rgba(124,58,237,0.12) 100%);border-radius:16px;margin:60px 0;border:2px solid rgba(0,102,255,0.2)}

.site-footer{background:linear-gradient(135deg,#0f1724 0%,#1a2332 100%);border-top:4px solid var(--vibrant-blue);padding:40px 0;margin-top:80px;color:#fff;box-shadow:0 -8px 24px rgba(0,0,0,0.1)}
.site-footer a{color:var(--vibrant-cyan);text-decoration:none;transition:opacity 0.3s}
.site-footer a:hover{opacity:0.8}

.contact-page{padding:80px 24px}
.contact-content{display:flex;align-items:center;gap:60px}
.contact-text{flex:1}
.contact-text h1{color:#0a0a0a;font-weight:700}
.contact-text p{color:#3a3a3a;font-size:16px;line-height:1.8}
.contact-image{flex:1;max-width:100%;height:450px;object-fit:cover;border-radius:16px;box-shadow:0 20px 40px rgba(0,0,0,0.15)}
.about-page{padding:80px 24px}
.services-page{padding:80px 24px}
.service-section{display:flex;align-items:center;gap:60px;margin-bottom:80px;scroll-margin-top:100px}
.service-section:nth-child(even){flex-direction:row-reverse}
.service-image{flex:1;max-width:100%;height:450px;object-fit:cover;border-radius:16px;box-shadow:0 20px 40px rgba(0,0,0,0.12)}
.service-text{flex:1}
.service-text h2{color:#0a0a0a;font-size:2rem;font-weight:700}
.service-text p{color:#3a3a3a;line-height:1.9;margin-bottom:20px;font-size:16px}
.service-text ul{list-style:none;padding:0;margin:28px 0}
.service-text li{margin-bottom:18px;padding-left:28px;position:relative;color:#2d2d2d;line-height:1.8;font-size:16px}
.service-text li:before{content:"→";position:absolute;left:0;color:var(--vibrant-blue);font-weight:bold;font-size:18px}
.promise-image{width:100%;max-width:700px;height:450px;object-fit:cover;border-radius:16px;margin-top:32px;box-shadow:0 20px 40px rgba(0,0,0,0.12)}
.about-content{display:flex;align-items:center;gap:60px}
.about-text{flex:1}
.about-text h1{color:#0a0a0a;font-weight:700}
.about-text h2{color:#0a0a0a;font-size:1.7rem;margin-top:36px;font-weight:700}
.about-text p{color:#3a3a3a;line-height:1.9;font-size:16px}
.about-text ul{list-style:none;padding:0;margin:28px 0}
.about-text li{margin-bottom:18px;padding-left:28px;position:relative;color:#2d2d2d;line-height:1.8;font-size:16px}
.about-text li:before{content:"✓";position:absolute;left:0;color:var(--vibrant-cyan);font-weight:bold;font-size:18px}
.about-image{flex:1;max-width:100%;height:450px;object-fit:cover;border-radius:16px;box-shadow:0 20px 40px rgba(0,0,0,0.12)}
.contact-form{max-width:700px}
.contact-form label{display:block;margin-bottom:20px;font-weight:600;color:#0a0a0a;font-size:16px}
.contact-form input,.contact-form textarea{width:100%;padding:16px;border:2px solid #ddd;border-radius:10px;font-family:inherit;font-size:16px;color:#2d2d2d;transition:all 0.3s;background:#fff;line-height:1.6}
.contact-form input::placeholder,.contact-form textarea::placeholder{color:#999}
.contact-form input:focus,.contact-form textarea:focus{outline:none;border-color:var(--vibrant-blue);box-shadow:0 0 0 4px rgba(0,102,255,0.1);background:#fff}
.form-actions{margin-top:28px}
.form-status{margin-top:16px;color:var(--muted);font-weight:500}

@media (max-width:800px){
  .features{grid-template-columns:1fr;gap:28px;padding:60px 24px}
  .feature-image{height:240px}
  .nav{display:none;gap:16px}
  .nav-toggle{display:block}
  .nav.open{display:flex;flex-direction:column;gap:12px;margin-top:12px}
  .hero h1{font-size:1.6rem;line-height:1.25}
  .hero-content{flex-direction:column;gap:32px;padding:40px 0}
  .contact-content{flex-direction:column;gap:32px}
  .about-content{flex-direction:column;gap:32px}
  .service-section{flex-direction:column !important;gap:32px;margin-bottom:60px}
  .service-image{height:340px}
  .about-image{height:340px}
  .contact-image{height:340px}
  .promise-image{max-width:100%;height:340px}
  h1{font-size:1.8rem}
  h2{font-size:1.4rem}
}
