/* ================================================================
   ORAVS CREATIVE SOLUTION — style.css
   Brand: Navy #0A1940 / Orange #F7601E / Teal #00BFD8 / White
   Fonts: Syne (headings) + DM Sans (body)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --navy:        #0A1940;
  --navy-mid:    #112254;
  --navy-light:  #1A2E6A;
  --orange:      #F7601E;
  --orange-dark: #D44E10;
  --teal:        #00BFD8;
  --teal-dark:   #009DB3;
  --white:       #FFFFFF;
  --off-white:   #F5F7FA;
  --slate:       #64748B;
  --slate-light: #94A3B8;
  --border:      #E2E8F0;
  --shadow-xs:   0 1px 4px rgba(10,25,64,0.07);
  --shadow-sm:   0 2px 14px rgba(10,25,64,0.09);
  --shadow-md:   0 8px 32px rgba(10,25,64,0.13);
  --shadow-lg:   0 20px 60px rgba(10,25,64,0.18);
  --shadow-xl:   0 32px 80px rgba(10,25,64,0.24);
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --font-head:   'Syne', 'Arial Black', sans-serif;
  --font-body:   'DM Sans', Arial, sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --dur:         0.26s;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); font-size: 1rem; outline: none; }

/* ── Layout ────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.16; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
p  { color: var(--slate); }

.label-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(247,96,30,0.10);
  border: 1px solid rgba(247,96,30,0.20);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.label-tag.teal { color: var(--teal-dark); background: rgba(0,191,216,0.10); border-color: rgba(0,191,216,0.25); }

.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); box-shadow: 0 4px 18px rgba(247,96,30,0.32); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(247,96,30,0.42); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.10); transform: translateY(-2px); }

.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-white { background: var(--white); color: var(--orange); border-color: var(--white); box-shadow: 0 4px 18px rgba(0,0,0,0.14); font-weight: 700; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.20); }

.btn-teal { background: var(--teal); color: var(--white); border-color: var(--teal); box-shadow: 0 4px 18px rgba(0,191,216,0.30); }
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-2px); }

.btn-wa { background: #25D366; color: var(--white); border-color: #25D366; box-shadow: 0 4px 18px rgba(37,211,102,0.30); }
.btn-wa:hover { background: #1EAD53; border-color: #1EAD53; transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: 0.84rem; }
.btn-lg { padding: 16px 36px; font-size: 0.98rem; }

/* ── Navigation ────────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: all var(--dur) var(--ease); }
.nav.scrolled { background: rgba(10,25,64,0.97); backdrop-filter: blur(16px); padding: 11px 0; box-shadow: 0 4px 28px rgba(0,0,0,0.28); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo img { height: 38px; width: auto; display: block; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a { color: rgba(255,255,255,0.78); font-size: 0.88rem; font-weight: 500; padding: 8px 14px; border-radius: 7px; transition: all var(--dur) var(--ease); }
.nav-menu a:hover, .nav-menu a.active { color: var(--white); background: rgba(255,255,255,0.10); }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 12px; }
.nav-wa { display: inline-flex; align-items: center; gap: 7px; background: #25D366; color: var(--white); font-size: 0.82rem; font-weight: 600; padding: 8px 16px; border-radius: 7px; transition: all var(--dur); }
.nav-wa:hover { background: #1EAD53; transform: translateY(-1px); }
.nav-wa svg { width: 16px; height: 16px; fill: white; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; z-index: 1010; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--dur) var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--navy); padding: 96px 32px 48px;
  flex-direction: column; overflow-y: auto;
  animation: slideIn 0.3s var(--ease);
}
.mobile-nav.open { display: flex; }
@keyframes slideIn { from { opacity:0; transform: translateY(-8px); } to { opacity:1; transform: translateY(0); } }
.mobile-nav a { color: rgba(255,255,255,0.75); font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: block; transition: color var(--dur); }
.mobile-nav a:hover { color: var(--orange); }
.mobile-btns { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }

/* ── WhatsApp Float ────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all var(--dur) var(--ease);
}
.wa-float:hover { transform: scale(1.10); box-shadow: 0 10px 34px rgba(37,211,102,0.55); }
.wa-float svg { width: 28px; height: 28px; fill: white; }
.wa-float::before { content:''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.35); animation: waPop 2.5s infinite; }
@keyframes waPop { 0%{opacity:1;transform:scale(1);} 100%{opacity:0;transform:scale(1.5);} }

/* ── Hero ──────────────────────────────────────────────────── */
.hero { min-height: 100vh; background: var(--navy); position: relative; display: flex; align-items: center; padding: 120px 0 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow-o { position: absolute; width: 700px; height: 600px; background: radial-gradient(ellipse, rgba(247,96,30,0.13) 0%, transparent 65%); top: -120px; right: -80px; }
.hero-glow-t { position: absolute; width: 450px; height: 400px; background: radial-gradient(ellipse, rgba(0,191,216,0.09) 0%, transparent 65%); bottom: -60px; left: -80px; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px); background-size: 64px 64px; }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.hero-content { max-width: 600px; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(0,191,216,0.11); border: 1px solid rgba(0,191,216,0.28); border-radius: 50px; padding: 6px 16px 6px 10px; margin-bottom: 26px; }
.hb-dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.35;transform:scale(0.75);} }
.hero-badge span { font-size: 0.76rem; font-weight: 600; color: var(--teal); letter-spacing: 0.08em; text-transform: uppercase; }

.hero h1 { color: var(--white); margin-bottom: 22px; line-height: 1.10; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub { color: rgba(255,255,255,0.63); font-size: 1.06rem; line-height: 1.72; margin-bottom: 38px; max-width: 490px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }
.hero-rule { width: 48px; height: 2px; background: rgba(255,255,255,0.14); margin-bottom: 28px; }
.hero-stats { display: flex; gap: 40px; }
.stat-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-num .o { color: var(--orange); }
.stat-num .t { color: var(--teal); }
.stat-label { font-size: 0.80rem; color: rgba(255,255,255,0.48); margin-top: 5px; }

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-mockup { width: 100%; max-width: 480px; position: relative; }
.hero-browser { background: #1A2E6A; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.10); overflow: hidden; box-shadow: var(--shadow-xl); }
.hb-bar { background: rgba(255,255,255,0.06); padding: 10px 16px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hb-dots { display: flex; gap: 5px; }
.hb-dots span { width: 9px; height: 9px; border-radius: 50%; }
.hb-dots span:nth-child(1) { background: #FF5F57; }
.hb-dots span:nth-child(2) { background: #FFBD2E; }
.hb-dots span:nth-child(3) { background: #28C840; }
.hb-url { flex:1; background: rgba(255,255,255,0.06); border-radius: 5px; padding: 5px 12px; font-size: 0.72rem; color: rgba(255,255,255,0.42); font-family: monospace; }
.hb-body { padding: 18px; }
.hb-hero-strip { background: var(--navy); border-radius: 8px; padding: 18px; margin-bottom: 12px; position: relative; overflow: hidden; }
.hb-hero-strip::after { content:''; position:absolute; top:-20px; right:-20px; width:90px; height:90px; background: radial-gradient(circle, rgba(247,96,30,0.22), transparent 65%); }
.hb-line { height: 7px; background: rgba(255,255,255,0.08); border-radius: 4px; margin-bottom: 8px; }
.hb-line.w90{width:90%;} .hb-line.w70{width:70%;} .hb-line.w50{width:50%;}
.hb-line.orange { background: var(--orange); height: 26px; width: 36%; border-radius: 6px; margin-top: 12px; margin-bottom: 0; }
.hb-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 10px; }
.hb-card { background: var(--navy); border-radius: 7px; padding: 12px 10px; }
.hb-card-dot { width: 20px; height: 20px; border-radius: 5px; margin-bottom: 8px; }
.hb-card-dot.o { background: rgba(247,96,30,0.30); }
.hb-card-dot.t { background: rgba(0,191,216,0.25); }
.hb-card-dot.w { background: rgba(255,255,255,0.11); }
.hb-card-line { height: 5px; background: rgba(255,255,255,0.07); border-radius: 3px; margin-bottom: 5px; }
.hb-card-line.s { width: 60%; }
.hb-footer { display: flex; align-items: center; gap: 8px; }
.hb-footer-line { height: 5px; flex:1; background: rgba(255,255,255,0.06); border-radius: 3px; }

.hero-fc { position: absolute; background: var(--white); border-radius: var(--radius); padding: 12px 16px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; animation: floatY 4s ease-in-out infinite; min-width: 158px; }
.hero-fc.fc1 { bottom: -18px; left: -34px; animation-delay: 0s; }
.hero-fc.fc2 { top: -18px; right: -18px; animation-delay: 2.1s; }
@keyframes floatY { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
.fc-icon { width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fc-icon.o { background: rgba(247,96,30,0.12); }
.fc-icon.t { background: rgba(0,191,216,0.12); }
.fc-icon.o svg { width: 20px; height: 20px; color: var(--orange); }
.fc-icon.t svg { width: 20px; height: 20px; color: var(--teal-dark); }
.fc-num { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--navy); line-height: 1; }
.fc-lbl { font-size: 0.70rem; color: var(--slate-light); margin-top: 2px; }

/* ── Credibility Band ──────────────────────────────────────── */
.credibility { background: var(--navy); padding: 52px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.cred-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.cred-item { text-align: center; padding: 16px 20px; position: relative; }
.cred-item + .cred-item::before { content:''; position: absolute; left:0; top:15%; height:70%; width:1px; background: rgba(255,255,255,0.10); }
.cred-num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 6px; }
.cred-num .o { color: var(--orange); }
.cred-num .t { color: var(--teal); }
.cred-label { font-size: 0.83rem; color: rgba(255,255,255,0.48); }

/* ── Services ──────────────────────────────────────────────── */
.services-home { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px,1fr)); gap: 22px; }
.srv-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; border: 1px solid var(--border); transition: all var(--dur) var(--ease); position: relative; overflow: hidden; }
.srv-card::after { content:''; position:absolute; top:0;left:0;right:0; height:3px; background:var(--orange); transform:scaleX(0); transform-origin:left; transition:transform var(--dur) var(--ease); }
.srv-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:transparent; }
.srv-card:hover::after { transform:scaleX(1); }
.srv-icon { width:54px; height:54px; border-radius:12px; background:rgba(247,96,30,0.10); display:flex; align-items:center; justify-content:center; margin-bottom:20px; transition:background var(--dur); }
.srv-icon svg { width:26px; height:26px; color:var(--orange); transition:color var(--dur); }
.srv-card:hover .srv-icon { background:var(--orange); }
.srv-card:hover .srv-icon svg { color:var(--white); }
.srv-card h3 { margin-bottom:10px; }
.srv-card p { font-size:0.90rem; line-height:1.70; margin-bottom:18px; }
.srv-link { display:inline-flex; align-items:center; gap:6px; font-size:0.83rem; font-weight:600; color:var(--orange); transition:gap var(--dur); }
.srv-card:hover .srv-link { gap:10px; }
.srv-link svg { width:14px; height:14px; }

/* ── Portfolio Preview ─────────────────────────────────────── */
.portfolio-preview { background: var(--white); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px,1fr)); gap: 26px; }
.pf-card { background:var(--white); border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border); transition:all var(--dur) var(--ease); }
.pf-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:transparent; }
.pf-thumb { height:210px; position:relative; overflow:hidden; display:flex; align-items:center; justify-content:center; }
.pf-thumb-bg { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; padding:24px; }
.pf-thumb-icon { width:52px;height:52px; background:rgba(255,255,255,0.08); border-radius:12px; display:flex; align-items:center; justify-content:center; }
.pf-thumb-icon svg { width:26px; height:26px; color:rgba(255,255,255,0.26); }
.pf-thumb-url { font-size:0.71rem; color:rgba(255,255,255,0.30); letter-spacing:0.06em; font-family:monospace; }
.pf-overlay { position:absolute; inset:0; background:rgba(10,25,64,0.84); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity var(--dur); }
.pf-card:hover .pf-overlay { opacity:1; }
.pf-ovr-btn { display:inline-flex; align-items:center; gap:8px; background:var(--orange); color:var(--white); font-size:0.84rem; font-weight:600; padding:10px 22px; border-radius:var(--radius); transform:translateY(6px); transition:all var(--dur); }
.pf-card:hover .pf-ovr-btn { transform:translateY(0); }
.pf-ovr-btn svg { width:14px; height:14px; }
.pf-body { padding:22px 24px; }
.pf-cat { font-size:0.70rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--teal-dark); margin-bottom:5px; }
.pf-body h3 { font-size:1.05rem; margin-bottom:7px; }
.pf-body p { font-size:0.85rem; color:var(--slate-light); }

/* Thumb color variants */
.pf-v1 { background:linear-gradient(135deg,#082030 0%,#1A3A60 100%); }
.pf-v2 { background:linear-gradient(135deg,#0A1A30 0%,#102040 100%); }
.pf-v3 { background:linear-gradient(135deg,#0E2030 0%,#0A1A40 100%); }
.pf-v4 { background:linear-gradient(135deg,#180A30 0%,#281A50 100%); }
.pf-v5 { background:linear-gradient(135deg,#0A1820 0%,#0A2830 100%); }
.pf-glow-o::before { content:''; position:absolute; bottom:0;right:0; width:130px;height:130px; background:radial-gradient(circle,rgba(247,96,30,0.22),transparent 65%); }
.pf-glow-t::before { content:''; position:absolute; top:0;left:0; width:130px;height:130px; background:radial-gradient(circle,rgba(0,191,216,0.20),transparent 65%); }

/* ── Process ───────────────────────────────────────────────── */
.process-home { background:var(--navy); }
.process-home .section-head h2 { color:var(--white); }
.process-home .section-head p  { color:rgba(255,255,255,0.55); }
.proc-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; position:relative; }
.proc-grid::before { content:''; position:absolute; top:32px; left:calc(12.5% + 14px); right:calc(12.5% + 14px); height:1px; background:rgba(255,255,255,0.10); z-index:0; }
.proc-step { text-align:center; padding:30px 18px; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:var(--radius-lg); position:relative; z-index:1; transition:all var(--dur) var(--ease); }
.proc-step:hover { background:rgba(255,255,255,0.08); border-color:rgba(247,96,30,0.35); transform:translateY(-4px); }
.proc-num { width:36px;height:36px; background:var(--orange); color:var(--white); font-family:var(--font-head); font-size:0.80rem; font-weight:700; border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 14px; }
.proc-step svg { width:32px;height:32px; color:rgba(255,255,255,0.22); margin:0 auto 12px; }
.proc-step h3 { color:var(--white); font-size:0.98rem; margin-bottom:7px; }
.proc-step p  { font-size:0.83rem; color:rgba(255,255,255,0.48); }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-home { background:var(--off-white); }
.testi-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:22px; }
.testi-card { background:var(--white); border-radius:var(--radius-lg); padding:30px 26px; border:1px solid var(--border); transition:all var(--dur) var(--ease); }
.testi-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:rgba(247,96,30,0.24); }
.testi-stars { display:flex; gap:4px; margin-bottom:16px; }
.testi-stars svg { width:16px; height:16px; fill:var(--orange); }
.testi-text { font-size:0.93rem; line-height:1.74; color:var(--slate); font-style:italic; margin-bottom:22px; }
.testi-author { display:flex; align-items:center; gap:13px; }
.testi-av { width:42px;height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-size:0.95rem; font-weight:700; color:var(--white); flex-shrink:0; }
.testi-av.o { background:var(--orange); }
.testi-av.t { background:var(--teal-dark); }
.testi-av.n { background:var(--navy-light); }
.testi-name { font-weight:600; font-size:0.90rem; color:var(--navy); }
.testi-role { font-size:0.75rem; color:var(--slate-light); margin-top:1px; }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner { background:var(--orange); padding:88px 0; position:relative; overflow:hidden; text-align:center; }
.cta-banner::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 700px 400px at 80% 50%,rgba(255,255,255,0.10) 0%,transparent 60%), radial-gradient(ellipse 400px 300px at 20% 50%,rgba(0,0,0,0.08) 0%,transparent 60%); }
.cta-banner-in { position:relative; z-index:1; }
.cta-banner h2 { color:var(--white); margin-bottom:13px; }
.cta-banner p  { color:rgba(255,255,255,0.84); font-size:1.04rem; max-width:530px; margin:0 auto 34px; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ── Page Hero ─────────────────────────────────────────────── */
.page-hero { padding:160px 0 80px; background:var(--navy); position:relative; overflow:hidden; }
.page-hero-deco { position:absolute; inset:0; pointer-events:none; }
.page-hero-deco::before { content:''; position:absolute; top:-100px;right:-100px; width:500px;height:500px; background:radial-gradient(ellipse,rgba(247,96,30,0.11) 0%,transparent 65%); }
.page-hero-deco::after { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,0.024) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.024) 1px,transparent 1px); background-size:64px 64px; }
.page-hero-con { position:relative; z-index:1; text-align:center; }
.page-hero h1 { color:var(--white); margin-bottom:13px; }
.page-hero p  { color:rgba(255,255,255,0.58); font-size:1.06rem; max-width:520px; margin:0 auto 22px; }
.breadcrumb { display:flex; align-items:center; gap:8px; justify-content:center; }
.breadcrumb a { color:rgba(255,255,255,0.44); font-size:0.83rem; transition:color var(--dur); }
.breadcrumb a:hover { color:var(--orange); }
.breadcrumb .sep { color:rgba(255,255,255,0.24); font-size:0.83rem; }
.breadcrumb .cur { color:var(--orange); font-size:0.83rem; font-weight:500; }

/* ── About Page ────────────────────────────────────────────── */
.about-story { background:var(--white); }
.about-inner { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-visual { position:relative; }
.about-block { background:var(--navy); border-radius:var(--radius-xl); height:440px; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.about-block::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 360px 360px at 75% 25%,rgba(247,96,30,0.18) 0%,transparent 60%); }
.about-block::after  { content:''; position:absolute; inset:0; background:linear-gradient(rgba(255,255,255,0.02) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.02) 1px,transparent 1px); background-size:48px 48px; }
.about-block-in { position:relative; z-index:1; text-align:center; padding:40px; }
.about-block-in img { width:80px; margin:0 auto 20px; }
.about-block-in h3 { font-family:var(--font-head); font-size:2rem; font-weight:800; color:var(--white); margin-bottom:8px; }
.about-block-in p { font-size:0.87rem; color:rgba(255,255,255,0.48); }
.about-badge { position:absolute; bottom:-14px; right:-14px; background:var(--orange); border-radius:var(--radius); padding:16px 20px; text-align:center; box-shadow:var(--shadow-md); }
.about-badge .num { font-family:var(--font-head); font-size:1.8rem; font-weight:800; color:var(--white); line-height:1; }
.about-badge .lbl { font-size:0.70rem; color:rgba(255,255,255,0.80); margin-top:2px; }
.about-teal { position:absolute; top:-14px; left:-14px; background:var(--teal); border-radius:var(--radius); padding:12px 16px; box-shadow:var(--shadow-md); }
.about-teal .num { font-family:var(--font-head); font-size:1.4rem; font-weight:800; color:var(--white); line-height:1; }
.about-teal .lbl { font-size:0.68rem; color:rgba(255,255,255,0.80); margin-top:2px; }
.about-text .label-tag { margin-bottom:12px; }
.about-text h2 { margin-bottom:18px; line-height:1.2; }
.about-text p { margin-bottom:16px; line-height:1.78; font-size:0.96rem; }
.about-vals { display:grid; grid-template-columns:1fr 1fr; gap:13px; margin-top:28px; }
.about-val { display:flex; align-items:flex-start; gap:11px; padding:14px; background:var(--off-white); border-radius:var(--radius); border:1px solid var(--border); }
.aval-icon { width:34px;height:34px; border-radius:8px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.aval-icon.o { background:rgba(247,96,30,0.12); }
.aval-icon.t { background:rgba(0,191,216,0.12); }
.aval-icon.o svg { width:17px;height:17px; color:var(--orange); }
.aval-icon.t svg { width:17px;height:17px; color:var(--teal-dark); }
.about-val h4 { font-size:0.84rem; color:var(--navy); margin-bottom:2px; }
.about-val p  { font-size:0.77rem; color:var(--slate-light); }

.mission-sec { background:var(--off-white); }
.mis-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(230px,1fr)); gap:20px; }
.mis-card { background:var(--white); border-radius:var(--radius-lg); padding:32px 24px; text-align:center; border:1px solid var(--border); transition:all var(--dur) var(--ease); }
.mis-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:rgba(247,96,30,0.25); }
.mis-icon { width:60px;height:60px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
.mis-icon.o { background:rgba(247,96,30,0.10); }
.mis-icon.t { background:rgba(0,191,216,0.10); }
.mis-icon.n { background:rgba(10,25,64,0.08); }
.mis-icon svg { width:27px;height:27px; }
.mis-icon.o svg { color:var(--orange); }
.mis-icon.t svg { color:var(--teal-dark); }
.mis-icon.n svg { color:var(--navy); }
.mis-card h3 { font-size:0.98rem; margin-bottom:8px; }
.mis-card p  { font-size:0.83rem; color:var(--slate-light); }

/* ── Services Detail ───────────────────────────────────────── */
.srv-details { background:var(--white); }
.srv-det { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; padding:72px 0; border-bottom:1px solid var(--border); }
.srv-det:last-child { border-bottom:none; }
.srv-det.rev { }
.srv-det.rev .srv-det-vis { order:2; }
.srv-det.rev .srv-det-txt { order:1; }
.srv-det-vis { background:var(--navy); border-radius:var(--radius-xl); height:320px; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.srv-det-vis::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 280px 280px at 65% 35%,rgba(247,96,30,0.16) 0%,transparent 60%); }
.srv-det-vis.tv::before { background:radial-gradient(ellipse 280px 280px at 35% 65%,rgba(0,191,216,0.18) 0%,transparent 60%); }
.srv-det-vis svg { width:76px;height:76px; color:rgba(255,255,255,0.18); position:relative;z-index:1; }
.srv-det-txt .label-tag { margin-bottom:12px; }
.srv-det-txt h2 { margin-bottom:13px; font-size:1.85rem; }
.srv-det-txt p { line-height:1.76; margin-bottom:13px; font-size:0.95rem; }
.srv-target { background:rgba(247,96,30,0.06); border-left:3px solid var(--orange); padding:11px 15px; border-radius:0 var(--radius) var(--radius) 0; margin-bottom:18px; font-size:0.87rem; color:var(--navy-mid); line-height:1.6; }
.srv-bens { display:flex; flex-direction:column; gap:9px; margin-bottom:24px; }
.srv-ben { display:flex; align-items:center; gap:9px; font-size:0.88rem; color:var(--slate); }
.srv-ben svg { width:16px;height:16px; color:var(--orange); flex-shrink:0; }

/* ── Portfolio Full ────────────────────────────────────────── */
.pf-full { background:var(--white); }
.pf-filter { display:flex; gap:10px; flex-wrap:wrap; justify-content:center; margin-bottom:46px; }
.pf-fbtn { padding:8px 22px; border-radius:50px; font-size:0.83rem; font-weight:600; border:2px solid var(--border); color:var(--slate); background:var(--white); cursor:pointer; transition:all var(--dur) var(--ease); }
.pf-fbtn.active, .pf-fbtn:hover { background:var(--navy); border-color:var(--navy); color:var(--white); }

/* ── Pricing ───────────────────────────────────────────────── */
.pricing-sec { background:var(--off-white); }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; align-items:start; }
.price-card { background:var(--white); border-radius:var(--radius-xl); padding:38px 30px; border:2px solid var(--border); transition:all var(--dur) var(--ease); display:flex; flex-direction:column; position:relative; }
.price-card:hover { box-shadow:var(--shadow-lg); }
.price-card.featured { background:var(--navy); border-color:var(--navy); transform:scale(1.04); box-shadow:var(--shadow-xl); }
.price-card.featured:hover { transform:scale(1.04) translateY(-4px); }
.feat-badge { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--orange); color:var(--white); font-size:0.70rem; font-weight:700; letter-spacing:0.10em; text-transform:uppercase; padding:5px 18px; border-radius:50px; white-space:nowrap; }
.price-tier { font-size:0.72rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; margin-bottom:9px; }
.price-card:not(.featured) .price-tier { color:var(--orange); }
.price-card.featured .price-tier { color:var(--teal); }
.price-name { font-family:var(--font-head); font-size:1.55rem; font-weight:800; margin-bottom:7px; }
.price-card:not(.featured) .price-name { color:var(--navy); }
.price-card.featured .price-name { color:var(--white); }
.price-desc { font-size:0.86rem; margin-bottom:26px; }
.price-card:not(.featured) .price-desc { color:var(--slate); }
.price-card.featured .price-desc { color:rgba(255,255,255,0.56); }
.price-amount { display:flex; align-items:baseline; gap:5px; margin-bottom:5px; }
.price-cur { font-size:1rem; font-weight:700; }
.price-num { font-family:var(--font-head); font-size:2.7rem; font-weight:800; line-height:1; }
.price-card:not(.featured) .price-cur, .price-card:not(.featured) .price-num { color:var(--navy); }
.price-card.featured .price-cur, .price-card.featured .price-num { color:var(--white); }
.price-note { font-size:0.77rem; margin-bottom:26px; }
.price-card:not(.featured) .price-note { color:var(--slate-light); }
.price-card.featured .price-note { color:rgba(255,255,255,0.42); }
.price-div { height:1px; margin-bottom:20px; }
.price-card:not(.featured) .price-div { background:var(--border); }
.price-card.featured .price-div { background:rgba(255,255,255,0.10); }
.price-features { flex:1; display:flex; flex-direction:column; gap:10px; margin-bottom:26px; }
.pfeat { display:flex; align-items:flex-start; gap:9px; font-size:0.87rem; }
.price-card:not(.featured) .pfeat { color:var(--slate); }
.price-card.featured .pfeat { color:rgba(255,255,255,0.74); }
.pfeat svg { width:16px;height:16px; flex-shrink:0; margin-top:2px; }
.price-card:not(.featured) .pfeat svg { color:var(--orange); }
.price-card.featured .pfeat svg { color:var(--teal); }
.price-ideal { font-size:0.79rem; padding:9px 13px; border-radius:var(--radius); margin-bottom:22px; line-height:1.55; }
.price-card:not(.featured) .price-ideal { background:rgba(247,96,30,0.07); color:var(--navy); border-left:3px solid var(--orange); }
.price-card.featured .price-ideal { background:rgba(255,255,255,0.07); color:rgba(255,255,255,0.68); border-left:3px solid var(--teal); }
.price-cta { width:100%; justify-content:center; }

/* ── Contact ───────────────────────────────────────────────── */
.contact-sec { background:var(--white); }
.contact-inner { display:grid; grid-template-columns:1fr 1.4fr; gap:60px; }
.contact-info h2 { margin-bottom:12px; }
.contact-info > p { margin-bottom:26px; line-height:1.75; font-size:0.95rem; }
.contact-items { display:flex; flex-direction:column; gap:16px; margin-bottom:30px; }
.citem { display:flex; align-items:flex-start; gap:14px; }
.ci-icon { width:42px;height:42px; border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ci-icon.o { background:rgba(247,96,30,0.10); }
.ci-icon.t { background:rgba(0,191,216,0.10); }
.ci-icon.n { background:rgba(10,25,64,0.07); }
.ci-icon.o svg { width:19px;height:19px; color:var(--orange); }
.ci-icon.t svg { width:19px;height:19px; color:var(--teal-dark); }
.ci-icon.n svg { width:19px;height:19px; color:var(--navy); }
.ci-lbl { font-size:0.73rem; font-weight:600; color:var(--slate-light); letter-spacing:0.06em; text-transform:uppercase; margin-bottom:2px; }
.ci-val { font-size:0.90rem; color:var(--navy); font-weight:500; }
.ci-val a { color:var(--orange); }
.map-box { border-radius:var(--radius-lg); overflow:hidden; height:200px; border:1px solid var(--border); }
.map-box iframe { width:100%; height:100%; border:none; display:block; }
.contact-form-box { background:var(--off-white); border-radius:var(--radius-xl); padding:38px; border:1px solid var(--border); }
.contact-form-box h3 { margin-bottom:5px; }
.contact-form-box > p { font-size:0.87rem; margin-bottom:26px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-group { margin-bottom:16px; }
.form-label { display:block; font-size:0.81rem; font-weight:600; color:var(--navy); margin-bottom:6px; }
.form-input, .form-select, .form-textarea { width:100%; padding:11px 15px; border:1.5px solid var(--border); border-radius:var(--radius); font-family:var(--font-body); font-size:0.91rem; color:var(--navy); background:var(--white); transition:border-color var(--dur), box-shadow var(--dur); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color:var(--orange); box-shadow:0 0 0 3px rgba(247,96,30,0.11); }
.form-input.err, .form-textarea.err { border-color:#E53E3E; box-shadow:0 0 0 3px rgba(229,62,62,0.09); }
.form-err { font-size:0.77rem; color:#E53E3E; margin-top:4px; display:none; }
.form-err.show { display:block; }
.form-textarea { resize:vertical; min-height:120px; }
.form-select { cursor:pointer; }
.form-submit { width:100%; justify-content:center; margin-top:4px; }
.form-success { display:none; text-align:center; padding:36px 20px; }
.form-success.show { display:block; }
.form-success-icon { width:60px;height:60px; background:rgba(37,211,102,0.11); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 14px; }
.form-success-icon svg { width:30px;height:30px; color:#25D366; }
.form-success h3 { color:var(--navy); margin-bottom:7px; }
.form-success p { font-size:0.88rem; }

/* ── Footer ────────────────────────────────────────────────── */
.footer { background:var(--navy); padding:70px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:44px; padding-bottom:52px; border-bottom:1px solid rgba(255,255,255,0.08); }
.footer-brand img { height:34px; margin-bottom:16px; }
.footer-brand p { font-size:0.87rem; color:rgba(255,255,255,0.46); line-height:1.70; max-width:270px; margin-bottom:20px; }
.footer-social { display:flex; gap:9px; }
.footer-social a { width:34px;height:34px; border-radius:7px; background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.10); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.52); transition:all var(--dur); }
.footer-social a:hover { background:var(--orange); border-color:var(--orange); color:var(--white); transform:translateY(-2px); }
.footer-social svg { width:15px;height:15px; }
.footer-col h4 { font-family:var(--font-head); font-size:0.86rem; font-weight:700; color:var(--white); letter-spacing:0.06em; text-transform:uppercase; margin-bottom:16px; }
.footer-col ul { display:flex; flex-direction:column; gap:9px; }
.footer-col ul a { font-size:0.85rem; color:rgba(255,255,255,0.48); transition:color var(--dur); }
.footer-col ul a:hover { color:var(--orange); }
.fci { display:flex; align-items:flex-start; gap:9px; margin-bottom:12px; }
.fci svg { width:15px;height:15px; color:var(--orange); flex-shrink:0; margin-top:2px; }
.fci span { font-size:0.83rem; color:rgba(255,255,255,0.48); line-height:1.55; }
.fci a { color:rgba(255,255,255,0.48); transition:color var(--dur); }
.fci a:hover { color:var(--orange); }
.footer-wa { display:inline-flex; align-items:center; gap:7px; background:rgba(37,211,102,0.11); border:1px solid rgba(37,211,102,0.24); color:#25D366; font-size:0.81rem; font-weight:600; padding:8px 15px; border-radius:var(--radius); margin-top:4px; transition:all var(--dur); }
.footer-wa:hover { background:#25D366; color:white; border-color:#25D366; }
.footer-wa svg { width:15px;height:15px; fill:currentColor; }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; padding:20px 0; gap:14px; flex-wrap:wrap; }
.footer-bottom p { font-size:0.81rem; color:rgba(255,255,255,0.30); }
.footer-bottom a { color:var(--orange); }
.footer-bottom-links { display:flex; gap:18px; }
.footer-bottom-links a { font-size:0.79rem; color:rgba(255,255,255,0.30); transition:color var(--dur); }
.footer-bottom-links a:hover { color:var(--orange); }

/* ── Scroll Animations ─────────────────────────────────────── */
.fade-up { opacity:0; transform:translateY(26px); transition:opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.fade-up.in { opacity:1; transform:translateY(0); }
.fade-up.d1 { transition-delay:0.10s; }
.fade-up.d2 { transition-delay:0.20s; }
.fade-up.d3 { transition-delay:0.30s; }
.fade-up.d4 { transition-delay:0.40s; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner { gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
}
@media (max-width: 900px) {
  .nav-menu, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .cred-grid { grid-template-columns: repeat(2,1fr); }
  .cred-item + .cred-item::before { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 480px; margin: 0 auto; }
  .srv-det { grid-template-columns: 1fr; gap: 32px; }
  .srv-det.rev .srv-det-vis, .srv-det.rev .srv-det-txt { order: unset; }
  .contact-inner { grid-template-columns: 1fr; gap: 38px; }
  .proc-grid { grid-template-columns: repeat(2,1fr); }
  .proc-grid::before { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero-stats { gap: 24px; }
  .about-vals { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .wa-float { bottom: 18px; right: 18px; }
  .contact-form-box { padding: 26px 18px; }
}
