/* =========================================================
   TPC 3M CAR CARE – service-premium.css
   FINAL PRODUCTION SAFE (Refactor + De-duplicate)
   - Keeps legacy structure
   - Removes conflicting duplicates
   ========================================================= */

/* ================= BASE ================= */

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* Global safe image */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ================= HEADER (STABLE 2026) ================= */

:root{
  --hdr-h: 72px;
  --ease: cubic-bezier(.2,.8,.2,1);
  --blur: 14px;

  /* theme tokens (ไม่พึ่ง inherit) */
  --hdr-bg: transparent;
  --hdr-bd: transparent;
  --hdr-fg: rgba(255,255,255,.92);

  --hdr-bg-solid: rgba(255,255,255,.72);
  --hdr-bd-solid: rgba(0,0,0,.06);
  --hdr-fg-solid: rgba(15,23,42,.92);
}

.hdr{
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--hdr-h);
  z-index: 1000;

  background: var(--hdr-bg);
  border-bottom: 1px solid var(--hdr-bd);

  transform: translateY(0);
  transition: transform 220ms var(--ease), background-color 220ms var(--ease), border-color 220ms var(--ease);

  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
}

.hdr__inner{
  max-width: 1200px;
  margin: auto;
  height: 100%;
  padding: 0 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.hdr__brand{
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  color: var(--hdr-fg);
  display: inline-flex;
  gap: 10px;
  align-items: baseline;
}
.hdr__brandMark{ font-weight: 800; }
.hdr__brandName{ font-weight: 650; letter-spacing: .2px; }

.hdr__logo{ height: 30px; width: auto; display: block; }
.hdr__logo--light{ display: none; }
.hdr[data-theme="solid"] .hdr__logo--dark{ display: none; }
.hdr[data-theme="solid"] .hdr__logo--light{ display: block; }

.hdr__nav{
  display: none;
  gap: 36px;
  align-items: center;
}

.hdr__link{
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 160ms var(--ease);
  color: var(--hdr-fg);
  opacity: .92;
}
.hdr__link:hover{ opacity: 1; }

@media (min-width: 960px){
  .hdr__nav{ display: flex; }
}

/* Theme: transparent (บนสุด/hero) */
.hdr[data-theme="transparent"]{
  --hdr-bg: transparent;
  --hdr-bd: transparent;
  --hdr-fg: rgba(255,255,255,.92);
}

/* Theme: solid glass (scroll ลง / menu เปิด) */
.hdr[data-theme="solid"]{
  --hdr-bg: var(--hdr-bg-solid);
  --hdr-bd: var(--hdr-bd-solid);
  --hdr-fg: var(--hdr-fg-solid);

  -webkit-backdrop-filter: blur(var(--blur));
  backdrop-filter: blur(var(--blur));
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

/* Visibility: hide on scroll down */
.hdr[data-visibility="hidden"]{
  transform: translateY(calc(-1 * var(--hdr-h)));
}

/* เมื่อ menu เปิด: บังคับ header ให้โชว์เสมอ */
html[data-menu="open"] .hdr{
  transform: translateY(0) !important;
}

/* Burger */
.hdr__burger{
  width: 44px;
  height: 44px;
  border-radius: 12px;

  border: 1px solid rgba(255,255,255,.20);
  background: rgba(0,0,0,.08);
  color: var(--hdr-fg);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (min-width: 960px){
  .hdr__burger{ display: none; }
}

.hdr[data-theme="solid"] .hdr__burger{
  border-color: rgba(15,23,42,.12);
  background: rgba(255,255,255,.70);
}

.sr-only{
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link{
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 1000;
  background: #111;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: top .2s ease;
}

.skip-link:focus{
  top: 12px;
}

.burger{
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  display: block;
}
.burger::before,
.burger::after{
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}
.burger::before{ top: -6px; }
.burger::after{ top: 6px; }

/* ================= MOBILE MENU (DECOUPLED) ================= */

.overlay{
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(2,6,23,.55);
  opacity: 0;
  transition: opacity 220ms var(--ease);
}

.mnav{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(380px, 88vw);
  z-index: 1200;

  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(var(--blur));
  backdrop-filter: blur(var(--blur));

  border-left: 1px solid rgba(15,23,42,.10);
  transform: translateX(100%);
  transition: transform 260ms var(--ease);

  display: flex;
  flex-direction: column;
}

.mnav__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  border-bottom: 1px solid rgba(15,23,42,.10);
}

.mnav__title{
  font-weight: 650;
  color: rgba(15,23,42,.92);
}

.mnav__close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.70);
  cursor: pointer;
}

.mnav__list{
  padding: 10px 10px 18px 10px;
  display: grid;
  gap: 6px;
}

.mnav__link{
  padding: 14px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(15,23,42,.92);
  font-weight: 550;
  background: rgba(2,6,23,.04);
}

.mnav__link:active{
  transform: translateY(1px);
}

/* open state */
html[data-menu="open"]{ overflow: hidden; }
html[data-menu="open"] .overlay{ opacity: 1; }
html[data-menu="open"] .mnav{ transform: translateX(0); }

/* reduce motion */
@media (prefers-reduced-motion: reduce){
  .hdr, .overlay, .mnav{ transition: none !important; }
}

/* ================= BREADCRUMB ================= */

.breadcrumb {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 20px;
  font-size: 14px;
  color: #777;
}
.breadcrumb a {
  text-decoration: none;
  color: #777;
  transition: 0.3s;
}
.breadcrumb a:hover { color: #111; }
.breadcrumb span { margin: 0 8px; }

/* ================= HERO ================= */

.hero {
  position: relative;
  height: 100svh;
  min-height: 650px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0a1018;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: heroScale 18s ease-in-out infinite alternate;
  z-index: 0;
}

/* Hero images set per-page via body id, path relative to this stylesheet
   (not the page) so it resolves correctly whether the site is served from
   a domain root or a subfolder. */
#page-car-wash .hero::before { background-image: url('../images/carwash-hero.webp'); }
#page-paint-correction .hero::before { background-image: url('../images/correction-hero.webp'); }
#page-wrap-film .hero::before { background-image: url('../images/wrap-hero.webp'); }

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.75)
  );
  z-index: 1;
}

@keyframes heroScale {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 20px;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 24px;
}

.hero p {
  font-size: clamp(18px, 2vw, 22px);
  opacity: 0.95;
  color: #fff;
}

/* Hero mobile override safe */
@media (max-width: 768px){
  .hero { height: 85svh; min-height: 520px; }
}

/* ================= SECTIONS ================= */

.section { padding: 110px 20px; }
.section.alt { background: #f6f6f6; }

.container {
  max-width: 1100px;
  margin: auto;
}
.container.narrow { max-width: 760px; }

h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 28px;
}

.section p {
  font-size: 18px;
  margin-bottom: 18px;
  color: #333;
}

/* ================= SPLIT (legacy support) ================= */

.split {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.split img {
  width: 100%;
  border-radius: 8px;
}
@media(min-width:900px){
  .split {
    flex-direction: row;
    gap: 80px;
    align-items: center;
  }
}

/* New split-layout (used in some pages) */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-layout .image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
}
@media (max-width: 1024px){
  .split-layout { gap: 50px; }
}
@media (max-width: 768px){
  .split-layout { grid-template-columns: 1fr; }
  .split-layout .image img { aspect-ratio: 4 / 5; }
}

/* ================= SPEC GRID (legacy) ================= */

.spec-grid {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}
@media(min-width:768px){
  .spec-grid { grid-template-columns: repeat(2,1fr); }
}
.spec-grid strong {
  font-size: 15px;
  color: #666;
  display: block;
  margin-bottom: 6px;
}
.spec-grid span {
  font-size: 22px;
  font-weight: 600;
}

/* ================= BUTTON ================= */

.btn-primary {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 36px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}
.btn-primary:hover {
  background: #222;
  transform: translateY(-2px);
}

/* ================= CTA ================= */

.final-cta {
  text-align: center;
  padding: 130px 20px;
}

/* ================= SCROLL REVEAL ================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(.25,.8,.25,1);
  animation: reveal-fallback 0.3s 2.5s forwards;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes reveal-fallback {
  to { opacity: 1; transform: translateY(0); }
}

/* ================= FOOTER (legacy + luxury) ================= */

/* Legacy footer support */
.site-footer {
  background: #111;
  color: #ccc;
  padding: 80px 20px;
  margin-top: 120px;
}
.site-footer .footer-inner {
  max-width: 1100px;
  margin: auto;
}
.site-footer .footer-inner h3 { color: #fff; margin-bottom: 20px; }
.site-footer .footer-inner p { font-size: 15px; color: #bbb; }
.site-footer .footer-bottom { margin-top: 40px; font-size: 14px; color: #777; }

/* Luxury footer */
.tpc-footer{
  background:#0f0f0f;
  color:#cfcfcf;
  padding:120px 20px 40px;
}
.tpc-footer .footer-inner{
  max-width:1200px;
  margin:auto;
  display:grid;
  gap:80px;
}
@media(min-width:960px){
  .tpc-footer .footer-inner{
    grid-template-columns:1.5fr 1fr 1fr;
  }
}
.footer-logo{
  font-size:28px;
  font-weight:600;
  color:#fff;
}
.footer-tagline{
  font-size:14px;
  opacity:.6;
  margin-bottom:30px;
}
.footer-col h3{
  font-size:14px;
  text-transform:uppercase;
  opacity:.7;
  color:#fff;
}
.footer-col ul{ list-style:none; padding:0; }
.footer-col li{ margin-bottom:14px; }
.footer-col a{ color:#bdbdbd; text-decoration:none; }
.footer-col a:hover{ color:#fff; }
.footer-bottom{
  margin-top:60px;
  text-align:center;
  font-size:13px;
  opacity:.5;
}
.highlight{ color:#fff; font-weight:600; }

/* ================= LUXURY CONTACT BAR CLEAN ================= */

.lux-contact-bar{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  height:72px;
  z-index:1500;
  display:flex;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(16px);
  border-top:1px solid rgba(0,0,0,.08);
}
.lux-btn{
  flex:1;
  text-align:center;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  padding:20px 0;
  color:#111;
}
.lux-btn.primary{ font-weight:700; }
@media(min-width:1024px){
  .lux-contact-bar{ display:none; }
}
/* reserve space correctly */
@media(max-width:1023px){
  body{ padding-bottom:72px; }
}

/* ================= MOBILE TUNING ================= */

@media(max-width:600px){
  .section { padding: 90px 20px; }
}

/* ================= PREMIUM TECH TABLE (TABLE ONLY) ================= */

.spec-table{
  width:100%;
  min-width:max-content;
  border-collapse:collapse;
  margin:40px 0;
  font-size:16px;
}
.spec-table th,
.spec-table td{
  padding:14px 10px;
  border-bottom:1px solid rgba(0,0,0,0.08);
  text-align:left;
}
.spec-table th{
  font-weight:600;
  color:#111;
}
.spec-table td{ color:#333; }

/* Price table (extends spec-table) */
.table-scroll{
  width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}
.table-scroll .price-table{
  min-width:620px;
}
.price-table thead th{
  background:#f8fafc;
}
.price-table th.price-col,
.price-table td.price-col{
  text-align:right;
  font-variant-numeric:tabular-nums;
}
.price-table td.price-col{
  font-weight:600;
  color:#111;
}
.price-table td.price-code{
  font-weight:600;
  color:#555;
  white-space:nowrap;
}
.price-legend{
  margin-top:16px;
  font-size:14px;
  color:#666;
  line-height:1.7;
}

/* =========================================================
   IMAGE SYSTEM (GLOBAL) – FINAL
   - No duplicates
   ========================================================= */

/* Cinematic Break */
.cinematic-break{
  width:100%;
  margin:5rem 0;
  overflow:hidden;
}
.cinematic-break img{
  width:100%;
  aspect-ratio:21 / 9;
  object-fit:cover;
}
.cinematic-break.subtle img{
  aspect-ratio:2 / 1;
}

/* Product images (simple pair) */
.product-image {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.product-image img {
  max-width: 280px;
  width: 100%;
  height: auto;
  opacity: 0.95;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

/* Product grid (generic) */
.product-grid {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}
@media (min-width: 768px){
  .product-grid{
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}
.product-grid img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:contain;
}

/* Product cards (used in other pages) */
.product-card .card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 20px;
}
.product-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card.featured { transform: scale(1.03); }
@media (max-width: 768px){
  .product-card.featured { transform: none; }
}

/* Authority image layout (used in other pages) */
.authority-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.authority-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
}
.authority-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px){
  .authority-layout { grid-template-columns: 1fr; }
}

/* Hover (subtle premium) */
.product-card .card-image img,
.authority-image img {
  transition: transform 0.6s ease;
}
.product-card:hover .card-image img,
.authority-image:hover img {
  transform: scale(1.04);
}

/* Craft / install image (Ceramic etc.) */
.craft-image{
  margin-top:3rem;
  display:flex;
  justify-content:center;
}
.craft-image img{
  width:100%;
  max-width:700px;
  aspect-ratio:4 / 5;
  object-fit:cover;
  border-radius:12px;
}

/* Default figure images inside sections (service log etc.) */
.section figure img{
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
  border-radius:12px;
}

/* ================= INTENSITY TABLE (used in film pages) ================= */

.intensity-table {
  margin-top: 2rem;
  border-top: 1px solid #e5e5e5;
}
.intensity-table .row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 0.95rem;
}
.intensity-table .header { font-weight: 600; }
.intensity-section .note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #666;
}

/* ================= COMPARE GRID (used in some pages) ================= */

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.compare-item img {
  width: 100%;
  border-radius: 6px;
}
.compare-item p {
  text-align: center;
  margin-top: 10px;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .compare-grid { grid-template-columns: 1fr; }
}

/* ================= CONTEXT CARDS ================= */

.context-cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
.context-card {
  display: block;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: all .25s ease;
}
.context-card:hover {
  border-color: rgba(0,0,0,0.18);
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .context-cards { grid-template-columns: repeat(3, 1fr); }
}

/* ================= MICRO NOTE ================= */

.micro-note {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 1rem;
}/* ================= MOBILE SAFE PATCH ================= */

@media (max-width: 768px){

  /* spacing */
  .section {
    padding: 70px 18px;
  }

  .final-cta {
    padding: 100px 18px;
  }

  /* hero */
  .hero {
    height: 75svh;
    min-height: 500px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }

  /* cinematic */
  .cinematic-break {
    margin: 3.5rem 0;
  }

  .cinematic-break img {
    aspect-ratio: 16 / 9;
  }

  .cinematic-break.subtle img {
    aspect-ratio: 3 / 2;
  }

  /* table */
  .spec-table th,
  .spec-table td {
    padding: 10px 8px;
  }

}
/* ================= IMPACT HOMEPAGE ================= */

.hero-light {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.impact-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: 1px;
}

.impact-dark {
  background: #0f1115;
  color: #fff;
  padding: 120px 20px;
}

.full-height {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
  font-size: 18px;
}

.flow-large span {
  font-size: 32px;
  font-weight: 600;
}
/* ===== HOMEPAGE SERVICE GRID ===== */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  transition: .3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,.08);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 18px;
  margin: 20px 20px 10px;
}

.service-card p {
  font-size: 14px;
  margin: 0 20px 25px;
  color: #555;
}

/* ===== SYSTEM GRID ===== */

.system-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.system-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  transition: .3s ease;
}

.system-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,.08);
}

.system-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.system-icon {  
  font-size: 20px;
  margin: 20px 20px 10px;
}

.system-card h3 {
  font-size: 18px;
  margin: 0 20px 10px;
}

.system-card p {
  font-size: 14px;
  margin: 0 20px 25px;
  color: #555;
}
/* ================= SERVICE INDEX ================= */

.svc-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.svc-center {
  text-align: center;
}

.svc-hero {
  padding: 140px 0;
}

.svc-title {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 20px;
}

.svc-sub {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  max-width: 720px;
  margin: 0 auto 40px;
}

.svc-section {
  padding: 120px 0;
}

.svc-soft {
  background: #f7f7f7;
}

.svc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.svc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.svc-card {
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease;
}

.svc-card:hover {
  transform: scale(1.03);
}

.svc-card-img {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

.svc-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.svc-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.svc-card p {
  font-size: 16px;
  color: #666;
}

.svc-card-wide {
  max-width: 700px;
  margin: 0 auto;
}

.svc-system {
  background: #fafafa;
}

.svc-flow {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
  color: #444;
}

.svc-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 16px;
  text-decoration: none;
}

.svc-btn-primary {
  background: #111;
  color: #fff;
}

.svc-btn-ghost {
  border: 1px solid #111;
  color: #111;
  margin-left: 10px;
}

.svc-cta-section {
  background: #111;
  color: #fff;
  padding: 120px 0;
}

.svc-cta-section .svc-btn-primary {
  background: #fff;
  color: #111;
}

@media (max-width: 768px) {
  .svc-grid-3,
  .svc-grid-2 {
    grid-template-columns: 1fr;
  }

  .svc-title {
    font-size: 32px;
  }

  .svc-section {
    padding: 80px 0;
  }
}
