/* Copyright 2026 HomeOne Interiors. All rights reserved. */

.sd-hero-tnagar .ph-bg-img { background-image: url('/img/studios/tnagar-studio-hero.webp'); }
.sd-hero-adyar .ph-bg-img { background-image: url('/img/studios/adyar-studio-hero.webp'); }
.sd-hero-tambaram .ph-bg-img { background-image: url('/img/studios/tambaram-studio-hero.webp'); }

.ph-hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: var(--nav-h);
}
.ph-bg { position: absolute; inset: 0; z-index: 0; }
.ph-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  transform: scale(1.07);
  animation: phDrift 24s ease-in-out infinite alternate;
}
@keyframes phDrift {
  from { transform: scale(1.07) translate(0, 0); }
  to   { transform: scale(1.07) translate(-2.5%, -1.2%); }
}
.ph-overlay-1 {
  position: absolute; inset: 0;
  background: linear-gradient(108deg,
    rgba(6,13,26,.97) 0%,
    rgba(6,13,26,.88) 38%,
    rgba(6,13,26,.55) 68%,
    rgba(6,13,26,.8) 100%
  );
}
.ph-overlay-2 {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,13,26,1) 0%, transparent 45%);
}
.ph-overlay-3 {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 60% at 72% 38%, rgba(26,107,218,.14) 0%, transparent 60%);
  animation: phGlowPulse 7s ease-in-out infinite alternate;
}
@keyframes phGlowPulse { from { opacity: .5; } to { opacity: 1; } }
.ph-grain {
  position: absolute; inset: -50%; width: 200%; height: 200%; z-index: 2; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .025; animation: phGrain 8s steps(10) infinite;
}
@keyframes phGrain {
  0%, 100% { transform: translate(0, 0); } 10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); } 30% { transform: translate(7%, -25%); }
  40% { transform: translate(-5%, 25%); } 50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0); }   70% { transform: translate(0, 15%); }
  80% { transform: translate(3%, 35%); }  90% { transform: translate(-10%, 10%); }
}
.ph-beam {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(112deg, transparent 30%, rgba(26,107,218,.055) 50%, transparent 70%);
  animation: phBeamMove 12s ease-in-out infinite alternate;
}
@keyframes phBeamMove {
  from { transform: skewX(-6deg) translateX(-10%); opacity: .3; }
  to   { transform: skewX(-6deg) translateX(10%); opacity: 1; }
}
.ph-scan {
  position: absolute; left: 0; right: 0; height: 1px; z-index: 3; pointer-events: none;
  background: linear-gradient(to right, transparent 0%, rgba(26,107,218,.35) 25%, rgba(26,107,218,.65) 50%, rgba(26,107,218,.35) 75%, transparent 100%);
  animation: phScanMove 8s linear infinite;
}
@keyframes phScanMove {
  0%   { top: 12%; opacity: 0; } 6%   { opacity: 1; }
  94%  { opacity: 1; }           100% { top: 88%; opacity: 0; }
}
.ph-ghost-yr {
  position: absolute; right: -4%; bottom: 8%; z-index: 1; pointer-events: none; user-select: none;
  font-family: var(--fh); font-size: clamp(10rem, 22vw, 20rem); font-weight: 700;
  line-height: 1; letter-spacing: -.04em; color: var(--blue); opacity: .045;
  animation: phGhostDrift 20s ease-in-out infinite alternate;
}
@keyframes phGhostDrift {
  from { transform: translate(0, 0) rotate(-1.5deg); }
  to   { transform: translate(-2%, -3%) rotate(-.5deg); }
}
.ph-frame { position: absolute; inset: 24px; z-index: 3; pointer-events: none; }
.ph-corner {
  position: absolute; width: 40px; height: 40px;
  border-color: rgba(26,107,218,.45); border-style: solid;
  transition: width .6s var(--ease), height .6s var(--ease);
}
.ph-hero:hover .ph-corner { width: 56px; height: 56px; }
.ph-corner-tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.ph-corner-tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.ph-corner-bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.ph-corner-br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }
.ph-content {
  position: relative; z-index: 5; padding: 80px 0 180px; max-width: 820px;
}
.ph-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: .36em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 48px;
  opacity: 0; animation: phFadeIn .8s var(--ease) .2s forwards;
}
@keyframes phFadeIn { to { opacity: 1; } }
.ph-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0;
  box-shadow: 0 0 12px rgba(26,107,218,.9), 0 0 24px rgba(26,107,218,.5);
  animation: phDotPulse 2.4s ease-in-out infinite;
}
@keyframes phDotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(26,107,218,.7); }
  50%       { transform: scale(1.6); box-shadow: 0 0 22px rgba(26,107,218,1), 0 0 40px rgba(26,107,218,.4); }
}
.ph-h1 {
  font-size: clamp(3.2rem, 8vw, 8rem); font-weight: 700;
  line-height: .94; letter-spacing: -.04em; margin: 0 0 36px;
}
.ph-h1-row { display: block; overflow: hidden; }
.ph-h1-inner {
  display: block; transform: translateY(115%);
  animation: phRowUp .9s cubic-bezier(.22,.61,.36,1) forwards;
}
.ph-h1-row:nth-child(2) .ph-h1-inner { animation-delay: .11s; }
@keyframes phRowUp { to { transform: translateY(0); } }
.ph-h1-blue { color: var(--blue); }
.ph-desc {
  font-size: 17px; color: var(--mute); line-height: 1.8; max-width: 520px; margin-bottom: 48px;
}
.ph-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.ph-ctas .btn-outline {
  border-color: rgba(255,255,255,.45); color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.08); backdrop-filter: blur(10px);
}
.ph-ctas .btn-outline:hover {
  border-color: rgba(255,255,255,.85); color: var(--white); background: rgba(255,255,255,.16);
}
.ph-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  border-top: 1px solid rgba(26,107,218,.14);
}
.ph-bottom-inner { display: flex; align-items: stretch; }
.ph-bottom-stats {
  display: flex; width: 100%; background: rgba(6,13,26,.55); backdrop-filter: blur(14px);
}
.ph-bstat {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 18px 12px; border-right: 1px solid rgba(26,107,218,.1); text-align: center;
}
.ph-bstat:last-child { border-right: none; }
.ph-bstat strong {
  font-family: var(--fh); font-size: 1.35rem; font-weight: 700; color: var(--white); line-height: 1;
}
.ph-bstat span {
  font-size: 9.5px; color: var(--mute); letter-spacing: .1em; text-transform: uppercase; margin-top: 4px;
}
.ph-scroll-cue {
  position: absolute; bottom: 90px; right: 44px; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.ph-scroll-line {
  width: 1px; height: 72px;
  background: linear-gradient(to bottom, rgba(26,107,218,.9), transparent);
  animation: phScrollPulse 2.8s ease-in-out infinite;
}
@keyframes phScrollPulse {
  0%, 100% { transform: scaleY(.2); transform-origin: top; opacity: .3; }
  50%       { transform: scaleY(1); transform-origin: top; opacity: 1; }
}
.ph-scroll-label {
  font-size: 9px; font-weight: 700; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(26,107,218,.55); writing-mode: vertical-rl;
}

.ct-form-card {
  background: var(--bg2); border: 1px solid var(--line);
  padding: 48px 44px;
  position: relative; overflow: hidden;
  transition: box-shadow .4s var(--ease);
  transform-style: preserve-3d; will-change: transform;
}
.ct-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent 0%, var(--blue) 50%, transparent 100%);
  opacity: .55;
}
.ct-form-card::after {
  content: ''; pointer-events: none; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(26,107,218,.065) 0%, transparent 60%);
}
.ct-form-card:hover { box-shadow: 0 24px 64px rgba(0,0,0,.45), 0 0 0 1px rgba(26,107,218,.22); }
.ct-form-hd { margin-bottom: 32px; }
.ct-form-hd h3 {
  font-family: var(--fh); font-size: 1.45rem; font-weight: 700;
  color: var(--white); margin: 0 0 8px; letter-spacing: -.02em;
}
.ct-form-hd p { font-size: 14px; color: var(--mute); margin: 0; line-height: 1.55; }
.ct-form { display: flex; flex-direction: column; gap: 18px; }
.ct-form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ct-field { display: flex; flex-direction: column; gap: 7px; }
.ct-field label {
  font-size: 10px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}
.ct-field-opt {
  font-size: 9px; font-weight: 400; letter-spacing: .08em;
  color: rgba(255,255,255,.22); text-transform: none;
}
.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%; box-sizing: border-box;
  background: rgba(6,13,26,.9); border: 1px solid rgba(26,107,218,.2); border-radius: 4px;
  padding: 13px 15px; font-family: var(--fb); font-size: 14px; color: var(--white);
  outline: none;
  transition: border-color .3s, box-shadow .3s, background .3s;
  -webkit-appearance: none; appearance: none;
}
.ct-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M5 6L0 0h10z' fill='%231a6bda' opacity='.7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
  padding-right: 36px; cursor: pointer;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: rgba(255,255,255,.2); }
.ct-field select option { background: var(--bg2); color: var(--white); }
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: rgba(26,107,218,.7); background: rgba(6,13,26,1);
  box-shadow: 0 0 0 3px rgba(26,107,218,.14), 0 0 16px rgba(26,107,218,.06);
}
.ct-form-submit { width: 100%; margin-top: 6px; justify-content: center; gap: 10px; font-size: 14px; }
.ct-form-note { font-size: 11px; color: rgba(255,255,255,.26); text-align: center; margin: 2px 0 0; }
.ct-form .field-validation-valid { display: none; }
.ct-form .field-validation-error {
  display: block; font-size: 11px; color: #ff5f5f; margin-top: 5px; line-height: 1.4;
}
.cons-field-err { display: block; font-size: 11px; color: #ff5f5f; margin-top: 4px; }
.ct-field input.cons-input-err,
.ct-field select.cons-input-err {
  border-color: rgba(255,85,85,.65);
  box-shadow: 0 0 0 3px rgba(255,85,85,.12);
}

.sd-faq .faq-item { border-top: 1px solid var(--line); transition: border-color .3s; }
.sd-faq .faq-item:last-child { border-bottom: 1px solid var(--line); }
.sd-faq .faq-item.open { border-top-color: rgba(26,107,218,.38); }
.sd-faq .faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 0; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--fh); font-size: 1.02rem; font-weight: 600;
  color: var(--white); line-height: 1.4;
  transition: color .2s;
}
.sd-faq .faq-q:hover { color: var(--bl); }
.sd-faq .faq-item.open .faq-q { color: var(--bl); }
.sd-faq .faq-icon {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: rgba(26,107,218,.08); border: 1px solid rgba(26,107,218,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 11px;
  transition: background .3s, transform .3s;
}
.sd-faq .faq-item.open .faq-icon { background: rgba(26,107,218,.14); transform: rotate(45deg); }
.sd-faq .faq-a { overflow: hidden; max-height: 0; transition: max-height .45s cubic-bezier(.25,.46,.45,.94); }
.sd-faq .faq-item.open .faq-a { max-height: 500px; }
.sd-faq .faq-a-inner { padding-bottom: 22px; font-size: 14px; color: var(--mute); line-height: 1.85; }
.sd-faq .faq-a-inner a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.sd-faq .faq-a-inner a:hover { color: var(--bl); }

.sd-info {
  padding: 80px 0 60px;
  background: var(--bg);
}

.sd-info-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}

.sd-info-left {}

.sd-info-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 600 11px/1 var(--fh);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
}

.sd-info-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--glow);
  display: inline-block;
}

.sd-info-title {
  font: 700 2.6rem/1.12 var(--fh);
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 18px;
}

.sd-info-title em {
  color: var(--blue);
  font-style: normal;
}

.sd-info-desc {
  font: 400 1.05rem/1.72 var(--fb);
  color: var(--mute);
  margin-bottom: 36px;
  max-width: 520px;
}

.sd-info-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.sd-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font: 400 1rem/1.5 var(--fb);
  color: var(--white);
}

.sd-info-row i {
  color: var(--blue);
  font-size: .95rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
}

.sd-info-row span {
  color: var(--mute);
}

.sd-info-row a {
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}

.sd-info-row a:hover { color: var(--blue); }

.sd-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,107,218,.12);
  border: 1px solid rgba(26,107,218,.28);
  color: var(--blue);
  font: 600 11px/1 var(--fh);
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 28px;
}

.sd-info-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sd-info-right {
  position: relative;
}

.sd-info-card {
  background: var(--bg3);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  padding: 40px 36px;
  transform-style: preserve-3d;
}

.sd-info-card-label {
  font: 600 10px/1 var(--fh);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 24px;
}

.sd-info-stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.sd-info-stat-num {
  font: 700 3.6rem/1 var(--fh);
  color: var(--white);
  letter-spacing: -.03em;
}

.sd-info-stat-unit {
  font: 600 1.1rem/1 var(--fh);
  color: var(--blue);
}

.sd-info-stat-label {
  font: 400 .92rem/1 var(--fb);
  color: var(--mute);
  margin-bottom: 32px;
  display: block;
}

.sd-info-card-divider {
  height: 1px;
  background: var(--line);
  margin: 28px 0;
}

.sd-info-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sd-info-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font: 400 .95rem/1.5 var(--fb);
  color: var(--mute);
}

.sd-info-card-list li i {
  color: var(--blue);
  font-size: .85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.sd-expect {
  padding: 100px 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.sd-expect::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(26,107,218,.06) 0%, transparent 70%);
  pointer-events: none;
}

.sd-expect-hd {
  text-align: center;
  margin-bottom: 72px;
}

.sd-expect-hd .eyebrow { margin-bottom: 14px; }

.sd-expect-hd h2 {
  font: 700 2.4rem/1.18 var(--fh);
  color: var(--white);
  letter-spacing: -.01em;
}

.sd-expect-hd h2 em {
  color: var(--blue);
  font-style: normal;
}

.sd-expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.sd-expect-item {
  background: var(--bg3);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.sd-expect-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,107,218,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}

.sd-expect-item:hover { background: rgba(26,107,218,.06); }
.sd-expect-item:hover::before { opacity: 1; }

.sd-expect-num {
  font: 700 5rem/1 var(--fh);
  color: rgba(26,107,218,.12);
  letter-spacing: -.04em;
  display: block;
  margin-bottom: 28px;
  transition: color .3s;
}

.sd-expect-item:hover .sd-expect-num { color: rgba(26,107,218,.22); }

.sd-expect-icon {
  width: 52px;
  height: 52px;
  background: rgba(26,107,218,.1);
  border: 1px solid rgba(26,107,218,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background .3s, box-shadow .3s;
}

.sd-expect-item:hover .sd-expect-icon {
  background: rgba(26,107,218,.18);
  box-shadow: 0 0 24px rgba(26,107,218,.18);
}

.sd-expect-icon i {
  color: var(--blue);
  font-size: 1.3rem;
}

.sd-expect-title {
  font: 600 1.2rem/1.3 var(--fh);
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

.sd-expect-desc {
  font: 400 .95rem/1.7 var(--fb);
  color: var(--mute);
}

.sd-highlights {
  padding: 100px 0;
  background: var(--bg);
}

.sd-highlights-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sd-highlights-content {}

.sd-highlights-content .eyebrow { margin-bottom: 16px; }

.sd-highlights-content h2 {
  font: 700 2.3rem/1.2 var(--fh);
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 18px;
}

.sd-highlights-content h2 em {
  color: var(--blue);
  font-style: normal;
}

.sd-highlights-content p {
  font: 400 1.02rem/1.72 var(--fb);
  color: var(--mute);
  margin-bottom: 40px;
}

.sd-hl-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sd-hl-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.sd-hl-item:first-child { border-top: 1px solid var(--line); }

.sd-hl-icon {
  width: 48px;
  height: 48px;
  background: rgba(26,107,218,.08);
  border: 1px solid rgba(26,107,218,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s, box-shadow .25s;
}

.sd-hl-item:hover .sd-hl-icon {
  background: rgba(26,107,218,.16);
  box-shadow: 0 0 16px rgba(26,107,218,.14);
}

.sd-hl-icon i {
  color: var(--blue);
  font-size: 1rem;
}

.sd-hl-body {}

.sd-hl-title {
  font: 600 1rem/1.3 var(--fh);
  color: var(--white);
  margin-bottom: 6px;
}

.sd-hl-desc {
  font: 400 .9rem/1.62 var(--fb);
  color: var(--mute);
}

.sd-highlights-visual {
  position: relative;
}

.sd-highlights-img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.sd-highlights-img-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--blue) 0%, transparent 50%);
  opacity: .18;
  z-index: 0;
  pointer-events: none;
}

.sd-highlights-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform .8s ease;
}

.sd-highlights-img-wrap:hover .sd-highlights-img { transform: scale(1.03); }

.sd-highlights-img-stat {
  position: absolute;
  bottom: 32px;
  right: -20px;
  background: var(--bg3);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  padding: 20px 24px;
  z-index: 2;
  min-width: 160px;
}

.sd-highlights-img-stat strong {
  display: block;
  font: 700 2rem/1 var(--fh);
  color: var(--white);
  letter-spacing: -.02em;
}

.sd-highlights-img-stat strong span {
  color: var(--blue);
}

.sd-highlights-img-stat p {
  font: 400 .82rem/1.4 var(--fb);
  color: var(--mute);
  margin: 6px 0 0;
}

.sd-guarantee {
  padding: 72px 0;
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sd-guarantee-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.sd-g-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 40px;
}

.sd-g-item + .sd-g-item {
  border-left: 1px solid var(--line);
}

.sd-g-icon {
  width: 48px;
  height: 48px;
  background: rgba(26,107,218,.1);
  border: 1px solid rgba(26,107,218,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sd-g-icon i {
  color: var(--blue);
  font-size: 1.2rem;
}

.sd-g-body {}

.sd-g-body strong {
  display: block;
  font: 600 1rem/1.3 var(--fh);
  color: var(--white);
  margin-bottom: 6px;
}

.sd-g-body span {
  font: 400 .9rem/1.55 var(--fb);
  color: var(--mute);
}

.sd-services {
  padding: 100px 0;
  background: var(--bg);
}

.sd-services-hd {
  margin-bottom: 56px;
}

.sd-services-hd .eyebrow { margin-bottom: 14px; }

.sd-services-hd h2 {
  font: 700 2.2rem/1.2 var(--fh);
  color: var(--white);
  letter-spacing: -.01em;
}

.sd-services-hd h2 em {
  color: var(--blue);
  font-style: normal;
}

.sd-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.sd-svc-link {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--bg3);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: background .25s, border-color .25s;
  group: true;
}

.sd-svc-link:hover {
  background: rgba(26,107,218,.06);
  border-left-color: var(--blue);
}

.sd-svc-link i {
  color: var(--blue);
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: transform .3s;
}

.sd-svc-link:hover i { transform: scale(1.12); }

.sd-svc-name {
  font: 600 .98rem/1.35 var(--fh);
  color: var(--white);
  margin-bottom: 8px;
  transition: color .2s;
}

.sd-svc-link:hover .sd-svc-name { color: var(--blue); }

.sd-svc-desc {
  font: 400 .85rem/1.6 var(--fb);
  color: var(--mute);
  flex: 1;
}

.sd-svc-arrow {
  font-size: .8rem;
  color: var(--blue);
  margin-top: 16px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s, transform .2s;
}

.sd-svc-link:hover .sd-svc-arrow {
  opacity: 1;
  transform: translateX(0);
}

.sd-map {
  padding: 0;
  background: var(--bg2);
}

.sd-map-hd {
  padding: 80px 0 56px;
}

.sd-map-hd .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sd-map-hd-text {}

.sd-map-hd-text .eyebrow { margin-bottom: 14px; }

.sd-map-hd-text h2 {
  font: 700 2.2rem/1.2 var(--fh);
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 16px;
}

.sd-map-hd-text h2 em {
  color: var(--blue);
  font-style: normal;
}

.sd-map-hd-text p {
  font: 400 1rem/1.7 var(--fb);
  color: var(--mute);
}

.sd-map-hd-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
}

.sd-map-address {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sd-map-addr-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font: 400 .98rem/1.55 var(--fb);
  color: var(--mute);
}

.sd-map-addr-row i {
  color: var(--blue);
  font-size: .9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.sd-map-addr-row strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 2px;
}

.sd-map-wrap {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.sd-map-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), transparent);
  z-index: 2;
}

.sd-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.7) brightness(0.85);
  opacity: 0;
  transition: opacity .6s ease;
}

.sd-map-wrap.sd-map-in .sd-map-frame { opacity: 1; }

.sd-form-sec {
  padding: 100px 0;
  background: var(--bg);
}

.sd-form-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
  align-items: start;
}

.sd-form-info {}

.sd-form-info .eyebrow { margin-bottom: 16px; }

.sd-form-info h2 {
  font: 700 2.1rem/1.22 var(--fh);
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 16px;
}

.sd-form-info h2 em {
  color: var(--blue);
  font-style: normal;
}

.sd-form-tagline {
  font: 400 1.02rem/1.7 var(--fb);
  color: var(--mute);
  margin-bottom: 32px;
}

.sd-trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sd-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font: 400 .95rem/1.55 var(--fb);
  color: var(--mute);
}

.sd-trust-list li i {
  color: var(--blue);
  font-size: .85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.sd-contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sd-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 500 .96rem/1 var(--fb);
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}

.sd-contact-link i {
  color: var(--blue);
  font-size: .9rem;
  width: 18px;
}

.sd-contact-link:hover { color: var(--blue); }

.sd-nearby {
  padding: 80px 0;
  background: var(--bg2);
}

.sd-nearby-hd {
  margin-bottom: 48px;
}

.sd-nearby-hd .eyebrow { margin-bottom: 14px; }

.sd-nearby-hd h2 {
  font: 700 2rem/1.2 var(--fh);
  color: var(--white);
  letter-spacing: -.01em;
}

.sd-nearby-hd h2 em {
  color: var(--blue);
  font-style: normal;
}

.sd-nearby-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.sd-nearby-item {
  background: var(--bg3);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: background .25s, border-color .25s;
}

.sd-nearby-item:hover {
  background: rgba(26,107,218,.06);
  border-bottom-color: var(--blue);
}

.sd-nearby-type {
  font: 600 10px/1 var(--fh);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}

.sd-nearby-city {
  font: 700 1.6rem/1.2 var(--fh);
  color: var(--white);
  letter-spacing: -.01em;
}

.sd-nearby-addr {
  font: 400 .9rem/1.55 var(--fb);
  color: var(--mute);
}

.sd-nearby-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 600 .88rem/1 var(--fh);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: auto;
}

.sd-nearby-cta i {
  font-size: .75rem;
  transition: transform .2s;
}

.sd-nearby-item:hover .sd-nearby-cta i { transform: translateX(4px); }

.sd-faq {
  padding: 100px 0;
  background: var(--bg);
}

.sd-faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.sd-faq-hd {}

.sd-faq-hd .eyebrow { margin-bottom: 14px; }

.sd-faq-hd h2 {
  font: 700 2rem/1.25 var(--fh);
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 20px;
}

.sd-faq-hd h2 em {
  color: var(--blue);
  font-style: normal;
}

.sd-faq-hd p {
  font: 400 .95rem/1.65 var(--fb);
  color: var(--mute);
  margin-bottom: 24px;
}

@media (max-width: 1100px) {
  .sd-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .sd-info-inner { gap: 48px; }
  .sd-highlights-inner { gap: 56px; }
}

@media (max-width: 900px) {
  .sd-info-inner { grid-template-columns: 1fr; gap: 40px; }
  .sd-expect-grid { grid-template-columns: 1fr; gap: 2px; }
  .sd-guarantee-inner { grid-template-columns: 1fr; }
  .sd-g-item + .sd-g-item { border-left: none; border-top: 1px solid var(--line); }
  .sd-highlights-inner { grid-template-columns: 1fr; }
  .sd-highlights-visual { display: none; }
  .sd-map-hd .container { grid-template-columns: 1fr; gap: 40px; }
  .sd-form-inner { grid-template-columns: 1fr; gap: 48px; }
  .sd-nearby-grid { grid-template-columns: 1fr; }
  .sd-faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .sd-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .sd-highlights-img-stat { right: 0; }
}

@media (max-width: 640px) {
  .sd-info-title { font-size: 2rem; }
  .sd-expect-hd h2 { font-size: 1.9rem; }
  .sd-highlights-content h2 { font-size: 1.9rem; }
  .sd-form-info h2 { font-size: 1.8rem; }
  .sd-svc-grid { grid-template-columns: 1fr; }
  .sd-nearby-grid { grid-template-columns: 1fr; }
  .sd-expect-item { padding: 36px 28px; }
  .sd-info-ctas { flex-direction: column; }
  .sd-g-item { padding: 20px 24px; }
  .sd-map-wrap { height: 360px; }
}
