/*
Theme Name:   Creative Orion
Theme URI:    https://creativeorion.com
Author:       Creative Orion Studio
Author URI:   https://creativeorion.com
Description:  Creative Branding & Design Agency – Mobile & Desktop Optimized
Version:      1.0.0
License:      GNU General Public License v2 or later
Text Domain:  creative-orion
*/

/* ============================================================
   GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,300;1,9..144,600;1,9..144,700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --red:         #E62B51;
  --red-dark:    #c0203f;
  --black:       #0c0c0c;
  --dark:        #101010;
  --darker:      #080808;
  --mid:         #1a1a1a;
  --mid2:        #222222;
  --border:      #272727;
  --white:       #ffffff;
  --muted:       #888888;
  --light:       #cccccc;
  --font-head:   'Fraunces', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --radius:      4px;
  --nav-h:       72px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font-body); background: var(--dark); color: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ============================================================
   CURSOR (desktop only)
   ============================================================ */
.co-cursor      { position:fixed; width:8px; height:8px; border-radius:50%; background:var(--red); pointer-events:none; z-index:9999; transform:translate(-50%,-50%); transition:transform .08s; }
.co-cursor-ring { position:fixed; width:32px; height:32px; border-radius:50%; border:1.5px solid rgba(230,43,81,.45); pointer-events:none; z-index:9998; transform:translate(-50%,-50%); transition:left .12s,top .12s,width .2s,height .2s; }
@media(max-width:1024px){.co-cursor,.co-cursor-ring{display:none;}}

/* ============================================================
   UTILITY
   ============================================================ */
.reveal { opacity:0; transform:translateY(32px); transition:opacity .65s ease,transform .65s ease; }
.reveal.visible { opacity:1; transform:none; }
.reveal-left  { opacity:0; transform:translateX(-32px); transition:opacity .65s ease,transform .65s ease; }
.reveal-left.visible  { opacity:1; transform:none; }
.reveal-right { opacity:0; transform:translateX(32px); transition:opacity .65s ease,transform .65s ease; }
.reveal-right.visible { opacity:1; transform:none; }

.section-wrap  { padding: 90px 80px; }
.section-label { font-size:11px; letter-spacing:4px; text-transform:uppercase; color:var(--red); margin-bottom:14px; display:flex; align-items:center; gap:10px; }
.section-label::before { content:''; width:28px; height:1px; background:var(--red); flex-shrink:0; }
.section-label.center  { justify-content:center; }
.section-title { font-family:var(--font-head); font-size:clamp(30px,4vw,54px); font-weight:700; line-height:1.1; letter-spacing:-.5px; margin-bottom:16px; }
.section-sub   { font-size:15px; color:var(--muted); line-height:1.8; max-width:520px; }

.btn-primary { display:inline-block; background:var(--red); color:#fff; padding:14px 36px; border-radius:var(--radius); font-size:13px; font-weight:600; letter-spacing:.8px; text-transform:uppercase; transition:background .2s,transform .2s,box-shadow .2s; }
.btn-primary:hover { background:var(--red-dark); transform:translateY(-2px); box-shadow:0 8px 24px rgba(230,43,81,.3); }
.btn-outline { display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:500; letter-spacing:.5px; color:var(--white); border:1px solid var(--border); padding:13px 28px; border-radius:var(--radius); transition:border-color .2s,color .2s; }
.btn-outline:hover { border-color:var(--red); color:var(--red); }
.btn-text  { display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:500; letter-spacing:.4px; color:var(--muted); transition:color .2s; }
.btn-text:hover { color:var(--white); }
.btn-text svg { transition:transform .25s; }
.btn-text:hover svg { transform:translateX(4px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#co-nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:var(--nav-h);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 48px;
  transition:background .35s,border-color .35s,height .3s;
  border-bottom:1px solid transparent;
}
#co-nav.scrolled {
  background:rgba(8,8,8,.96);
  backdrop-filter:blur(14px);
  border-bottom-color:var(--border);
  height:60px;
}
.nav-logo { font-family:var(--font-head); font-size:20px; font-weight:700; letter-spacing:-.2px; color:var(--white); }
.nav-logo span { color:var(--red); }
.nav-links { display:flex; align-items:center; gap:32px; }
.nav-links a { font-size:13px; font-weight:400; color:var(--light); letter-spacing:.2px; position:relative; transition:color .2s; }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:1px; background:var(--red); transition:width .25s; }
.nav-links a:hover { color:var(--white); }
.nav-links a:hover::after { width:100%; }
.nav-right  { display:flex; align-items:center; gap:20px; }
.nav-phone  { font-size:12px; color:var(--muted); transition:color .2s; }
.nav-phone:hover { color:var(--red); }

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; padding:4px; }
.hamburger span { display:block; width:22px; height:1.5px; background:var(--white); transition:.3s; border-radius:1px; }
.hamburger.active span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position:fixed; inset:0; background:var(--black); z-index:999;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:28px;
  opacity:0; visibility:hidden; transition:opacity .35s,visibility .35s;
}
.mobile-menu.open { opacity:1; visibility:visible; }
.mobile-menu a {
  font-family:var(--font-head); font-size:clamp(28px,6vw,42px); font-weight:700;
  color:var(--white); transition:color .2s;
}
.mobile-menu a:hover { color:var(--red); }
.mobile-menu .mob-cta {
  margin-top:12px; background:var(--red); color:#fff !important;
  padding:14px 36px; border-radius:var(--radius); font-size:16px !important;
}
.mob-close { position:absolute; top:20px; right:24px; font-size:26px; color:var(--muted); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height:100vh;
  display:grid;
  grid-template-rows:1fr auto;
  padding:0;
  position:relative;
  overflow:hidden;
  background:var(--darker);
}
.hero-bg-glow {
  position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 60% 50% at 65% 35%, rgba(230,43,81,.13) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(230,43,81,.06) 0%, transparent 50%);
}
.hero-grid {
  position:absolute; inset:0; pointer-events:none; opacity:.035;
  background-image:linear-gradient(var(--border) 1px,transparent 1px),linear-gradient(90deg,var(--border) 1px,transparent 1px);
  background-size:80px 80px;
}
.hero-inner {
  display:grid;
  grid-template-columns:1fr 420px;
  gap:40px;
  align-items:center;
  padding:calc(var(--nav-h) + 60px) 80px 60px;
  position:relative; z-index:1;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(230,43,81,.1); border:1px solid rgba(230,43,81,.25);
  padding:7px 16px; border-radius:40px; width:fit-content;
  font-size:11px; font-weight:600; letter-spacing:2px; text-transform:uppercase;
  color:var(--red); margin-bottom:28px;
}
.hero-badge::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--red); animation:pulse 1.8s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

.hero-title {
  font-family:var(--font-head);
  font-size:clamp(38px,5.5vw,76px);
  font-weight:700;
  line-height:1.08;
  letter-spacing:-1.5px;
  margin-bottom:24px;
}
.hero-title em { font-style:italic; color:var(--red); font-weight:300; }
.hero-title strong { font-weight:900; }

.hero-desc {
  font-size:clamp(14px,1.3vw,16px);
  color:var(--muted);
  line-height:1.8;
  max-width:480px;
  margin-bottom:40px;
  font-weight:300;
}
.hero-actions { display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.hero-trust {
  margin-top:48px;
  display:flex; align-items:center; gap:20px;
  padding-top:32px;
  border-top:1px solid var(--border);
}
.hero-trust-item { text-align:center; }
.hero-trust-num  { font-family:var(--font-head); font-size:26px; font-weight:700; color:var(--white); line-height:1; }
.hero-trust-label{ font-size:11px; color:var(--muted); margin-top:4px; letter-spacing:.5px; }
.hero-trust-divider { width:1px; height:36px; background:var(--border); }

/* Hero right card */
.hero-card {
  background:var(--mid);
  border:1px solid var(--border);
  border-radius:8px;
  padding:32px;
  position:relative;
  overflow:hidden;
}
.hero-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--red),transparent);
}
.hero-card-label { font-size:11px; letter-spacing:3px; text-transform:uppercase; color:var(--red); margin-bottom:20px; }
.hero-card-services { display:flex; flex-direction:column; gap:12px; margin-bottom:24px; }
.hero-card-service {
  display:flex; align-items:center; gap:12px;
  padding:12px 16px; background:var(--mid2); border-radius:var(--radius);
  font-size:13px; font-weight:500; transition:background .2s;
}
.hero-card-service:hover { background:rgba(230,43,81,.1); }
.hero-card-service-icon {
  width:32px; height:32px; border-radius:var(--radius);
  background:rgba(230,43,81,.15);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.hero-card-service-icon svg { width:16px; height:16px; stroke:var(--red); fill:none; stroke-width:2; }
.hero-card-cta { width:100%; text-align:center; display:block; }

/* Hero marquee */
.hero-ticker { background:rgba(0,0,0,.5); border-top:1px solid var(--border); overflow:hidden; position:relative; z-index:1; }
.hero-ticker-track { display:flex; width:max-content; animation:ticker 28s linear infinite; padding:12px 0; }
.ticker-item { font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--muted); padding:0 32px; border-right:1px solid var(--border); white-space:nowrap; }
.ticker-item .dot { color:var(--red); margin-right:10px; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============================================================
   PILLARS
   ============================================================ */
#pillars { background:var(--black); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
#pillars .section-wrap { padding:0 80px; }
.pillars-grid { display:grid; grid-template-columns:repeat(3,1fr); }
.pillar-item {
  padding:52px 44px; border-right:1px solid var(--border);
  position:relative; overflow:hidden;
  transition:background .3s;
}
.pillar-item:last-child { border-right:none; }
.pillar-item:hover { background:rgba(230,43,81,.04); }
.pillar-item::after { content:''; position:absolute; top:0; left:0; width:0; height:2px; background:var(--red); transition:width .45s; }
.pillar-item:hover::after { width:100%; }
.pillar-ghost { position:absolute; top:12px; right:20px; font-family:var(--font-head); font-size:64px; font-weight:900; color:rgba(230,43,81,.05); line-height:1; pointer-events:none; }
.pillar-icon { width:44px; height:44px; border:1px solid var(--border); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; margin-bottom:24px; transition:border-color .3s,background .3s; }
.pillar-item:hover .pillar-icon { border-color:var(--red); background:rgba(230,43,81,.1); }
.pillar-icon svg { width:20px; height:20px; stroke:var(--red); fill:none; stroke-width:1.5; }
.pillar-item h3 { font-family:var(--font-head); font-size:22px; font-weight:700; margin-bottom:10px; }
.pillar-item p  { font-size:13px; color:var(--muted); line-height:1.8; }

/* ============================================================
   ABOUT
   ============================================================ */
#about { background:var(--darker); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.about-visual { position:relative; }
.about-img-wrap {
  aspect-ratio:4/5; background:var(--mid); border-radius:6px; overflow:hidden;
  position:relative; border:1px solid var(--border);
}
.about-img-wrap::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(230,43,81,.12),transparent); }
.about-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-size:72px; font-weight:900; color:rgba(230,43,81,.12); letter-spacing:-4px; }
.about-accent { position:absolute; bottom:-24px; right:-24px; width:160px; height:160px; border:1.5px solid rgba(230,43,81,.3); border-radius:6px; z-index:-1; }
.about-text .section-title { margin-bottom:24px; }
.about-text p { font-size:14px; color:var(--muted); line-height:1.9; margin-bottom:18px; }
.about-text p strong { color:var(--light); font-weight:500; }
.about-tags { display:flex; flex-wrap:wrap; gap:8px; margin:28px 0 0; }
.tag { padding:6px 16px; border:1px solid var(--border); border-radius:40px; font-size:12px; color:var(--muted); transition:border-color .2s,color .2s; }
.tag:hover { border-color:var(--red); color:var(--white); }
.about-counters { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:32px; }
.ac { padding:20px 24px; background:var(--mid); border-radius:var(--radius); border-left:2px solid var(--red); }
.ac-num   { font-family:var(--font-head); font-size:36px; font-weight:700; line-height:1; }
.ac-label { font-size:11px; color:var(--muted); margin-top:4px; letter-spacing:.5px; }

/* ============================================================
   SERVICES
   ============================================================ */
#services { background:var(--black); }
.services-top { display:flex; justify-content:space-between; align-items:flex-end; gap:32px; flex-wrap:wrap; margin-bottom:52px; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); }
.svc-card {
  background:var(--black); padding:44px 36px;
  position:relative; overflow:hidden; transition:background .25s;
}
.svc-card:hover { background:var(--mid); }
.svc-card::before { content:''; position:absolute; bottom:0; left:0; width:0; height:2px; background:var(--red); transition:width .4s; }
.svc-card:hover::before { width:100%; }
.svc-n { font-size:10px; letter-spacing:2.5px; color:var(--red); font-weight:600; margin-bottom:20px; }
.svc-card h3 { font-family:var(--font-head); font-size:22px; font-weight:700; margin-bottom:14px; }
.svc-card p  { font-size:13px; color:var(--muted); line-height:1.8; margin-bottom:24px; }
.svc-link { display:inline-flex; align-items:center; gap:6px; font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--red); transition:gap .2s; }
.svc-link:hover { gap:12px; }
.svc-link svg { width:12px; height:12px; stroke:currentColor; fill:none; stroke-width:2.5; }

/* ============================================================
   PROJECTS
   ============================================================ */
#projects { background:var(--darker); }
.projects-top { display:flex; justify-content:space-between; align-items:flex-end; gap:24px; flex-wrap:wrap; margin-bottom:48px; }
.projects-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:2px; }
.proj-card {
  position:relative; aspect-ratio:16/10; overflow:hidden; cursor:pointer;
  background:var(--mid);
}
.proj-bg { width:100%; height:100%; display:flex; align-items:center; justify-content:center; transition:transform .55s cubic-bezier(.25,.46,.45,.94); }
.proj-card:hover .proj-bg { transform:scale(1.05); }
.proj-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.88) 0%,rgba(0,0,0,.1) 55%,transparent 100%); }
.proj-body { position:absolute; bottom:0; left:0; right:0; padding:32px; transform:translateY(8px); transition:transform .3s; }
.proj-card:hover .proj-body { transform:none; }
.proj-cat { font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--red); margin-bottom:8px; }
.proj-body h3 { font-family:var(--font-head); font-size:24px; font-weight:700; }
.proj-body p { font-size:13px; color:var(--light); margin-top:8px; max-height:0; overflow:hidden; transition:max-height .35s; }
.proj-card:hover .proj-body p { max-height:60px; }
.proj-arrow {
  position:absolute; top:24px; right:24px;
  width:36px; height:36px; border:1px solid rgba(255,255,255,.25); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  opacity:0; transform:scale(.7); transition:opacity .3s,transform .3s;
}
.proj-card:hover .proj-arrow { opacity:1; transform:scale(1); }
.proj-arrow svg { width:14px; height:14px; stroke:#fff; fill:none; stroke-width:2; }
.pc1{background:linear-gradient(135deg,#150810,#2e0d1a);}
.pc2{background:linear-gradient(135deg,#080c18,#0d1535);}
.pc3{background:linear-gradient(135deg,#081408,#0d2e10);}
.pc4{background:linear-gradient(135deg,#14120a,#2e2808);}

/* ============================================================
   CLIENTS TICKER
   ============================================================ */
#clients { background:var(--black); padding:56px 80px; overflow:hidden; border-top:1px solid var(--border); }
.clients-label { text-align:center; font-size:11px; letter-spacing:3.5px; text-transform:uppercase; color:var(--muted); margin-bottom:40px; }
.clients-strip { position:relative; overflow:hidden; }
.clients-strip::before,.clients-strip::after { content:''; position:absolute; top:0; bottom:0; width:100px; z-index:1; }
.clients-strip::before { left:0; background:linear-gradient(to right,var(--black),transparent); }
.clients-strip::after  { right:0; background:linear-gradient(to left,var(--black),transparent); }
.clients-row { display:flex; width:max-content; animation:ticker 22s linear infinite; }
.cl-logo { padding:20px 44px; border-right:1px solid var(--border); font-family:var(--font-head); font-size:18px; font-weight:700; color:rgba(255,255,255,.15); white-space:nowrap; transition:color .3s; cursor:default; }
.cl-logo:hover { color:rgba(255,255,255,.45); }

/* ============================================================
   PROCESS
   ============================================================ */
#process { background:var(--darker); text-align:center; }
.process-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:0; margin-top:56px; position:relative; }
.process-line { position:absolute; top:34px; left:calc(10% + 20px); right:calc(10% + 20px); height:1px; background:linear-gradient(90deg,transparent,var(--border),var(--border),transparent); z-index:0; }
.proc-step { position:relative; z-index:1; padding:0 16px; }
.proc-dot {
  width:68px; height:68px; border-radius:50%; border:1.5px solid var(--border);
  background:var(--mid); display:flex; align-items:center; justify-content:center;
  margin:0 auto 24px; transition:border-color .3s,background .3s;
}
.proc-step:hover .proc-dot { border-color:var(--red); background:rgba(230,43,81,.1); }
.proc-n { font-family:var(--font-head); font-size:20px; font-weight:700; color:var(--red); }
.proc-step h3 { font-size:13px; font-weight:600; margin-bottom:10px; letter-spacing:.2px; }
.proc-step p  { font-size:12px; color:var(--muted); line-height:1.75; }

/* ============================================================
   STATS BAR
   ============================================================ */
#stats { background:var(--red); padding:72px 80px; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.stat-item { padding:16px 32px; border-right:1px solid rgba(255,255,255,.18); text-align:center; }
.stat-item:last-child { border-right:none; }
.stat-num { font-family:var(--font-head); font-size:clamp(44px,5.5vw,72px); font-weight:700; line-height:1; }
.stat-suf { font-size:28px; font-weight:300; }
.stat-lbl { font-size:12px; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,.65); margin-top:8px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background:var(--black); }
.testi-top { display:flex; justify-content:space-between; align-items:flex-end; gap:20px; flex-wrap:wrap; margin-bottom:52px; }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); }
.testi-card { background:var(--black); padding:36px 32px; transition:background .25s; }
.testi-card:hover { background:var(--mid); }
.stars { display:flex; gap:3px; margin-bottom:18px; }
.star  { width:13px; height:13px; fill:var(--red); }
.testi-q {
  font-size:13px; line-height:1.9; color:var(--light); margin-bottom:24px;
  font-style:italic; position:relative; padding-left:20px;
}
.testi-q::before { content:'\201C'; position:absolute; left:0; top:-6px; font-family:var(--font-head); font-size:40px; line-height:1; color:var(--red); }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-av { width:40px; height:40px; border-radius:50%; background:var(--mid); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-size:14px; font-weight:700; color:var(--red); flex-shrink:0; }
.testi-name { font-size:13px; font-weight:600; }
.testi-role { font-size:11px; color:var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
#faq { background:var(--darker); }
.faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-q {
  display:flex; justify-content:space-between; align-items:center;
  padding:20px 0; cursor:pointer; font-size:14px; font-weight:500;
  transition:color .2s; gap:16px;
}
.faq-q:hover { color:var(--red); }
.faq-icon {
  width:26px; height:26px; border:1px solid var(--border); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:17px; color:var(--muted); flex-shrink:0;
  transition:transform .3s,border-color .3s,color .3s;
}
.faq-item.open .faq-icon { transform:rotate(45deg); border-color:var(--red); color:var(--red); }
.faq-body { max-height:0; overflow:hidden; transition:max-height .4s ease,padding .3s; }
.faq-item.open .faq-body { max-height:180px; padding-bottom:18px; }
.faq-body p { font-size:13px; color:var(--muted); line-height:1.9; }
.faq-cta { background:var(--mid); border:1px solid var(--border); border-radius:6px; padding:44px 36px; position:sticky; top:90px; }
.faq-cta h3 { font-family:var(--font-head); font-size:clamp(24px,2.5vw,34px); font-weight:700; margin-bottom:14px; }
.faq-cta > p { font-size:13px; color:var(--muted); line-height:1.8; margin-bottom:28px; }
.faq-cta .btn-primary { width:100%; text-align:center; }
.contact-list { margin-top:28px; display:flex; flex-direction:column; gap:12px; }
.contact-row { display:flex; align-items:center; gap:10px; font-size:13px; color:var(--muted); }
.contact-row svg { width:15px; height:15px; stroke:var(--red); fill:none; stroke-width:2; flex-shrink:0; }

/* ============================================================
   WHY CHOOSE
   ============================================================ */
#why { background:var(--black); }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); margin-top:52px; }
.why-card { background:var(--black); padding:44px 32px; transition:background .25s; }
.why-card:hover { background:var(--mid); }
.why-ico { width:48px; height:48px; background:rgba(230,43,81,.08); border:1px solid rgba(230,43,81,.18); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.why-ico svg { width:20px; height:20px; stroke:var(--red); fill:none; stroke-width:1.5; }
.why-card h3 { font-family:var(--font-head); font-size:18px; font-weight:700; margin-bottom:10px; }
.why-card p  { font-size:13px; color:var(--muted); line-height:1.8; }

/* ============================================================
   AWARDS
   ============================================================ */
#awards { background:var(--darker); padding:72px 80px; }
.awards-flex { display:flex; align-items:center; gap:72px; flex-wrap:wrap; }
.awards-text { flex:1; min-width:260px; }
.awards-badges { display:flex; gap:16px; flex-wrap:wrap; }
.award-b {
  width:96px; height:96px; background:var(--mid); border:1px solid var(--border);
  border-radius:var(--radius); display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:7px; padding:12px;
  transition:border-color .25s,transform .2s;
}
.award-b:hover { border-color:var(--red); transform:translateY(-3px); }
.award-b svg { width:24px; height:24px; stroke:var(--red); fill:none; stroke-width:1.5; }
.award-b span { font-size:9px; letter-spacing:1px; text-transform:uppercase; color:var(--muted); text-align:center; line-height:1.4; }

/* ============================================================
   BLOG
   ============================================================ */
#blog { background:var(--black); }
.blog-top { display:flex; justify-content:space-between; align-items:flex-end; gap:20px; flex-wrap:wrap; margin-bottom:48px; }
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); }
.blog-card { background:var(--black); overflow:hidden; transition:background .25s; }
.blog-card:hover { background:var(--mid); }
.blog-img { aspect-ratio:16/9; overflow:hidden; }
.blog-thumb { width:100%; height:100%; display:flex; align-items:center; justify-content:center; transition:transform .4s; }
.blog-card:hover .blog-thumb { transform:scale(1.05); }
.blog-body  { padding:28px; }
.blog-meta  { font-size:10px; letter-spacing:2.5px; text-transform:uppercase; color:var(--red); margin-bottom:12px; }
.blog-card h3 { font-family:var(--font-head); font-size:18px; font-weight:700; line-height:1.35; margin-bottom:12px; }
.blog-card p  { font-size:12px; color:var(--muted); line-height:1.8; }
.blog-link { display:inline-flex; align-items:center; gap:6px; font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--red); margin-top:18px; transition:gap .2s; }
.blog-link:hover { gap:12px; }
.b1{background:linear-gradient(135deg,#180810,#300e20);}
.b2{background:linear-gradient(135deg,#081018,#0d1e35);}
.b3{background:linear-gradient(135deg,#081408,#0e2a0e);}

/* ============================================================
   FOOTER
   ============================================================ */
footer { background:var(--darker); border-top:1px solid var(--border); }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1.4fr; gap:56px; padding:72px 80px; }
.f-brand { }
.f-brand .nav-logo { font-size:22px; display:block; margin-bottom:16px; }
.f-brand > p { font-size:13px; color:var(--muted); line-height:1.8; max-width:280px; margin-bottom:24px; }
.f-socials { display:flex; gap:10px; }
.f-social { width:34px; height:34px; border:1px solid var(--border); border-radius:50%; display:flex; align-items:center; justify-content:center; transition:border-color .2s,background .2s; }
.f-social:hover { border-color:var(--red); background:rgba(230,43,81,.1); }
.f-social svg { width:14px; height:14px; stroke:var(--muted); fill:none; stroke-width:1.5; transition:stroke .2s; }
.f-social:hover svg { stroke:var(--red); }
.f-col h4 { font-size:11px; letter-spacing:3px; text-transform:uppercase; color:var(--white); margin-bottom:20px; }
.f-col ul { display:flex; flex-direction:column; gap:10px; }
.f-col ul a { font-size:13px; color:var(--muted); transition:color .2s,padding-left .2s; display:inline-block; }
.f-col ul a:hover { color:var(--white); padding-left:5px; }
.f-addr { font-size:13px; color:var(--muted); line-height:1.9; margin-bottom:18px; }
.f-contact a { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--muted); margin-bottom:8px; transition:color .2s; }
.f-contact a:hover { color:var(--red); }
.f-contact a svg { width:13px; height:13px; stroke:var(--red); fill:none; stroke-width:2; flex-shrink:0; }
.footer-bottom { border-top:1px solid var(--border); padding:20px 80px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-bottom p { font-size:12px; color:var(--muted); }
.footer-bottom a { color:var(--red); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-btns { position:fixed; bottom:28px; right:28px; z-index:900; display:flex; flex-direction:column; gap:10px; align-items:flex-end; }
.f-float { padding:11px 22px; border-radius:40px; font-size:12px; font-weight:600; box-shadow:0 4px 18px rgba(0,0,0,.3); transition:transform .2s,box-shadow .2s; color:#fff; }
.f-float:hover { transform:translateY(-2px); }
.f-float-call { background:var(--red); box-shadow:0 4px 18px rgba(230,43,81,.3); }
.f-float-call:hover { box-shadow:0 8px 28px rgba(230,43,81,.4); }
.f-float-wa { background:#1ebe57; box-shadow:0 4px 18px rgba(30,190,87,.25); }
.f-float-wa:hover { box-shadow:0 8px 28px rgba(30,190,87,.35); }

/* ============================================================
   RESPONSIVE – TABLET  (≤1024px)
   ============================================================ */
@media (max-width:1024px) {
  .section-wrap { padding:72px 48px; }
  #co-nav { padding:0 32px; }
  .hero-inner { grid-template-columns:1fr; gap:48px; padding:calc(var(--nav-h) + 40px) 48px 40px; }
  .hero-card { display:none; }
  #pillars .section-wrap { padding:0 48px; }
  #clients,#awards,#stats { padding-left:48px; padding-right:48px; }
  .footer-top { grid-template-columns:1fr 1fr; gap:40px; padding:56px 48px; }
  .footer-bottom { padding:18px 48px; }
  .about-grid { grid-template-columns:1fr; gap:48px; }
  .about-accent { display:none; }
  .faq-grid { grid-template-columns:1fr; gap:40px; }
  .faq-cta { position:static; }
  .process-grid { grid-template-columns:repeat(3,1fr); gap:32px; }
  .process-line { display:none; }
}

/* ============================================================
   RESPONSIVE – MOBILE  (≤768px)
   ============================================================ */
@media (max-width:768px) {
  :root { --nav-h:60px; }
  .section-wrap { padding:60px 20px; }
  #co-nav { padding:0 20px; }
  .nav-links,.nav-phone { display:none; }
  .hamburger { display:flex; }

  /* Hero */
  .hero-inner { padding:calc(var(--nav-h) + 32px) 20px 32px; gap:32px; }
  .hero-title { letter-spacing:-0.5px; }
  .hero-trust { gap:12px; }
  .hero-trust-item { flex:1; }
  .hero-trust-num { font-size:20px; }

  /* Grids → single column */
  .pillars-grid { grid-template-columns:1fr; }
  .pillar-item { border-right:none; border-bottom:1px solid var(--border); }
  .pillar-item:last-child { border-bottom:none; }
  .services-grid, .testi-grid, .why-grid, .blog-grid { grid-template-columns:1fr; background:none; gap:1px; }
  .projects-grid { grid-template-columns:1fr; }
  .awards-flex { flex-direction:column; gap:36px; }

  /* Stats 2-col */
  .stats-grid { grid-template-columns:1fr 1fr; }
  .stat-item { border-right:none; border-bottom:1px solid rgba(255,255,255,.15); padding:20px; }
  .stat-item:nth-child(odd)  { border-right:1px solid rgba(255,255,255,.15); }
  .stat-item:nth-last-child(-n+2) { border-bottom:none; }

  /* Process 2-col */
  .process-grid { grid-template-columns:1fr 1fr; gap:28px; }

  /* Footer */
  .footer-top { grid-template-columns:1fr; gap:32px; padding:48px 20px; }
  .footer-bottom { padding:18px 20px; flex-direction:column; text-align:center; }

  /* Clients / awards padding */
  #clients,#awards,#stats { padding-left:20px; padding-right:20px; }
  #pillars .section-wrap { padding:0 20px; }

  /* Hero scroll & shape */
  .hero-scroll,.about-accent { display:none; }
  .services-top,.projects-top,.testi-top,.blog-top { flex-direction:column; align-items:flex-start; }
}

/* ============================================================
   RESPONSIVE – SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width:480px) {
  .hero-title { font-size:clamp(32px,9vw,48px); }
  .section-title { font-size:clamp(26px,7vw,36px); }
  .process-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:1fr; }
  .stat-item:nth-child(odd)  { border-right:none; }
  .stat-item { border-bottom:1px solid rgba(255,255,255,.15); }
  .stat-item:last-child { border-bottom:none; }
  .floating-btns { bottom:16px; right:16px; }
  .f-float { padding:10px 18px; font-size:11px; }
}
