
:root{
  --accent:#e63946; /* bold red accent credit php agency */
  --muted:#6b7280;
  --max-width:1200px;
}
*{box-sizing:border-box}
html,body{height:100%;}
body{font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; margin:0; color:#111;background:#fff}
.container{max-width:var(--max-width);margin:0 auto;padding:1rem}

/* Header */
.site-header{position:fixed;left:0;right:0;top:0;z-index:60;background:#fff;border-bottom:1px solid rgba(17,24,39,0.06)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:18px 1rem}
.brand{font-weight:800;letter-spacing:.2px;color:#111;font-size:1.05rem;text-decoration:none}
.main-nav{display:flex;gap:1.25rem;align-items:center}
.main-nav a{color:var(--muted);text-decoration:none;padding:.5rem .65rem;border-radius:6px;font-weight:600}
.main-nav a:hover{color:#000}
.menu-toggle{display:none;background:none;border:0;cursor:pointer}
.menu-toggle span{display:block;width:22px;height:2px;background:#111;margin:4px 0;border-radius:2px}

/* Hero */
.hero{position:relative;margin-top:70px}
.hero--large .hero-media-bg{position:absolute;inset:0;background-image:linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.20)), url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?q=80&w=2000&auto=format&fit=crop&ixlib=rb-4.0.3&s=placeholder');background-size:cover;background-position:center;z-index:0}
.hero-inner{position:relative;display:flex;align-items:center;min-height:72vh}
.hero-content{z-index:2;color:#fff;padding:6rem 1rem;max-width:820px}
.hero h1{font-size:3rem;line-height:1.02;margin:0 0 .7rem;font-weight:800;text-shadow:0 6px 30px rgba(0,0,0,0.45)}
.lead{font-size:1.15rem;color:rgba(255,255,255,0.9);margin:0 0 1.25rem}
.hero-ctas{display:flex;gap:12px}
.button{display:inline-block;padding:.8rem 1.2rem;border-radius:10px;font-weight:700;text-decoration:none}
.button-primary{background:var(--accent);color:#fff}
.button-ghost{background:rgb(106, 106, 241);border:1px solid rgba(255,255,255,0.12);color:#fff}
.trusted-logos{display:flex;gap:18px;margin-top:24px;align-items:center}
.trusted-logos img{width:90px;opacity:.95;filter:brightness(2)}

/* Sections */
.section{padding:4.5rem 0}
.section-title{font-size:1.6rem;margin:0 0 1.5rem;font-weight:700;color:#111}
.grid{display:grid;gap:1rem}
.grid-3{grid-template-columns:repeat(3,1fr)}
.service-card{background:#fff;padding:28px;border-radius:12px;border:1px solid #f3f4f6;box-shadow:0 10px 30px rgba(17,24,39,0.04)}
.service-card h3{color:var(--accent);margin:0 0 .6rem}
.service-card p{color:var(--muted);margin:0}

/* Jobs list */
.section--wide{background:#fafafa}
.jobs-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem}
.select select{padding:.6rem;border-radius:8px;border:1px solid #e6e7eb}
.job-list{display:flex;flex-direction:column;gap:12px}
.job-row{display:flex;justify-content:space-between;align-items:center;padding:18px;border-radius:12px;background:#fff;border:1px solid #eee}
.job-left h3{margin:0;font-size:1.05rem}
.muted{color:var(--muted)}
.button.small{padding:.5rem .8rem;font-size:.9rem}

/* About */
.about-inner{display:flex;gap:2.5rem;align-items:center}
.about-copy{flex:1}
.about-media img{width:420px;height:280px;object-fit:cover;border-radius:12px}
.stats{display:flex;gap:22px;margin-top:18px}
.stats div{display:flex;flex-direction:column;align-items:flex-start}
.stats strong{font-size:1.4rem}
.stats span{color:var(--muted)}

/* Contact */
.contact-inner{display:grid;grid-template-columns:2fr 1fr;gap:2rem;align-items:start}
.form-row{display:flex;gap:12px}
.contact-form input, .contact-form select, .contact-form textarea{width:100%;padding:.85rem;border-radius:8px;border:1px solid #e6e7eb}
.contact-aside{background:#fff;padding:20px;border-radius:12px;border:1px solid #f3f4f6}

/* Footer */
.site-footer{border-top:1px solid #eee;padding:22px 0;margin-top:40px}
.footer-inner{display:flex;justify-content:space-between;align-items:center}
.footer-nav a{color:var(--muted);text-decoration:none;margin-left:1rem}

/* Responsive */
@media (max-width:1000px){
  .grid-3{grid-template-columns:1fr}
  .about-inner{flex-direction:column}
  .hero h1{font-size:2.1rem}
  .hero-content{padding:4rem 1rem}
  .about-media img{width:100%;height:auto}
}

@media (max-width:700px){
  .main-nav{
    display:none;
    position:fixed;
    top:70px;
    left:0;
    right:0;
    background:#fff;
    flex-direction:column;
    border-bottom:1px solid #eee;
    padding:1rem;
    transform:translateX(-100%);
    transition:transform 0.3s ease;
  }
  .main-nav.open{
    display:flex;
    transform:translateX(0%);
  }
  .menu-toggle{display:block}
  .trusted-logos img{width:64px}
  .contact-inner{grid-template-columns:1fr}
  .hero-inner{min-height:58vh}
}

/* small utility */
img{display:block;max-width:100%}