/* =========================================================================
   All Code Solutions — site styles
   ========================================================================= */

:root {
  --c-cyan:   #25BDEA;
  --c-lime:   #62CB4D;
  --grad:     linear-gradient(122deg, #25BDEA 0%, #3FC58C 52%, #62CB4D 100%);
  --grad-rev: linear-gradient(122deg, #62CB4D 0%, #25BDEA 100%);
  --accent:   #1AA6D6;
  --accent-2: #2CB48A;
  --glow:     rgba(37,189,234,0.34);
  --glow-2:   rgba(98,203,77,0.28);

  --navy-deep: #04101f;
  --navy:      #061a33;
  --navy-2:    #0a2440;
  --navy-line: rgba(255,255,255,0.08);

  --light:      #FFFFFF;
  --light-soft: #F3F7FB;
  --light-line: #E5EBF2;

  --ink:      #0C1A2E;
  --ink-soft: #45566C;
  --ink-mute: #6E7E93;

  --on-dark:      #FFFFFF;
  --on-dark-soft: rgba(255,255,255,0.74);
  --on-dark-mute: rgba(255,255,255,0.52);

  --font: "Satoshi", "General Sans", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1240px;
  --pad: 40px;
  --shadow-1: 0 1px 2px rgba(8,16,31,0.05), 0 1px 1px rgba(8,16,31,0.04);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--navy);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent; padding-bottom: 6px;
}
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-2); margin: 0 0 18px;
}
.eyebrow.center { text-align: center; }

/* ---------------- Buttons ---------------- */
.btn {
  font-family: var(--font); font-weight: 600; font-size: 14.5px;
  padding: 13px 22px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; line-height: 1; letter-spacing: -0.005em;
  display: inline-flex; align-items: center; gap: 9px;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn .arr { transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
.btn.primary {
  background: var(--grad); color: #042414; font-weight: 700;
  box-shadow: 0 10px 26px -6px var(--glow), inset 0 0 0 1px rgba(255,255,255,0.18);
}
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -6px var(--glow), inset 0 0 0 1px rgba(255,255,255,0.28); }
.btn.primary:active { transform: translateY(0); }
.btn.ghost-dark { background: transparent; color: var(--on-dark); border-color: rgba(255,255,255,0.2); }
.btn.ghost-dark:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.34); }
.btn.ghost-light { background: transparent; color: var(--ink); border-color: var(--light-line); }
.btn.ghost-light:hover { background: #fff; border-color: #cfd9e6; box-shadow: var(--shadow-1); }
.btn.lg { padding: 16px 28px; font-size: 15.5px; border-radius: 14px; }

/* ---------------- Nav ---------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad);
  background: rgba(6,20,40,0.55);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
}
.nav.scrolled { background: rgba(5,16,32,0.86); border-bottom-color: var(--navy-line); padding-top: 11px; padding-bottom: 11px; }
.nav .brand { display: flex; align-items: center; gap: 11px; border-bottom: 0; }
.nav .brand .glyph { height: 42px; width: auto; transition: height .3s var(--ease); }
.nav.scrolled .brand .glyph { height: 36px; }
.nav .brand .wm { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.nav .brand .wm-main { font-size: 21px; font-weight: 700; letter-spacing: 0.15em; color: #fff; white-space: nowrap; }
.nav .brand .wm-sub {
  font-size: 9.5px; font-weight: 600; letter-spacing: 0.46em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); padding-left: 0.46em;
  display: flex; align-items: center; gap: 8px;
}
.nav .brand .wm-sub::before,
.nav .brand .wm-sub::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,0.22); }
.nav .links { display: flex; gap: 4px; }
.nav .links a {
  color: var(--on-dark-soft); font-size: 14.5px; font-weight: 500; white-space: nowrap;
  padding: 8px 14px; border-radius: 9px; position: relative;
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav .links a:hover { color: #fff; }
.nav .links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--grad); border-radius: 2px;
  opacity: 0; transition: opacity 0.22s var(--ease);
}
.nav .links a.active { color: #fff; }
.nav .links a.active::after { opacity: 1; }
.nav .right { display: flex; align-items: center; gap: 12px; }
.nav .hamb {
  display: none; width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.16); background: transparent; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav .hamb svg { width: 22px; height: 22px; color: #fff; }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 90; display: none;
  background: rgba(4,12,24,0.6); backdrop-filter: blur(6px);
}
.drawer.open { display: block; }
.drawer .panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(82vw, 340px);
  background: var(--navy-2); border-left: 1px solid var(--navy-line);
  padding: 24px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(8px); animation: drawerIn .3s var(--ease) forwards;
}
@keyframes drawerIn { to { transform: translateX(0); } }
.drawer .panel .x { align-self: flex-end; background: none; border: 0; color: #fff; cursor: pointer; padding: 8px; }
.drawer .panel a { color: var(--on-dark-soft); font-size: 17px; font-weight: 500; padding: 14px 8px; border-bottom: 1px solid var(--navy-line); }
.drawer .panel a:hover { color: #fff; }
.drawer .panel .btn { margin-top: 18px; justify-content: center; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative; background:
    radial-gradient(1100px 520px at 78% 18%, rgba(37,189,234,0.16), transparent 60%),
    radial-gradient(900px 500px at 92% 72%, rgba(98,203,77,0.12), transparent 60%),
    linear-gradient(180deg, #061a33 0%, #051529 60%, #04101f 100%);
  color: var(--on-dark);
  padding: 124px 0 64px;
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 40px; align-items: start; }
.hero-copy { max-width: 560px; }
.hero-right { align-self: center; }
.hero h1 {
  font-weight: 700; font-size: clamp(38px, 4.5vw, 60px); line-height: 1.04; letter-spacing: -0.035em;
  margin: 0; color: #fff;
}
.hero h1 span { display: block; }
.hero p.lede { font-size: 18px; line-height: 1.6; color: var(--on-dark-soft); margin: 26px 0 34px; max-width: 460px; }
.hero .ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-art { position: relative; height: 460px; }
.hero-art canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-pills {
  position: relative; z-index: 2; margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, max-content); gap: 0;
  justify-content: end; align-items: center;
}
.hero-pills .hp { display: flex; align-items: center; gap: 12px; padding: 0 30px; }
.hero-pills .hp + .hp { border-left: 1px solid var(--navy-line); }
.hero-pills .hp .ic { width: 38px; height: 38px; display: grid; place-items: center; color: var(--c-cyan); }
.hero-pills .hp .ic svg, .hero-pills .hp .ic i { width: 26px; height: 26px; }
.hero-pills .hp .t { font-size: 14px; font-weight: 600; color: #fff; }

/* ---------------- Sections (light) ---------------- */
.sec { padding: 104px 0; background: var(--light); }
.sec.soft { background: var(--light-soft); }
#services { padding-top: 72px; }
.sec-head { max-width: 660px; margin: 0 auto 60px; text-align: center; }
.sec-head h2 { font-weight: 700; font-size: clamp(32px, 3.6vw, 46px); line-height: 1.08; letter-spacing: -0.03em; color: var(--ink); margin: 0; }
.sec-head p { font-size: 17px; line-height: 1.6; color: var(--ink-soft); margin: 18px auto 0; max-width: 540px; }

/* Service cards */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc {
  background: var(--light); border: 1px solid var(--light-line); border-radius: 20px;
  padding: 38px 32px; text-align: center; position: relative; overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.sec.soft .svc { background: #fff; }
.svc::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -22px rgba(12,26,46,0.28); border-color: #d7e2ee; }
.svc:hover::before { transform: scaleX(1); }
.svc .ico {
  width: 72px; height: 72px; border-radius: 999px; margin: 0 auto 24px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(37,189,234,0.14), rgba(98,203,77,0.14));
  color: var(--accent); box-shadow: inset 0 0 0 1px rgba(37,189,234,0.18);
}
.svc .ico svg, .svc .ico i { width: 30px; height: 30px; }
.svc h3 { font-size: 21px; font-weight: 700; color: var(--ink); margin: 0 0 12px; letter-spacing: -0.02em; }
.svc p { font-size: 14.5px; line-height: 1.62; color: var(--ink-soft); margin: 0 0 22px; }
.svc .more { font-size: 14px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.svc .more .arr { transition: transform .2s var(--ease); }
.svc:hover .more .arr { transform: translateX(3px); }

/* ---------------- About ---------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.06fr; gap: 64px; align-items: center; }
.about-copy h2 { font-weight: 700; font-size: clamp(30px, 3.4vw, 42px); line-height: 1.1; letter-spacing: -0.03em; color: var(--ink); margin: 0 0 22px; }
.about-copy > p { font-size: 16px; line-height: 1.66; color: var(--ink-soft); margin: 0 0 28px; max-width: 480px; }
.about-list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 14px; }
.about-list li { display: flex; align-items: center; gap: 13px; font-size: 15.5px; color: var(--ink); font-weight: 500; }
.about-list li .chk {
  width: 24px; height: 24px; border-radius: 999px; flex: none; display: grid; place-items: center;
  background: var(--grad); color: #042414;
}
.about-list li .chk svg { width: 14px; height: 14px; }

.about-media { position: relative; }
.about-img-wrap {
  width: 100%; height: 400px; border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 60px -26px rgba(12,26,46,0.4);
}
.img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #e8f0f8, #dce8f3);
  display: flex; align-items: center; justify-content: center;
  color: #9aa7b6; font-size: 13px; font-weight: 500;
}
.proj-placeholder { height: 188px; border-radius: 16px; }

.about-media .float {
  position: absolute; right: -18px; bottom: -22px; width: 232px;
  background: #fff; border: 1px solid var(--light-line); border-radius: 18px;
  padding: 22px; box-shadow: 0 28px 50px -18px rgba(12,26,46,0.28);
}
.about-media .float .fic {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 14px;
  background: linear-gradient(160deg, rgba(37,189,234,0.16), rgba(98,203,77,0.16)); color: var(--accent);
}
.about-media .float .fic svg,
.about-media .float .fic i { width: 24px; height: 24px; }
.about-media .float p { font-size: 14.5px; font-weight: 600; color: var(--ink); margin: 0 0 12px; line-height: 1.45; }
.about-media .float a { font-size: 13.5px; font-weight: 600; color: var(--accent); display: inline-flex; gap: 6px; align-items: center; white-space: nowrap; }

/* ---------------- Work ---------------- */
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.proj { display: flex; flex-direction: column; }
.proj .thumb { position: relative; border-radius: 16px; overflow: hidden; }
.proj .thumb .img-placeholder { transition: transform .35s var(--ease); }
.proj:hover .thumb .img-placeholder { transform: scale(1.04); }
.proj .thumb { box-shadow: 0 14px 30px -16px rgba(12,26,46,0.32); transition: box-shadow .3s var(--ease); }
.proj:hover .thumb { box-shadow: 0 22px 42px -16px rgba(12,26,46,0.42); }
.proj h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin: 18px 0 5px; letter-spacing: -0.01em; }
.proj .cat { font-size: 13px; color: var(--accent-2); font-weight: 600; }
.work-foot { text-align: center; margin-top: 48px; }

/* ---------------- CTA band ---------------- */
.cta-sec { background: var(--light); padding: 0 0 96px; }
.cta-band {
  max-width: var(--max); margin: 0 auto; position: relative; overflow: hidden;
  border-radius: 26px; padding: 52px 56px;
  background:
    radial-gradient(700px 300px at 12% 20%, rgba(37,189,234,0.22), transparent 60%),
    radial-gradient(700px 320px at 96% 90%, rgba(98,203,77,0.18), transparent 60%),
    linear-gradient(120deg, #0a2240 0%, #061a33 60%, #04101f 100%);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  box-shadow: 0 40px 80px -34px rgba(4,16,31,0.6);
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; border-radius: 26px; padding: 1px; pointer-events: none;
  background: linear-gradient(120deg, rgba(37,189,234,0.5), rgba(98,203,77,0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.cta-band .ct-left { display: flex; align-items: center; gap: 22px; position: relative; z-index: 2; }
.cta-band .ct-ic {
  width: 52px; height: 52px; border-radius: 14px; flex: none; display: grid; place-items: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: var(--c-cyan);
}
.cta-band .ct-ic svg, .cta-band .ct-ic i { width: 26px; height: 26px; }
.cta-band h3 { font-size: 25px; font-weight: 700; color: #fff; margin: 0 0 8px; letter-spacing: -0.02em; }
.cta-band p { font-size: 15px; color: var(--on-dark-soft); margin: 0; max-width: 440px; line-height: 1.55; }
.cta-band .btn { position: relative; z-index: 2; }

/* ---------------- Footer ---------------- */
.footer { background: var(--navy-deep); color: var(--on-dark-soft); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; }
.footer .fbrand .flogo { display: flex; align-items: center; gap: 11px; margin: -4px 0 2px; border-bottom: 0; }
.footer .fbrand .flogo .glyph { height: 46px; width: auto; }
.footer .fbrand .flogo .wm { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.footer .fbrand .flogo .wm-main { font-size: 20px; font-weight: 700; letter-spacing: 0.15em; color: #fff; white-space: nowrap; }
.footer .fbrand .flogo .wm-sub { font-size: 10px; font-weight: 600; letter-spacing: 0.46em; text-transform: uppercase; color: rgba(255,255,255,0.5); padding-left: 0.46em; display: flex; align-items: center; gap: 8px; }
.footer .fbrand .flogo .wm-sub::before,
.footer .fbrand .flogo .wm-sub::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,0.22); }
.footer .fbrand p { font-size: 14px; line-height: 1.6; color: var(--on-dark-mute); max-width: 250px; margin: 8px 0 22px; }
.footer .social { display: flex; gap: 10px; }
.footer .social a {
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--navy-line);
  display: grid; place-items: center; color: var(--on-dark-soft); transition: all .18s var(--ease);
}
.footer .social a:hover { color: #042414; background: var(--grad); border-color: transparent; transform: translateY(-2px); }
.footer .social a svg { width: 17px; height: 17px; }
.footer h5 { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-dark-mute); margin: 0 0 20px; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.footer ul a { font-size: 14.5px; color: var(--on-dark-soft); transition: color .16s var(--ease); }
.footer ul a:hover { color: var(--c-lime); }
.footer .contact li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--on-dark-soft); }
.footer .contact li svg,
.footer .contact li i { width: 17px; height: 17px; color: var(--c-cyan); flex: none; margin-top: 2px; }
.footer .fbar {
  max-width: var(--max); margin: 64px auto 0; padding: 26px var(--pad) 0;
  border-top: 1px solid var(--navy-line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--on-dark-mute);
}
.footer .fbar .lk { display: flex; gap: 26px; }
.footer .fbar .lk a:hover { color: #fff; }

/* ---------------- Reveal animation ---------------- */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.armed { opacity: 0; transform: translateY(22px); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------------- Contact modal ---------------- */
.modal { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.open { display: flex; }
.modal .scrim { position: absolute; inset: 0; background: rgba(4,12,24,0.66); backdrop-filter: blur(6px); animation: fadeIn .25s var(--ease); }
.modal .card {
  position: relative; width: min(480px, 100%); background: var(--navy-2);
  border: 1px solid var(--navy-line); border-radius: 22px; padding: 36px;
  box-shadow: 0 50px 90px -30px rgba(0,0,0,0.6); color: #fff;
  animation: cardIn .32s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } }
@keyframes cardIn { from { opacity: 0; transform: translateY(14px) scale(.98); } }
.modal .card .x { position: absolute; top: 16px; right: 16px; background: none; border: 0; color: var(--on-dark-soft); cursor: pointer; padding: 6px; }
.modal .card .x:hover { color: #fff; }
.modal .card h3 { font-size: 25px; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.02em; }
.modal .card .sub { font-size: 14.5px; color: var(--on-dark-soft); margin: 0 0 26px; line-height: 1.5; }
.modal .field { margin-bottom: 16px; }
.modal label { display: block; font-size: 12.5px; font-weight: 600; color: var(--on-dark-soft); margin-bottom: 7px; letter-spacing: 0.01em; }
.modal input, .modal textarea {
  width: 100%; font-family: var(--font); font-size: 14.5px; color: #fff;
  background: rgba(255,255,255,0.04); border: 1px solid var(--navy-line); border-radius: 11px;
  padding: 12px 14px; transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.modal input::placeholder, .modal textarea::placeholder { color: rgba(255,255,255,0.34); }
.modal input:focus, .modal textarea:focus { outline: none; border-color: var(--c-cyan); box-shadow: 0 0 0 3px rgba(37,189,234,0.18); }
.modal textarea { resize: vertical; min-height: 92px; }
.modal .err { color: #ff8d7a; font-size: 12px; margin-top: 6px; display: none; }
.modal .field.bad input, .modal .field.bad textarea { border-color: #ff8d7a; }
.modal .field.bad .err { display: block; }
.modal .btn.primary { width: 100%; justify-content: center; margin-top: 8px; }
.modal .done { text-align: center; padding: 16px 0 6px; }
.modal .done .ok { width: 64px; height: 64px; border-radius: 999px; margin: 0 auto 18px; display: grid; place-items: center; background: var(--grad); color: #042414; }
.modal .done .ok svg { width: 32px; height: 32px; }

/* ---------------- Inner pages (page.php / single.php) ---------------- */
.inner-page {
  background: var(--light-soft);
  min-height: calc(100vh - 80px);
  padding: 120px 0 96px;
}
.inner-content { max-width: 780px; margin: 0 auto; }
.inner-meta {
  display: flex; gap: 14px; align-items: center;
  font-size: 13px; font-weight: 600; margin-bottom: 18px;
}
.inner-meta .post-date { color: var(--ink-mute); }
.inner-meta .post-cat  {
  color: var(--accent-2); background: rgba(44,180,138,0.1);
  padding: 3px 10px; border-radius: 999px;
}
.inner-title {
  font-size: clamp(28px, 4vw, 48px); font-weight: 700; line-height: 1.1;
  letter-spacing: -0.03em; color: var(--ink); margin: 0 0 36px;
}
.inner-thumb {
  width: 100%; border-radius: 18px; overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(12,26,46,0.2);
  margin-bottom: 40px;
}
.inner-thumb img { width: 100%; height: auto; display: block; }
.inner-body {
  font-size: 17px; line-height: 1.75; color: var(--ink-soft);
}
.inner-body h2 { font-size: 26px; font-weight: 700; color: var(--ink); margin: 40px 0 16px; letter-spacing: -0.02em; }
.inner-body h3 { font-size: 21px; font-weight: 700; color: var(--ink); margin: 32px 0 12px; }
.inner-body p  { margin: 0 0 22px; }
.inner-body a  { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.inner-body ul, .inner-body ol { padding-left: 24px; margin: 0 0 22px; }
.inner-body li { margin-bottom: 8px; }
.inner-body img { border-radius: 12px; margin: 8px 0 22px; max-width: 100%; }
.inner-body blockquote {
  border-left: 3px solid var(--c-cyan); margin: 28px 0; padding: 4px 0 4px 22px;
  font-size: 18px; font-style: italic; color: var(--ink);
}
.inner-back { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--light-line); }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  :root { --pad: 22px; }
  .nav .links, .nav .right .btn { display: none; }
  .nav .hamb { display: inline-flex; }
  .hero { padding-top: 124px; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { height: 300px; order: -1; }
  .hero-pills { justify-content: start; grid-template-columns: 1fr; gap: 4px; }
  .hero-pills .hp { padding: 10px 0; }
  .hero-pills .hp + .hp { border-left: 0; border-top: 1px solid var(--navy-line); }
  .svc-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { margin-bottom: 24px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer .fbrand { grid-column: 1 / -1; }
  .footer .fbar { flex-direction: column; gap: 14px; text-align: center; }
}
@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Pricing / Maintenance Plans
   ========================================================================= */

/* ---- Golden / amber button variant ---- */
.btn.golden {
  background: #F5B731;
  color: var(--ink);
  font-weight: 700;
  border-color: transparent;
  box-shadow: 0 8px 22px -4px rgba(245,183,49,.38);
}
.btn.golden:hover {
  transform: translateY(-2px);
  background: #f0ae20;
  box-shadow: 0 14px 28px -4px rgba(245,183,49,.46);
}
.btn.golden:active { transform: translateY(0); }

/* ---- Pricing grid ---- */
.pricing-sec { background: var(--light); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--light-soft);
  border: 1px solid var(--light-line);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(8,16,31,.10);
}
.pricing-name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
  margin: 0 0 20px;
}
.pricing-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--ink);
  text-align: center;
  line-height: 1;
  letter-spacing: -0.03em;
}
.pricing-period {
  font-size: 0.875rem;
  color: var(--ink-mute);
  text-align: center;
  margin: 6px 0 28px;
}
.pricing-divider {
  border: none;
  border-top: 1px solid var(--light-line);
  margin: 0 0 24px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
}
.pricing-features li {
  position: relative;
  padding: 7px 0 7px 18px;
  color: var(--ink-soft);
  font-size: 0.9375rem;
}
.pricing-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--c-cyan);
  font-weight: 700;
}
.pricing-cta {
  margin-top: 32px;
}
.pricing-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ---- Maintenance hero heading ---- */
.maintenance-hero { background: var(--light); }
.maintenance-hero .sec-head h2 { font-size: clamp(2rem, 5vw, 3rem); }

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================================================================
   Contact Form 7 — modal overrides
   ========================================================================= */

/* Remove CF7's default form margin */
.modal .wpcf7 form { margin: 0; }

/* Field-level spacing — CF7 label wraps both text and input */
.modal .wpcf7 label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--on-dark-soft);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

/* Push the input below the label text */
.modal .wpcf7 .wpcf7-form-control-wrap {
  display: block;
  margin-top: 7px;
}

/* ── Inputs & textarea ── */
.modal .wpcf7 input[type="text"],
.modal .wpcf7 input[type="email"],
.modal .wpcf7 input[type="tel"],
.modal .wpcf7 input[type="url"],
.modal .wpcf7 textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font);
  font-size: 14.5px;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 11px;
  padding: 12px 14px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.modal .wpcf7 input[type="text"]::placeholder,
.modal .wpcf7 input[type="email"]::placeholder,
.modal .wpcf7 textarea::placeholder { color: rgba(255,255,255,0.34); }
.modal .wpcf7 input[type="text"]:focus,
.modal .wpcf7 input[type="email"]:focus,
.modal .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--c-cyan);
  box-shadow: 0 0 0 3px rgba(37,189,234,0.18);
}
.modal .wpcf7 textarea { resize: vertical; min-height: 92px; }

/* Validation error message */
.modal .wpcf7 .wpcf7-not-valid-tip {
  display: block;
  color: #ff8d7a;
  font-size: 12px;
  margin-top: 6px;
}

/* Red border on invalid fields */
.modal .wpcf7 .wpcf7-form-control-wrap.wpcf7-not-valid > input,
.modal .wpcf7 .wpcf7-form-control-wrap.wpcf7-not-valid > textarea {
  border-color: #ff8d7a;
}

/* Submit button — mirrors .btn.primary */
.modal .wpcf7 input[type="submit"],
.modal .wpcf7 .wpcf7-submit {
  display: block;
  width: 100%;
  margin-top: 8px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  padding: 13px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  background: var(--grad);
  color: #042414;
  box-sizing: border-box;
  box-shadow: 0 10px 26px -6px var(--glow), inset 0 0 0 1px rgba(255,255,255,0.18);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.modal .wpcf7 input[type="submit"]:hover,
.modal .wpcf7 .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -6px var(--glow), inset 0 0 0 1px rgba(255,255,255,0.28);
}
.modal .wpcf7 input[type="submit"]:active,
.modal .wpcf7 .wpcf7-submit:active { transform: translateY(0); }
.modal .wpcf7 input[type="submit"]:disabled,
.modal .wpcf7 .wpcf7-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Hide CF7's default response bar — success handled by wpcf7mailsent JS event */
.modal .wpcf7-response-output { display: none !important; }

/* Hide CF7's built-in spinner */
.modal .wpcf7-spinner { display: none !important; }
