:root {
  --bg: #f5f7fb;
  --ink: #0b1220;
  --muted: #5f6b7a;
  --line: #dde4ee;
  --card: #ffffff;
  --brand: #14b8a6;
  --brand-dark: #0f766e;
  --blue: #2563eb;
  --dark: #0b1220;
  --dark-soft: #151e31;
  --radius: 24px;
  --shadow: 0 22px 70px rgba(10, 18, 32, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img, iframe { max-width: 100%; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 88px 0; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 247, 251, .88);
  border-bottom: 1px solid rgba(221, 228, 238, .8);
  backdrop-filter: blur(16px);
}
.nav-wrap { height: 76px; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--blue));
  color: white; font-weight: 900;
}
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: -4px; }
.site-nav { display: flex; gap: 22px; color: #243044; font-weight: 600; }
.site-nav a:hover { color: var(--brand-dark); }
.nav-toggle { display: none; border: 0; background: white; border-radius: 12px; padding: 8px 12px; font-size: 22px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 20px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-weight: 800;
  border: 1px solid transparent;
  box-shadow: 0 12px 30px rgba(20,184,166,.26);
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-small { min-height: 40px; padding: 0 16px; font-size: 14px; }
.btn-ghost { background: white; color: var(--ink); border-color: var(--line); box-shadow: none; }
.hero { padding-top: 74px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.eyebrow { margin: 0 0 12px; text-transform: uppercase; letter-spacing: .13em; font-size: 12px; color: var(--brand-dark); font-weight: 900; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 7vw, 76px); line-height: .94; letter-spacing: -.06em; margin-bottom: 24px; }
h2 { font-size: clamp(32px, 4.2vw, 52px); line-height: 1; letter-spacing: -.045em; margin-bottom: 18px; }
h3 { font-size: 21px; letter-spacing: -.02em; margin-bottom: 10px; }
.lead { color: var(--muted); font-size: 20px; max-width: 660px; }
.hero-actions, .contact-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span { padding: 9px 12px; background: #e7f8f5; border: 1px solid #bceee7; color: #0f766e; border-radius: 999px; font-weight: 800; font-size: 13px; }
.hero-card { background: var(--card); border: 1px solid var(--line); border-radius: 34px; padding: 28px; box-shadow: var(--shadow); }
.device-card { position: relative; min-height: 410px; border-radius: 28px; background: radial-gradient(circle at 20% 20%, #3b82f6 0, transparent 24%), linear-gradient(145deg, #111827, #0b1220); overflow: hidden; display: grid; place-items: center; }
.phone-shape { position: relative; width: 185px; height: 320px; border: 10px solid #e5e7eb; border-radius: 34px; background: linear-gradient(160deg, #09111f, #0f766e); box-shadow: 0 30px 80px rgba(0,0,0,.45); transform: rotate(7deg); }
.phone-shape:before { content:""; position:absolute; top:10px; left:50%; width:58px; height:7px; transform:translateX(-50%); background:#d1d5db; border-radius:99px; }
.crack { position:absolute; left:72px; top:76px; width:60px; height:120px; border-left:2px solid rgba(255,255,255,.7); transform: rotate(-18deg); }
.crack:before, .crack:after { content:""; position:absolute; background:rgba(255,255,255,.75); height:2px; width:42px; top:42px; left:-2px; transform:rotate(35deg); }
.crack:after { top:78px; width:52px; transform: rotate(-30deg); }
.screen-glow { position:absolute; inset:auto 24px 28px; height:80px; border-radius:18px; background:rgba(255,255,255,.12); }
.repair-status { position:absolute; left:22px; right:22px; bottom:22px; display:flex; gap:13px; align-items:center; background:rgba(255,255,255,.93); color:var(--ink); padding:15px; border-radius:20px; }
.repair-status p { margin: 2px 0 0; color: var(--muted); font-size: 13px; }
.pulse { width:12px; height:12px; border-radius:99px; background:var(--brand); box-shadow:0 0 0 8px rgba(20,184,166,.18); flex:0 0 auto; }
.stat-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:16px; }
.stat-grid div { background:#f8fafc; border:1px solid var(--line); border-radius:18px; padding:15px; }
.stat-grid strong { display:block; font-size:24px; letter-spacing:-.03em; }
.stat-grid span, .fine-print { color:var(--muted); font-size:13px; }
.fine-print { margin: 12px 4px 0; }
.strip { padding: 0; }
.strip-grid { display:grid; grid-template-columns:1.2fr auto auto; align-items:center; gap:20px; padding:20px 24px; background:var(--ink); color:white; border-radius:24px; }
.strip-grid span { color:#b8c3d4; margin-left:8px; }
.strip-grid a { color:#99f6e4; font-weight:800; }
.section-heading { max-width: 760px; margin-bottom: 36px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.cards { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.card { background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:26px; box-shadow:0 14px 40px rgba(10,18,32,.06); }
.card p { color:var(--muted); margin-bottom:0; }
.icon { width:48px; height:48px; display:grid; place-items:center; background:#ecfeff; border-radius:16px; margin-bottom:18px; font-size:24px; }
.dark { background:var(--dark); color:white; }
.dark .eyebrow { color:#5eead4; }
.dark p, .dark li { color:#c7d2e2; }
.split { display:grid; grid-template-columns:1fr .78fr; gap:48px; align-items:center; }
.check-list { list-style:none; padding:0; margin:26px 0 0; }
.check-list li { margin:13px 0; padding-left:30px; position:relative; }
.check-list li:before { content:"✓"; position:absolute; left:0; top:0; color:#5eead4; font-weight:900; }
.quote-card { background:var(--dark-soft); border:1px solid rgba(255,255,255,.1); border-radius:30px; padding:30px; }
.quote-card p { color:white; font-size:21px; font-weight:800; letter-spacing:-.02em; }
.quote-card span { color:#94a3b8; }
.steps { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.step { background:white; border:1px solid var(--line); border-radius:var(--radius); padding:26px; }
.step span { width:42px; height:42px; border-radius:50%; display:grid; place-items:center; background:var(--ink); color:white; font-weight:900; margin-bottom:18px; }
.step p { color:var(--muted); margin-bottom:0; }
.quote-section { background:#eaf4ff; }
.quote-grid, .contact-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:44px; align-items:start; }
.contact-panel { background:white; border:1px solid var(--line); border-radius:22px; padding:20px; margin-top:26px; }
.contact-panel p { margin: 8px 0; }
.contact-panel a { color:var(--brand-dark); font-weight:800; }
.quote-form { background:white; border:1px solid var(--line); border-radius:30px; padding:26px; box-shadow:var(--shadow); }
label { display:block; font-weight:800; margin-bottom:14px; }
input, textarea, select { width:100%; display:block; margin-top:7px; border:1px solid #cbd5e1; border-radius:14px; padding:13px 14px; font:inherit; color:var(--ink); background:#f8fafc; }
input:focus, textarea:focus, select:focus { outline:3px solid rgba(20,184,166,.24); border-color:var(--brand); }
.form-note { color:var(--muted); font-size:13px; margin:14px 0 0; }
.map-card { min-height:380px; border-radius:30px; overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow); background:white; }
.map-card iframe { width:100%; height:420px; border:0; display:block; }
.site-footer { padding:34px 0; background:#050914; color:white; }
.footer-grid { display:flex; justify-content:space-between; gap:20px; align-items:center; }
.footer-grid p { color:#94a3b8; margin:5px 0 0; }
.footer-grid a { display:block; color:#99f6e4; font-weight:800; text-align:right; margin:4px 0; }
@media (max-width: 900px) {
  .site-nav, .nav-wrap > .btn-small { display:none; }
  .nav-toggle { display:block; }
  .site-nav.open { display:flex; position:absolute; top:76px; left:20px; right:20px; flex-direction:column; background:white; padding:18px; border-radius:20px; border:1px solid var(--line); box-shadow:var(--shadow); }
  .hero-grid, .split, .quote-grid, .contact-grid { grid-template-columns:1fr; }
  .cards, .steps { grid-template-columns:1fr 1fr; }
  .strip-grid { grid-template-columns:1fr; }
  .strip-grid span { display:block; margin-left:0; }
}
@media (max-width: 620px) {
  .container { width:min(100% - 28px, 1120px); }
  .section { padding:64px 0; }
  .nav-wrap { height:68px; }
  .site-nav.open { top:68px; }
  h1 { font-size:44px; }
  .lead { font-size:17px; }
  .hero-actions, .contact-buttons { flex-direction:column; }
  .cards, .steps, .stat-grid { grid-template-columns:1fr; }
  .device-card { min-height:330px; }
  .phone-shape { width:150px; height:260px; }
  .footer-grid { flex-direction:column; align-items:flex-start; }
  .footer-grid a { text-align:left; }
}

/* Logo and TV brand updates */
.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--line);
  padding: 3px;
  box-shadow: 0 8px 22px rgba(10, 18, 32, .08);
}
.logo-device-card {
  background: radial-gradient(circle at 25% 18%, rgba(20,184,166,.35), transparent 26%), linear-gradient(145deg, #111827, #0b1220);
  padding: 34px;
}
.hero-logo {
  width: min(320px, 82%);
  height: auto;
  display: block;
  border-radius: 24px;
  background: white;
  padding: 12px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
  transform: rotate(-2deg);
}
.brand-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 26px;
  margin: 0 0 26px;
  box-shadow: 0 14px 40px rgba(10,18,32,.06);
}
.brand-panel p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}
.tv-logo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tv-logo-card {
  min-height: 108px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(10,18,32,.05);
}
.tv-logo-card img {
  display: block;
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}
.samsung-card img {
  max-height: 58px;
}
.lg-card img {
  max-height: 76px;
}
.hisense-card img {
  max-height: 62px;
}
@media (max-width: 900px) {
  .brand-panel { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .brand-logo { width: 48px; height: 48px; }
  .tv-logo-row { grid-template-columns: 1fr; }
  .tv-logo-card { min-height: 82px; }
}


/* Google Reviews / Trust section */
.reviews-section {
  background: #ffffff;
}
.reviews-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: stretch;
}
.rating-card,
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 14px 40px rgba(10,18,32,.06);
}
.rating-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stars {
  color: #f59e0b;
  letter-spacing: .08em;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 16px;
}
.rating-card strong {
  display: block;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 12px;
}
.rating-card p {
  color: var(--muted);
}
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 0;
}
.review-note,
.reviews-disclaimer {
  color: var(--muted);
  font-size: 13px;
}
.review-note {
  margin: 16px 0 0;
}
.review-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.review-card {
  padding: 22px;
}
.review-card p {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.review-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.reviews-disclaimer {
  margin: 18px 0 0;
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .review-cards { grid-template-columns: 1fr; }
  .rating-card { padding: 24px; }
}


/* TV enquiry section */
.tv-enquiry-section {
  background: #f7fbff;
}
.info-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  margin-top: 24px;
  box-shadow: 0 14px 40px rgba(10,18,32,.06);
}
.info-card p {
  color: var(--muted);
}
.mini-check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.mini-check-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  color: var(--muted);
}
.mini-check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-dark);
  font-weight: 900;
}
.hidden-field {
  display: none;
}
.tv-enquiry-form input[type="file"] {
  background: white;
  padding: 12px;
}
.form-note a {
  color: var(--brand-dark);
  font-weight: 800;
}


.confirmation-card {
  max-width: 820px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.confirmation-logo {
  width: 110px;
  height: auto;
  margin-bottom: 20px;
}

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top left, rgba(19, 194, 171, 0.12), transparent 35%), #f7fbff;
}

.success-card {
  max-width: 760px;
  background: #ffffff;
  border: 1px solid rgba(14, 30, 50, 0.12);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 24px 70px rgba(14, 30, 50, 0.12);
}

.success-card h1 {
  margin-top: 10px;
  margin-bottom: 18px;
}

.success-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

@media (max-width: 700px) {
  .success-card {
    padding: 30px 22px;
    border-radius: 22px;
  }
}
