/* ============================================================
   Kitchen Wall Panels UK - style.css
   NEWSAxis.uk | Rajdhani headings | Fully responsive
   UK Kitchen Design Theme
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --navy:          #1e2d40;
  --navy-dark:     #141e2b;
  --navy-mid:      #2c3e55;
  --slate-blue:    #2c4a6e;
  --accent-blue:   #3a6491;
  --light-blue:    #e8eef5;
  --warm-ivory:    #faf8f4;
  --warm-cream:    #f4f0e8;
  --warm-border:   #e0d9cc;
  --charcoal:      #1c1c1c;
  --text-dark:     #1c1c1c;
  --text-mid:      #3a3a3a;
  --text-muted:    #5a6472;
  --slate:         #4a5568;
  --border:        #d8dde3;
  --bg-white:      #ffffff;
  --bg-light:      #f7f9fb;
  --gold:          #c9962a;
  --gold-light:    #f0d898;
  --rust:          #c0522a;
  --rust-light:    #fdf0ea;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     22px;
  --shadow-sm:     0 2px 8px rgba(28,45,64,0.07);
  --shadow-md:     0 6px 24px rgba(28,45,64,0.12);
  --shadow-lg:     0 16px 48px rgba(28,45,64,0.16);
  --max-width:     1160px;
  --transition:    0.3s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  font-size: 21px;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--slate-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-blue); text-decoration: underline; }
ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.45em; font-size: 21px; line-height: 1.75; }

/* ── Typography – Rajdhani Headings ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.22;
  letter-spacing: 0.02em;
}
h1 { font-size: 32px; }
h2 { font-size: 30px; }
h3 { font-size: 28px; }
h4 { font-size: 26px; }
h5 { font-size: 24px; }
h6 { font-size: 22px; }
p  { font-size: 21px; line-height: 1.75; margin-bottom: 1.2em; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-pad    { padding: 76px 0; }
.section-pad-lg { padding: 96px 0; }
.section-pad-sm { padding: 52px 0; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy-dark);
  color: #b8c8d8;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 9px 0;
  text-align: center;
}
.top-bar strong { color: #fff; }
.top-bar span   { margin: 0 16px; }

/* ── HEADER ── */
.site-header {
  background: var(--bg-white);
  border-bottom: 2px solid var(--light-blue);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 20px;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; fill: #fff; }
.logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
}
.logo-text span { color: var(--slate-blue); }

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 7px 13px;
  border-radius: 30px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.site-nav a:hover {
  background: var(--light-blue);
  color: var(--slate-blue);
  text-decoration: none;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--warm-cream);
  border-bottom: 1px solid var(--warm-border);
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--slate-blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 7px; color: #aab; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--slate-blue) 100%);
  color: #fff;
  padding: 90px 0 82px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Crect x='0' y='0' width='38' height='38'/%3E%3Crect x='42' y='42' width='38' height='38'/%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,150,42,0.2);
  border: 1px solid rgba(201,150,42,0.5);
  color: var(--gold-light);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: 44px;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero-intro {
  font-size: 19px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 34px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stat-num {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Kitchen visual mockup */
.hero-visual { position: relative; }
.kitchen-mockup {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.panel-row { display: flex; gap: 5px; margin-bottom: 5px; }
.panel-tile {
  flex: 1;
  height: 56px;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.panel-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
}
.t-marble  { background: linear-gradient(135deg,#d4cec8 0%,#bfb9b2 100%); }
.t-white   { background: linear-gradient(135deg,#eeeeee 0%,#d8d8d8 100%); }
.t-grey    { background: linear-gradient(135deg,#7a7a7a 0%,#555 100%); }
.t-slate   { background: linear-gradient(135deg,#4a5568 0%,#2d3748 100%); }
.t-navy    { background: linear-gradient(135deg,#2c4a6e 0%,#1e2d40 100%); }
.t-oak     { background: linear-gradient(135deg,#9a6f1a 0%,#7a5210 100%); }
.t-tile    { background: repeating-linear-gradient(90deg,#b0b0b0 0,#b0b0b0 1px,#c8c8c8 1px,#c8c8c8 40px); }
.t-pvc     { background: linear-gradient(135deg,#e8e0d0 0%,#d0c8b8 100%); }
.mockup-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  letter-spacing: 0.05em;
  margin-top: 14px;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--warm-cream);
  border-top: 3px solid var(--slate-blue);
  border-bottom: 3px solid var(--slate-blue);
  padding: 34px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.trust-icon {
  width: 50px; height: 50px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 24px; height: 24px; fill: #fff; }
.trust-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.trust-desc { font-size: 14px; color: var(--text-muted); line-height: 1.4; margin: 0; }

/* ── SECTION LABELS ── */
.section-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-blue);
  margin-bottom: 10px;
  display: block;
}
.section-divider {
  width: 58px; height: 4px;
  background: linear-gradient(90deg, var(--slate-blue), var(--gold));
  border-radius: 2px;
  margin-bottom: 28px;
}
.section-divider.centered { margin-left: auto; margin-right: auto; }
.section-intro {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 50px;
  line-height: 1.7;
}
.centered { text-align: center; }
.centered .section-intro { margin-left: auto; margin-right: auto; }

.underline-accent { display: inline-block; position: relative; }
.underline-accent::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 58px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 5px solid var(--slate-blue);
  padding: 18px 26px;
  background: var(--light-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 20px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin: 30px 0;
}

/* ── WHAT ARE SECTION ── */
.what-are-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.benefit-sidebar {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 36px;
  position: sticky;
  top: 90px;
}
.benefit-sidebar h3 { color: var(--gold-light); margin-bottom: 22px; font-size: 24px; }
.benefit-list { list-style: none; padding: 0; margin: 0; }
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.benefit-list li:last-child { border-bottom: none; }
.b-dot {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: rgba(201,150,42,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  font-size: 12px;
  color: var(--gold-light);
}

/* ── TYPES SECTION ── */
.types-section { background: var(--warm-ivory); }
.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.type-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.type-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.type-card-header {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.th-marble  { background: linear-gradient(135deg,#ddd8d2 0%,#c8c2bc 100%); }
.th-gloss   { background: linear-gradient(135deg,#e8f0f8 0%,#c0d0e0 100%); }
.th-wood    { background: linear-gradient(135deg,#8b6320 0%,#6b4a10 100%); }
.th-dark    { background: linear-gradient(135deg,#2a2a2a 0%,#111 100%); }
.th-tile    { background: repeating-linear-gradient(0deg,#aaa 0,#aaa 1px,#c8c8c8 1px,#c8c8c8 32px),repeating-linear-gradient(90deg,#aaa 0,#aaa 1px,#c8c8c8 1px,#c8c8c8 32px); }
.th-colour  { background: linear-gradient(135deg,#2c4a6e 0%,#3a6491 100%); }
.type-badge {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.25);
  padding: 4px 12px;
  border-radius: 20px;
}
.type-card-body { padding: 24px 22px; }
.type-card-body h3 { font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.type-card-body p  { font-size: 17px; margin-bottom: 12px; }
.type-tag {
  display: inline-block;
  background: var(--light-blue);
  color: var(--slate-blue);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 20px;
  margin: 3px 4px 3px 0;
  letter-spacing: 0.04em;
}

/* ── PVC SECTION ── */
.pvc-section { background: var(--bg-white); }
.pvc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.pvc-visual {
  background: var(--light-blue);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  border: 2px solid var(--border);
}
.pvc-visual h4 { font-size: 22px; color: var(--navy); margin-bottom: 18px; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.compare-table th {
  background: var(--navy);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 11px 14px;
  text-align: left;
  letter-spacing: 0.04em;
}
.compare-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.5;
}
.compare-table tr:nth-child(even) td { background: var(--bg-light); }
.compare-table tr:last-child td { border-bottom: none; }
.tick { color: #2a8a4a; font-weight: 700; }
.cross { color: #c0302a; font-weight: 700; }

/* ── WATERPROOF SECTION ── */
.waterproof-section { background: var(--navy-dark); color: #fff; }
.waterproof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.waterproof-section .section-label { color: var(--gold); }
.waterproof-section h2 { color: #fff; }
.waterproof-section p  { color: rgba(255,255,255,0.82); }
.wp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.wp-feat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px 18px;
}
.wp-feat-icon {
  width: 38px; height: 38px;
  background: rgba(201,150,42,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.wp-feat-icon svg { width: 18px; height: 18px; fill: var(--gold-light); }
.wp-feat h5 { font-size: 18px; color: #fff; margin-bottom: 6px; }
.wp-feat p  { font-size: 15px; color: rgba(255,255,255,0.7); margin: 0; }
.waterproof-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}
.waterproof-visual h4 { color: var(--gold-light); font-size: 22px; margin-bottom: 20px; }
.rating-row { margin-bottom: 18px; }
.rating-label {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 7px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}
.rating-track {
  background: rgba(255,255,255,0.1);
  border-radius: 30px;
  height: 10px;
  overflow: hidden;
}
.rating-fill {
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(90deg, var(--slate-blue), var(--gold));
}

/* ── TILE EFFECT SECTION ── */
.tile-section { background: var(--warm-ivory); }
.tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.tile-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.tile-swatch {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: flex-end;
  padding: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.tile-swatch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,rgba(0,0,0,0.08) 0,rgba(0,0,0,0.08) 1px,transparent 1px,transparent 33%),
              repeating-linear-gradient(0deg,rgba(0,0,0,0.08) 0,rgba(0,0,0,0.08) 1px,transparent 1px,transparent 33%);
}
.sw-metro    { background: linear-gradient(135deg,#e8e8e8 0%,#ccc 100%); }
.sw-marble   { background: linear-gradient(135deg,#f0ece8 0%,#d8d0c8 100%); }
.sw-brick    { background: repeating-linear-gradient(0deg,#b8704a 0,#b8704a 18px,#9a5a38 18px,#9a5a38 20px); }
.sw-herring  { background: repeating-linear-gradient(45deg,#8090a0 0,#8090a0 10px,#6a7a8a 10px,#6a7a8a 14px); }
.sw-concrete { background: linear-gradient(135deg,#9a9a9a 0%,#7a7a7a 100%); }
.sw-penny    { background: radial-gradient(ellipse at 50% 50%,#c8c0b8 0%,#a8a098 60%,#888078 100%); }
.tile-swatch-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,0.45);
  padding: 3px 8px;
  border-radius: 3px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.04em;
}

/* ── DESIGN IDEAS ── */
.ideas-section { background: var(--bg-white); }
.ideas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 52px;
}
.idea-card {
  background: var(--warm-ivory);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border-left: 5px solid var(--slate-blue);
  transition: box-shadow var(--transition);
}
.idea-card:hover { box-shadow: var(--shadow-md); }
.idea-card h4 { font-size: 24px; color: var(--navy); margin-bottom: 12px; }
.idea-card p  { font-size: 18px; margin: 0; }
.internal-link-box {
  background: var(--light-blue);
  border: 2px solid var(--slate-blue);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.ilb-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--slate-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.ilb-icon svg { width: 24px; height: 24px; fill: #fff; }
.ilb-content h4 { font-size: 22px; color: var(--navy); margin-bottom: 6px; }
.ilb-content p  { font-size: 17px; margin: 0; }
.ilb-content a  { color: var(--slate-blue); font-weight: 700; text-decoration: underline; }

/* ── HOW TO FIT ── */
.fit-section { background: var(--warm-ivory); }
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 64px;
  align-items: start;
}
.steps-list { list-style: none; padding: 0; margin: 0; }
.steps-list li {
  display: flex;
  gap: 22px;
  margin-bottom: 34px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: var(--navy);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.step-content h4 { font-size: 22px; color: var(--navy); margin-bottom: 7px; }
.step-content p  { font-size: 18px; margin: 0; }
.tools-sidebar {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: sticky;
  top: 90px;
}
.tools-sidebar h4 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-blue);
}
.tools-list { list-style: none; padding: 0; margin: 0 0 22px; }
.tools-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
  color: var(--text-mid);
}
.tools-list li:last-child { border-bottom: none; }
.tick-dot {
  width: 20px; height: 20px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: var(--slate-blue);
  font-weight: 700;
}
.info-box {
  background: var(--rust-light);
  border: 1px solid #e8c0aa;
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 15px;
  color: #7a3010;
  line-height: 1.55;
}
.info-box strong { color: #5a2008; }

/* ── MAINTENANCE ── */
.maint-section { background: var(--bg-white); }
.maint-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.maint-card {
  background: var(--warm-ivory);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  border-top: 4px solid var(--slate-blue);
}
.maint-card h4 { font-size: 22px; color: var(--navy); margin-bottom: 12px; }
.maint-card p  { font-size: 17px; margin: 0; }

/* ── WORTH IT ── */
.worth-section { background: var(--slate-blue); color: #fff; }
.worth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.worth-section .section-label { color: var(--gold-light); }
.worth-section h2 { color: #fff; }
.worth-section p  { color: rgba(255,255,255,0.84); }
.worth-list { list-style: none; padding: 0; margin: 24px 0 0; }
.worth-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 19px;
  color: rgba(255,255,255,0.88);
}
.worth-list li:last-child { border-bottom: none; }
.worth-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: rgba(201,150,42,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 3px;
}
.worth-icon svg { width: 15px; height: 15px; fill: var(--gold-light); }
.stats-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 36px;
}
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stat-row:last-child { border-bottom: none; }
.stat-label { font-size: 17px; color: rgba(255,255,255,0.7); }
.stat-val {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-light);
}

/* ── FAQ ── */
.faq-section { background: var(--warm-ivory); }
.faq-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 64px;
  align-items: start;
}
.faq-side h3 { font-size: 24px; color: var(--navy); margin-bottom: 14px; }
.faq-side p  { font-size: 17px; }
.faq-list { list-style: none; padding: 0; margin: 0; }
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 22px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--light-blue); }
.faq-chevron {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 2px solid var(--slate-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--slate-blue);
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.55);
  padding: 52px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.footer-col p, .footer-col li { font-size: 15px; line-height: 1.65; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 15px; }
.footer-col ul li a:hover { color: #fff; text-decoration: none; }
.footer-logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: block;
}
.footer-logo-text span { color: var(--gold-light); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 0 0 24px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 10px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid       { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual     { display: none; }
  .what-are-grid   { grid-template-columns: 1fr; gap: 40px; }
  .benefit-sidebar { position: static; }
  .types-grid      { grid-template-columns: repeat(2, 1fr); }
  .pvc-grid        { grid-template-columns: 1fr; gap: 40px; }
  .waterproof-grid { grid-template-columns: 1fr; gap: 40px; }
  .tile-grid       { grid-template-columns: 1fr; gap: 40px; }
  .ideas-grid      { grid-template-columns: 1fr; }
  .fit-grid        { grid-template-columns: 1fr; gap: 40px; }
  .tools-sidebar   { position: static; }
  .maint-grid      { grid-template-columns: 1fr; }
  .worth-grid      { grid-template-columns: 1fr; gap: 40px; }
  .faq-layout      { grid-template-columns: 1fr; gap: 36px; }
  .trust-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .wp-features     { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section-pad  { padding: 54px 0; }
  h1  { font-size: 28px; }
  h2  { font-size: 26px; }
  h3  { font-size: 24px; }
  h4  { font-size: 22px; }
  h5  { font-size: 20px; }
  body, p, li { font-size: 18px; }
  .hero { padding: 60px 0; }
  .hero h1 { font-size: 30px; }
  .hero-intro { font-size: 17px; }
  .hero-stats { gap: 22px; }
  .types-grid  { grid-template-columns: 1fr; }
  .site-nav    { display: none; }
  .site-nav.open { display: flex; flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-toggle  { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .trust-grid  { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .internal-link-box { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .tile-showcase { grid-template-columns: repeat(3, 1fr); }
  .wp-features   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1   { font-size: 26px; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 14px; }
  .wp-features { grid-template-columns: 1fr; }
}
