/* ============================================================
   Saif Techlogix - Global Stylesheet
   Fonts: Outfit (headings) + Inter (body)
   Palette: Navy #0A1A2F - Blue #1B6FD0 - Orange #F2741B
   ============================================================ */

:root {
  --navy: #0A1A2F;
  --navy-soft: #122B4A;
  --blue: #1B6FD0;
  --blue-dark: #1257A8;
  --orange: #F2741B;
  --orange-dark: #d85f0c;
  --bg: #F6F8FB;
  --bg-alt: #FFFFFF;
  --text: #15202B;
  --muted: #5B6776;
  --line: #E5EAF1;
  --white: #FFFFFF;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(10, 26, 47, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 26, 47, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 26, 47, 0.16);
  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 {
  font-size: 44px;
  margin-bottom: 18px;
}
.section-head p { color: var(--muted); font-size: 18px; }

.text-orange { color: var(--orange); }
.text-blue { color: var(--blue); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 8px 24px rgba(242,116,27,.32); }
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 14px 34px rgba(242,116,27,.42); }
.btn-secondary { background: transparent; border-color: rgba(255,255,255,.45); color: var(--white); }
.btn-secondary:hover { background: rgba(255,255,255,.10); }
.btn-ghost { background: var(--white); color: var(--navy); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand-name {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 22px;
  letter-spacing: -0.02em; line-height: 1;
}
.brand-name .b { color: var(--blue); }
.brand-name .o { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-weight: 500; font-size: 15.5px; color: var(--navy);
  position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--orange); transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--orange); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; font-size: 15px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(27,111,208,.18), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(242,116,27,.12), transparent 55%),
    var(--navy);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center;
  padding: 96px 0 100px;
}
.hero h1 { color: var(--white); font-size: 60px; margin-bottom: 22px; }
.hero h1 .grad {
  background: linear-gradient(90deg, var(--orange), #ffb066);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p.lead { font-size: 19px; color: rgba(255,255,255,.82); max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-pill {
  display:inline-flex; align-items:center; gap:9px;
  background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16);
  padding: 8px 16px; border-radius: 100px; font-size: 13.5px; font-weight: 600;
  letter-spacing:.03em; margin-bottom: 26px; color: rgba(255,255,255,.9);
}
.hero-pill .dot { width:8px; height:8px; border-radius:50%; background: var(--orange); box-shadow:0 0 0 4px rgba(242,116,27,.25); }

.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: var(--white); font-size: 18px; margin-bottom: 6px; }
.hero-card .sub { color: rgba(255,255,255,.6); font-size: 14px; margin-bottom: 22px; }
.hero-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-metric {
  background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.10);
  border-radius: 12px; padding: 18px;
}
.hero-metric .num { font-family:'Outfit'; font-size: 30px; font-weight: 800; color: var(--orange); line-height:1; }
.hero-metric .lbl { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 6px; }

/* ---------- Trust bar ---------- */
.trust { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.trust-row {
  display:flex; flex-wrap:wrap; justify-content:space-between; gap: 24px;
  padding: 30px 0; text-align:center;
}
.trust-item { flex:1; min-width: 160px; }
.trust-item .num { font-family:'Outfit'; font-weight:800; font-size:32px; color: var(--navy); }
.trust-item .lbl { font-size:14px; color: var(--muted); margin-top: 2px; }

/* ---------- Generic cards/grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.card {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(27,111,208,.35); }
.card .icon {
  width: 54px; height: 54px; border-radius: 12px; display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(27,111,208,.12), rgba(242,116,27,.12));
  margin-bottom: 20px; font-size: 26px;
}
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; }

/* ---------- Who we are ---------- */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:center; }
.split-media {
  border-radius: 20px; overflow:hidden; box-shadow: var(--shadow-lg); position:relative;
  background: var(--navy);
}
.split-media img { width:100%; height:100%; object-fit: cover; }
.check-list { margin: 26px 0 30px; display:grid; gap:14px; }
.check-list li { display:flex; gap:13px; align-items:flex-start; font-size:16px; }
.check-list .tick {
  flex-shrink:0; width:24px; height:24px; border-radius:50%; background: rgba(27,111,208,.12);
  color: var(--blue); display:grid; place-items:center; font-size:13px; font-weight:800; margin-top:2px;
}

/* ---------- Process ---------- */
.steps { display:grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.step { position: relative; padding-top: 8px; }
.step .n {
  font-family:'Outfit'; font-weight:800; font-size: 19px; width:46px; height:46px; border-radius:12px;
  background: var(--navy); color: var(--white); display:grid; place-items:center; margin-bottom: 18px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- Team ---------- */
.team-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.team-card {
  background: var(--bg-alt); border:1px solid var(--line); border-radius: 18px; overflow:hidden;
  text-align:center; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-photo { aspect-ratio: 4/5; overflow:hidden; background: linear-gradient(135deg,#e9eef5,#dfe7f1); }
.team-photo img { width:100%; height:100%; object-fit: cover; object-position: center top; transition: transform .5s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-info { padding: 22px 20px 26px; }
.team-info h3 { font-size: 20px; margin-bottom: 4px; }
.team-info .role { color: var(--orange); font-weight:600; font-size: 14.5px; letter-spacing:.01em; }
.team-info .name { color: var(--muted); font-size: 14px; margin-top: 2px; }

.lead-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white); border-radius: 22px; overflow:hidden;
  display:grid; grid-template-columns: .8fr 1.2fr; box-shadow: var(--shadow-lg);
}
.lead-card .photo { aspect-ratio: 1/1; }
.lead-card .photo img { width:100%; height:100%; object-fit: cover; object-position: center 18%; }
.lead-card .body { padding: 44px; display:flex; flex-direction:column; justify-content:center; }
.lead-card .tag { color: var(--orange); font-weight:700; letter-spacing:.12em; text-transform:uppercase; font-size:13px; }
.lead-card h3 { color: var(--white); font-size: 34px; margin: 8px 0 14px; }
.lead-card p { color: rgba(255,255,255,.8); font-size: 16.5px; }

/* ---------- Services list page ---------- */
.svc-cat { margin-bottom: 18px; }
.svc-cat h3 { font-size: 24px; display:flex; align-items:center; gap:12px; margin-bottom: 6px; }
.svc-cat h3 .badge {
  font-size:12px; font-weight:700; color: var(--blue); background: rgba(27,111,208,.10);
  padding: 4px 12px; border-radius: 100px; letter-spacing:.05em; text-transform:uppercase;
}
.pill-list { display:flex; flex-wrap:wrap; gap: 10px; margin-top: 14px; }
.pill {
  background: var(--bg-alt); border:1px solid var(--line); border-radius: 100px;
  padding: 9px 18px; font-size: 14.5px; font-weight:500; color: var(--navy);
  transition: .25s; display:inline-flex; align-items:center; gap:8px;
}
.pill:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.pill::before { content:'\2726'; color: var(--orange); font-size:11px; }

/* ---------- Testimonials ---------- */
.tcard {
  background: var(--bg-alt); border:1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
}
.tcard .stars { color: var(--orange); font-size: 16px; letter-spacing:2px; margin-bottom: 14px; }
.tcard .quote { font-size: 16px; color: var(--text); margin-bottom: 22px; }
.tcard .who { display:flex; align-items:center; gap: 12px; }
.tcard .avatar {
  width: 46px; height:46px; border-radius:50%; background: linear-gradient(135deg,var(--blue),var(--orange));
  color:#fff; display:grid; place-items:center; font-family:'Outfit'; font-weight:700; font-size:18px;
}
.tcard .who .nm { font-weight:700; font-size:15px; }
.tcard .who .loc { font-size:13px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--bg-alt); border:1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow:hidden; }
.faq-q {
  width:100%; text-align:left; background:none; border:0; cursor:pointer;
  padding: 22px 24px; font-family:'Outfit'; font-weight:600; font-size: 17.5px; color: var(--navy);
  display:flex; justify-content:space-between; align-items:center; gap: 16px;
}
.faq-q .pm { flex-shrink:0; width:26px; height:26px; border-radius:50%; background: rgba(27,111,208,.10); color: var(--blue);
  display:grid; place-items:center; font-size:18px; font-weight:700; transition: .3s; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--orange); color:#fff; }
.faq-a { max-height:0; overflow:hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 24px 22px; color: var(--muted); font-size: 16px; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 400px at 80% 0%, rgba(242,116,27,.22), transparent 60%),
    var(--navy);
  color: var(--white); text-align:center; border-radius: 0;
}
.cta-band h2 { color: var(--white); font-size: 44px; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.8); font-size: 18px; max-width: 600px; margin: 0 auto 32px; }
.cta-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.cta-note { margin-top: 20px; font-size: 14px; color: rgba(255,255,255,.6); }

/* ---------- Contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items:start; }
.info-card {
  display:flex; gap:18px; align-items:flex-start; padding: 24px; background: var(--bg-alt);
  border:1px solid var(--line); border-radius: var(--radius); margin-bottom: 18px; transition:.25s;
}
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.info-card .ic { width:50px; height:50px; border-radius:12px; flex-shrink:0; display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(27,111,208,.12), rgba(242,116,27,.12)); font-size:22px; }
.info-card .lbl { font-size:13px; text-transform:uppercase; letter-spacing:.1em; color: var(--muted); font-weight:700; }
.info-card .val { font-size: 17px; font-weight:600; color: var(--navy); word-break: break-word; }
.info-card a.val:hover { color: var(--orange); }

.form-card { background: var(--bg-alt); border:1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display:block; font-size:14px; font-weight:600; margin-bottom:8px; color: var(--navy); }
.field input, .field textarea {
  width:100%; padding: 14px 16px; border:1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family:'Inter'; font-size:15.5px; color: var(--text); background: var(--bg); transition:.2s;
}
.field input:focus, .field textarea:focus { outline:none; border-color: var(--blue); background:#fff; box-shadow:0 0 0 4px rgba(27,111,208,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.form-status { margin-top: 14px; font-size: 14.5px; font-weight:600; }

.map-wrap { border-radius: var(--radius); overflow:hidden; border:1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-wrap iframe { width:100%; height: 360px; border:0; display:block; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(700px 400px at 90% -20%, rgba(27,111,208,.20), transparent 60%),
    var(--navy);
  color: var(--white); padding: 84px 0; text-align:center;
}
.page-hero h1 { color: var(--white); font-size: 52px; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 18px; max-width: 640px; margin: 0 auto; }
.crumbs { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 18px; letter-spacing:.04em; }
.crumbs a:hover { color: var(--orange); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,.72); padding: 72px 0 30px; }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand-name { color: #fff; }
.footer-about p { margin: 18px 0; font-size: 15px; max-width: 320px; }
.footer h4 { color:#fff; font-size: 15px; letter-spacing:.06em; text-transform:uppercase; margin-bottom: 18px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 15px; transition:.2s; }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact li { display:flex; gap:10px; font-size:15px; margin-bottom: 12px; align-items:flex-start; }
.footer-contact .ic { color: var(--orange); flex-shrink:0; }
.footer-contact a:hover { color: var(--orange); }
.socials { display:flex; gap:12px; margin-top: 20px; }
.socials a {
  width:38px; height:38px; border-radius:10px; background: rgba(255,255,255,.08);
  display:grid; place-items:center; transition:.25s; color:#fff;
}
.socials a:hover { background: var(--orange); transform: translateY(-3px); }
.footer-bottom {
  margin-top: 50px; padding-top: 24px; border-top:1px solid rgba(255,255,255,.10);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:14px;
}
.footer-bottom a:hover { color:#fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 48px; }
  .split { gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .lead-card { grid-template-columns: 1fr; }
  .lead-card .photo { aspect-ratio: 16/10; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 32px; }
  .nav-links, .nav-cta .btn-text-hide { display: none; }
  .nav-toggle { display: flex; }

  /* mobile drawer */
  .nav-links {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 8px 0;
    transform: translateY(-12px); opacity:0; pointer-events:none; transition:.3s; box-shadow: var(--shadow-md);
  }
  .nav-links.open { display:flex; transform:none; opacity:1; pointer-events:auto; }
  .nav-links a { padding: 15px 24px; width:100%; font-size: 16px; }
  .nav-links a::after { display:none; }

  .hero h1 { font-size: 36px; }
  .hero p.lead { font-size: 16.5px; }
  .hero-inner { padding: 64px 0 72px; }
  .hero-actions .btn { width: 100%; justify-content:center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .lead-card .body { padding: 30px; }
  .lead-card h3 { font-size: 27px; }
  .cta-band h2 { font-size: 30px; }
  .page-hero h1 { font-size: 36px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .trust-item .num { font-size: 26px; }
}

/* ============================================================
   ADD-ONS: Pricing - Portfolio - Blog - Socials - Chatbot
   ============================================================ */

/* ---------- Pricing (tabbed) ---------- */
.price-tabs { display:flex; flex-wrap:wrap; justify-content:center; gap:12px; margin-bottom: 48px; }
.price-tab {
  font-family:'Outfit'; font-weight:600; font-size:15px; padding: 12px 24px; border-radius: 100px;
  background: var(--bg-alt); border:1.5px solid var(--line); color: var(--navy); cursor:pointer; transition:.25s;
}
.price-tab:hover { border-color: var(--blue); color: var(--blue); }
.price-tab.active { background: var(--blue); border-color: var(--blue); color:#fff; box-shadow:0 8px 22px rgba(27,111,208,.32); }

.price-panel { display:none; }
.price-panel.active { display:block; animation: fadeIn .4s var(--ease); }
@keyframes fadeIn { from { opacity:0; transform: translateY(10px);} to {opacity:1; transform:none;} }

.price-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 28px; align-items:stretch; }
.price-card {
  background: var(--bg-alt); border:1.5px solid var(--line); border-radius: 18px; padding: 34px 30px;
  display:flex; flex-direction:column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--blue); border-width:2px; box-shadow: var(--shadow-md); position:relative; }
.price-badge {
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background: var(--blue); color:#fff; font-family:'Outfit'; font-weight:700; font-size:12px;
  letter-spacing:.1em; text-transform:uppercase; padding:7px 18px; border-radius:100px;
}
.price-card h3 { font-size:22px; margin-bottom:8px; }
.price-card .desc { color:var(--muted); font-size:14.5px; margin-bottom:18px; min-height:42px; }
.price-card .amount { font-family:'Outfit'; font-weight:800; font-size:44px; color:var(--navy); line-height:1; margin-bottom:22px; }
.price-card .amount .per { font-size:16px; font-weight:600; color:var(--muted); }
.price-feats { display:grid; gap:13px; margin-bottom:26px; }
.price-feats li { display:flex; gap:11px; align-items:flex-start; font-size:15px; color:var(--text); }
.price-feats .ck { flex-shrink:0; width:22px; height:22px; border-radius:50%; background:rgba(27,111,208,.12);
  color:var(--blue); display:grid; place-items:center; font-size:12px; font-weight:800; margin-top:1px; }
.price-card .btn { margin-top:auto; }
.price-card .btn-dark { background:var(--navy); color:#fff; }
.price-card .btn-dark:hover { background:#06101f; }

/* ---------- Portfolio / Featured Projects ---------- */
.work-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.work-card {
  background:var(--bg-alt); border:1px solid var(--line); border-radius:16px; overflow:hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.work-top { padding:26px 26px 0; }
.work-tag { display:inline-block; font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:var(--blue); background:rgba(27,111,208,.10); padding:5px 13px; border-radius:100px; margin-bottom:14px; }
.work-card h3 { font-size:20px; margin-bottom:8px; }
.work-card p { color:var(--muted); font-size:14.5px; padding:0 26px; }
.work-result {
  margin:18px 0 0; padding:18px 26px; border-top:1px solid var(--line);
  display:flex; justify-content:space-between; align-items:center; gap:12px;
}
.work-result .big { font-family:'Outfit'; font-weight:800; font-size:26px; color:var(--orange); line-height:1; }
.work-result .lbl { font-size:13px; color:var(--muted); }

/* ---------- Blog ---------- */
.blog-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.blog-card {
  background:var(--bg-alt); border:1px solid var(--line); border-radius:16px; overflow:hidden;
  display:flex; flex-direction:column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-thumb { aspect-ratio: 16/9; position:relative; overflow:hidden;
  background:linear-gradient(135deg,var(--navy),var(--blue)); display:grid; place-items:center; }
.blog-thumb img { width:100%; height:100%; object-fit:cover; }
.blog-thumb .ph { color:rgba(255,255,255,.9); font-family:'Outfit'; font-weight:800; font-size:40px; }
.blog-cat { position:absolute; top:14px; left:14px; background:rgba(255,255,255,.92); color:var(--navy);
  font-size:12px; font-weight:700; padding:5px 12px; border-radius:100px; }
.blog-body { padding:22px 24px 26px; display:flex; flex-direction:column; flex:1; }
.blog-meta { font-size:13px; color:var(--muted); margin-bottom:10px; letter-spacing:.02em; }
.blog-card h3 { font-size:20px; margin-bottom:10px; line-height:1.3; }
.blog-card p { color:var(--muted); font-size:14.5px; margin-bottom:18px; }
.blog-card .read { margin-top:auto; font-weight:600; color:var(--orange); font-size:14.5px; }
.blog-card:hover .read { padding-left:4px; }
.blog-feature { display:grid; grid-template-columns: 1.1fr 1fr; gap:0; border-radius:18px; overflow:hidden;
  border:1px solid var(--line); background:var(--bg-alt); box-shadow:var(--shadow-sm); margin-bottom:44px; }
.blog-feature .thumb { min-height:320px; background:linear-gradient(135deg,var(--navy),var(--blue)); }
.blog-feature .thumb img { width:100%; height:100%; object-fit:cover; }
.blog-feature .content { padding:44px; display:flex; flex-direction:column; justify-content:center; }

/* ---------- Branded social icons ---------- */
.socials a svg { width:18px; height:18px; fill:#fff; transition:fill .2s; }
.socials a { width:40px; height:40px; }

/* ---------- WhatsApp floating button (bottom-left) ---------- */
/* Sits on the LEFT so it never collides with the Tawk.to live-chat
   widget, which appears on the bottom-right. */
.wa-float {
  position:fixed; left:22px; bottom:22px; z-index:900;
  display:flex; align-items:center; gap:0; overflow:hidden;
  height:58px; padding:0; border-radius:100px; background:#25D366;
  box-shadow:0 12px 30px rgba(37,211,102,.45); text-decoration:none;
  transition:gap .3s var(--ease), padding .3s var(--ease), transform .25s var(--ease);
}
.wa-float:hover { transform:translateY(-3px); gap:10px; padding-right:24px; }
.wa-float .ic { width:58px; height:58px; flex-shrink:0; display:grid; place-items:center; }
.wa-float .ic svg { width:30px; height:30px; fill:#fff; }
.wa-float .txt {
  font-family:'Outfit'; font-weight:700; font-size:15px; color:#fff; white-space:nowrap;
  max-width:0; opacity:0; transition:max-width .3s var(--ease), opacity .25s var(--ease);
}
.wa-float:hover .txt { max-width:140px; opacity:1; }
@media (max-width:760px){
  .wa-float { left:16px; bottom:16px; height:54px; }
  .wa-float .ic { width:54px; height:54px; }
}

/* ---------- Chatbot (bottom-right) ---------- */
.chat-fab {
  position:fixed; right:22px; bottom:22px; z-index:900; width:60px; height:60px; border-radius:50%;
  background:var(--orange); border:0; cursor:pointer; box-shadow:0 12px 30px rgba(242,116,27,.45);
  display:grid; place-items:center; transition:transform .25s var(--ease);
}
.chat-fab:hover { transform:scale(1.07); }
.chat-fab svg { width:28px; height:28px; fill:#fff; }
.chat-fab .badge { position:absolute; top:-3px; right:-3px; width:18px; height:18px; border-radius:50%;
  background:#22c55e; border:3px solid #fff; }
.chat-fab.hide { opacity:0; pointer-events:none; transform:scale(.6); }

.chat-panel {
  position:fixed; right:22px; bottom:22px; z-index:901; width:360px; max-width:calc(100vw - 32px);
  height:520px; max-height:calc(100vh - 40px); background:#fff; border-radius:18px; overflow:hidden;
  box-shadow:var(--shadow-lg); display:flex; flex-direction:column;
  opacity:0; pointer-events:none; transform:translateY(20px) scale(.96); transition:.3s var(--ease);
  border:1px solid var(--line);
}
.chat-panel.open { opacity:1; pointer-events:auto; transform:none; }
.chat-head { background:var(--navy); color:#fff; padding:18px 20px; display:flex; align-items:center; gap:12px; }
.chat-head .ava { width:42px; height:42px; border-radius:50%; background:var(--orange); display:grid; place-items:center;
  font-family:'Outfit'; font-weight:800; flex-shrink:0; }
.chat-head .nm { font-family:'Outfit'; font-weight:700; font-size:16px; }
.chat-head .st { font-size:12px; color:rgba(255,255,255,.7); display:flex; align-items:center; gap:6px; }
.chat-head .st::before { content:''; width:8px; height:8px; border-radius:50%; background:#22c55e; }
.chat-head .x { margin-left:auto; background:none; border:0; color:#fff; font-size:22px; cursor:pointer; line-height:1; opacity:.8; }
.chat-head .x:hover { opacity:1; }
.chat-body { flex:1; overflow-y:auto; padding:20px; background:var(--bg); display:flex; flex-direction:column; gap:12px; }
.msg { max-width:80%; padding:12px 15px; border-radius:14px; font-size:14.5px; line-height:1.5; }
.msg.bot { background:#fff; border:1px solid var(--line); border-bottom-left-radius:4px; align-self:flex-start; }
.msg.user { background:var(--blue); color:#fff; border-bottom-right-radius:4px; align-self:flex-end; }
.chat-quick { display:flex; flex-wrap:wrap; gap:8px; padding:0 20px 12px; background:var(--bg); }
.chat-quick button {
  font-size:13px; font-weight:600; background:#fff; border:1.5px solid var(--line); color:var(--navy);
  padding:8px 14px; border-radius:100px; cursor:pointer; transition:.2s;
}
.chat-quick button:hover { border-color:var(--orange); color:var(--orange); }
.chat-input { display:flex; gap:8px; padding:14px; border-top:1px solid var(--line); background:#fff; }
.chat-input input { flex:1; border:1.5px solid var(--line); border-radius:100px; padding:11px 16px; font-family:'Inter'; font-size:14.5px; }
.chat-input input:focus { outline:none; border-color:var(--blue); }
.chat-input button { background:var(--orange); border:0; width:42px; height:42px; border-radius:50%; cursor:pointer; flex-shrink:0; display:grid; place-items:center; }
.chat-input button svg { width:18px; height:18px; fill:#fff; }

/* ---------- Nav dropdown (About) ---------- */
.nav-dd { position:relative; }
.nav-dd-toggle { display:inline-flex; align-items:center; gap:6px; cursor:pointer; }
.nav-dd-toggle .caret { font-size:10px; transition:transform .25s var(--ease); }
.nav-dd:hover .nav-dd-toggle .caret { transform:rotate(180deg); }
.nav-dd-menu {
  position:absolute !important; top:100% !important; left:50%; margin-top:16px;
  transform:translateX(-50%) translateY(8px);
  background:#fff; border:1px solid var(--line); border-radius:12px; box-shadow:var(--shadow-lg);
  padding:8px; min-width:230px; width:max-content;
  display:flex !important; flex-direction:column; gap:2px;
  opacity:0; visibility:hidden; pointer-events:none; transition:.22s var(--ease); z-index:300;
}
/* invisible bridge so the menu doesn't close in the gap */
.nav-dd::after { content:''; position:absolute; top:100%; left:-10px; right:-10px; height:20px; }
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu,
.nav-dd.open .nav-dd-menu {
  opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(0);
}
.nav-dd-menu a {
  display:block !important; padding:11px 16px; border-radius:8px;
  font-size:14.5px; font-weight:500; white-space:nowrap; color:var(--navy); width:100%;
}
.nav-dd-menu a::after { display:none !important; }
.nav-dd-menu a:hover { background:var(--bg); color:var(--orange); }

/* ---------- Legal / policy pages ---------- */
.legal { max-width:840px; margin:0 auto; }
.legal .updated { color:var(--muted); font-size:14px; margin-bottom:32px; padding-bottom:20px; border-bottom:1px solid var(--line); }
.legal h2 { font-size:25px; margin:38px 0 12px; }
.legal h3 { font-size:18px; margin:24px 0 8px; }
.legal p, .legal li { color:var(--muted); font-size:16px; margin-bottom:12px; line-height:1.7; }
.legal ul { padding-left:22px; list-style:disc; margin-bottom:18px; }
.legal a { color:var(--orange); font-weight:500; }
.legal a:hover { text-decoration:underline; }
.policy-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.policy-card { display:block; background:var(--bg-alt); border:1px solid var(--line); border-radius:var(--radius); padding:28px; transition:.25s; }
.policy-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:rgba(27,111,208,.35); }
.policy-card .ic { font-size:28px; margin-bottom:14px; }
.policy-card h3 { font-size:19px; margin-bottom:8px; }
.policy-card p { color:var(--muted); font-size:14.5px; }
.policy-card .go { display:inline-block; margin-top:14px; color:var(--orange); font-weight:600; font-size:14.5px; }

@media (max-width:992px){ .policy-cards { grid-template-columns:1fr; } }
@media (max-width:760px){
  .nav-dd { width:100%; }
  .nav-dd-toggle { padding:15px 24px; width:100%; }
  .nav-dd-toggle .caret { margin-left:auto; }
  .nav-dd-menu { position:static; opacity:1; visibility:visible; transform:none; box-shadow:none;
    border:0; border-radius:0; padding:0 0 8px 14px; min-width:0; background:transparent; }
  .nav-dd::after { display:none; }
  .nav-dd-menu a { padding:12px 24px; color:var(--muted); }
}

@media (max-width: 992px) {
  .price-grid, .work-grid, .blog-grid { grid-template-columns: repeat(2,1fr); }
  .blog-feature { grid-template-columns: 1fr; }
  .blog-feature .thumb { min-height:220px; }
}
@media (max-width: 760px) {
  .price-grid, .work-grid, .blog-grid { grid-template-columns: 1fr; }
  .price-card.featured { order:-1; }
  .blog-feature .content { padding:28px; }
}
