/* ===================================================================
   TechieBiz — Shared Stylesheet
   =================================================================== */
:root {
  --navy: #08294D;
  --navy-deep: #051C36;
  --blue: #1E6FBF;
  --blue-bright: #2D8FE6;
  --blue-soft: #E8F1FB;
  --blue-tint: #F4F8FD;
  --white: #FFFFFF;
  --ink: #0B1F33;
  --muted: #5C6B7D;
  --line: #E4E9F0;
  --wa: #25D366;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(8,41,77,0.06), 0 1px 2px rgba(8,41,77,0.04);
  --shadow-md: 0 8px 30px rgba(8,41,77,0.08);
  --shadow-lg: 0 20px 60px rgba(8,41,77,0.12);
  --font-display: 'Sora', sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.no-scroll { overflow: hidden; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 600; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 600; font-size: 15px; padding: 13px 26px; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(30,111,191,0.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(30,111,191,0.38); background: var(--blue-bright); }
.btn-white { background: #fff; color: var(--navy); box-shadow: 0 6px 18px rgba(0,0,0,0.12); }
.btn-white:hover { transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.45); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }

/* LOGO */
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -0.03em; color: var(--navy); }
.logo-mark { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(30,111,191,0.35); flex-shrink: 0; }
.logo b { color: var(--blue); font-weight: 700; }

/* HEADER */
header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-weight: 500; font-size: 15px; color: var(--ink); transition: color .15s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 26px; color: var(--navy); }

/* HERO (homepage) */
.hero { position: relative; background: radial-gradient(120% 130% at 80% 0%, #1E6FBF 0%, #0C447C 45%, #08294D 100%); color: #fff; overflow: hidden; padding: 90px 0 100px; }
.hero::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.07) 1px, transparent 0); background-size: 28px 28px; pointer-events: none; }
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); padding: 7px 14px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 22px; }
.hero h1 { font-size: clamp(34px, 4.4vw, 52px); font-weight: 700; margin-bottom: 20px; }
.hero h1 .hl { color: #7FC0FF; }
.hero p.sub { font-size: 18px; color: #C5DCF4; max-width: 520px; margin-bottom: 32px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-avail { margin-top: 26px; display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: #9FC8F0; font-weight: 500; }
.avail-dot { width: 9px; height: 9px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 0 4px rgba(74,222,128,0.25); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 4px rgba(74,222,128,0.25);} 50%{box-shadow:0 0 0 7px rgba(74,222,128,0.08);} }
.hero-visual { perspective: 1400px; }
.browser { background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg); overflow: hidden; transform: rotateY(-9deg) rotateX(3deg); transition: transform .5s ease; }
.hero-visual:hover .browser { transform: rotateY(-4deg) rotateX(1deg); }
.browser-top { background: #EDF2F8; padding: 11px 14px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid #E0E6EE; }
.bdot { width: 11px; height: 11px; border-radius: 50%; }
.bdot.r{background:#FF5F57;} .bdot.y{background:#FEBC2E;} .bdot.g{background:#28C840;}
.burl { flex: 1; margin-left: 10px; background: #fff; border-radius: 6px; height: 22px; display: flex; align-items: center; padding: 0 10px; font-size: 11px; color: #9AA7B4; }
.demo-hero { background: linear-gradient(135deg, #0C447C, #1E6FBF); padding: 26px 22px; color: #fff; }
.demo-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.demo-logo { font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.demo-navlinks { display: flex; gap: 12px; }
.demo-navlinks span { width: 26px; height: 5px; background: rgba(255,255,255,0.35); border-radius: 3px; }
.demo-h { font-family: var(--font-display); font-weight: 700; font-size: 21px; line-height: 1.2; margin-bottom: 8px; max-width: 260px; }
.demo-p { font-size: 12px; color: rgba(255,255,255,0.8); margin-bottom: 16px; max-width: 230px; }
.demo-btn { display: inline-block; background: #fff; color: var(--blue); font-weight: 700; font-size: 12px; padding: 8px 16px; border-radius: 7px; }
.demo-cards { display: flex; gap: 10px; padding: 18px; background: #fff; }
.demo-card { flex: 1; height: 56px; background: var(--blue-soft); border-radius: 8px; position: relative; }
.demo-card::before { content:""; position:absolute; top:10px; left:10px; width:22px; height:22px; border-radius:6px; background:var(--blue); opacity:.85; }

/* INNER PAGE HERO */
.page-hero { position: relative; background: radial-gradient(120% 140% at 75% 0%, #1E6FBF 0%, #0C447C 50%, #08294D 100%); color: #fff; overflow: hidden; padding: 76px 0 84px; text-align: center; }
.page-hero::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.07) 1px, transparent 0); background-size: 28px 28px; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .crumb { font-size: 13px; color: #9FC8F0; font-weight: 600; margin-bottom: 14px; letter-spacing: 0.02em; }
.page-hero h1 { font-size: clamp(32px, 4.2vw, 48px); font-weight: 700; margin-bottom: 16px; }
.page-hero h1 .hl { color: #7FC0FF; }
.page-hero p { font-size: 18px; color: #C5DCF4; max-width: 580px; margin: 0 auto; line-height: 1.7; }
.page-hero .hero-btns { justify-content: center; margin-top: 30px; }

/* TRUST BAR */
.trustbar { background: var(--blue-tint); border-bottom: 1px solid var(--line); padding: 26px 0; }
.trustbar .wrap { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }
.trust-label { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.trust-tags { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.trust-tag { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 8px 16px; font-size: 14px; font-weight: 500; color: var(--ink); box-shadow: var(--shadow-sm); }
.trust-tag svg { color: var(--blue); }

/* SECTIONS */
section.block { padding: 84px 0; }
section.alt { background: var(--blue-tint); }
.sec-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.sec-eyebrow { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.sec-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 16px; }
.sec-head p { font-size: 17px; color: var(--muted); }
.sec-head.left { text-align: left; margin-left: 0; }

/* PROBLEM / SOLUTION */
.psol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.psol-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.psol-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.psol-q { font-size: 16px; color: var(--muted); font-style: italic; line-height: 1.55; margin-bottom: 18px; }
.psol-arrow { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); margin-bottom: 16px; }
.psol-a { font-family: var(--font-display); font-size: 17px; font-weight: 600; line-height: 1.4; }

/* TRADE EXAMPLES */
.ex-intro-note { text-align: center; font-size: 14px; color: var(--blue); font-weight: 600; margin-bottom: 32px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.ex-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.ex-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; cursor: pointer; }
.ex-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ex-preview { position: relative; height: 230px; overflow: hidden; border-bottom: 1px solid var(--line); }
.ex-preview-inner { position: absolute; inset: 0; }
.ex-hoverbar { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,41,77,0) 55%, rgba(8,41,77,0.82) 100%); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 18px; opacity: 0; transition: opacity .25s ease; }
.ex-card:hover .ex-hoverbar { opacity: 1; }
.ex-hoverbar span { color: #fff; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.35); backdrop-filter: blur(4px); padding: 9px 18px; border-radius: 100px; }
.ex-body { padding: 22px 26px 26px; }
.ex-trade { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.ex-trade .ic { width: 36px; height: 36px; border-radius: 9px; background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ex-note { font-size: 15px; color: var(--muted); line-height: 1.6; }
.mp { height: 100%; display: flex; flex-direction: column; font-size: 10px; }
.mp-nav { display: flex; align-items: center; justify-content: space-between; padding: 9px 13px; }
.mp-logo { font-family: var(--font-display); font-weight: 700; font-size: 11px; }
.mp-pill { font-size: 8px; font-weight: 700; padding: 4px 9px; border-radius: 100px; }

/* SERVICES (cards) */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.svc-ic { width: 52px; height: 52px; border-radius: 13px; background: linear-gradient(135deg, var(--blue), var(--blue-bright)); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 0 6px 16px rgba(30,111,191,0.3); }
.svc-card h3 { font-size: 19px; margin-bottom: 10px; }
.svc-card p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* HOW IT WORKS */
.hiw { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.hiw-step { text-align: center; position: relative; }
.hiw-num { width: 58px; height: 58px; border-radius: 50%; background: #fff; border: 2px solid var(--blue); color: var(--blue); font-family: var(--font-display); font-weight: 700; font-size: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: var(--shadow-sm); position: relative; z-index: 2; }
.hiw-step h3 { font-size: 19px; margin-bottom: 10px; }
.hiw-step p { font-size: 15px; color: var(--muted); max-width: 280px; margin: 0 auto; }
.hiw-line { position: absolute; top: 29px; left: 16.66%; right: 16.66%; height: 2px; background: linear-gradient(90deg, var(--blue), var(--blue-bright)); opacity: 0.35; z-index: 1; }

/* PORTFOLIO */
.port-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.port-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.port-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.port-img { height: 160px; background: linear-gradient(135deg, #0C447C, #2D8FE6); display: flex; align-items: center; justify-content: center; }
.port-img .ph-mark { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: rgba(255,255,255,0.9); }
.port-body { padding: 22px 24px 26px; }
.port-tag { display: inline-block; font-size: 12px; font-weight: 600; background: var(--blue-soft); color: var(--blue); padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; }
.port-card h3 { font-size: 19px; margin-bottom: 10px; }
.port-card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.port-card.cta-card { background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 34px 28px; }
.port-card.cta-card h3 { color: #fff; }
.port-card.cta-card p { color: #C5DCF4; margin-bottom: 18px; }

/* CASE STUDY (portfolio page) */
.case { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 40px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.case:nth-child(even) .case-media { order: 2; }
.case-media { min-height: 320px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.9); font-family: var(--font-display); font-weight: 700; font-size: 28px; }
.case-body { padding: 40px; }
.case-body .port-tag { margin-bottom: 14px; }
.case-body h3 { font-size: 24px; margin-bottom: 14px; }
.case-block { margin-bottom: 16px; }
.case-block h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); margin-bottom: 5px; }
.case-block p { font-size: 15px; color: var(--muted); line-height: 1.6; }
.case-stats { display: flex; gap: 28px; margin-top: 22px; flex-wrap: wrap; }
.case-stats .n { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--navy); }
.case-stats .l { font-size: 12px; color: var(--muted); }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.testi-stars { color: #F5A623; font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-quote { font-size: 16px; color: var(--ink); line-height: 1.65; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-av { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 15px; flex-shrink: 0; }
.testi-name { font-weight: 600; font-size: 15px; }
.testi-biz { font-size: 13px; color: var(--muted); }

/* SERVICE DETAIL ROWS (services page) */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 64px; }
.svc-detail:last-child { margin-bottom: 0; }
.svc-detail:nth-child(even) .svc-detail-visual { order: 2; }
.svc-detail-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--blue); background: var(--blue-soft); padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; }
.svc-detail h3 { font-size: 28px; margin-bottom: 14px; }
.svc-detail > div > p { font-size: 16px; color: var(--muted); margin-bottom: 20px; line-height: 1.7; }
.benefit-list { list-style: none; }
.benefit-list li { display: flex; align-items: flex-start; gap: 12px; padding: 9px 0; font-size: 15.5px; }
.benefit-list li svg { color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.benefit-list li b { font-weight: 600; }
.svc-detail-visual { background: linear-gradient(135deg, var(--navy), var(--blue)); border-radius: var(--radius); min-height: 300px; display: flex; align-items: center; justify-content: center; padding: 30px; box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.svc-detail-visual::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.07) 1px, transparent 0); background-size: 24px 24px; }
.svc-visual-ic { width: 96px; height: 96px; border-radius: 24px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: #fff; position: relative; z-index: 2; }

/* INCLUDED GRID */
.incl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.incl-item { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.incl-item .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.incl-item h4 { font-size: 16px; margin-bottom: 5px; }
.incl-item p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 24px; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .ico { color: var(--blue); transition: transform .25s ease; flex-shrink: 0; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 22px; font-size: 15.5px; color: var(--muted); line-height: 1.7; }

/* ABOUT */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-story h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 18px; }
.about-story p { font-size: 16px; color: var(--muted); margin-bottom: 16px; line-height: 1.75; }
.about-visual { background: linear-gradient(135deg, var(--navy), var(--blue)); border-radius: var(--radius); min-height: 360px; box-shadow: var(--shadow-md); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.about-visual::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.07) 1px, transparent 0); background-size: 26px 26px; }
.about-visual .logo-mark { width: 80px; height: 80px; border-radius: 20px; position: relative; z-index: 2; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-ic { width: 50px; height: 50px; border-radius: 13px; background: linear-gradient(135deg, var(--blue), var(--blue-bright)); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 0 6px 16px rgba(30,111,191,0.3); }
.value-card h3 { font-size: 19px; margin-bottom: 9px; }
.value-card p { font-size: 15px; color: var(--muted); line-height: 1.65; }
.stats-band { background: linear-gradient(135deg, var(--navy), var(--blue)); border-radius: 22px; padding: 50px 40px; color: #fff; position: relative; overflow: hidden; }
.stats-band::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0); background-size: 26px 26px; }
.stats-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats-grid .n { font-family: var(--font-display); font-size: clamp(30px, 4vw, 46px); font-weight: 800; margin-bottom: 6px; }
.stats-grid .l { font-size: 14px; color: #C5DCF4; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: start; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-md); }
.contact-form h3 { font-size: 22px; margin-bottom: 6px; }
.contact-form .sub { font-size: 15px; color: var(--muted); margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px; color: var(--ink); background: #fff; transition: border-color .15s ease, box-shadow .15s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,111,191,0.12); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 13px; color: var(--muted); text-align: center; margin-top: 14px; }
.contact-aside h3 { font-size: 20px; margin-bottom: 18px; }
.contact-method { display: flex; gap: 15px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; margin-bottom: 14px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.contact-method:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-method .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method.wa .ic { background: #DFFBEA; color: #1AAE55; }
.contact-method h4 { font-size: 16px; margin-bottom: 3px; }
.contact-method p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.contact-method a { color: var(--blue); font-weight: 600; }

/* AUDIT CTA */
.audit { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); border-radius: 22px; padding: 56px 48px; color: #fff; position: relative; overflow: hidden; }
.audit::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0); background-size: 26px 26px; }
.audit .a-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.audit h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 12px; }
.audit p { color: #C5DCF4; font-size: 16px; line-height: 1.6; }
.audit-form { display: flex; flex-direction: column; gap: 12px; }
.audit-form input { width: 100%; padding: 15px 18px; border-radius: var(--radius-sm); border: none; font-family: var(--font-body); font-size: 15px; color: var(--ink); }
.audit-form input::placeholder { color: #9AA7B4; }
.audit-form .btn { justify-content: center; width: 100%; }
.audit-note { font-size: 13px; color: #9FC8F0; margin-top: 4px; }

/* FINAL CTA */
.final { text-align: center; padding: 90px 0; }
.final h2 { font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 16px; }
.final p { font-size: 18px; color: var(--muted); max-width: 540px; margin: 0 auto 30px; }
.final-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer { background: var(--navy-deep); color: #fff; padding: 64px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.foot-brand .logo { color: #fff; margin-bottom: 16px; }
.foot-brand p { color: #9FB3C8; font-size: 15px; line-height: 1.7; max-width: 300px; }
.foot-col h4 { font-family: var(--font-display); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #7C93AB; margin-bottom: 18px; }
.foot-col a { display: block; color: #C2D2E2; font-size: 15px; margin-bottom: 11px; transition: color .15s ease; }
.foot-col a:hover { color: #fff; }
.foot-wa { display: inline-flex; align-items: center; gap: 9px; background: var(--wa); color: #fff; font-weight: 600; font-size: 14px; padding: 11px 18px; border-radius: 100px; margin-bottom: 12px; }
.foot-call { display: inline-flex; align-items: center; gap: 9px; color: #C2D2E2; font-size: 15px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 12px; }
.foot-bottom p { color: #7C93AB; font-size: 13px; }
.foot-bottom .socials { display: flex; gap: 14px; }
.foot-bottom .socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #C2D2E2; transition: background .15s ease; }
.foot-bottom .socials a:hover { background: var(--blue); color: #fff; }

/* FLOATING WHATSAPP */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 150; display: inline-flex; align-items: center; gap: 10px; background: var(--wa); color: #fff; font-weight: 600; font-size: 15px; padding: 14px 20px; border-radius: 100px; box-shadow: 0 10px 30px rgba(37,211,102,0.45); transition: transform .2s ease; }
.wa-float:hover { transform: scale(1.05); }

/* MOBILE MENU */
.mobile-menu { display: none; position: fixed; inset: 72px 0 0; background: #fff; z-index: 99; padding: 28px 24px; flex-direction: column; gap: 6px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-weight: 600; font-size: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 18px; justify-content: center; }

/* SITE PREVIEW MODAL */
.site-modal { position: fixed; inset: 0; z-index: 1000; background: rgba(6,20,38,0.72); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 24px; }
.site-modal.open { display: flex; animation: fadeIn .2s ease; }
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
.site-panel { width: 100%; max-width: 920px; height: 86vh; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 30px 90px rgba(0,0,0,0.5); display: flex; flex-direction: column; animation: popIn .25s ease; }
@keyframes popIn { from{transform:scale(.96); opacity:0;} to{transform:scale(1); opacity:1;} }
.site-chrome { background: #EDF2F8; padding: 11px 14px; display: flex; align-items: center; gap: 9px; border-bottom: 1px solid #E0E6EE; flex-shrink: 0; }
.site-chrome .bdot { width: 12px; height: 12px; border-radius: 50%; }
.site-chrome .curl { flex: 1; margin-left: 8px; background: #fff; border-radius: 7px; height: 28px; display: flex; align-items: center; padding: 0 14px; font-size: 13px; color: #6B7886; }
.site-chrome .curl svg { margin-right: 7px; color: #28C840; }
.chrome-close { width: 34px; height: 34px; border-radius: 8px; border: none; background: #fff; color: var(--ink); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s ease; flex-shrink: 0; }
.chrome-close:hover { background: #FFE3E3; color: #D33; }
.site-scroll { flex: 1; overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch; }
.scroll-hint { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 5; background: rgba(8,41,77,0.85); color: #fff; font-size: 12px; font-weight: 600; padding: 7px 15px; border-radius: 100px; display: inline-flex; align-items: center; gap: 7px; pointer-events: none; animation: bob 1.6s infinite; }
@keyframes bob { 0%,100%{transform:translate(-50%,0);} 50%{transform:translate(-50%,5px);} }
.demo-site { display: none; }
.demo-site.active { display: block; }

/* DEMO SITE SHARED */
.ds { font-family: var(--font-body); color: #1a1a1a; line-height: 1.6; }
.ds-wrap { max-width: 860px; margin: 0 auto; padding: 0 28px; }
.ds-nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 28px; }
.ds-logo { font-weight: 800; font-size: 18px; display: flex; align-items: center; gap: 8px; }
.ds-logo .dot { width: 26px; height: 26px; border-radius: 7px; display: flex; align-items: center; justify-content: center; }
.ds-menu { display: flex; gap: 20px; font-size: 13px; font-weight: 600; }
.ds-btn { font-weight: 700; font-size: 13px; padding: 10px 18px; border-radius: 8px; display: inline-block; cursor: pointer; }
.ds-sec { padding: 46px 0; }
.ds-h2 { font-size: 26px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
.ds-lead { font-size: 14px; color: #667; margin-bottom: 28px; }
.ds-grid3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.ds-grid2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.ds-card { border-radius: 12px; padding: 22px; }
.ds-stars { color: #F5A623; font-size: 14px; letter-spacing: 1px; }

/* PLUMBING */
.aqua .ds-top { background: #0A2540; color: #fff; text-align: center; padding: 8px; font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.aqua .ds-top b { color: #FFD23F; }
.aqua .ds-nav { background: #fff; border-bottom: 1px solid #E8EEF4; }
.aqua .ds-logo { color: #0A2540; } .aqua .ds-logo .dot { background: #00A8E8; color: #fff; }
.aqua .ds-menu { color: #0A2540; }
.aqua .ds-btn.call { background: #E63946; color: #fff; }
.aqua-hero { background: linear-gradient(120deg,#003F73 0%,#0077B6 55%,#00A8E8 100%); color: #fff; padding: 56px 0; position: relative; overflow: hidden; }
.aqua-hero::after { content:""; position:absolute; right:-60px; top:-40px; width:280px; height:280px; border-radius:50%; background:rgba(255,255,255,0.06); }
.aqua-badge { display: inline-flex; align-items: center; gap: 7px; background: #E63946; color: #fff; font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; }
.aqua-hero h1 { font-size: 38px; font-weight: 800; line-height: 1.1; margin-bottom: 14px; max-width: 540px; letter-spacing: -0.02em; }
.aqua-hero p { font-size: 16px; color: #CDE8F7; max-width: 440px; margin-bottom: 26px; }
.aqua-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.aqua-cta .call { background: #E63946; color: #fff; font-size: 16px; padding: 14px 26px; border-radius: 10px; font-weight: 800; display: inline-flex; align-items: center; gap: 9px; }
.aqua-cta .quote { background: #fff; color: #003F73; font-size: 16px; padding: 14px 26px; border-radius: 10px; font-weight: 800; }
.aqua-trust { display: flex; gap: 26px; margin-top: 28px; flex-wrap: wrap; }
.aqua-trust div { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #CDE8F7; font-weight: 600; }
.aqua-svc { background: #F4FAFE; }
.aqua-svc .ds-card { background: #fff; border: 1px solid #E1EFF8; text-align: center; }
.aqua-svc .ic { width: 50px; height: 50px; border-radius: 12px; background: #E1F3FC; color: #0077B6; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.aqua-svc h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.aqua-svc p { font-size: 13px; color: #667; }
.aqua-band { background: #0A2540; color: #fff; text-align: center; padding: 44px 0; }
.aqua-band h2 { font-size: 26px; font-weight: 800; margin-bottom: 10px; }
.aqua-band p { color: #9FC0DD; margin-bottom: 22px; }

/* ELECTRICIAN */
.spark .ds-nav { background: #fff; border-bottom: 1px solid #ECEFF3; }
.spark .ds-logo { color: #14213D; } .spark .ds-logo .dot { background: #FCA311; color: #14213D; }
.spark .ds-menu { color: #14213D; }
.spark .ds-btn { background: #14213D; color: #fff; }
.spark-hero { padding: 54px 0; }
.spark-hero .grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: center; }
.spark-tag { color: #FCA311; font-weight: 800; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.spark-hero h1 { font-size: 36px; font-weight: 800; line-height: 1.12; color: #14213D; margin-bottom: 14px; letter-spacing: -0.02em; }
.spark-hero p { font-size: 15px; color: #5A6473; margin-bottom: 22px; }
.spark-hero .ds-btn { font-size: 15px; padding: 13px 24px; }
.spark-certs { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.spark-certs span { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: #14213D; background: #FFF4E0; border: 1px solid #FCE0B0; padding: 7px 13px; border-radius: 8px; }
.spark-img { height: 270px; background: linear-gradient(135deg,#14213D,#34507E); border-radius: 16px; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 20px; }
.spark-img::before { content:""; position:absolute; top:24px; right:24px; width:60px; height:60px; border:3px solid #FCA311; border-radius:50%; opacity:.6; }
.spark-img .cap { background: rgba(255,255,255,0.95); border-radius: 10px; padding: 12px 16px; font-size: 12px; }
.spark-img .cap b { display: block; font-size: 14px; color: #14213D; }
.spark-svc { background: #F7F9FC; }
.spark-svc .ds-card { background: #fff; border: 1px solid #ECEFF3; }
.spark-svc .ic { width: 46px; height: 46px; border-radius: 11px; background: #14213D; color: #FCA311; display: flex; align-items: center; justify-content: center; margin-bottom: 13px; }
.spark-svc h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: #14213D; }
.spark-svc p { font-size: 13px; color: #5A6473; }
.spark-guarantee { background: #14213D; color: #fff; border-radius: 16px; padding: 34px; display: flex; align-items: center; gap: 22px; }
.spark-guarantee .gic { width: 64px; height: 64px; border-radius: 14px; background: #FCA311; color: #14213D; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.spark-guarantee h3 { font-size: 20px; font-weight: 800; margin-bottom: 5px; }
.spark-guarantee p { color: #B9C4D6; font-size: 14px; }

/* HVAC */
.cool { background: #fff; }
.cool .ds-nav { background: #fff; border-bottom: 1px solid #E7F0EE; }
.cool .ds-logo { color: #0B3D2E; } .cool .ds-logo .dot { background: #10B981; color: #fff; }
.cool .ds-menu { color: #0B3D2E; }
.cool .ds-btn { background: #10B981; color: #fff; }
.cool-offer { background: #0B3D2E; color: #fff; text-align: center; padding: 9px; font-size: 13px; font-weight: 700; }
.cool-offer b { color: #FFD23F; }
.cool-hero { background: linear-gradient(160deg,#E7F7F1 0%,#D4EEF6 100%); padding: 52px 0; text-align: center; }
.cool-hero h1 { font-size: 36px; font-weight: 800; color: #0B3D2E; line-height: 1.12; margin-bottom: 14px; letter-spacing: -0.02em; max-width: 560px; margin-left: auto; margin-right: auto; }
.cool-hero p { font-size: 16px; color: #3E5C53; max-width: 460px; margin: 0 auto 24px; }
.cool-hero .ds-btn { font-size: 15px; padding: 14px 26px; }
.cool-promos { background: #fff; }
.cool-promo { border-radius: 14px; padding: 26px; color: #fff; position: relative; overflow: hidden; }
.cool-promo.heat { background: linear-gradient(135deg,#F97316,#FB923C); }
.cool-promo.ac { background: linear-gradient(135deg,#0EA5E9,#38BDF8); }
.cool-promo .tag { font-size: 12px; font-weight: 700; opacity: .9; }
.cool-promo h3 { font-size: 30px; font-weight: 800; margin: 4px 0; }
.cool-promo p { font-size: 13px; opacity: .92; margin-bottom: 14px; }
.cool-promo .pbtn { background: #fff; color: #14213D; font-weight: 700; font-size: 12px; padding: 8px 16px; border-radius: 7px; display: inline-block; }
.cool-plan { background: #0B3D2E; color: #fff; border-radius: 16px; padding: 34px; text-align: center; }
.cool-plan .price { font-size: 40px; font-weight: 800; color: #FFD23F; }
.cool-plan .price small { font-size: 15px; color: #9FD8C5; font-weight: 600; }
.cool-plan h3 { font-size: 20px; margin-bottom: 6px; }
.cool-plan p { color: #9FD8C5; font-size: 14px; margin-bottom: 18px; }
.cool-plan ul { list-style: none; max-width: 320px; margin: 0 auto 22px; text-align: left; }
.cool-plan li { font-size: 13px; padding: 6px 0; display: flex; align-items: center; gap: 9px; color: #D6F0E7; }
.cool-svc { background: #F4FBF8; }
.cool-svc .ds-card { background: #fff; border: 1px solid #DCEFE8; }
.cool-svc .ic { width: 46px; height: 46px; border-radius: 11px; background: #DCF5EC; color: #10B981; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.cool-svc h3 { font-size: 15px; font-weight: 700; margin-bottom: 5px; color: #0B3D2E; }
.cool-svc p { font-size: 13px; color: #5A6E67; }

/* CONTRACTOR */
.solid { background: #14110F; color: #EDE6DD; }
.solid .ds-nav { background: #14110F; border-bottom: 1px solid #2A241F; }
.solid .ds-logo { color: #fff; font-family: 'Playfair Display', serif; } .solid .ds-logo .dot { background: #C2904A; color: #14110F; }
.solid .ds-menu { color: #C9BEB1; }
.solid .ds-btn { background: #C2904A; color: #14110F; }
.solid-hero { padding: 64px 0; background: linear-gradient(180deg,#1B1714,#14110F); position: relative; }
.solid-hero .tag { color: #C2904A; font-weight: 700; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 16px; }
.solid-hero h1 { font-family: 'Playfair Display', serif; font-size: 46px; font-weight: 800; line-height: 1.05; color: #fff; margin-bottom: 16px; max-width: 600px; }
.solid-hero p { font-size: 16px; color: #B5A99B; max-width: 460px; margin-bottom: 26px; }
.solid-hero .ds-btn { font-size: 15px; padding: 14px 28px; }
.solid-stats { display: flex; gap: 44px; margin-top: 40px; flex-wrap: wrap; }
.solid-stats .n { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 800; color: #C2904A; }
.solid-stats .l { font-size: 12px; color: #8C8175; letter-spacing: .04em; }
.solid-gallery { background: #14110F; }
.solid-gallery .grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.solid-tile { height: 130px; border-radius: 10px; position: relative; overflow: hidden; }
.solid-tile span { position: absolute; bottom: 10px; left: 12px; font-size: 12px; font-weight: 700; color: #fff; z-index: 2; }
.solid-tile::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 45%,rgba(0,0,0,.65)); }
.solid-h2 { font-family: 'Playfair Display', serif; font-size: 30px; color: #fff; font-weight: 800; margin-bottom: 6px; }
.solid-lead { color: #B5A99B; font-size: 14px; margin-bottom: 28px; }
.solid-svc { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: #2A241F; border: 1px solid #2A241F; border-radius: 14px; overflow: hidden; }
.solid-svc .item { background: #1B1714; padding: 24px; }
.solid-svc h3 { color: #fff; font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.solid-svc p { color: #9C9082; font-size: 13px; }
.solid-quote { text-align: center; padding: 54px 0; }
.solid-quote p { font-family: 'Playfair Display', serif; font-size: 24px; font-style: italic; color: #EDE6DD; max-width: 600px; margin: 0 auto 16px; line-height: 1.4; }
.solid-quote .who { color: #C2904A; font-weight: 700; font-size: 14px; }
.solid-band { background: #C2904A; color: #14110F; text-align: center; padding: 44px 0; }
.solid-band h2 { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 800; margin-bottom: 8px; }
.solid-band p { margin-bottom: 20px; font-size: 15px; }
.solid-band .ds-btn { background: #14110F; color: #fff; padding: 14px 30px; font-size: 15px; }

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 460px; }
  .browser { transform: none; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .spark-hero .grid { grid-template-columns: 1fr; gap: 24px; }
  .svc-detail, .about-story, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-detail:nth-child(even) .svc-detail-visual, .case:nth-child(even) .case-media { order: 0; }
  .case { grid-template-columns: 1fr; }
  .incl-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn { display: none; }
  .menu-toggle { display: block; }
  section.block { padding: 60px 0; }
  .psol, .ex-grid, .port-grid, .testi-grid, .hiw, .incl-grid, .values-grid { grid-template-columns: 1fr; gap: 18px; }
  .hiw-line { display: none; }
  .audit { padding: 38px 26px; }
  .audit .a-inner { grid-template-columns: 1fr; gap: 26px; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .case-body { padding: 28px; }
  .wa-float span { display: none; }
  .wa-float { padding: 16px; }
  .hero { padding: 60px 0 70px; }
  .site-modal { padding: 0; }
  .site-panel { height: 100vh; max-width: 100%; border-radius: 0; }
  .ds-grid3, .cool-promos .ds-grid2, .solid-svc { grid-template-columns: 1fr; }
  .solid-gallery .grid { grid-template-columns: 1fr 1fr; }
  .aqua-hero h1, .spark-hero h1, .cool-hero h1 { font-size: 30px; }
  .solid-hero h1 { font-size: 34px; }
}

/* ============================================================
   ENHANCEMENTS — services styling, FAQ fix, award seals,
   video showcase, legal pages
   ============================================================ */

/* --- FAQ FIX: open state reveal + extra polish --- */
.faq-item { transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item.open { border-color: var(--blue); box-shadow: var(--shadow-md); }
.faq-q:hover { color: var(--blue); }
.faq-item.open .faq-a { max-height: 600px; }
.faq-intro { text-align: center; max-width: 620px; margin: 0 auto 36px; color: var(--muted); font-size: 16px; }

/* --- SERVICES: richer detail visuals --- */
.svc-detail-visual { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.svc-visual-ic { margin-bottom: 2px; }
.svc-detail-visual h4 { color: #fff; font-size: 21px; position: relative; z-index: 2; margin: 0; }
.svc-detail-visual p { color: #C5DCF4 !important; font-size: 14.5px; max-width: 320px; margin: 0 auto !important; position: relative; z-index: 2; }
.svc-visual-chips { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 2; margin-top: 4px; }
.svc-visual-chips span { font-size: 12px; font-weight: 600; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); padding: 6px 13px; border-radius: 100px; color: #fff; }
.svc-detail h3 { letter-spacing: -0.02em; }
.svc-detail-tag { box-shadow: 0 1px 0 rgba(8,41,77,0.04); }

/* nicer "what's included" cards */
.incl-item { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.incl-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue); }

/* services quote callout */
.quote-callout { background: linear-gradient(135deg, var(--navy), var(--blue)); border-radius: 22px; padding: 48px 44px; color: #fff; text-align: center; position: relative; overflow: hidden; }
.quote-callout::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0); background-size: 26px 26px; }
.quote-callout .inner { position: relative; z-index: 2; }
.quote-callout h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 12px; }
.quote-callout p { color: #C5DCF4; font-size: 16px; max-width: 520px; margin: 0 auto 24px; line-height: 1.6; }

/* --- AWARD SEALS (contact page authenticity) --- */
.awards { display: flex; flex-wrap: wrap; gap: 26px 30px; justify-content: center; align-items: flex-start; }
.award { width: 112px; text-align: center; }
.award-seal { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fff; position: relative; box-shadow: var(--shadow-md), inset 0 0 0 4px rgba(255,255,255,0.16), inset 0 0 0 6px rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.55); background: radial-gradient(circle at 50% 32%, #2D8FE6, #0C447C 75%); }
.award-seal::before, .award-seal::after { content: ""; position: absolute; bottom: -11px; width: 14px; height: 22px; background: inherit; z-index: -1; border-radius: 0 0 3px 3px; }
.award-seal::before { left: 24px; transform: rotate(8deg); }
.award-seal::after { right: 24px; transform: rotate(-8deg); }
.award-seal.gold { background: radial-gradient(circle at 50% 32%, #F8CE5E, #B07F12 78%); color: #3A2900; border-color: rgba(255,255,255,0.75); }
.award-seal .big { font-family: var(--font-display); font-weight: 800; font-size: 22px; line-height: 1; }
.award-seal .star { font-size: 15px; line-height: 1; margin-bottom: 1px; }
.award-seal .sm { font-size: 8px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; margin-top: 3px; padding: 0 6px; line-height: 1.15; }
.award .label { font-size: 12.5px; font-weight: 600; color: var(--muted); line-height: 1.3; }

/* --- VIDEO SHOWCASE (portfolio) --- */
.video-showcase { max-width: 880px; margin: 0 auto; }
.video-frame { position: relative; aspect-ratio: 16 / 9; border-radius: 18px; overflow: hidden; background: linear-gradient(135deg, var(--navy), var(--blue)); box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.video-frame::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0); background-size: 26px 26px; }
.video-frame video, .video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }
.video-play { width: 86px; height: 86px; border-radius: 50%; background: rgba(255,255,255,0.95); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,0.25); position: relative; z-index: 2; transition: transform .2s ease; }
.video-frame:hover .video-play { transform: scale(1.08); }
.video-play svg { color: var(--blue); margin-left: 5px; }
.video-badge { position: absolute; top: 18px; left: 18px; z-index: 2; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(4px); color: #fff; font-size: 12px; font-weight: 600; padding: 7px 14px; border-radius: 100px; }
.video-cap { text-align: center; margin-top: 18px; color: var(--muted); font-size: 14.5px; }

/* --- LEGAL PAGES --- */
.legal { max-width: 800px; margin: 0 auto; }
.legal .updated { font-size: 14px; color: var(--blue); font-weight: 600; margin-bottom: 16px; }
.legal .note { background: var(--blue-tint); border: 1px solid var(--line); border-left: 3px solid var(--blue); border-radius: 10px; padding: 16px 18px; font-size: 14px; color: var(--ink); margin-bottom: 28px; line-height: 1.6; }
.legal h2 { font-size: 22px; margin: 34px 0 12px; }
.legal h2:first-of-type { margin-top: 0; }
.legal p { font-size: 15.5px; color: var(--muted); line-height: 1.75; margin-bottom: 13px; }
.legal ul { padding-left: 22px; margin-bottom: 16px; }
.legal li { font-size: 15.5px; color: var(--muted); line-height: 1.7; margin-bottom: 8px; }
.legal a { color: var(--blue); font-weight: 600; }

/* footer legal column responsive already handled by .foot-grid */
@media (max-width: 760px) {
  .awards { gap: 22px; }
}

/* deterministic alternation for service rows */
.svc-detail.alt .svc-detail-visual { order: -1; }
@media (max-width: 980px) { .svc-detail.alt .svc-detail-visual { order: 0; } }

/* ============================================================
   Brand + media integration (added)
   ============================================================ */

/* New logo mark: pin icon replaces the rounded badge */
.logo-mark { width: auto; height: 34px; background: none; box-shadow: none; border-radius: 0; }
.logo-mark img { height: 100%; width: auto; display: block; }
.about-visual .logo-mark { width: auto; height: 120px; }

/* Trade demo hero photos (tinted overlay keeps text readable) */
.aqua-hero {
  background: linear-gradient(120deg, rgba(0,63,115,.90) 0%, rgba(0,119,182,.80) 55%, rgba(0,168,232,.74) 100%),
              url("../images/plumbing.jpg") center/cover no-repeat;
}
.spark-img {
  background: linear-gradient(180deg, rgba(20,33,61,.12), rgba(20,33,61,.50)),
              url("../images/electrician.jpg") center/cover no-repeat;
}
.cool-hero {
  background: linear-gradient(160deg, rgba(231,247,241,.90) 0%, rgba(212,238,246,.86) 100%),
              url("../images/hvac.jpg") center/cover no-repeat;
}
.solid-hero {
  background: linear-gradient(180deg, rgba(27,23,20,.78), rgba(20,17,15,.93)),
              url("../images/construction.jpg") center/cover no-repeat;
}

/* Portfolio project videos */
.port-img.pf-video { height: 210px; padding: 0; background: #0A1A2F; }
.port-img.pf-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.port-img.pf-video.phone { background: linear-gradient(135deg, #0C447C, #2D8FE6); display: flex; align-items: center; justify-content: center; }
.port-img.pf-video.phone video { width: auto; height: 94%; object-fit: contain; border-radius: 14px; border: 3px solid rgba(8,41,77,.5); box-shadow: 0 8px 22px rgba(0,0,0,.32); }

/* Portfolio page case-study videos */
.case-shot { min-height: 320px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.9); font-family: var(--font-display); font-weight: 700; font-size: 28px; overflow: hidden; }
.case-shot.pf-video { padding: 0; background: #0A1A2F; }
.case-shot.pf-video video { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }
.case-shot.pf-video.phone { background: linear-gradient(135deg, #0C447C, #2D8FE6); }
.case-shot.pf-video.phone video { width: auto; height: auto; min-height: 0; max-height: 300px; object-fit: contain; border-radius: 16px; border: 3px solid rgba(8,41,77,.5); box-shadow: 0 8px 22px rgba(0,0,0,.32); margin: 20px; }

/* Showcase video fit */
.video-frame video { object-fit: cover; }


/* ---- v10.1: logo bigger + tagline ---- */
.logo { gap: 12px; }
.logo-mark { width: auto; height: 44px; background: none; box-shadow: none; border-radius: 0; }
.logo-mark img { height: 100%; width: auto; display: block; }
.logo-txt { display: flex; flex-direction: column; justify-content: center; line-height: 1.04; }
.logo-name { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -0.03em; color: var(--navy); }
.foot-brand .logo-name { color: #fff; }
.logo-tag { font-size: 10.5px; font-weight: 500; color: var(--muted); margin-top: 3px; white-space: nowrap; }
@media (max-width: 600px) { header .logo-tag { display: none; } }
.about-visual .logo-mark { width: auto; height: 120px; }

/* ---- v10.1: explicit logo-mark sizing (deterministic across renderers) ---- */
.logo-mark { width: 36px; height: 44px; }
.logo-mark img { width: 36px; height: 44px; }
.about-visual .logo-mark, .about-visual .logo-mark img { width: 99px; height: 120px; }

/* ---- Task 7: homepage-only rules merged from index.html's former inline <style> ----
   Only these three rules were genuinely absent from this file. The homepage's other
   "inline-only" rules (.nav-links a:hover and the responsive 1-column grid rules) were
   already present here via grouped selectors, so they are not duplicated. */
.mp-links { display: flex; gap: 8px; }
.mp-links i { width: 18px; height: 4px; border-radius: 2px; display: block; }
.ds-photo { background-size: cover; background-position: center; border-radius: 12px; }
