:root {
 --bg: #0f172a;
 --bg-soft: #1e293b;
 --card: #ffffff;
 --text: #0f172a;
 --text-light: #e2e8f0;
 --muted: #64748b;
 --primary: #2563eb;
 --primary-dark: #1d4ed8;
 --accent: #38bdf8;
 --border: #e2e8f0;
 --shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
 --radius: 18px;
 --max-width: 1200px;
}

* {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

html {
 scroll-behavior: smooth;
}

body {
 font-family: Arial, Helvetica, sans-serif;
 background: #f8fafc;
 color: var(--text);
 line-height: 1.6;
}

a {
 text-decoration: none;
 color: inherit;
}

img {
 max-width: 100%;
 display: block;
}

.container {
 width: min(92%, var(--max-width));
 margin: 0 auto;
}

.topbar {
 position: sticky;
 top: 0;
 z-index: 1000;
 background: rgba(15, 23, 42, 0.92);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 18px 0;
 gap: 20px;
}

.logo {
 font-size: 1.3rem;
 font-weight: 800;
 color: white;
 letter-spacing: 0.3px;
}

.logo span {
 color: var(--accent);
}

.logo-image-link {
 display: inline-flex;
 align-items: center;
 line-height: 0;
 flex-shrink: 0;
}

.logo-image {
 display: block;
 height: var(--header-logo-height, 46px);
 width: auto;
 max-width: min(330px, 42vw);
 object-fit: contain;
}

.nav-links {
 display: flex;
 gap: 22px;
 align-items: center;
 flex-wrap: wrap;
}

.nav-links a {
 color: #ffffff;
 font-size: 0.95rem;
 font-weight: 700;
}

.menu-toggle {
 display: none;
 width: 54px;
 height: 54px;
 border-radius: 999px;
 border: 1px solid #ffffff;
 background: rgba(255, 255, 255, 0.06);
 color: #ffffff;
 align-items: center;
 justify-content: center;
 gap: 6px;
 flex-direction: column;
 cursor: pointer;
 padding: 0;
}

.menu-toggle span {
 width: 24px;
 height: 2.5px;
 border-radius: 999px;
 background: #ffffff;
 transition: transform 0.25s ease, opacity 0.25s ease;
}

.topbar.menu-open .menu-toggle span:nth-child(1) {
 transform: translateY(8px) rotate(45deg);
}

.topbar.menu-open .menu-toggle span:nth-child(2) {
 opacity: 0;
}

.topbar.menu-open .menu-toggle span:nth-child(3) {
 transform: translateY(-8px) rotate(-45deg);
}


.lang-switch {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 border: 1px solid #ffffff;
 background: rgba(255, 255, 255, 0.04);
 color: white;
 padding: 6px 8px;
 border-radius: 999px;
 cursor: pointer;
 font-weight: 700;
 transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.lang-switch:hover {
 background: rgba(255, 255, 255, 0.08);
 border-color: #ffffff;
}

.lang-option {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-width: 42px;
 padding: 7px 12px;
 border-radius: 999px;
 color: #ffffff;
 line-height: 1;
 transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.lang-option.is-active {
 background: #ffffff;
 color: #0f172a;
 box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}


.lang-option.is-disabled {
 opacity: 0.45;
 cursor: not-allowed;
 pointer-events: none;
}

.lang-switch a.lang-option {
 text-decoration: none;
}

.lang-divider {
 color: #ffffff;
 font-weight: 700;
}

.header-cta {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 48px;
 padding: 0 18px;
 border-radius: 999px;
 border: 1px solid #2563EB;
 background: #2563EB;
 color: #FFFFFF;
 font-size: 0.95rem;
 font-weight: 700;
 white-space: nowrap;
 transition: none;
}

.header-cta:hover,
.header-cta:focus,
.header-cta:active {
 background: #2563EB;
 border-color: #2563EB;
 color: #FFFFFF;
 transform: none;
}



.hero {
 position: relative;
 min-height: 100vh;
 display: flex;
 align-items: center;
 overflow: hidden;
 background: #0f172a;
 color: white;
 padding: 90px 0 70px;
}

.hero-video {
 position: absolute;
 inset: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 z-index: 0;
}

.hero-overlay {
 position: absolute;
 inset: 0;
 background: transparent;
 z-index: 1;
}

.hero-content {
 position: relative;
 z-index: 2;
}

.hero-grid {
 display: grid;
 grid-template-columns: 1.2fr 0.8fr;
 gap: 40px;
 align-items: center;
}

.hero h1 {
 font-size: clamp(2.2rem, 4vw, 4rem);
 line-height: 1.08;
 margin-bottom: 18px;
}

.hero h1 .hero-title-line {
 display: block;
 white-space: nowrap;
}

.hero p {
 font-size: 1.08rem;
 color: #ffffff;
 max-width: 700px;
 margin-bottom: 28px;
}

.hero-mini {
 margin-bottom: 0;
 color: #ffffff;
}

.hero-actions {
 display: flex;
 gap: 14px;
 flex-wrap: wrap;
 margin-bottom: 24px;
}

.btn {
 display: inline-block;
 padding: 14px 22px;
 border-radius: 999px;
 font-weight: 700;
 transition: 0.25s ease;
}

.btn-primary {
 background: white;
 color: #0f172a;
}

.btn-primary:hover {
 transform: translateY(-2px);
 box-shadow: var(--shadow);
}

.btn-outline {
 border: 1px solid rgba(255, 255, 255, 0.3);
 color: white;
}

.btn-outline:hover {
 background: rgba(255, 255, 255, 0.08);
}

.hero-card {
 background: linear-gradient(135deg, rgba(45, 63, 102, 0.96) 0%, rgba(61, 84, 132, 0.95) 100%);
 border: 1px solid rgba(255, 255, 255, 0.16);
 border-radius: 24px;
 padding: 28px;
 box-shadow: 0 20px 50px rgba(0, 0, 0, 0.40);
 backdrop-filter: blur(8px);
 -webkit-backdrop-filter: blur(8px);
}

.hero-card h3 {
 margin-bottom: 16px;
 font-size: 1.3rem;
 color: #ffffff;
 text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.hero-list {
 list-style: none;
 display: grid;
 gap: 12px;
}

.hero-list li {
 padding: 12px 14px;
 background: rgba(255, 255, 255, 0.20);
 border: 1px solid rgba(255, 255, 255, 0.14);
 border-radius: 14px;
 color: #ffffff;
 text-shadow: 0 1px 3px rgba(0, 0, 0, 0.24);
}

section {
 padding: 80px 0;
}

.section-head {
 max-width: 760px;
 margin-bottom: 40px;
}

.eyebrow {
 display: inline-block;
 color: var(--primary);
 font-weight: 800;
 text-transform: uppercase;
 letter-spacing: 1px;
 font-size: 0.82rem;
 margin-bottom: 10px;
}

h2 {
 font-size: clamp(1.8rem, 3vw, 3rem);
 line-height: 1.15;
 margin-bottom: 14px;
}

.section-head p,
.card p {
 color: var(--muted);
}

.about-grid,
.services-grid,
.portfolio-grid,
.stats-grid,
.contact-grid {
 display: grid;
 gap: 24px;
}

.about-grid,
.contact-grid {
 grid-template-columns: 1fr 1fr;
}

.services-grid-large {
 grid-template-columns: repeat(3, 1fr);
}

.portfolio-grid,
.stats-grid {
 grid-template-columns: repeat(3, 1fr);
}

.stats-grid {
 margin-top: 36px;
}

.card {
 background: var(--card);
 border: 1px solid var(--border);
 border-radius: var(--radius);
 padding: 28px;
 box-shadow: var(--shadow);
}

.card h3 {
 margin-bottom: 12px;
 font-size: 1.25rem;
}

.service-card {
 min-height: 220px;
}

.stat {
 text-align: center;
 padding: 24px;
 background: white;
 border-radius: var(--radius);
 border: 1px solid var(--border);
 box-shadow: var(--shadow);
}

.stat strong {
 display: block;
 font-size: 2rem;
 color: var(--primary);
 margin-bottom: 6px;
}

.portfolio-card {
 overflow: hidden;
 padding: 0;
 display: flex;
 flex-direction: column;
 height: 100%;
}

.portfolio-image {
 background: linear-gradient(135deg, #dbeafe, #bfdbfe);
 min-height: 190px;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.1rem;
 font-weight: 700;
 color: #1e3a8a;
 text-align: center;
 padding: 20px;
}

.portfolio-content {
 padding: 24px;
 display: flex;
 flex-direction: column;
 flex: 1 1 auto;
}

.tag-row {
 display: flex;
 flex-wrap: wrap;
 gap: 10px;
 margin-top: auto;
 padding-top: 14px;
}

.tag {
 padding: 8px 12px;
 border-radius: 999px;
 background: #eff6ff;
 color: #1d4ed8;
 font-size: 0.85rem;
 font-weight: 700;
}

.cta {
 background: linear-gradient(135deg, #1d4ed8, #0f172a);
 color: white;
 border-radius: 28px;
 padding: 40px 48px;
 display: grid;
 grid-template-columns: minmax(0, 1fr) auto;
 gap: 18px;
 align-items: center;
}

.cta > div:last-child {
 display: flex;
 justify-content: flex-end;
}

.cta h2 {
 margin-bottom: 0;
}

html[lang="fr"] .cta h2 {
 white-space: nowrap;
}

.cta p {
 color: #dbeafe;
 margin-top: 10px;
 max-width: 760px;
}

.cta .btn-primary {
 min-height: 66px;
 padding: 0 28px;
 font-size: 1.12rem;
 font-weight: 800;
 display: inline-flex;
 align-items: center;
 justify-content: center;
}

form {
 display: grid;
 gap: 14px;
}

input,
textarea {
 width: 100%;
 padding: 14px 16px;
 border: 1px solid var(--border);
 border-radius: 14px;
 font: inherit;
 background: white;
}

textarea {
 min-height: 140px;
 resize: vertical;
}

button[type="submit"] {
 border: none;
 background: var(--primary);
 color: white;
 padding: 14px 20px;
 border-radius: 999px;
 font-weight: 700;
 cursor: pointer;
}

button[type="submit"]:hover {
 background: var(--primary-dark);
}

footer {
 padding: 28px 0 40px;
 color: var(--muted);
 text-align: center;
}

@media (max-width: 1100px) {
 .services-grid-large {
 grid-template-columns: repeat(2, 1fr);
 }
}



@media (max-width: 1120px) {
 .topbar {
 overflow: visible;
 }

 .nav {
 position: relative;
 padding: 16px 0;
 gap: 16px;
 }

 .logo {
 font-size: 1.15rem;
 }

 .menu-toggle {
 display: inline-flex;
 flex-shrink: 0;
 }

 .nav-links {
 display: none;
 position: absolute;
 top: calc(100% + 14px);
 left: 0;
 right: 0;
 width: 100%;
 z-index: 1100;
 gap: 0;
 padding: 22px 22px 24px;
 border-radius: 30px;
 background: rgba(15, 23, 42, 0.995);
 border: 1px solid rgba(255, 255, 255, 0.14);
 box-shadow: 0 24px 60px rgba(2, 6, 23, 0.52);
 backdrop-filter: blur(22px);
 }

 .topbar.menu-open .nav-links {
 display: grid;
 }

 .nav-links > a:not(.header-cta) {
 display: block;
 width: 100%;
 padding: 16px 6px;
 font-size: 1.12rem;
 border-bottom: 1px solid rgba(255, 255, 255, 0.08);
 }

 .nav-links > a:last-of-type {
 margin-bottom: 6px;
 }

 .lang-switch {
 margin-top: 18px;
 justify-self: start;
 padding: 8px 10px;
 }

 .header-cta {
 width: 100%;
 margin-top: 22px;
 min-height: 58px;
 justify-content: center;
 padding: 0 24px;
 font-size: 1.02rem;
 }
}

@media (max-width: 980px) {
 .hero-grid,
 .about-grid,
 .cta,
 .contact-grid,
 .portfolio-grid,
 .stats-grid,
 .services-grid-large {
 grid-template-columns: 1fr;
 }
}

@media (max-width: 980px) {
 .topbar {
 overflow: visible;
 }

 .nav {
 position: relative;
 padding: 16px 0;
 gap: 16px;
 }

 .logo {
 font-size: 1.15rem;
 }

 .menu-toggle {
 display: inline-flex;
 flex-shrink: 0;
 }

 .nav-links {
 display: none;
 position: absolute;
 top: calc(100% + 14px);
 left: 0;
 right: 0;
 width: 100%;
 z-index: 1100;
 gap: 0;
 padding: 22px 22px 24px;
 border-radius: 30px;
 background: rgba(15, 23, 42, 0.995);
 border: 1px solid rgba(255, 255, 255, 0.14);
 box-shadow: 0 24px 60px rgba(2, 6, 23, 0.52);
 backdrop-filter: blur(22px);
 }

 .topbar.menu-open .nav-links {
 display: grid;
 }

 .nav-links > a:not(.header-cta) {
 display: block;
 width: 100%;
 padding: 16px 6px;
 font-size: 1.12rem;
 border-bottom: 1px solid rgba(255, 255, 255, 0.08);
 }

 .nav-links > a:last-of-type {
 margin-bottom: 6px;
 }

 .lang-switch {
 margin-top: 18px;
 justify-self: start;
 padding: 8px 10px;
 }

 .header-cta {
 width: 100%;
 margin-top: 22px;
 min-height: 58px;
 justify-content: center;
 padding: 0 24px;
 font-size: 1.02rem;
 }

 .hero {
 padding-top: 78px;
 }

 .card,
 .hero-card,
 .cta {
 padding: 22px;
 }
}

@media (max-width: 520px) {
 .logo {
 font-size: 1.05rem;
 }

 .menu-toggle {
 width: 50px;
 height: 50px;
 }

 .nav-links {
 padding: 20px 18px 22px;
 border-radius: 28px;
 }

 .nav-links > a:not(.header-cta) {
 font-size: 1.02rem;
 padding: 14px 4px;
 }

 .header-cta {
 min-height: 54px;
 font-size: 0.96rem;
 }
}


/* Quote form */
.contact-grid-quote {
 align-items: start;
}

.contact-grid-quote > .card {
 border: 1px solid #dfe7f3;
 box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.contact-details h3,
.form-section h3 {
 display: block;
 width: 100%;
 margin: 0 0 16px;
 padding: 12px 14px;
 border-radius: 14px;
 background: linear-gradient(180deg, #f5f8fd 0%, #eef4fb 100%);
 border: 1px solid #e1e8f4;
 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.form-section {
 padding: 18px;
 border: 1px solid #ebf0f7;
 border-radius: 20px;
 background: linear-gradient(180deg, #fcfdff 0%, #f9fbfe 100%);
}

.quote-summary-card {
 position: sticky;
 top: 110px;
}

.contact-details p + p {
 margin-top: 8px;
}

.contact-details a {
 color: var(--primary);
 font-weight: 700;
}

.summary-divider {
 height: 1px;
 background: var(--border);
 margin: 24px 0;
}

.mini-label {
 display: inline-block;
 font-size: 0.82rem;
 font-weight: 800;
 text-transform: uppercase;
 letter-spacing: 1px;
 color: var(--primary);
 margin-bottom: 10px;
}

.summary-intro {
 margin-bottom: 18px;
}

.summary-list {
 display: grid;
 gap: 12px;
 margin-bottom: 24px;
}

.summary-item {
 display: grid;
 gap: 4px;
 padding: 14px 16px;
 border: 1px solid var(--border);
 border-radius: 14px;
 background: #f8fbff;
}

.summary-item span {
 color: var(--muted);
 font-size: 0.92rem;
}

.summary-item strong {
 font-size: 1rem;
 color: var(--text);
}

.quote-process {
 padding: 18px;
 border-radius: 16px;
 background: linear-gradient(180deg, #eff6ff, #ffffff);
 border: 1px solid #dbeafe;
}

.quote-process h4 {
 margin-bottom: 12px;
 font-size: 1rem;
}

.quote-process ul {
 padding-left: 18px;
 color: var(--muted);
 display: grid;
 gap: 10px;
}

.form-section + .form-section {
 margin-top: 14px;
}

.form-section h3 {
 margin-bottom: 16px;
}

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

.field {
 display: grid;
 gap: 8px;
}

.field label {
 font-weight: 700;
 color: var(--text);
 font-size: 0.96rem;
}

select,
input,
textarea {
 transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

select {
 width: 100%;
 padding: 14px 48px 14px 16px;
 border: 1px solid var(--border);
 border-radius: 14px;
 font: inherit;
 background-color: white;
 color: var(--text);
 appearance: none;
 -webkit-appearance: none;
 -moz-appearance: none;
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
 background-repeat: no-repeat;
 background-position: right 16px center;
 background-size: 18px;
}

select::-ms-expand {
 display: none;
}

input:focus,
textarea:focus,
select:focus {
 outline: none;
 border-color: #93c5fd;
 box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

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

.checkbox-option {
 display: flex;
 align-items: flex-start;
 gap: 10px;
 padding: 14px 16px;
 border: 1px solid var(--border);
 border-radius: 14px;
 background: #ffffff;
 color: var(--text);
 cursor: pointer;
}

.checkbox-option input {
 width: auto;
 margin-top: 3px;
}

.checkbox-option:has(input:checked) {
 border-color: #93c5fd;
 background: #eff6ff;
}

.conditional-group[hidden] {
 display: none !important;
}

.form-note {
 color: var(--muted);
 font-size: 0.92rem;
 margin-top: 6px;
}

@media (max-width: 1100px) {
 .quote-summary-card {
 position: static;
 }
}

@media (max-width: 980px) {
 .form-grid,
 .checkbox-grid {
 grid-template-columns: 1fr;
 }

 .form-section {
 padding: 16px;
 }
}

/* Title-only responsive tuning */
@media (max-width: 980px) {
 .hero h1 {
 font-size: clamp(2.95rem, 6.6vw, 4.1rem);
 line-height: 1.04;
 }

 .hero h1 .hero-title-line {
 white-space: normal;
 }
}

@media (max-width: 640px) {
 .hero h1 {
 font-size: clamp(3.05rem, 9.2vw, 3.6rem);
 line-height: 1.03;
 }
}

/* French-only cellphone title tuning */
@media (max-width: 640px) and (min-width: 561px) {
 html[lang="fr"] .hero h1 {
 font-size: clamp(2.7rem, 7.4vw, 3rem);
 line-height: 1.04;
 }
}

@media (max-width: 560px) {
 html[lang="fr"] .hero h1 {
 font-size: clamp(2.35rem, 8.2vw, 2.9rem);
 line-height: 1.05;
 }
}

@media (max-width: 420px) {
 html[lang="fr"] .hero h1 {
 font-size: clamp(2.2rem, 9.1vw, 2.65rem);
 }
}


/* FR only: widen right hero card on large desktop without touching smaller breakpoints */
@media (min-width: 1300px) {
 html[lang="fr"] .hero .container.hero-grid.hero-content {
 width: min(94%, 1360px);
 }

 html[lang="fr"] .hero-grid {
 grid-template-columns: minmax(0, 1.04fr) minmax(540px, 0.96fr);
 gap: 34px;
 }

 html[lang="fr"] .hero-card {
 width: 100%;
 max-width: 560px;
 justify-self: end;
 }
}


@media (max-width: 1200px) {
 html[lang="fr"] .cta h2 {
 white-space: normal;
 }
}

@media (min-width: 981px) {
 .cta > div:last-child {
 padding-left: 18px;
 }
}


#portfolio {
 padding-top: 58px;
}

#portfolio .section-head {
 margin-bottom: 24px;
}

@media (min-width: 981px) {
 #portfolio .section-head {
 max-width: 100%;
 }

 #portfolio .section-head p {
 white-space: nowrap;
 }
}

.portfolio-image-screenshot {
 min-height: 0;
 height: 210px;
 padding: 0;
 overflow: hidden;
 background: #dbeafe;
}

.portfolio-image-screenshot img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center top;
 display: block;
}

@media (max-width: 980px) {
 #portfolio {
 padding-top: 46px;
 }

 #portfolio .section-head {
 margin-bottom: 18px;
 }

 .portfolio-image-screenshot {
 height: 190px;
 }
}

@media (max-width: 980px) {
 #portfolio .portfolio-card {
 padding: 0 !important;
 overflow: hidden !important;
 }

 #portfolio .portfolio-card .portfolio-image {
 margin: 0 !important;
 }

 #portfolio .portfolio-card .portfolio-content {
 padding: 24px !important;
 }

 #portfolio .portfolio-image.portfolio-image-screenshot {
 min-height: 0 !important;
 height: 210px !important;
 padding: 0 !important;
 margin: 0 !important;
 display: block !important;
 overflow: hidden !important;
 background: transparent !important;
 border-radius: 0 !important;
 }

 #portfolio .portfolio-image.portfolio-image-screenshot img {
 display: block !important;
 width: 100% !important;
 height: 100% !important;
 object-fit: cover !important;
 object-position: center top !important;
 }

 #portfolio .portfolio-image.portfolio-image-screenshot.portfolio-image-proflash img {
 transform: scale(1.00) !important;
 object-position: left top !important;
 }

 #portfolio .portfolio-image.portfolio-image-screenshot.portfolio-image-flashtech img {
 transform: scale(1.12) !important;
 transform-origin: center top !important;
 }
}


@media (max-width: 980px) {
 .hero-card {
 background: linear-gradient(135deg, rgba(45, 63, 102, 0.97) 0%, rgba(61, 84, 132, 0.96) 100%);
 }

 .hero-list li {
 background: rgba(255, 255, 255, 0.22);
 }
}



/* Contact section final tweak */
.contact-grid-quote > .card {
 background: #ffffff;
}

.contact-details h3 {
 width: auto;
 margin: 0 0 12px;
 padding: 0;
 border: 0;
 border-radius: 0;
 background: transparent;
 box-shadow: none;
}

#quoteForm .form-section {
 padding: 18px;
 border: 1px solid #d5deeb;
 border-radius: 20px;
 background: #f5f8fd;
}

#quoteForm .form-section h3 {
 width: auto;
 margin: 0 0 16px;
 padding: 0;
 border: 0;
 border-radius: 0;
 background: transparent;
 box-shadow: none;
}

@media (max-width: 980px) {
 #quoteForm .form-section {
 padding: 16px;
 }
}

/* Contact section test: use the same blue as the hero "Pourquoi Travailler avec Nous ?" bubble */
#quoteForm .form-section {
 background: linear-gradient(135deg, rgba(45, 63, 102, 0.96) 0%, rgba(61, 84, 132, 0.95) 100%);
 border: 1px solid rgba(255, 255, 255, 0.16);
 box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}

#quoteForm .form-section h3,
#quoteForm .form-section label,
#quoteForm .form-section .field-label,
#quoteForm .form-section .section-label,
#quoteForm .form-section .checkbox-label,
#quoteForm .form-section .check-label,
#quoteForm .form-section .checkbox-text,
#quoteForm .form-section .muted,
#quoteForm .form-section .hint,
#quoteForm .form-section p,
#quoteForm .form-section .small {
 color: #ffffff;
}

#quoteForm .form-section select,
#quoteForm .form-section input,
#quoteForm .form-section textarea {
 background: rgba(255, 255, 255, 0.96);
 border-color: rgba(255, 255, 255, 0.22);
 color: #0f172a;
}

#quoteForm .form-section select::placeholder,
#quoteForm .form-section input::placeholder,
#quoteForm .form-section textarea::placeholder {
 color: #64748b;
}

/* Improve contrast inside white selection boxes on blue contact panels */
#quoteForm .form-section select,
#quoteForm .form-section input,
#quoteForm .form-section textarea,
#quoteForm .form-section .checkbox-option {
 background: #ffffff;
 color: #0f172a;
 border: 1px solid rgba(15, 23, 42, 0.14);
 box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

#quoteForm .form-section select {
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

#quoteForm .form-section .checkbox-option,
#quoteForm .form-section .checkbox-option span,
#quoteForm .form-section .checkbox-option label,
#quoteForm .form-section .checkbox-option .checkbox-text {
 color: #0f172a;
}

#quoteForm .form-section .checkbox-option:has(input:checked) {
 background: #dbeafe;
 border-color: #93c5fd;
}

#quoteForm .form-section input::placeholder,
#quoteForm .form-section textarea::placeholder {
 color: #64748b;
 opacity: 1;
}

/* Fix duplicated select arrows in contact form */
#quoteForm .form-section select {
 -webkit-appearance: none;
 -moz-appearance: none;
 appearance: none;
 background-color: #ffffff;
 background-repeat: no-repeat;
 background-position: right 18px center;
 background-size: 18px 18px;
 padding-right: 52px;
}

#quoteForm .form-section select::-ms-expand {
 display: none;
}


#contact .section-head {
 max-width: 1100px;
}

#contact .section-head h2 {
 white-space: nowrap;
}

@media (max-width: 900px) {
 #contact .section-head h2 {
 white-space: normal;
 }
}



/* Keep the contact title on one line when there is enough desktop space */
#contact .section-head {
 max-width: 1400px;
}

#contact .section-head h2 {
 white-space: nowrap;
}

@media (max-width: 1100px) {
 #contact .section-head h2 {
 white-space: normal;
 }
}


/* Theme helpers */
.lang-switch {
 border: 1px solid #ffffff;
}
.lang-switch button.lang-option {
 border: 0;
 background: transparent;
 font: inherit;
 cursor: pointer;
}
.form-status {
 margin: 0 0 16px;
 padding: 14px 16px;
 border-radius: 14px;
 border: 1px solid #bfdbfe;
 background: #eff6ff;
 color: #1e3a8a;
 font-weight: 700;
}
.form-errors {
 margin: 0 0 16px;
}
.visually-hidden {
 position: absolute !important;
 width: 1px !important;
 height: 1px !important;
 padding: 0 !important;
 margin: -1px !important;
 overflow: hidden !important;
 clip: rect(0,0,0,0) !important;
 white-space: nowrap !important;
 border: 0 !important;
}
.hero-media-fallback {
 position: absolute;
 inset: 0;
 background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
 z-index: 0;
}


.lang-switch button.lang-option {
 border: 0;
 cursor: pointer;
 font: inherit;
}

.lang-switch button.lang-option:not(.is-active) {
 background: transparent;
}


.not-found-redirect {
 min-height: 60vh;
 display: flex;
 align-items: center;
}

.not-found-redirect h1 {
 font-size: clamp(2rem, 4vw, 4rem);
 margin-bottom: 12px;
}


/* V5 language switch visual fix: match original FR / EN pill */
.lang-switch {
 display: inline-flex !important;
 align-items: center !important;
 justify-content: center !important;
 gap: 6px !important;
 min-height: 50px !important;
 padding: 6px 8px !important;
 border: 1px solid rgba(255, 255, 255, 0.9) !important;
 border-radius: 999px !important;
 background: rgba(255, 255, 255, 0.04) !important;
 color: #ffffff !important;
}

.lang-switch button.lang-option,
.lang-switch .lang-option {
 appearance: none !important;
 -webkit-appearance: none !important;
 display: inline-flex !important;
 align-items: center !important;
 justify-content: center !important;
 min-width: 42px !important;
 min-height: 34px !important;
 padding: 7px 12px !important;
 border: 0 !important;
 border-radius: 999px !important;
 background: transparent !important;
 color: #ffffff !important;
 font: inherit !important;
 font-weight: 800 !important;
 line-height: 1 !important;
 cursor: pointer !important;
 box-shadow: none !important;
 transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease !important;
}

.lang-switch button.lang-option.is-active,
.lang-switch .lang-option.is-active {
 background: #ffffff !important;
 color: #0f172a !important;
 box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18) !important;
}

.lang-switch button.lang-option:not(.is-active),
.lang-switch .lang-option:not(.is-active) {
 background: transparent !important;
 color: #ffffff !important;
}

.lang-divider {
 color: #ffffff !important;
 font-weight: 800 !important;
 line-height: 1 !important;
}


/* V6: match original FR / EN switch dimensions exactly closer */
.lang-switch {
 min-height: 42px !important;
 height: 42px !important;
 padding: 5px 7px !important;
 gap: 5px !important;
 border-radius: 999px !important;
}

.lang-switch button.lang-option,
.lang-switch .lang-option {
 min-width: 38px !important;
 min-height: 30px !important;
 height: 30px !important;
 padding: 6px 10px !important;
 font-size: 0.92rem !important;
 border-radius: 999px !important;
}

.lang-divider {
 font-size: 0.92rem !important;
 padding: 0 1px !important;
}


/* V7 hero video fix: keep fallback gradient behind the actual video */
.hero {
 background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%) !important;
}

.hero-video {
 z-index: 0 !important;
 opacity: 1 !important;
 visibility: visible !important;
}

.hero-media-fallback {
 z-index: -1 !important;
 pointer-events: none !important;
}


/* Minimal required-field validation only */
.field.is-missing label {
 color: #dc2626 !important;
}

.field.is-missing input,
.field.is-missing select,
.field.is-missing textarea {
 border-color: #dc2626 !important;
 box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.12) !important;
}

.field .is-missing-input {
 border-color: #dc2626 !important;
 box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.12) !important;
}


/* V23 centered success confirmation modal */
.form-success-modal {
 position: fixed;
 inset: 0;
 z-index: 9999;
 display: none;
 align-items: center;
 justify-content: center;
 padding: 24px;
 background: rgba(15, 23, 42, 0.48);
 backdrop-filter: blur(4px);
}

.form-success-modal.is-open {
 display: flex;
}

.form-success-modal__box {
 position: relative;
 width: min(560px, 92vw);
 padding: 34px 38px;
 border-radius: 28px;
 border: 1px solid rgba(191, 219, 254, 0.9);
 background: #ffffff;
 box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
 text-align: center;
}

.form-success-modal__box h3 {
 margin: 0 0 10px;
 color: #1e3a8a;
 font-size: clamp(1.8rem, 3vw, 2.6rem);
 line-height: 1.1;
}

.form-success-modal__box p {
 margin: 0;
 color: #334155;
 font-size: clamp(1.05rem, 1.6vw, 1.25rem);
 line-height: 1.55;
}

.form-success-modal__close {
 position: absolute;
 top: 14px;
 right: 16px;
 width: 38px;
 height: 38px;
 border: 0;
 border-radius: 999px;
 background: #eef2ff;
 color: #0f172a;
 font-size: 1.8rem;
 line-height: 1;
 cursor: pointer;
 display: inline-flex;
 align-items: center;
 justify-content: center;
}

.form-success-modal__close:hover {
 background: #dbeafe;
}

@media (max-width: 560px) {
 .form-success-modal__box {
 padding: 30px 24px;
 border-radius: 24px;
 }
}


/* V24 required-field validation message */
.form-required-message {
 margin: 0 0 18px;
 padding: 14px 18px;
 border: 1px solid rgba(220, 38, 38, 0.35);
 border-radius: 16px;
 background: rgba(254, 242, 242, 0.95);
 color: #b91c1c;
 font-weight: 800;
}

.form-required-message[hidden] {
 display: none !important;
}


/* V25 hard-stop required-field validation */
.field.pa-field-missing label,
.field.is-missing label {
 color: #dc2626 !important;
}

.field.pa-field-missing input,
.field.pa-field-missing select,
.field.pa-field-missing textarea,
.field.is-missing input,
.field.is-missing select,
.field.is-missing textarea,
.pa-input-missing,
.is-missing-input {
 border-color: #dc2626 !important;
 box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.16) !important;
 outline: none !important;
}

.form-required-message {
 margin: 0 0 18px;
 padding: 14px 18px;
 border: 1px solid rgba(220, 38, 38, 0.35);
 border-radius: 16px;
 background: rgba(254, 242, 242, 0.98);
 color: #b91c1c;
 font-weight: 800;
}

.form-required-message[hidden] {
 display: none !important;
}


/* V26 visible missing-field validation */
.field.pa-field-missing label,
.field.is-missing label {
 color: #dc2626 !important;
}

.field.pa-field-missing input,
.field.pa-field-missing select,
.field.pa-field-missing textarea,
.field.is-missing input,
.field.is-missing select,
.field.is-missing textarea,
.pa-input-missing,
.is-missing-input {
 border-color: #dc2626 !important;
 box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.18) !important;
 outline: none !important;
}

.form-required-message {
 margin: 0 0 18px;
 padding: 14px 18px;
 border: 1px solid rgba(220, 38, 38, 0.38);
 border-radius: 16px;
 background: rgba(254, 242, 242, 0.98);
 color: #b91c1c;
 font-weight: 800;
}

.form-required-message[hidden] {
 display: none !important;
}

.form-required-message ul {
 margin: 8px 0 0 20px;
 padding: 0;
}

.form-required-message li {
 margin: 4px 0;
}


/* V27 required validation and clean email output */
.field.pa-field-missing label,
.field.is-missing label {
 color: #dc2626 !important;
}

.field.pa-field-missing input,
.field.pa-field-missing select,
.field.pa-field-missing textarea,
.field.is-missing input,
.field.is-missing select,
.field.is-missing textarea,
.pa-input-missing,
.is-missing-input,
.quote-form.pa-validate-attempted input:required:invalid,
.quote-form.pa-validate-attempted select:required:invalid,
.quote-form.pa-validate-attempted textarea:required:invalid {
 border-color: #dc2626 !important;
 box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.18) !important;
 outline: none !important;
}

.form-required-message {
 margin: 0 0 18px;
 padding: 14px 18px;
 border: 1px solid rgba(220, 38, 38, 0.38);
 border-radius: 16px;
 background: rgba(254, 242, 242, 0.98);
 color: #b91c1c;
 font-weight: 800;
}

.form-required-message[hidden] {
 display: none !important;
}

.form-required-message ul {
 margin: 8px 0 0 20px;
 padding: 0;
}

.form-required-message li {
 margin: 4px 0;
}


/* V28 clean email body and required validation */
.field.pa-field-missing label,
.field.is-missing label {
 color: #dc2626 !important;
}

.field.pa-field-missing input,
.field.pa-field-missing select,
.field.pa-field-missing textarea,
.field.is-missing input,
.field.is-missing select,
.field.is-missing textarea,
.pa-input-missing,
.is-missing-input,
.quote-form.pa-validate-attempted input:required:invalid,
.quote-form.pa-validate-attempted select:required:invalid,
.quote-form.pa-validate-attempted textarea:required:invalid {
 border-color: #dc2626 !important;
 box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.18) !important;
 outline: none !important;
}

.form-required-message {
 margin: 0 0 18px;
 padding: 14px 18px;
 border: 1px solid rgba(220, 38, 38, 0.38);
 border-radius: 16px;
 background: rgba(254, 242, 242, 0.98);
 color: #b91c1c;
 font-weight: 800;
}

.form-required-message[hidden] {
 display: none !important;
}

.form-required-message ul {
 margin: 8px 0 0 20px;
 padding: 0;
}

.form-required-message li {
 margin: 4px 0;
}


/* V33 portfolio third image */
.portfolio-image-les-pros img {
 object-position: center top;
}


@media (max-width: 980px) {
 .logo-image {
 height: var(--header-logo-height-mobile, var(--header-logo-height, 46px));
 max-height: var(--header-logo-height-mobile, var(--header-logo-height, 46px));
 max-width: 250px;
 }
}

@media (max-width: 520px) {
 .logo-image {
 height: var(--header-logo-height-mobile, var(--header-logo-height, 46px));
 max-height: var(--header-logo-height-mobile, var(--header-logo-height, 46px));
 max-width: 210px;
 }
}

/* V57: same slightly stronger borders applied to this good version */
:root {
 --border: #cbd5e1;
 --shadow: 0 14px 34px rgba(15, 23, 42, 0.13);
}

.card,
.stat,
.portfolio-card,
.service-card,
.contact-grid-quote > .card,
.form-section,
#quoteForm .form-section,
.quote-summary-card,
.contact-option,
.package-card,
.pricing-card,
.faq-card,
.testimonial-card {
 border-color: #cbd5e1 !important;
 box-shadow: 0 16px 38px rgba(15, 23, 42, 0.11) !important;
}

.card,
.stat,
.portfolio-card,
.contact-grid-quote > .card {
 border-width: 1.25px !important;
}

.form-section,
#quoteForm .form-section,
input,
textarea,
select {
 border-color: #cbd5e1 !important;
}

input:focus,
textarea:focus,
select:focus {
 border-color: #2563eb !important;
 box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.13) !important;
}

section:not(.hero):not(.cta) {
 background-color: #f3f6fa;
}

.section-head p,
.card p {
 color: #475569 !important;
}

/* V63: About stats replaced by client-focused benefit cards */
.about-benefits-grid {
 align-items: stretch;
}

.about-benefit-card {
 text-align: left !important;
 padding: 28px 30px !important;
 min-height: 160px;
 display: flex;
 flex-direction: column;
 justify-content: center;
 gap: 10px;
}

.about-benefit-card strong {
 display: block;
 color: #0b1220 !important;
 font-size: clamp(1.25rem, 1.65vw, 1.55rem) !important;
 line-height: 1.18 !important;
 margin-bottom: 0 !important;
}

.about-benefit-card span {
 display: block;
 color: #475569 !important;
 font-size: clamp(1.02rem, 1.2vw, 1.12rem);
 line-height: 1.45;
}

@media (max-width: 980px) {
 .about-benefit-card {
 min-height: auto;
 padding: 24px !important;
 }
}

/* V64: visible public contact information for Google & YouTube verification */
.contact-details p {
 color: #334155;
 line-height: 1.55;
}

.contact-details strong {
 color: #0b1220;
}

.contact-details a {
 color: var(--primary);
 font-weight: 800;
}

.footer-inner {
 display: grid;
 gap: 12px;
 justify-items: center;
}

.footer-contact-info {
 display: flex;
 justify-content: center;
 align-items: center;
 flex-wrap: wrap;
 gap: 10px;
 color: #334155;
 font-size: 0.96rem;
 line-height: 1.5;
}

.footer-contact-info a {
 color: #0f172a;
 font-weight: 700;
 text-decoration: none;
}

.footer-contact-info a:hover {
 color: var(--primary);
}

.footer-contact-info address {
 display: inline;
 font-style: normal;
}

@media (max-width: 640px) {
 .footer-contact-info {
 flex-direction: column;
 gap: 6px;
 }

 .footer-contact-info span[aria-hidden="true"] {
 display: none;
 }
}

/* V65: Localization language forms keep the FR / EN switch visual intact. */
.lang-form {
 display: contents !important;
 margin: 0 !important;
}

.lang-switch form {
 display: contents !important;
 margin: 0 !important;
}


/* V68 language URL anchor aliases: invisible, no visual change. */
.anchor-alias { position: relative; display: block; height: 0; overflow: hidden; top: -90px; }


/* V70: stronger conversion, SEO content sections, and generic templates */
.hero-callout {
 margin: -8px 0 18px !important;
 font-size: 1rem !important;
 color: #ffffff !important;
}

.hero-callout a {
 color: #ffffff;
 font-weight: 900;
 text-decoration: underline;
 text-underline-offset: 4px;
}

.proof-grid,
.process-grid,
.seo-market-grid,
.faq-grid,
.collection-grid {
 display: grid;
 gap: 22px;
}

.proof-grid,
.process-grid,
.seo-market-grid {
 grid-template-columns: repeat(4, 1fr);
}

.proof-card,
.process-card {
 position: relative;
 overflow: hidden;
}

.proof-number,
.process-step-number {
 display: inline-flex;
 width: 48px;
 height: 48px;
 align-items: center;
 justify-content: center;
 border-radius: 999px;
 background: #eff6ff;
 color: #1d4ed8;
 font-weight: 900;
 margin-bottom: 18px;
}

.proof-card h3,
.process-card h3,
.seo-market-item h3 {
 margin-bottom: 10px;
}

.seo-market-panel {
 border-radius: 30px;
 padding: clamp(26px, 4vw, 48px);
 background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
 color: #ffffff;
 box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.seo-market-panel .section-head p,
.seo-market-panel .eyebrow,
.seo-market-item p {
 color: #dbeafe !important;
}

.seo-market-item {
 padding: 20px;
 border-radius: 20px;
 border: 1px solid rgba(255,255,255,0.18);
 background: rgba(255,255,255,0.08);
}

.seo-market-item h3 {
 color: #ffffff;
}

.faq-grid {
 grid-template-columns: repeat(2, 1fr);
}

.faq-card {
 padding: 0;
 overflow: hidden;
}

.faq-card summary {
 cursor: pointer;
 padding: 22px 24px;
 font-weight: 900;
 color: #0f172a;
 list-style: none;
}

.faq-card summary::-webkit-details-marker {
 display: none;
}

.faq-card summary::after {
 content: "+";
 float: right;
 color: #2563eb;
 font-size: 1.25rem;
 line-height: 1;
}

.faq-card[open] summary::after {
 content: "−";
}

.faq-card p {
 padding: 0 24px 24px;
 color: #475569;
}

.portfolio-title-row {
 display: flex;
 align-items: flex-start;
 justify-content: space-between;
 gap: 12px;
 margin-bottom: 10px;
}

.portfolio-title-row h3 {
 margin-bottom: 0;
}

.status-pill {
 flex: 0 0 auto;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 padding: 6px 10px;
 border-radius: 999px;
 background: #dcfce7;
 color: #166534;
 font-size: 0.78rem;
 font-weight: 900;
 white-space: nowrap;
}

.status-pill-demo {
 background: #fef3c7;
 color: #92400e;
}

.case-list {
 display: grid;
 gap: 10px;
 margin: 16px 0 2px;
}

.case-list div {
 padding: 12px 14px;
 border-radius: 14px;
 background: #f8fafc;
 border: 1px solid #e2e8f0;
}

.case-list dt {
 font-size: 0.78rem;
 font-weight: 900;
 color: #1d4ed8;
 text-transform: uppercase;
 letter-spacing: 0.06em;
 margin-bottom: 4px;
}

.case-list dd {
 margin: 0;
 color: #334155;
 line-height: 1.48;
}

.quote-form-intro {
 margin: 0 0 16px;
 padding: 14px 16px;
 border-radius: 16px;
 background: #eff6ff;
 border: 1px solid #bfdbfe;
 color: #1e3a8a;
 font-weight: 700;
}

.main-template {
 padding: 80px 0;
 min-height: 60vh;
}

.narrow-container {
 max-width: 920px;
}

.template-head {
 margin-bottom: 28px;
}

.template-head h1,
.product-info-panel h1 {
 font-size: clamp(2rem, 4vw, 3.5rem);
 line-height: 1.08;
 margin-bottom: 14px;
}

.template-rte,
.rte {
 color: #334155;
 font-size: 1.05rem;
}

.rte p,
.rte ul,
.rte ol {
 margin-bottom: 1rem;
}

.rte a {
 color: #1d4ed8;
 font-weight: 800;
 text-decoration: underline;
}

.template-cta {
 margin-top: 36px;
}

.template-cta .btn-primary {
 background: #2563eb;
 color: #ffffff;
 margin-top: 14px;
}

.product-layout {
 display: grid;
 grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
 gap: 28px;
 align-items: start;
}

.product-media-panel {
 border-radius: 24px;
 overflow: hidden;
 background: #e2e8f0;
}

.product-info-panel form {
 margin-top: 22px;
}

.product-info-panel button[disabled] {
 opacity: 0.55;
 cursor: not-allowed;
}

.product-price {
 font-size: 1.35rem;
 font-weight: 900;
 color: #1d4ed8;
 margin-bottom: 18px;
}

.collection-grid {
 grid-template-columns: repeat(3, 1fr);
}

.collection-product-card {
 padding: 18px;
}

.collection-product-card img {
 border-radius: 16px;
 margin-bottom: 14px;
}

.collection-product-card h2,
.blog-card h2 {
 font-size: 1.15rem;
}

.blog-list {
 display: grid;
 gap: 18px;
}

.pagination {
 margin-top: 30px;
 text-align: center;
}

@media (max-width: 1120px) {
 .proof-grid,
 .process-grid,
 .seo-market-grid,
 .collection-grid {
 grid-template-columns: repeat(2, 1fr);
 }
}

@media (max-width: 980px) {
 .faq-grid,
 .product-layout {
 grid-template-columns: 1fr;
 }

 .portfolio-title-row {
 flex-direction: column;
 }
}

@media (max-width: 640px) {
 .proof-grid,
 .process-grid,
 .seo-market-grid,
 .collection-grid {
 grid-template-columns: 1fr;
 }

 .faq-card summary {
 padding: 20px;
 }

 .faq-card p {
 padding: 0 20px 20px;
 }
}


/* V70 header spacing after adding Process + FAQ links */
.nav-links {
 gap: 14px;
}

.nav-links a {
 font-size: 0.9rem;
}

.header-cta {
 padding-left: 16px;
 padding-right: 16px;
}

@media (min-width: 1121px) and (max-width: 1280px) {
 .nav-links {
 gap: 10px;
 }

 .nav-links a {
 font-size: 0.84rem;
 }

 .header-cta {
 padding-left: 12px;
 padding-right: 12px;
 }
}


/* V73 simplification */
.services-grid-focused { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.section-head-compact { max-width: 760px; }
.contact-grid-simple { grid-template-columns: 0.82fr 1.18fr; align-items: start; }
.contact-card-simple { position: sticky; top: 110px; }
.contact-microcopy { margin-top: 1.25rem; opacity: .82; }
.quote-form-simple { display: grid; gap: 1rem; }
.form-grid-simple { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.quote-form-simple textarea { min-height: 120px; resize: vertical; }
.page-section { padding: 140px 0 90px; }
.page-narrow { max-width: 960px; }
.page-head { margin-bottom: 2rem; }
.page-card { display: grid; gap: 1rem; }
.page-card .btn { justify-self: start; margin-top: .5rem; }
.faq-list { display: grid; gap: 1rem; max-width: 920px; margin: 0 auto; }
.faq-item summary { cursor: pointer; font-weight: 800; font-size: 1.05rem; }
.faq-item p { margin-top: .85rem; }
.portfolio-card img { width: 100%; height: auto; display: block; border-radius: 18px; margin-bottom: 1rem; }
.portfolio-body { display: grid; gap: .65rem; }
.tag-muted { opacity: .72; }
@media (max-width: 900px) {
 .services-grid-focused, .contact-grid-simple, .form-grid-simple { grid-template-columns: 1fr; }
 .contact-card-simple { position: static; }
 .page-section { padding-top: 110px; }
}


/* V75 page fixes */
.about-content-grid {
 display: grid;
 grid-template-columns: 1.05fr 0.95fr;
 gap: 1.25rem;
 align-items: stretch;
}
.about-video-card {
 min-height: 320px;
 display: flex;
 align-items: center;
 justify-content: center;
 background: linear-gradient(135deg, #0f172a, #1e293b);
 color: #ffffff;
 overflow: hidden;
}
.about-video-placeholder {
 text-align: center;
 display: grid;
 gap: .75rem;
 max-width: 360px;
 margin: 0 auto;
}
.about-video-placeholder p {
 color: #dbeafe;
}
.about-play {
 width: 74px;
 height: 74px;
 border-radius: 999px;
 background: rgba(255,255,255,.14);
 border: 1px solid rgba(255,255,255,.28);
 display: inline-flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto .25rem;
 padding-left: 4px;
 font-size: 1.55rem;
}
.footer-contact-info address { display: none !important; }
@media (max-width: 900px) {
 .about-content-grid { grid-template-columns: 1fr; }
 .about-video-card { min-height: 260px; }
}


/* V76 static page rescue for missing pages */
[data-router-page][hidden],
[data-router-fallback][hidden] {
 display: none !important;
}
.tpsw-static-page-active .not-found-redirect {
 padding: 0;
}
.tpsw-static-page-active .not-found-redirect > .container {
 max-width: none;
}


/* V77 - professional standalone pages */
.tpsw-page {
 position: relative;
 overflow: hidden;
 padding: clamp(54px, 7vw, 92px) 0 clamp(70px, 8vw, 110px) !important;
 background:
 radial-gradient(circle at 12% 10%, rgba(56, 189, 248, 0.16), transparent 34%),
 radial-gradient(circle at 88% 14%, rgba(37, 99, 235, 0.13), transparent 36%),
 linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%) !important;
}

.tpsw-page::before {
 content: "";
 position: absolute;
 inset: auto -10% 0 -10%;
 height: 42%;
 background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.72));
 pointer-events: none;
}

.tpsw-page > .container {
 position: relative;
 z-index: 1;
}

.tpsw-page-hero {
 margin: 0 auto clamp(34px, 5vw, 64px);
}

.tpsw-page-hero--center {
 max-width: 900px;
 text-align: center;
}

.tpsw-page-hero--split {
 display: grid;
 grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
 align-items: end;
 gap: clamp(24px, 4vw, 58px);
}

.tpsw-kicker {
 display: inline-flex;
 align-items: center;
 gap: 9px;
 margin-bottom: 16px;
 padding: 8px 13px;
 border: 1px solid rgba(37, 99, 235, 0.18);
 border-radius: 999px;
 background: rgba(37, 99, 235, 0.08);
 color: #2563eb;
 font-size: 0.78rem;
 font-weight: 900;
 letter-spacing: 0.08em;
 text-transform: uppercase;
}

.tpsw-kicker::before {
 content: "";
 width: 8px;
 height: 8px;
 border-radius: 999px;
 background: #38bdf8;
 box-shadow: 0 0 0 5px rgba(56,189,248,0.16);
}

.tpsw-page-title {
 margin: 0;
 color: #0f172a;
 font-size: clamp(2.45rem, 6vw, 5.4rem);
 line-height: 0.98;
 letter-spacing: -0.065em;
 max-width: 960px;
}

.tpsw-page-hero--center .tpsw-page-title {
 margin-left: auto;
 margin-right: auto;
}

.tpsw-page-intro {
 margin: 18px 0 0;
 max-width: 720px;
 color: #475569;
 font-size: clamp(1.02rem, 1.4vw, 1.2rem);
 line-height: 1.75;
}

.tpsw-page-hero--center .tpsw-page-intro {
 margin-left: auto;
 margin-right: auto;
}

.tpsw-faq-layout {
 display: grid;
 grid-template-columns: minmax(0, 1fr) 360px;
 gap: clamp(22px, 3vw, 34px);
 align-items: start;
 max-width: 1120px;
 margin: 0 auto;
}

.tpsw-faq-list {
 display: grid;
 gap: 16px;
}

.tpsw-faq-item {
 border: 1px solid rgba(148, 163, 184, 0.38);
 border-radius: 22px;
 background: rgba(255, 255, 255, 0.9);
 box-shadow: 0 18px 48px rgba(15, 23, 42, 0.09);
 overflow: hidden;
}

.tpsw-faq-item summary {
 list-style: none;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 22px;
 cursor: pointer;
 padding: 24px 26px;
 color: #0f172a;
 font-weight: 900;
 font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.tpsw-faq-item summary::-webkit-details-marker { display: none; }

.tpsw-faq-icon {
 flex: 0 0 auto;
 width: 34px;
 height: 34px;
 border-radius: 999px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 background: #eef4ff;
 color: #2563eb;
 font-size: 1.35rem;
 line-height: 1;
 transition: transform 0.2s ease, background 0.2s ease;
}

.tpsw-faq-item[open] .tpsw-faq-icon {
 transform: rotate(45deg);
 background: #2563eb;
 color: #ffffff;
}

.tpsw-faq-answer {
 padding: 0 26px 26px;
}

.tpsw-faq-answer p {
 max-width: 760px;
 margin: 0;
 color: #475569;
 font-size: 1rem;
 line-height: 1.75;
}

.tpsw-faq-aside {
 position: sticky;
 top: 112px;
 border-radius: 28px;
 padding: 30px;
 background:
 linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.92)),
 #0f172a;
 color: #ffffff;
 box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
 overflow: hidden;
}

.tpsw-faq-aside::after {
 content: "";
 position: absolute;
 width: 190px;
 height: 190px;
 border-radius: 999px;
 right: -72px;
 bottom: -72px;
 background: rgba(56, 189, 248, 0.22);
}

.tpsw-aside-badge {
 display: inline-flex;
 padding: 7px 11px;
 border-radius: 999px;
 background: rgba(255, 255, 255, 0.12);
 color: #bfdbfe;
 font-size: 0.74rem;
 font-weight: 900;
 letter-spacing: 0.08em;
 text-transform: uppercase;
}

.tpsw-faq-aside h2 {
 position: relative;
 z-index: 1;
 margin: 18px 0 12px;
 color: #ffffff;
 font-size: clamp(1.65rem, 2.2vw, 2.25rem);
 line-height: 1.05;
}

.tpsw-faq-aside p {
 position: relative;
 z-index: 1;
 margin: 0 0 22px;
 color: #dbeafe;
 line-height: 1.7;
}

.tpsw-faq-aside .btn {
 position: relative;
 z-index: 1;
}

.tpsw-work-grid {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: clamp(18px, 2.5vw, 28px);
 align-items: stretch;
}

.tpsw-work-card {
 display: grid;
 grid-template-rows: auto 1fr;
 border: 1px solid rgba(148, 163, 184, 0.36);
 border-radius: 30px;
 background: rgba(255, 255, 255, 0.92);
 box-shadow: 0 24px 68px rgba(15, 23, 42, 0.11);
 overflow: hidden;
 min-width: 0;
}

.tpsw-work-card--featured {
 background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.tpsw-work-media {
 padding: 14px 14px 0;
}

.tpsw-work-media img {
 width: 100%;
 aspect-ratio: 16 / 10;
 object-fit: cover;
 object-position: top center;
 border-radius: 20px;
 border: 1px solid rgba(148, 163, 184, 0.28);
 box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.tpsw-work-content {
 display: flex;
 flex-direction: column;
 padding: 22px 24px 26px;
}

.tpsw-work-meta {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 10px;
 margin-bottom: 16px;
 color: #64748b;
 font-size: 0.86rem;
 font-weight: 800;
}

.tpsw-tag {
 display: inline-flex;
 align-items: center;
 padding: 7px 11px;
 border-radius: 999px;
 background: #eaf1ff;
 color: #2563eb;
 font-weight: 900;
}

.tpsw-tag--muted {
 background: #eef2f7;
 color: #475569;
}

.tpsw-work-content h2 {
 margin: 0 0 12px;
 color: #0f172a;
 font-size: clamp(1.72rem, 2.75vw, 2.85rem);
 line-height: 1;
 letter-spacing: -0.05em;
}

.tpsw-work-content p {
 margin: 0 0 18px;
 color: #475569;
 line-height: 1.7;
}

.tpsw-work-points {
 display: grid;
 gap: 9px;
 margin: auto 0 0;
 padding: 0;
 list-style: none;
}

.tpsw-work-points li {
 display: flex;
 align-items: flex-start;
 gap: 10px;
 color: #334155;
 font-weight: 700;
 line-height: 1.45;
}

.tpsw-work-points li::before {
 content: "";
 flex: 0 0 auto;
 width: 9px;
 height: 9px;
 margin-top: 0.55em;
 border-radius: 999px;
 background: #38bdf8;
 box-shadow: 0 0 0 4px rgba(56,189,248,0.16);
}

.tpsw-about-grid {
 display: grid;
 grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
 gap: clamp(22px, 3vw, 34px);
 align-items: stretch;
}

.tpsw-about-copy {
 display: grid;
 gap: 18px;
}

.tpsw-about-card {
 position: relative;
 border: 1px solid rgba(148, 163, 184, 0.36);
 border-radius: 28px;
 padding: 30px;
 background: rgba(255, 255, 255, 0.92);
 box-shadow: 0 24px 68px rgba(15, 23, 42, 0.1);
}

.tpsw-card-number {
 display: inline-flex;
 width: 44px;
 height: 44px;
 align-items: center;
 justify-content: center;
 margin-bottom: 22px;
 border-radius: 14px;
 background: #0f172a;
 color: #ffffff;
 font-weight: 900;
}

.tpsw-about-card h2 {
 margin: 0 0 12px;
 color: #0f172a;
 font-size: clamp(1.55rem, 2.1vw, 2.25rem);
 line-height: 1.08;
 letter-spacing: -0.035em;
}

.tpsw-about-card p {
 margin: 0;
 color: #475569;
 line-height: 1.75;
}

.tpsw-about-video-card {
 position: relative;
 min-height: 520px;
 border-radius: 34px;
 padding: 28px;
 display: flex;
 align-items: center;
 justify-content: center;
 background:
 radial-gradient(circle at 26% 18%, rgba(56,189,248,0.25), transparent 30%),
 linear-gradient(145deg, #0f172a, #1e3a8a 58%, #2563eb);
 color: #ffffff;
 box-shadow: 0 30px 78px rgba(15, 23, 42, 0.25);
 overflow: hidden;
}

.tpsw-about-video-card::before,
.tpsw-about-video-card::after {
 content: "";
 position: absolute;
 border-radius: 999px;
 background: rgba(255,255,255,0.1);
}

.tpsw-about-video-card::before {
 width: 260px;
 height: 260px;
 right: -82px;
 top: -82px;
}

.tpsw-about-video-card::after {
 width: 190px;
 height: 190px;
 left: -70px;
 bottom: -70px;
}

.tpsw-video-placeholder {
 position: relative;
 z-index: 1;
 max-width: 460px;
 text-align: center;
}

.tpsw-play {
 display: inline-flex;
 width: 96px;
 height: 96px;
 align-items: center;
 justify-content: center;
 padding-left: 6px;
 margin-bottom: 26px;
 border-radius: 999px;
 background: rgba(255,255,255,0.16);
 border: 1px solid rgba(255,255,255,0.32);
 color: #ffffff;
 font-size: 2rem;
 box-shadow: 0 22px 48px rgba(15, 23, 42, 0.25);
}

.tpsw-video-placeholder h2 {
 margin: 0 0 14px;
 color: #ffffff;
 font-size: clamp(1.8rem, 3vw, 3rem);
 line-height: 1.04;
 letter-spacing: -0.05em;
}

.tpsw-video-placeholder p {
 margin: 0;
 color: #dbeafe;
 line-height: 1.75;
}

.tpsw-about-pill-grid {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 14px;
 margin-top: clamp(22px, 3vw, 34px);
}

.tpsw-about-pill-grid div {
 display: grid;
 gap: 5px;
 padding: 18px 20px;
 border: 1px solid rgba(148, 163, 184, 0.36);
 border-radius: 22px;
 background: rgba(255, 255, 255, 0.82);
 box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.tpsw-about-pill-grid strong {
 color: #0f172a;
 font-size: 1.05rem;
}

.tpsw-about-pill-grid span {
 color: #64748b;
 font-size: 0.94rem;
}

@media (max-width: 1040px) {
 .tpsw-page-hero--split,
 .tpsw-faq-layout,
 .tpsw-about-grid {
 grid-template-columns: 1fr;
 }

 .tpsw-faq-aside {
 position: relative;
 top: auto;
 }

 .tpsw-work-grid {
 grid-template-columns: 1fr;
 max-width: 760px;
 margin-left: auto;
 margin-right: auto;
 }

 .tpsw-about-video-card {
 min-height: 390px;
 }
}

@media (max-width: 760px) {
 .tpsw-page {
 padding-top: 46px !important;
 }

 .tpsw-page-title {
 font-size: clamp(2.25rem, 13vw, 3.8rem);
 letter-spacing: -0.055em;
 }

 .tpsw-page-intro {
 font-size: 1rem;
 }

 .tpsw-faq-item summary,
 .tpsw-faq-answer {
 padding-left: 20px;
 padding-right: 20px;
 }

 .tpsw-work-content,
 .tpsw-about-card,
 .tpsw-faq-aside {
 padding: 22px;
 }

 .tpsw-work-content h2 {
 font-size: clamp(1.75rem, 9vw, 2.4rem);
 }

 .tpsw-about-pill-grid {
 grid-template-columns: 1fr;
 }
}

@media (max-width: 520px) {
 .tpsw-work-media {
 padding: 10px 10px 0;
 }

 .tpsw-about-video-card {
 min-height: 320px;
 border-radius: 26px;
 }

 .tpsw-play {
 width: 78px;
 height: 78px;
 }
}

.tpsw-static-page-active .not-found-redirect { display: block; min-height: auto; }
.tpsw-static-page-active .not-found-redirect > [data-router-page] { width: 100%; }


/* V78: simplify services and prioritize direct contact */
#services .section-head {
 max-width: 920px;
}

#services .section-head h2 {
 font-size: clamp(2.1rem, 4vw, 4rem);
 letter-spacing: -0.04em;
 margin-bottom: 1rem;
}

.services-intro-priority {
 font-size: clamp(1.14rem, 1.45vw, 1.42rem);
 line-height: 1.55;
 color: var(--text) !important;
 max-width: 980px;
 font-weight: 600;
}

#contact .section-head {
 max-width: 780px;
 margin-bottom: 1.6rem;
}

#contact .section-head h2 {
 white-space: normal;
 font-size: clamp(2rem, 3.5vw, 3.55rem);
 letter-spacing: -0.04em;
 margin-bottom: 0.45rem;
}

#contact .section-head p {
 font-size: clamp(1.02rem, 1.25vw, 1.22rem);
 color: var(--text);
 font-weight: 700;
}

.contact-combined-card {
 display: grid;
 grid-template-columns: minmax(280px, 0.8fr) minmax(480px, 1.2fr);
 gap: clamp(1.25rem, 3vw, 2.5rem);
 align-items: stretch;
 padding: clamp(1.25rem, 2.6vw, 2.4rem);
}

.contact-direct-panel {
 display: flex;
 flex-direction: column;
 justify-content: center;
 gap: 1rem;
 padding: clamp(1rem, 2.5vw, 2rem);
 border-radius: 24px;
 background: linear-gradient(145deg, #111827 0%, #1e293b 100%);
 color: #ffffff;
 min-height: 100%;
}

.contact-direct-label {
 margin: 0 0 0.3rem;
 color: rgba(255, 255, 255, 0.76);
 text-transform: uppercase;
 letter-spacing: 0.08em;
 font-weight: 900;
 font-size: 0.82rem;
}

.contact-direct-link {
 display: grid;
 gap: 0.35rem;
 padding: 1.05rem 1.1rem;
 border-radius: 18px;
 color: #ffffff;
 text-decoration: none;
 border: 1px solid rgba(255, 255, 255, 0.14);
 background: rgba(255, 255, 255, 0.08);
 transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.contact-direct-link:hover {
 transform: translateY(-2px);
 background: rgba(255, 255, 255, 0.14);
 border-color: rgba(255, 255, 255, 0.26);
}

.contact-direct-link span {
 color: rgba(255, 255, 255, 0.75);
 font-weight: 800;
 font-size: 0.86rem;
 text-transform: uppercase;
 letter-spacing: 0.06em;
}

.contact-direct-link strong {
 color: #ffffff;
 font-size: clamp(1.18rem, 1.5vw, 1.55rem);
 line-height: 1.15;
 word-break: break-word;
}

.contact-direct-phone {
 background: linear-gradient(135deg, var(--primary), #5b7cfa);
 border-color: rgba(255, 255, 255, 0.28);
 box-shadow: 0 20px 48px rgba(67, 97, 238, 0.32);
}

.contact-direct-phone strong {
 font-size: clamp(1.45rem, 2.2vw, 2.15rem);
}

.contact-form-panel {
 min-width: 0;
}

.contact-form-panel .quote-form-simple textarea {
 min-height: 104px;
}

@media (max-width: 980px) {
 .contact-combined-card {
 grid-template-columns: 1fr;
 }

 .contact-direct-panel {
 min-height: auto;
 }
}

@media (max-width: 640px) {
 .contact-combined-card {
 padding: 1rem;
 }

 .contact-direct-panel {
 padding: 1rem;
 }

 .contact-direct-phone strong {
 font-size: 1.55rem;
 }
}


/* V79: integrated contact block, no separate dark panel */
#contact .section-head {
 max-width: 900px;
 margin-bottom: 1.45rem;
}

#contact .section-head h2 {
 font-size: clamp(2.25rem, 4vw, 4.25rem);
 margin-bottom: 0;
}

#contact .section-head p:empty {
 display: none;
}

.contact-integrated-card {
 padding: clamp(1.35rem, 2.6vw, 2.35rem);
 max-width: 1120px;
 margin: 0 auto;
}

.contact-methods {
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: 1rem;
 margin-bottom: clamp(1.25rem, 2.2vw, 1.9rem);
}

.contact-method {
 display: flex;
 align-items: center;
 gap: 1rem;
 min-width: 0;
 padding: 1.05rem 1.15rem;
 border-radius: 22px;
 border: 1px solid var(--border);
 background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
 text-decoration: none;
 color: var(--text);
 box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
 transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.contact-method:hover {
 transform: translateY(-2px);
 border-color: rgba(67, 97, 238, 0.38);
 box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
}

.contact-method-icon {
 width: 52px;
 height: 52px;
 flex: 0 0 auto;
 display: inline-grid;
 place-items: center;
 border-radius: 999px;
 background: rgba(67, 97, 238, 0.1);
 color: var(--primary);
 font-size: 1.25rem;
 font-weight: 900;
}

.contact-method-phone .contact-method-icon {
 background: var(--primary);
 color: #ffffff;
 box-shadow: 0 14px 30px rgba(67, 97, 238, 0.24);
}

.contact-method-copy {
 display: grid;
 gap: 0.2rem;
 min-width: 0;
}

.contact-method-copy span {
 color: var(--muted);
 font-size: 0.78rem;
 font-weight: 900;
 text-transform: uppercase;
 letter-spacing: 0.07em;
}

.contact-method-copy strong {
 display: block;
 color: var(--text);
 font-size: clamp(1.08rem, 1.55vw, 1.45rem);
 line-height: 1.12;
 overflow-wrap: anywhere;
}

.contact-method-phone .contact-method-copy strong {
 color: var(--primary);
 font-size: clamp(1.22rem, 2vw, 1.8rem);
}

.contact-integrated-card .quote-form-simple {
 max-width: none;
}

.contact-integrated-card .form-grid-simple {
 grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-integrated-card .quote-form-simple textarea {
 min-height: 112px;
}

@media (max-width: 760px) {
 .contact-methods,
 .contact-integrated-card .form-grid-simple {
 grid-template-columns: 1fr;
 }

 .contact-integrated-card {
 padding: 1rem;
 }

 .contact-method {
 padding: 0.95rem;
 }
}


/* V80: contact title, alignment and smaller contact method cards */
#contact .container {
 max-width: 1220px;
}

#contact .section-head {
 max-width: none;
 margin-bottom: 1.35rem;
}

#contact .section-head h2 {
 font-size: clamp(2.25rem, 4vw, 4.05rem);
 margin-bottom: 0;
}

#contact .section-head p,
#contact .section-head p:empty {
 display: none !important;
}

.contact-integrated-card {
 max-width: none;
 width: 100%;
 margin: 0;
 padding: clamp(1.15rem, 2.25vw, 1.9rem);
}

.contact-methods {
 gap: 0.85rem;
 margin-bottom: clamp(1rem, 1.7vw, 1.45rem);
}

.contact-method {
 min-height: auto;
 padding: 0.82rem 0.95rem;
 gap: 0.78rem;
 border-radius: 18px;
 box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.contact-method-icon {
 width: 42px;
 height: 42px;
 font-size: 1.02rem;
}

.contact-method-copy span {
 font-size: 0.72rem;
 letter-spacing: 0.065em;
}

.contact-method-copy strong {
 font-size: clamp(1rem, 1.28vw, 1.22rem);
 line-height: 1.12;
}

.contact-method-phone .contact-method-copy strong {
 font-size: clamp(1.12rem, 1.55vw, 1.48rem);
}

.contact-integrated-card .form-grid-simple {
 gap: 1rem;
}

.contact-integrated-card .quote-form-simple textarea {
 min-height: 102px;
}

@media (max-width: 760px) {
 .contact-methods {
 gap: 0.75rem;
 }

 .contact-method {
 padding: 0.78rem 0.85rem;
 }

 .contact-method-copy strong,
 .contact-method-phone .contact-method-copy strong {
 font-size: 1.08rem;
 }
}

/* V83 - footer Facebook + essential links */
.footer-inner-v83 {
 gap: 14px;
 text-align: center;
}

.footer-contact-row,
.footer-links-row {
 display: flex;
 justify-content: center;
 align-items: center;
 flex-wrap: wrap;
 gap: 10px 14px;
}

.footer-contact-link,
.footer-links-row a,
.footer-facebook-link {
 color: #0f172a;
 font-weight: 800;
 text-decoration: none;
}

.footer-contact-link:hover,
.footer-links-row a:hover,
.footer-facebook-link:hover {
 color: var(--primary);
}

.footer-links-row {
 font-size: 0.92rem;
}

.footer-links-row a {
 color: #475569;
 font-weight: 700;
}

.footer-facebook-link {
 display: inline-flex;
 align-items: center;
 gap: 7px;
 color: #1877f2;
}

.footer-facebook-link:hover {
 color: #0f5bd8;
}

.footer-facebook-icon {
 width: 24px;
 height: 24px;
 border-radius: 999px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 background: #1877f2;
 box-shadow: 0 8px 18px rgba(24,119,242,.22);
}

.footer-facebook-icon svg {
 display: block;
 width: 24px;
 height: 24px;
 fill: #ffffff;
}

.footer-separator {
 color: #94a3b8;
}

@media (max-width: 640px) {
 .footer-contact-row,
 .footer-links-row {
 flex-direction: column;
 gap: 8px;
 }

 .footer-separator {
 display: none;
 }
}

/* V84 - footer branded color background */
footer {
 background:
 radial-gradient(circle at 18% 0%, rgba(67, 97, 238, 0.32), transparent 30%),
 linear-gradient(135deg, #0f172a 0%, #172554 58%, #1d4ed8 135%);
 color: rgba(255, 255, 255, 0.78);
 border-top: 1px solid rgba(255, 255, 255, 0.08);
 padding: 38px 0 44px;
}

footer #footerText {
 color: rgba(226, 232, 240, 0.82);
}

.footer-contact-link,
.footer-links-row a {
 color: #ffffff;
}

.footer-contact-link:hover,
.footer-links-row a:hover {
 color: #93c5fd;
}

.footer-facebook-link {
 color: #60a5fa;
}

.footer-facebook-link:hover {
 color: #bfdbfe;
}

.footer-facebook-icon {
 background: #1877f2;
 box-shadow: 0 10px 24px rgba(24, 119, 242, 0.34);
}

.footer-separator {
 color: rgba(203, 213, 225, 0.55);
}

/* V85 - realisations images edge-to-edge */
.tpsw-work-media {
 padding: 0 !important;
 overflow: hidden;
 background: transparent;
}

.tpsw-work-media img {
 display: block;
 width: 100%;
 height: 100%;
 min-height: 245px;
 aspect-ratio: 16 / 10;
 object-fit: cover;
 object-position: top center;
 border: 0 !important;
 border-radius: 30px 30px 0 0 !important;
 box-shadow: none !important;
}

@media (max-width: 760px) {
 .tpsw-work-media img {
 min-height: 220px;
 }
}

@media (max-width: 520px) {
 .tpsw-work-media {
 padding: 0 !important;
 }

 .tpsw-work-media img {
 min-height: 200px;
 border-radius: 26px 26px 0 0 !important;
 }
}


/* V86 - tighter standalone page headers and cleaner hero text */
.tpsw-work-page,
.tpsw-faq-page {
 padding-top: clamp(28px, 3.6vw, 48px) !important;
}

.tpsw-work-page .tpsw-page-hero,
.tpsw-faq-page .tpsw-page-hero {
 margin-bottom: clamp(28px, 4vw, 46px);
}

.tpsw-page-hero--no-intro {
 display: block;
}

.tpsw-about-page {
 padding-top: clamp(34px, 4.2vw, 56px) !important;
}

.tpsw-about-hero {
 max-width: 1180px;
 margin-bottom: clamp(30px, 4vw, 52px);
}

.tpsw-about-hero .tpsw-page-title {
 max-width: 1180px;
 margin-left: auto;
 margin-right: auto;
 text-align: center;
 font-size: clamp(2.6rem, 5.2vw, 5rem);
 line-height: 1.02;
}

@media (max-width: 760px) {
 .tpsw-work-page,
 .tpsw-faq-page,
 .tpsw-about-page {
 padding-top: 30px !important;
 }

 .tpsw-about-hero .tpsw-page-title {
 font-size: clamp(2.25rem, 10vw, 3.6rem);
 }
}

/* V87 - requested title-size correction only */
.tpsw-about-hero .tpsw-page-title {
 font-size: clamp(2.05rem, 3.8vw, 3.65rem) !important;
 line-height: 1.12 !important;
 letter-spacing: -0.045em !important;
 max-width: 980px !important;
}

.tpsw-work-page .tpsw-page-title {
 font-size: clamp(2.35rem, 4.4vw, 4.25rem) !important;
 line-height: 1.02 !important;
 letter-spacing: -0.055em !important;
}

@media (max-width: 760px) {
 .tpsw-about-hero .tpsw-page-title {
 font-size: clamp(2rem, 8vw, 3.05rem) !important;
 }

 .tpsw-work-page .tpsw-page-title {
 font-size: clamp(2.15rem, 9vw, 3.35rem) !important;
 }
}


/* V88 - about title text update spacing only */
.tpsw-about-hero {
 margin-bottom: clamp(18px, 2.4vw, 30px) !important;
}

.tpsw-about-page .tpsw-about-grid {
 margin-top: 0 !important;
}


/* V89 - requested title corrections only */
.tpsw-about-hero .tpsw-page-title {
 max-width: 1220px !important;
 text-wrap: balance;
}

.tpsw-work-page .tpsw-page-title {
 font-size: clamp(2.2rem, 4vw, 3.9rem) !important;
}

@media (max-width: 760px) {
 .tpsw-work-page .tpsw-page-title {
 font-size: clamp(2.05rem, 8.5vw, 3.1rem) !important;
 }
}

/* V91 - requested realisations page image replacement + tighter top spacing only */
.tpsw-work-page {
 padding-top: clamp(10px, 1.2vw, 18px) !important;
}

.tpsw-work-page .tpsw-page-hero {
 margin-bottom: clamp(24px, 3.2vw, 38px) !important;
}

/* V92 - requested realisations spacing, title, media crop, and card title sizes */
.tpsw-work-page {
 padding-top: 0 !important;
}

.tpsw-work-page .container {
 padding-top: 0 !important;
}

.tpsw-work-page .tpsw-page-hero {
 margin-top: 0 !important;
 margin-bottom: clamp(18px, 2.3vw, 28px) !important;
}

.tpsw-work-page .tpsw-kicker {
 margin-bottom: 10px !important;
}

.tpsw-work-page .tpsw-page-title {
 font-size: clamp(1.95rem, 3.25vw, 3.15rem) !important;
 line-height: 1.03 !important;
 letter-spacing: -0.05em !important;
}

.tpsw-work-card:nth-child(1) .tpsw-work-media img,
.tpsw-work-card:nth-child(3) .tpsw-work-media img {
 object-position: left top !important;
}

.tpsw-work-content h2 {
 font-size: clamp(1.45rem, 2.15vw, 2.25rem) !important;
 line-height: 1.03 !important;
 letter-spacing: -0.045em !important;
}

@media (max-width: 760px) {
 .tpsw-work-page {
 padding-top: 0 !important;
 }

 .tpsw-work-page .tpsw-page-title {
 font-size: clamp(1.9rem, 8vw, 2.85rem) !important;
 }

 .tpsw-work-content h2 {
 font-size: clamp(1.45rem, 7vw, 2.05rem) !important;
 }
}

/* V93 - show full realisation screenshots without side-shifting/cropping logos */
.tpsw-work-card:nth-child(1) .tpsw-work-media img,
.tpsw-work-card:nth-child(3) .tpsw-work-media img {
 object-position: center top !important;
}

.tpsw-work-page .tpsw-work-media img {
 height: auto !important;
 min-height: 0 !important;
 aspect-ratio: auto !important;
 object-fit: contain !important;
 object-position: center top !important;
 background: #ffffff !important;
}

/* V94 - equalize portfolio screenshots and restore clean card alignment */
.tpsw-work-grid {
 align-items: stretch !important;
}

.tpsw-work-card {
 height: 100% !important;
}

.tpsw-work-media {
 padding: 0 !important;
 aspect-ratio: 2048 / 1090 !important;
 height: auto !important;
 overflow: hidden !important;
 background: #ffffff !important;
}

.tpsw-work-page .tpsw-work-media img {
 display: block !important;
 width: 100% !important;
 height: auto !important;
 min-height: 0 !important;
 aspect-ratio: auto !important;
 object-fit: fill !important;
 object-position: center top !important;
 background: #ffffff !important;
}

.tpsw-work-content {
 display: flex !important;
 flex-direction: column !important;
}

.tpsw-work-meta {
 min-height: 32px;
 align-items: center !important;
}

.tpsw-work-content h2 {
 min-height: 2.1em;
}

.tpsw-work-content p {
 min-height: 5.1em;
}

@media (max-width: 980px) {
 .tpsw-work-media {
 aspect-ratio: 16 / 10 !important;
 }

 .tpsw-work-content h2,
 .tpsw-work-content p {
 min-height: 0;
 }
}

/* V95 - reduce realisations card titles so company names fit on one line on desktop */
@media (min-width: 981px) {
 .tpsw-work-content h2 {
 font-size: clamp(1.35rem, 1.65vw, 1.95rem) !important;
 line-height: 1.06 !important;
 letter-spacing: -0.04em !important;
 white-space: nowrap !important;
 min-height: auto !important;
 }
}

@media (max-width: 980px) {
 .tpsw-work-content h2 {
 white-space: normal !important;
 }
}

/* V97 - replace Les Pros du Store image with looping video */
.tpsw-work-media video,
.tpsw-work-video {
 display: block !important;
 width: 100% !important;
 height: 100% !important;
 min-height: 0 !important;
 aspect-ratio: auto !important;
 object-fit: cover !important;
 object-position: center top !important;
 border: 0 !important;
 border-radius: 30px 30px 0 0 !important;
 box-shadow: none !important;
 background: #ffffff !important;
}

@media (max-width: 520px) {
 .tpsw-work-media video,
 .tpsw-work-video {
 border-radius: 26px 26px 0 0 !important;
 }
}

/* V98 - reduce About page title while keeping the desktop title on two lines */
.tpsw-about-hero .tpsw-page-title {
 font-size: clamp(1.9rem, 3.05vw, 3.15rem) !important;
 line-height: 1.08 !important;
 letter-spacing: -0.045em !important;
 max-width: 1080px !important;
 text-align: center !important;
 text-wrap: balance;
}

@media (min-width: 981px) {
 .tpsw-about-hero .tpsw-page-title {
 max-width: 1080px !important;
 }
}

@media (max-width: 760px) {
 .tpsw-about-hero .tpsw-page-title {
 font-size: clamp(1.85rem, 8vw, 2.75rem) !important;
 }
}

/* V99 - center homepage hero and remove right info card */
.home-hero .hero-card,
.hero .hero-card {
 display: none !important;
}

.hero .container.hero-grid.hero-content {
 grid-template-columns: 1fr !important;
 max-width: 1120px !important;
 justify-items: center !important;
 text-align: center !important;
}

.hero .container.hero-grid.hero-content > div:first-child {
 max-width: 980px !important;
 margin: 0 auto !important;
 text-align: center !important;
}

.hero h1,
.hero p {
 margin-left: auto !important;
 margin-right: auto !important;
}

.hero p[data-i18n="hero_text"] {
 max-width: 980px !important;
 font-size: clamp(1.2rem, 1.55vw, 1.38rem) !important;
 line-height: 1.55 !important;
 font-weight: 800 !important;
 margin-bottom: 30px !important;
}

.hero-actions {
 justify-content: center !important;
}

.hero-callout,
.hero-mini {
 text-align: center !important;
}

@media (max-width: 980px) {
 .hero .container.hero-grid.hero-content,
 .hero .container.hero-grid.hero-content > div:first-child {
 text-align: center !important;
 }
}

/* V100 - improve homepage hero text readability over bright moving video */
.hero-overlay {
 background:
 radial-gradient(circle at 50% 48%, rgba(7, 12, 32, 0.76) 0%, rgba(7, 12, 32, 0.58) 36%, rgba(15, 23, 42, 0.38) 68%, rgba(15, 23, 42, 0.26) 100%),
 linear-gradient(180deg, rgba(7, 12, 32, 0.24) 0%, rgba(7, 12, 32, 0.44) 100%) !important;
 z-index: 1 !important;
}

.hero h1,
.hero p,
.hero-callout,
.hero-mini,
.hero-actions {
 position: relative;
 z-index: 2;
}

.hero h1,
.hero p,
.hero-callout,
.hero-mini {
 text-shadow:
 0 3px 18px rgba(0, 0, 0, 0.72),
 0 1px 3px rgba(0, 0, 0, 0.82) !important;
}

.hero p[data-i18n="hero_text"] {
 color: #ffffff !important;
}

.hero .btn-outline {
 background: rgba(15, 23, 42, 0.32) !important;
 backdrop-filter: blur(6px);
 -webkit-backdrop-filter: blur(6px);
}

@media (max-width: 760px) {
 .hero-overlay {
 background:
 radial-gradient(circle at 50% 45%, rgba(7, 12, 32, 0.82) 0%, rgba(7, 12, 32, 0.62) 48%, rgba(15, 23, 42, 0.44) 100%),
 linear-gradient(180deg, rgba(7, 12, 32, 0.32) 0%, rgba(7, 12, 32, 0.52) 100%) !important;
 }
}


/* V101 - replace full-screen dark filter with a subtle transparent text bubble */
.hero-overlay {
 background: transparent !important;
}

.hero .container.hero-grid.hero-content > div:first-child {
 display: flex !important;
 justify-content: center !important;
}

.hero-text-bubble {
 width: min(100%, 980px);
 padding: 30px 34px;
 border-radius: 32px;
 background: linear-gradient(135deg, rgba(15, 23, 42, 0.26) 0%, rgba(30, 41, 59, 0.18) 100%);
 border: 1px solid rgba(255, 255, 255, 0.14);
 box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
 backdrop-filter: blur(6px);
 -webkit-backdrop-filter: blur(6px);
}

.hero-text-bubble h1,
.hero-text-bubble p,
.hero-text-bubble .hero-actions {
 position: relative;
 z-index: 2;
}

.hero h1,
.hero p,
.hero-callout,
.hero-mini {
 text-shadow:
 0 3px 14px rgba(0, 0, 0, 0.48),
 0 1px 2px rgba(0, 0, 0, 0.55) !important;
}

.hero p[data-i18n="hero_text"] {
 color: #ffffff !important;
}

.hero .btn-outline {
 background: rgba(15, 23, 42, 0.18) !important;
}

@media (max-width: 980px) {
 .hero-text-bubble {
 width: min(100%, 92vw);
 padding: 24px 22px;
 border-radius: 26px;
 }
}

@media (max-width: 760px) {
 .hero-text-bubble {
 width: 100%;
 padding: 20px 18px;
 border-radius: 22px;
 background: linear-gradient(135deg, rgba(15, 23, 42, 0.34) 0%, rgba(30, 41, 59, 0.24) 100%);
 }
}


/* V102 - premium WOW homepage hero concept */
.hero {
 min-height: 96vh !important;
 padding: clamp(96px, 10vh, 132px) 0 clamp(72px, 8vh, 96px) !important;
 background: #071225 !important;
}

.hero-overlay {
 background:
 radial-gradient(circle at 50% 46%, rgba(37, 99, 235, 0.14) 0%, rgba(37, 99, 235, 0.08) 24%, transparent 54%),
 linear-gradient(90deg, rgba(3, 7, 18, 0.14) 0%, rgba(3, 7, 18, 0.04) 48%, rgba(37, 99, 235, 0.06) 100%) !important;
 pointer-events: none !important;
}

.hero .container.hero-grid.hero-content {
 max-width: 1240px !important;
 min-height: calc(96vh - 210px) !important;
 align-items: center !important;
}

.hero .container.hero-grid.hero-content > div:first-child {
 width: 100% !important;
 max-width: 1040px !important;
}

.hero-text-bubble {
 position: relative !important;
 isolation: isolate !important;
 width: min(100%, 1040px) !important;
 padding: clamp(34px, 4.2vw, 58px) clamp(26px, 5vw, 64px) !important;
 border-radius: clamp(28px, 3.2vw, 44px) !important;
 background:
 linear-gradient(135deg, rgba(6, 14, 36, 0.42), rgba(20, 50, 104, 0.22) 52%, rgba(56, 189, 248, 0.10)) !important;
 border: 1px solid rgba(255, 255, 255, 0.22) !important;
 box-shadow:
 0 34px 100px rgba(2, 8, 23, 0.32),
 inset 0 1px 0 rgba(255, 255, 255, 0.20) !important;
 backdrop-filter: blur(8px) saturate(120%) !important;
 -webkit-backdrop-filter: blur(8px) saturate(120%) !important;
}

.hero-text-bubble::before {
 content: "";
 position: absolute;
 inset: 1px;
 border-radius: inherit;
 background:
 radial-gradient(circle at 22% 12%, rgba(255,255,255,0.18), transparent 30%),
 radial-gradient(circle at 82% 24%, rgba(96,165,250,0.18), transparent 28%),
 linear-gradient(180deg, rgba(255,255,255,0.08), transparent 46%);
 pointer-events: none;
 z-index: -1;
}

.hero-text-bubble::after {
 content: "";
 position: absolute;
 left: 50%;
 bottom: -1px;
 transform: translateX(-50%);
 width: min(76%, 720px);
 height: 1px;
 background: linear-gradient(90deg, transparent, rgba(125,211,252,0.70), transparent);
 pointer-events: none;
}

.hero h1 {
 max-width: 930px !important;
 margin: 0 auto 22px !important;
 font-size: clamp(3.15rem, 5.25vw, 5.85rem) !important;
 line-height: 0.98 !important;
 letter-spacing: -0.058em !important;
 text-wrap: balance !important;
}

.hero h1 .hero-title-line {
 white-space: normal !important;
}

.hero p[data-i18n="hero_text"] {
 max-width: 860px !important;
 margin: 0 auto 34px !important;
 font-size: clamp(1.18rem, 1.55vw, 1.38rem) !important;
 line-height: 1.62 !important;
 font-weight: 800 !important;
 letter-spacing: -0.01em !important;
}

.hero h1,
.hero p,
.hero-callout,
.hero-mini {
 text-shadow:
 0 3px 18px rgba(0,0,0,0.56),
 0 1px 2px rgba(0,0,0,0.48) !important;
}

.hero-actions {
 gap: 16px !important;
 margin-bottom: 24px !important;
}

.hero .btn {
 padding: 16px 26px !important;
 border-radius: 999px !important;
 font-weight: 900 !important;
}

.hero .btn-primary {
 background: linear-gradient(180deg, #ffffff, #eaf2ff) !important;
 color: #0f172a !important;
 box-shadow: 0 18px 38px rgba(2, 8, 23, 0.22) !important;
}

.hero .btn-outline {
 background: rgba(255, 255, 255, 0.12) !important;
 border: 1px solid rgba(255, 255, 255, 0.32) !important;
 box-shadow: inset 0 1px 0 rgba(255,255,255,0.12) !important;
}

.hero-callout {
 margin-top: 2px !important;
 margin-bottom: 18px !important;
 font-size: 1rem !important;
}

.hero-mini {
 display: inline-flex !important;
 justify-content: center !important;
 align-items: center !important;
 width: auto !important;
 max-width: none !important;
 margin: 0 auto !important;
 padding: 9px 14px !important;
 border-radius: 999px !important;
 background: rgba(255,255,255,0.10) !important;
 border: 1px solid rgba(255,255,255,0.14) !important;
 font-size: 0.98rem !important;
 font-weight: 700 !important;
}

@media (max-width: 980px) {
 .hero h1 {
 font-size: clamp(2.65rem, 8.6vw, 4.8rem) !important;
 }

 .hero-text-bubble {
 width: min(100%, 94vw) !important;
 }
}

@media (max-width: 760px) {
 .hero {
 min-height: 92vh !important;
 padding-top: 94px !important;
 }

 .hero .container.hero-grid.hero-content {
 min-height: auto !important;
 }

 .hero-text-bubble {
 padding: 24px 18px !important;
 border-radius: 24px !important;
 background: linear-gradient(135deg, rgba(6,14,36,0.52), rgba(20,50,104,0.28)) !important;
 }

 .hero h1 {
 font-size: clamp(2.35rem, 11.5vw, 3.55rem) !important;
 line-height: 1.03 !important;
 }

 .hero p[data-i18n="hero_text"] {
 font-size: 1.05rem !important;
 line-height: 1.56 !important;
 }

 .hero-actions {
 flex-direction: column !important;
 align-items: center !important;
 }

 .hero .btn {
 width: min(100%, 320px) !important;
 text-align: center !important;
 }

 .hero-mini {
 display: block !important;
 width: 100% !important;
 white-space: normal !important;
 }
}


/* V103 - homepage route stability and hero template fix; no visual change to WOW hero */
.template-index .not-found-redirect {
 display: none !important;
}

/* V104 - premium compact hero balance */
.hero {
 min-height: 94vh !important;
 padding: clamp(88px, 9vh, 116px) 0 clamp(58px, 7vh, 78px) !important;
}

.hero-overlay {
 background:
 radial-gradient(circle at 50% 46%, rgba(15, 23, 42, 0.10) 0%, rgba(15, 23, 42, 0.05) 38%, transparent 68%) !important;
}

.hero .container.hero-grid.hero-content {
 min-height: calc(94vh - 178px) !important;
 max-width: 1180px !important;
}

.hero .container.hero-grid.hero-content > div:first-child {
 max-width: 1080px !important;
}

.hero-text-bubble {
 width: min(100%, 1040px) !important;
 padding: clamp(26px, 3vw, 42px) clamp(26px, 4.2vw, 56px) !important;
 border-radius: clamp(26px, 2.7vw, 38px) !important;
 background:
 linear-gradient(135deg, rgba(6, 14, 36, 0.34), rgba(20, 50, 104, 0.18) 52%, rgba(56, 189, 248, 0.08)) !important;
 box-shadow:
 0 26px 78px rgba(2, 8, 23, 0.26),
 inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
 backdrop-filter: blur(7px) saturate(116%) !important;
 -webkit-backdrop-filter: blur(7px) saturate(116%) !important;
}

.hero h1 {
 max-width: 1020px !important;
 margin: 0 auto 26px !important;
 font-size: clamp(2.95rem, 4.55vw, 5.15rem) !important;
 line-height: 1.02 !important;
 letter-spacing: -0.055em !important;
}

.hero h1 .hero-title-line {
 display: block !important;
 white-space: nowrap !important;
}

.hero p[data-i18n="hero_text"] {
 max-width: 880px !important;
 margin: 0 auto 32px !important;
 font-size: clamp(1.16rem, 1.42vw, 1.3rem) !important;
 line-height: 1.62 !important;
}

.hero-actions {
 margin-bottom: 22px !important;
}

.hero-callout {
 margin-bottom: 14px !important;
}

.hero-mini {
 padding: 8px 14px !important;
}

@media (max-width: 980px) {
 .hero h1 .hero-title-line {
 white-space: normal !important;
 }

 .hero h1 {
 font-size: clamp(2.55rem, 8.2vw, 4.25rem) !important;
 }

 .hero-text-bubble {
 width: min(100%, 92vw) !important;
 padding: 24px 22px !important;
 }
}

@media (max-width: 760px) {
 .hero {
 min-height: 90vh !important;
 }

 .hero h1 {
 font-size: clamp(2.2rem, 10.5vw, 3.25rem) !important;
 line-height: 1.04 !important;
 margin-bottom: 18px !important;
 }

 .hero p[data-i18n="hero_text"] {
 font-size: 1.02rem !important;
 margin-bottom: 24px !important;
 }
}

/* V105 - keep hero title inside the glass bubble */
.hero-text-bubble {
 width: min(96vw, 1140px) !important;
 padding-left: clamp(28px, 3.4vw, 48px) !important;
 padding-right: clamp(28px, 3.4vw, 48px) !important;
 overflow: hidden !important;
}

.hero h1 {
 max-width: 100% !important;
 font-size: clamp(2.65rem, 3.85vw, 4.35rem) !important;
 line-height: 1.05 !important;
 letter-spacing: -0.048em !important;
 margin-left: auto !important;
 margin-right: auto !important;
}

.hero h1 .hero-title-line {
 white-space: nowrap !important;
}

@media (max-width: 1200px) {
 .hero h1 {
 font-size: clamp(2.35rem, 4.65vw, 3.9rem) !important;
 }
}

@media (max-width: 980px) {
 .hero h1 .hero-title-line {
 white-space: normal !important;
 }
}

/* V106 - mobile hero overflow fix */
@media (max-width: 760px) {
 html,
 body {
 overflow-x: hidden !important;
 }

 .hero {
 overflow: hidden !important;
 }

 .hero .container.hero-grid.hero-content {
 width: 100% !important;
 max-width: 100% !important;
 padding-left: 16px !important;
 padding-right: 16px !important;
 box-sizing: border-box !important;
 overflow: hidden !important;
 }

 .hero .container.hero-grid.hero-content > div:first-child {
 width: 100% !important;
 max-width: 100% !important;
 box-sizing: border-box !important;
 overflow: hidden !important;
 }

 .hero-text-bubble {
 width: 100% !important;
 max-width: calc(100vw - 32px) !important;
 margin-left: auto !important;
 margin-right: auto !important;
 padding: 22px 18px !important;
 box-sizing: border-box !important;
 overflow: hidden !important;
 }

 .hero h1 {
 max-width: 100% !important;
 font-size: clamp(2.2rem, 10.5vw, 3.35rem) !important;
 line-height: 1.08 !important;
 letter-spacing: -0.035em !important;
 overflow-wrap: normal !important;
 word-break: normal !important;
 }

 .hero h1 .hero-title-line {
 white-space: normal !important;
 max-width: 100% !important;
 }

 .hero p[data-i18n="hero_text"] {
 max-width: 100% !important;
 font-size: clamp(1.05rem, 4.4vw, 1.25rem) !important;
 line-height: 1.45 !important;
 }

 .hero-actions {
 width: 100% !important;
 display: grid !important;
 grid-template-columns: 1fr !important;
 gap: 14px !important;
 justify-items: stretch !important;
 }

 .hero-actions .btn {
 width: 100% !important;
 text-align: center !important;
 box-sizing: border-box !important;
 }

 .hero-callout,
 .hero-mini {
 max-width: 100% !important;
 overflow-wrap: normal !important;
 }
}

/* V107 - iPad/tablet hero overflow fix */
@media (min-width: 761px) and (max-width: 1180px) {
 html,
 body {
 overflow-x: hidden !important;
 }

 .hero {
 overflow: hidden !important;
 }

 .hero .container.hero-grid.hero-content {
 width: 100% !important;
 max-width: 100% !important;
 padding-left: clamp(20px, 4vw, 40px) !important;
 padding-right: clamp(20px, 4vw, 40px) !important;
 box-sizing: border-box !important;
 overflow: hidden !important;
 }

 .hero .container.hero-grid.hero-content > div:first-child {
 width: 100% !important;
 max-width: 100% !important;
 box-sizing: border-box !important;
 overflow: hidden !important;
 }

 .hero-text-bubble {
 width: 100% !important;
 max-width: min(900px, calc(100vw - 48px)) !important;
 margin-left: auto !important;
 margin-right: auto !important;
 padding: clamp(24px, 3vw, 34px) clamp(24px, 3.8vw, 42px) !important;
 box-sizing: border-box !important;
 overflow: hidden !important;
 }

 .hero h1 {
 max-width: 100% !important;
 font-size: clamp(2.45rem, 5.1vw, 3.6rem) !important;
 line-height: 1.07 !important;
 letter-spacing: -0.038em !important;
 overflow-wrap: normal !important;
 word-break: normal !important;
 }

 .hero h1 .hero-title-line {
 white-space: normal !important;
 max-width: 100% !important;
 }

 .hero p[data-i18n="hero_text"] {
 max-width: 780px !important;
 font-size: clamp(1.08rem, 2.1vw, 1.22rem) !important;
 line-height: 1.48 !important;
 }

 .hero-actions {
 display: flex !important;
 flex-wrap: wrap !important;
 justify-content: center !important;
 gap: 14px !important;
 }

 .hero-actions .btn {
 max-width: 100% !important;
 box-sizing: border-box !important;
 }

 .hero-callout,
 .hero-mini {
 max-width: 100% !important;
 overflow-wrap: normal !important;
 }
}


/* V108 - remove hero service capsule line */
.hero-mini { display: none !important; }


/* V109 - remove white bar under realisation screenshots on iPad/tablet sizes */
@media (max-width: 980px) {
 .tpsw-work-media {
 aspect-ratio: 2048 / 1090 !important;
 height: auto !important;
 overflow: hidden !important;
 background: transparent !important;
 }

 .tpsw-work-page .tpsw-work-media img,
 .tpsw-work-page .tpsw-work-media video,
 .tpsw-work-video {
 width: 100% !important;
 height: 100% !important;
 min-height: 0 !important;
 object-fit: cover !important;
 object-position: center top !important;
 display: block !important;
 }
}

/* V110 - add breathing room inside realisation cards */
.tpsw-work-grid {
 gap: clamp(24px, 3.2vw, 42px) !important;
}

.tpsw-work-card {
 min-height: 100% !important;
}

.tpsw-work-content {
 padding: 30px 32px 36px !important;
}

.tpsw-work-meta {
 gap: 14px !important;
 margin-bottom: 22px !important;
}

.tpsw-work-content h2 {
 margin-bottom: 18px !important;
}

.tpsw-work-content p {
 margin-bottom: 26px !important;
 line-height: 1.78 !important;
}

.tpsw-work-points {
 gap: 14px !important;
 margin-top: 4px !important;
}

.tpsw-work-points li {
 line-height: 1.55 !important;
}

@media (max-width: 980px) {
 .tpsw-work-grid {
 gap: 28px !important;
 }

 .tpsw-work-content {
 padding: 28px 28px 32px !important;
 }
}

@media (max-width: 560px) {
 .tpsw-work-content {
 padding: 24px 22px 28px !important;
 }

 .tpsw-work-meta {
 margin-bottom: 18px !important;
 }

 .tpsw-work-content h2 {
 margin-bottom: 14px !important;
 }

 .tpsw-work-content p {
 margin-bottom: 22px !important;
 }
}

/* V111 - make realisation media taller while keeping all cards aligned */
.tpsw-work-media {
 aspect-ratio: 16 / 9.5 !important;
 height: auto !important;
 overflow: hidden !important;
 background: #ffffff !important;
}

.tpsw-work-page .tpsw-work-media img,
.tpsw-work-page .tpsw-work-media video,
.tpsw-work-video {
 width: 100% !important;
 height: 100% !important;
 min-height: 0 !important;
 object-fit: cover !important;
 object-position: center top !important;
 display: block !important;
}

@media (max-width: 980px) {
 .tpsw-work-media {
 aspect-ratio: 16 / 9.8 !important;
 }
}

@media (max-width: 560px) {
 .tpsw-work-media {
 aspect-ratio: 16 / 10.4 !important;
 }
}

/* V112 - real page templates for Service and Contact */
.template-page-service #services,
.template-page-contact #contact {
 padding-top: clamp(58px, 6vw, 88px);
}

.template-page-service #services .section-head,
.template-page-contact #contact .section-head {
 margin-left: auto;
 margin-right: auto;
 text-align: center;
}


/* V115 - clean revision: header + phone button only */
.header-phone {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 42px;
 padding: 0 14px;
 border-radius: 999px;
 background: rgba(255,255,255,0.10);
 border: 1px solid rgba(255,255,255,0.24);
 color: #ffffff !important;
 font-weight: 900 !important;
 white-space: nowrap;
}
.header-phone:hover,
.header-phone:focus {
 background: rgba(255,255,255,0.16);
}
.header-cta {
 background: linear-gradient(135deg, #38bdf8, #2563eb) !important;
 border-color: rgba(255,255,255,0.22) !important;
 color: #ffffff !important;
 box-shadow: 0 12px 28px rgba(37,99,235,.28);
}
.btn-phone {
 background: rgba(255,255,255,0.16) !important;
 color: #ffffff !important;
 border: 1px solid rgba(255,255,255,0.34) !important;
 box-shadow: inset 0 1px 0 rgba(255,255,255,0.12) !important;
}
.btn-phone:hover,
.btn-phone:focus {
 background: rgba(255,255,255,0.22) !important;
 transform: translateY(-2px);
}
@media (max-width: 1120px) {
 .header-phone {
 width: 100%;
 margin-top: 18px;
 min-height: 54px;
 }
}


/* V169 - hero brand lockup: Ton Premier Site Web with separate word spacing */
.hero-brand-lockup {
 display: flex !important;
 flex-direction: column !important;
 align-items: center !important;
 justify-content: center !important;
 gap: 10px !important;
 margin: 0 auto 24px !important;
 text-align: center !important;
}

.hero-brand-logo {
 display: block !important;
 width: auto !important;
 height: clamp(96px, 8.6vw, 142px) !important;
 max-width: min(240px, 44vw) !important;
 object-fit: contain !important;
 filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.34)) !important;
 margin: 0 auto 4px !important;
}

.hero h1.hero-brand-title {
 max-width: 100% !important;
 margin: 0 auto !important;
 font-size: clamp(2.88rem, 5.02vw, 5.72rem) !important;
 line-height: 0.94 !important;
 letter-spacing: -0.048em !important;
 font-weight: 950 !important;
 white-space: nowrap !important;
 text-wrap: nowrap !important;
 color: #ffffff !important;
 text-shadow: 0 4px 16px rgba(0, 0, 0, 0.46) !important, 0 1px 2px rgba(0,0,0,0.36) !important;
}

.hero-brand-word,
.hero-brand-main,
.hero-brand-accent,
.hero-brand-site,
.hero-brand-web {
 display: inline !important;
 white-space: normal !important;
 color: #ffffff !important;
}

.hero-brand-word + .hero-brand-word {
 margin-left: 0 !important;
}

.hero-agency-title {
 margin: 4px auto 0 !important;
 max-width: 900px !important;
 color: #ffffff !important;
 font-size: clamp(1.85rem, 3vw, 3.1rem) !important;
 line-height: 1.08 !important;
 font-weight: 900 !important;
 letter-spacing: -0.04em !important;
 text-shadow:
 0 3px 18px rgba(0,0,0,0.56),
 0 1px 2px rgba(0,0,0,0.48) !important;
}

@media (max-width: 980px) {
 .hero-brand-logo {
 height: clamp(82px, 12vw, 116px) !important;
 max-width: min(220px, 50vw) !important;
 }
 .hero h1.hero-brand-title {
 font-size: clamp(2.28rem, 8.45vw, 4.05rem) !important;
 letter-spacing: -0.04em !important;
 white-space: normal !important;
 text-wrap: balance !important;
 }
 .hero-agency-title {
 font-size: clamp(1.55rem, 5.6vw, 2.55rem) !important;
 }
}

@media (max-width: 760px) {
 .hero-brand-lockup {
 gap: 8px !important;
 margin-bottom: 18px !important;
 }
 .hero-brand-logo {
 height: clamp(72px, 18vw, 96px) !important;
 max-width: min(200px, 54vw) !important;
 }
 .hero h1.hero-brand-title {
 font-size: clamp(1.92rem, 10.8vw, 3.04rem) !important;
 line-height: 0.98 !important;
 letter-spacing: -0.034em !important;
 }
 .hero-agency-title {
 font-size: clamp(1.25rem, 6.3vw, 2rem) !important;
 line-height: 1.15 !important;
 }
}


/* V124 - header and hero CTA refinements */
.btn-with-icon {
 display: inline-flex !important;
 align-items: center !important;
 justify-content: center !important;
 gap: 10px !important;
}

.btn-icon {
 display: inline-flex !important;
 align-items: center !important;
 justify-content: center !important;
 width: 18px !important;
 height: 18px !important;
 flex: 0 0 18px !important;
 line-height: 0 !important;
}

.btn-icon svg {
 width: 18px !important;
 height: 18px !important;
 display: block !important;
}

.header-phone {
 min-height: 48px !important;
 padding: 0 18px !important;
 background: linear-gradient(135deg, #38bdf8, #2563eb) !important;
 border: 1px solid rgba(255,255,255,0.22) !important;
 color: #ffffff !important;
 box-shadow: 0 12px 28px rgba(37,99,235,.28) !important;
}

.header-phone:hover,
.header-phone:focus,
.header-phone:active {
 background: linear-gradient(135deg, #38bdf8, #2563eb) !important;
 border-color: rgba(255,255,255,0.22) !important;
 color: #ffffff !important;
 transform: none !important;
}

.hero .btn-phone {
 background: linear-gradient(135deg, #38bdf8, #2563eb) !important;
 border: 1px solid rgba(255,255,255,0.22) !important;
 color: #ffffff !important;
 box-shadow: 0 12px 28px rgba(37,99,235,.28) !important;
}

.hero .btn-phone:hover,
.hero .btn-phone:focus,
.hero .btn-phone:active {
 background: linear-gradient(135deg, #38bdf8, #2563eb) !important;
 border-color: rgba(255,255,255,0.22) !important;
 color: #ffffff !important;
 transform: translateY(-2px) !important;
}


/* V126 - longer hero agency title test */
.hero-agency-title {
 max-width: 1100px !important;
 font-size: clamp(1.45rem, 2.25vw, 2.55rem) !important;
 line-height: 1.12 !important;
 text-wrap: balance !important;
}


/* V128 - keep TonPremierSiteWeb fully visible on mobile/tablet */
.hero h1.hero-brand-title {
 box-sizing: border-box !important;
 width: 100% !important;
 max-width: 100% !important;
 overflow: visible !important;
}

.hero h1.hero-brand-title .hero-brand-word,
.hero h1.hero-brand-title .hero-brand-main,
.hero h1.hero-brand-title .hero-brand-accent,
.hero h1.hero-brand-title .hero-brand-site,
.hero h1.hero-brand-title .hero-brand-web {
 display: inline !important;
 white-space: normal !important;
}

@media (min-width: 761px) and (max-width: 1100px) {
 .hero h1.hero-brand-title {
  font-size: clamp(2.1rem, 5.95vw, 3.5rem) !important;
  line-height: 0.99 !important;
  letter-spacing: -0.05em !important;
  white-space: nowrap !important;
  text-wrap: nowrap !important;
 }
}

@media (max-width: 760px) {
 .hero h1.hero-brand-title {
  font-size: clamp(1.45rem, 7.25vw, 2.85rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.07em !important;
  white-space: nowrap !important;
  text-wrap: nowrap !important;
  margin-left: auto !important;
  margin-right: auto !important;
 }

 .hero-brand-lockup {
  width: 100% !important;
  max-width: 100% !important;
 }
}

@media (max-width: 420px) {
 .hero h1.hero-brand-title {
  font-size: clamp(1.32rem, 6.9vw, 1.88rem) !important;
  letter-spacing: -0.072em !important;
 }
}

/* V130 - subtle hero spacing reduction from V128, less aggressive than V129 */
.hero {
 min-height: 91vh !important;
 padding-top: clamp(76px, 8vh, 102px) !important;
 padding-bottom: clamp(54px, 6vh, 70px) !important;
}

.hero .container.hero-grid.hero-content {
 min-height: calc(91vh - 164px) !important;
 align-items: center !important;
}

@media (min-width: 761px) and (max-width: 1180px) {
 .hero {
  min-height: 86vh !important;
  padding-top: clamp(72px, 7.2vw, 92px) !important;
  padding-bottom: clamp(50px, 6vw, 66px) !important;
 }

 .hero .container.hero-grid.hero-content {
  min-height: calc(86vh - 150px) !important;
  align-items: center !important;
 }
}

@media (max-width: 760px) {
 .hero {
  min-height: 82vh !important;
  padding-top: clamp(72px, 12vw, 82px) !important;
  padding-bottom: clamp(46px, 8vw, 58px) !important;
  align-items: center !important;
 }

 .hero .container.hero-grid.hero-content {
  min-height: auto !important;
  align-items: center !important;
 }
}


/* V131 - hero visual balance test: more breathing room + smaller brand title */
.hero-brand-lockup {
 gap: 14px !important;
 margin-bottom: 32px !important;
}

.hero-brand-logo {
 margin-bottom: 8px !important;
}

.hero h1.hero-brand-title {
 font-size: clamp(2.85rem, 4.95vw, 5.75rem) !important;
 line-height: 0.96 !important;
 margin-bottom: 8px !important;
}

.hero-agency-title {
 margin-top: 6px !important;
 font-size: clamp(1.55rem, 2.35vw, 2.65rem) !important;
 line-height: 1.14 !important;
}

.hero-actions {
 margin-top: 4px !important;
}

@media (min-width: 761px) and (max-width: 1180px) {
 .hero-brand-lockup {
  gap: 12px !important;
  margin-bottom: 28px !important;
 }

 .hero-brand-logo {
  margin-bottom: 6px !important;
 }

 .hero h1.hero-brand-title {
  font-size: clamp(2.05rem, 5.75vw, 3.48rem) !important;
  line-height: 1 !important;
  margin-bottom: 7px !important;
 }

 .hero-agency-title {
  margin-top: 5px !important;
  font-size: clamp(1.35rem, 4.3vw, 2.25rem) !important;
  line-height: 1.16 !important;
 }
}

@media (max-width: 760px) {
 .hero-brand-lockup {
  gap: 10px !important;
  margin-bottom: 26px !important;
 }

 .hero-brand-logo {
  margin-bottom: 5px !important;
 }

 .hero h1.hero-brand-title {
  font-size: clamp(1.38rem, 6.95vw, 2.6rem) !important;
  line-height: 1.03 !important;
  margin-bottom: 6px !important;
 }

 .hero-agency-title {
  margin-top: 4px !important;
  font-size: clamp(1.12rem, 5.65vw, 1.8rem) !important;
  line-height: 1.18 !important;
 }

 .hero-actions {
  margin-top: 2px !important;
 }
}

@media (max-width: 420px) {
 .hero h1.hero-brand-title {
  font-size: clamp(1.22rem, 6.45vw, 1.74rem) !important;
  letter-spacing: -0.072em !important;
 }

 .hero-agency-title {
  font-size: clamp(1.05rem, 5.35vw, 1.55rem) !important;
 }
}


/* V133 - header CTA text balance + default hero background */
.header-cta {
 font-size: 1rem !important;
 font-weight: 900 !important;
 letter-spacing: 0 !important;
}

@media (max-width: 1120px) {
 .header-cta {
  font-size: 1.12rem !important;
  font-weight: 900 !important;
 }
}


/* V134 - header contact calendar icon + desktop nav readability */
@media (min-width: 1121px) {
 .nav-links > a:not(.header-cta):not(.header-phone) {
  font-size: 1.02rem !important;
  font-weight: 800 !important;
 }
}

.header-cta.btn-with-icon {
 gap: 10px !important;
}

.header-cta .btn-icon {
 order: 2 !important;
}


/* V135 - prevent header desktop wrapping + safer desktop breakpoint */
@media (min-width: 1361px) {
 .topbar .container.nav {
  width: min(94%, 1560px) !important;
  max-width: 1560px !important;
 }

 .nav-links {
  flex-wrap: nowrap !important;
  gap: clamp(14px, 1.05vw, 22px) !important;
  align-items: center !important;
 }

 .nav-links > a,
 .lang-switch,
 .header-cta,
 .header-phone {
  flex: 0 0 auto !important;
 }

 .logo-image {
  max-width: min(250px, 18vw) !important;
 }
}

@media (min-width: 1121px) and (max-width: 1360px) {
 .topbar {
  overflow: visible !important;
 }

 .topbar .container.nav {
  width: min(92%, var(--max-width)) !important;
  max-width: var(--max-width) !important;
 }

 .nav {
  position: relative !important;
  padding: 16px 0 !important;
  gap: 16px !important;
 }

 .menu-toggle {
  display: inline-flex !important;
  flex-shrink: 0 !important;
 }

 .nav-links {
  display: none !important;
  position: absolute !important;
  top: calc(100% + 14px) !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1100 !important;
  gap: 0 !important;
  padding: 22px 22px 24px !important;
  border-radius: 30px !important;
  background: rgba(15, 23, 42, 0.995) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.52) !important;
  backdrop-filter: blur(22px) !important;
  -webkit-backdrop-filter: blur(22px) !important;
 }

 .topbar.menu-open .nav-links {
  display: grid !important;
 }

 .nav-links > a:not(.header-cta):not(.header-phone) {
  display: block !important;
  width: 100% !important;
  padding: 16px 6px !important;
  font-size: 1.12rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
 }

 .lang-switch {
  margin-top: 18px !important;
  justify-self: start !important;
  padding: 8px 10px !important;
 }

 .header-cta,
 .header-phone {
  width: 100% !important;
  margin-top: 22px !important;
  min-height: 58px !important;
  justify-content: center !important;
  padding: 0 24px !important;
  font-size: 1.12rem !important;
 }

 .header-phone {
  margin-top: 14px !important;
 }
}

/* V140 - Nos Services rebuilt from approved screenshot direction */
.tpsw-services-v140 {
 background: linear-gradient(180deg, #eaf6ff 0%, #f8fbff 44%, #ffffff 100%) !important;
 color: #0f172a !important;
 padding: clamp(70px, 7vw, 112px) 0 clamp(78px, 7vw, 120px) !important;
 overflow: hidden !important;
}

.tpsw-services-v140 .container {
 max-width: 1240px !important;
}

.tpsw-services-v140-head {
 max-width: 980px !important;
 margin: 0 auto 42px !important;
 text-align: center !important;
}

.tpsw-services-v140-eyebrow {
 color: #2563eb !important;
 font-weight: 900 !important;
 letter-spacing: .12em !important;
 text-transform: uppercase !important;
 margin-bottom: 16px !important;
}

.tpsw-services-v140-head h2 {
 margin: 0 auto 22px !important;
 color: #0f172a !important;
 font-size: clamp(3.2rem, 6vw, 5.4rem) !important;
 line-height: .92 !important;
 letter-spacing: -.07em !important;
 font-weight: 950 !important;
}

.tpsw-services-v140-head p {
 margin: 0 auto !important;
 max-width: 860px !important;
 color: #263244 !important;
 font-size: clamp(1.25rem, 2.2vw, 2rem) !important;
 line-height: 1.5 !important;
 font-weight: 800 !important;
}

.tpsw-services-v140-grid {
 display: grid !important;
 grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
 gap: 24px !important;
 align-items: stretch !important;
}

.tpsw-service-v140-card {
 display: flex !important;
 flex-direction: column !important;
 background: #ffffff !important;
 border: 1px solid #d8e2ef !important;
 border-radius: 28px !important;
 padding: 28px 26px 26px !important;
 box-shadow: 0 22px 70px rgba(15, 23, 42, .08) !important;
 color: #0f172a !important;
 min-height: 100% !important;
}

.tpsw-service-v140-visual {
 width: 100% !important;
 max-width: 310px !important;
 margin: 0 auto 26px !important;
}

.tpsw-service-v140-visual svg {
 width: 100% !important;
 height: auto !important;
 display: block !important;
 overflow: visible !important;
}

.tpsw-service-v140-card h3 {
 margin: 0 0 18px !important;
 color: #071327 !important;
 font-size: clamp(1.55rem, 2.1vw, 2.25rem) !important;
 line-height: 1.08 !important;
 letter-spacing: -.045em !important;
 font-weight: 950 !important;
}

.tpsw-service-v140-card p {
 margin: 0 0 24px !important;
 color: #263244 !important;
 font-size: clamp(1.05rem, 1.35vw, 1.24rem) !important;
 line-height: 1.65 !important;
 font-weight: 560 !important;
}

.tpsw-service-v140-list {
 list-style: none !important;
 padding: 22px 0 0 !important;
 margin: auto 0 0 !important;
 border-top: 1px solid #d8e2ef !important;
 display: grid !important;
 gap: 12px !important;
}

.tpsw-service-v140-list li {
 position: relative !important;
 padding-left: 44px !important;
 color: #111827 !important;
 font-size: clamp(1rem, 1.1vw, 1.18rem) !important;
 line-height: 1.35 !important;
 font-weight: 650 !important;
}

.tpsw-service-v140-list li::before {
 content: "" !important;
 position: absolute !important;
 left: 0 !important;
 top: .02em !important;
 width: 29px !important;
 height: 29px !important;
 border-radius: 999px !important;
 border: 3px solid #1d6ee8 !important;
 background: #ffffff !important;
}

.tpsw-service-v140-list li::after {
 content: "✓" !important;
 position: absolute !important;
 left: 7px !important;
 top: -.08em !important;
 color: #1d6ee8 !important;
 font-size: 22px !important;
 font-weight: 950 !important;
 line-height: 1 !important;
}

.tpsw-service-v140-link {
 display: inline-flex !important;
 align-items: center !important;
 gap: 10px !important;
 margin-top: 26px !important;
 color: #1263dc !important;
 text-decoration: none !important;
 font-size: clamp(1.05rem, 1.1vw, 1.22rem) !important;
 font-weight: 950 !important;
}

.tpsw-services-v140-includes {
 margin: 44px auto 0 !important;
 background: #ffffff !important;
 border: 1px solid #d8e2ef !important;
 border-radius: 28px !important;
 box-shadow: 0 18px 60px rgba(15, 23, 42, .07) !important;
 padding: 30px 34px !important;
}

.tpsw-services-v140-includes h3 {
 margin: 0 0 24px !important;
 color: #071327 !important;
 font-size: clamp(1.35rem, 1.75vw, 2rem) !important;
 font-weight: 950 !important;
 letter-spacing: -.03em !important;
}

.tpsw-services-v140-include-grid {
 display: grid !important;
 grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
 gap: 16px !important;
}

.tpsw-services-v140-include-grid div {
 display: grid !important;
 grid-template-columns: 34px 1fr !important;
 gap: 12px !important;
 align-items: center !important;
 color: #0f172a !important;
}

.tpsw-services-v140-include-grid span {
 color: #1263dc !important;
 font-size: 1.45rem !important;
 line-height: 1 !important;
 font-weight: 950 !important;
 text-align: center !important;
}

.tpsw-services-v140-include-grid strong {
 font-size: clamp(.95rem, 1vw, 1.08rem) !important;
 line-height: 1.22 !important;
 font-weight: 850 !important;
}

.tpsw-services-v140-cta {
 margin: 46px auto 0 !important;
 text-align: center !important;
 max-width: 720px !important;
}

.tpsw-services-v140-cta-btn {
 display: inline-flex !important;
 width: min(100%, 620px) !important;
 min-height: 74px !important;
 align-items: center !important;
 justify-content: center !important;
 gap: 12px !important;
 border-radius: 999px !important;
 background: linear-gradient(135deg, #1263f2 0%, #0048d8 100%) !important;
 color: #ffffff !important;
 border: 1px solid rgba(255,255,255,.24) !important;
 box-shadow: 0 22px 58px rgba(18, 99, 242, .3) !important;
 text-decoration: none !important;
 font-size: clamp(1.1rem, 1.6vw, 1.6rem) !important;
 font-weight: 950 !important;
}

.tpsw-services-v140-cta p {
 margin: 18px auto 0 !important;
 color: #334155 !important;
 font-size: clamp(1.05rem, 1.45vw, 1.42rem) !important;
 line-height: 1.45 !important;
 font-weight: 520 !important;
}

@media (max-width: 1180px) {
 .tpsw-services-v140-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
 }
 .tpsw-services-v140-include-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
 }
 .tpsw-services-v140-include-grid div:last-child {
  grid-column: 1 / -1 !important;
 }
}

@media (max-width: 760px) {
 .tpsw-services-v140 {
  padding: 62px 0 82px !important;
 }
 .tpsw-services-v140-head {
  margin-bottom: 34px !important;
 }
 .tpsw-services-v140-head h2 {
  font-size: clamp(3.1rem, 13.2vw, 4.35rem) !important;
  line-height: .94 !important;
 }
 .tpsw-services-v140-head p {
  font-size: clamp(1.3rem, 5.4vw, 1.8rem) !important;
  line-height: 1.52 !important;
 }
 .tpsw-services-v140-grid,
 .tpsw-services-v140-include-grid {
  grid-template-columns: 1fr !important;
 }
 .tpsw-service-v140-card {
  border-radius: 26px !important;
  padding: 30px 28px 28px !important;
 }
 .tpsw-service-v140-visual {
  max-width: 365px !important;
  margin-bottom: 30px !important;
 }
 .tpsw-service-v140-card h3 {
  font-size: clamp(1.95rem, 8.4vw, 2.6rem) !important;
 }
 .tpsw-service-v140-card p {
  font-size: clamp(1.28rem, 5.2vw, 1.62rem) !important;
  line-height: 1.58 !important;
 }
 .tpsw-service-v140-list li {
  font-size: clamp(1.18rem, 4.9vw, 1.46rem) !important;
  padding-left: 50px !important;
 }
 .tpsw-services-v140-includes {
  padding: 28px 26px !important;
 }
 .tpsw-services-v140-include-grid div,
 .tpsw-services-v140-include-grid div:last-child {
  grid-column: auto !important;
 }
 .tpsw-services-v140-include-grid strong {
  font-size: clamp(1.16rem, 4.8vw, 1.42rem) !important;
 }
 .tpsw-services-v140-cta-btn {
  width: 100% !important;
 }
}

/* V141 - Nos Services: cleaner bullet check icons only */
.tpsw-services-v140-list li {
 padding-left: 42px !important;
}

.tpsw-services-v140-list li::before {
 content: "" !important;
 position: absolute !important;
 left: 0 !important;
 top: 0.08em !important;
 width: 26px !important;
 height: 26px !important;
 border-radius: 999px !important;
 border: 2px solid #1d6ee8 !important;
 background: #ffffff !important;
 box-shadow: 0 5px 14px rgba(29, 110, 232, 0.12) !important;
 box-sizing: border-box !important;
}

.tpsw-services-v140-list li::after {
 content: "" !important;
 position: absolute !important;
 left: 8px !important;
 top: calc(0.08em + 6px) !important;
 width: 7px !important;
 height: 12px !important;
 border-right: 2.5px solid #1d6ee8 !important;
 border-bottom: 2.5px solid #1d6ee8 !important;
 transform: rotate(45deg) !important;
 transform-origin: center !important;
 background: transparent !important;
 color: transparent !important;
 font-size: 0 !important;
 line-height: 0 !important;
}

@media (max-width: 760px) {
 .tpsw-services-v140-list li {
  padding-left: 39px !important;
 }

 .tpsw-services-v140-list li::before {
  width: 24px !important;
  height: 24px !important;
  top: 0.09em !important;
 }

 .tpsw-services-v140-list li::after {
  left: 7px !important;
  top: calc(0.09em + 5px) !important;
  width: 7px !important;
  height: 11px !important;
 }
}

/* V142 - Nos Services: real inline SVG bullet icons, no pseudo/check text */
.tpsw-services-v140-list li {
 display: grid !important;
 grid-template-columns: 28px 1fr !important;
 align-items: start !important;
 column-gap: 14px !important;
 padding-left: 0 !important;
 position: relative !important;
}

.tpsw-services-v140-list li::before,
.tpsw-services-v140-list li::after {
 content: none !important;
 display: none !important;
 width: 0 !important;
 height: 0 !important;
 border: 0 !important;
 background: none !important;
 box-shadow: none !important;
}

.tpsw-service-v142-check {
 width: 28px !important;
 height: 28px !important;
 display: inline-flex !important;
 align-items: center !important;
 justify-content: center !important;
 margin-top: 0.02em !important;
 flex: 0 0 28px !important;
 line-height: 0 !important;
}

.tpsw-service-v142-check svg {
 width: 28px !important;
 height: 28px !important;
 display: block !important;
 overflow: visible !important;
}

.tpsw-service-v142-check circle {
 fill: #ffffff !important;
 stroke: #1d6ee8 !important;
 stroke-width: 2.2 !important;
}

.tpsw-service-v142-check path {
 fill: none !important;
 stroke: #1d6ee8 !important;
 stroke-width: 2.55 !important;
 stroke-linecap: round !important;
 stroke-linejoin: round !important;
}

.tpsw-service-v142-text {
 display: block !important;
 min-width: 0 !important;
}

@media (max-width: 760px) {
 .tpsw-services-v140-list li {
  grid-template-columns: 27px 1fr !important;
  column-gap: 13px !important;
 }
 .tpsw-service-v142-check,
 .tpsw-service-v142-check svg {
  width: 27px !important;
  height: 27px !important;
 }
}

/* V143 - REAL fix: Nos Services bullet icons, protected from data-i18n overwrite */
#services.tpsw-services-v140 .tpsw-service-v140-list li {
 display: flex !important;
 align-items: flex-start !important;
 gap: 12px !important;
 grid-template-columns: unset !important;
 padding-left: 0 !important;
 position: relative !important;
}

#services.tpsw-services-v140 .tpsw-service-v140-list li::before,
#services.tpsw-services-v140 .tpsw-service-v140-list li::after {
 content: none !important;
 display: none !important;
 width: 0 !important;
 height: 0 !important;
 border: 0 !important;
 background: transparent !important;
 box-shadow: none !important;
}

#services.tpsw-services-v140 .tpsw-service-v143-check {
 width: 20px !important;
 height: 20px !important;
 min-width: 20px !important;
 flex: 0 0 20px !important;
 display: inline-flex !important;
 align-items: center !important;
 justify-content: center !important;
 margin-top: 0.18em !important;
 line-height: 0 !important;
}

#services.tpsw-services-v140 .tpsw-service-v143-check svg {
 width: 20px !important;
 height: 20px !important;
 display: block !important;
 overflow: visible !important;
}

#services.tpsw-services-v140 .tpsw-service-v143-check circle {
 fill: #ffffff !important;
 stroke: #1d6ee8 !important;
 stroke-width: 2.1 !important;
}

#services.tpsw-services-v140 .tpsw-service-v143-check path {
 fill: none !important;
 stroke: #1d6ee8 !important;
 stroke-width: 2.3 !important;
 stroke-linecap: round !important;
 stroke-linejoin: round !important;
}

#services.tpsw-services-v140 .tpsw-service-v143-text {
 display: block !important;
 min-width: 0 !important;
}

@media (max-width: 760px) {
 #services.tpsw-services-v140 .tpsw-service-v140-list li {
  gap: 11px !important;
 }
 #services.tpsw-services-v140 .tpsw-service-v143-check,
 #services.tpsw-services-v140 .tpsw-service-v143-check svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  flex-basis: 20px !important;
 }
}

/* V145 - Nos Services: faithful compact reference style only */
#services.tpsw-services-v145 {
 background: #f7fbff !important;
 padding: clamp(60px, 7vw, 96px) 0 !important;
 color: #0f172a !important;
 overflow: hidden !important;
}
#services.tpsw-services-v145 .container { max-width: 1180px !important; }
.tpsw-services-v145-head { max-width: 840px !important; margin: 0 auto 28px !important; text-align: center !important; }
.tpsw-services-v145-eyebrow { display: inline-flex !important; align-items: center !important; gap: 12px !important; color: #0b64dc !important; font-size: .72rem !important; letter-spacing: .14em !important; font-weight: 900 !important; line-height: 1 !important; margin-bottom: 10px !important; }
.tpsw-services-v145-eyebrow::before,
.tpsw-services-v145-eyebrow::after { content: "" !important; width: 38px !important; height: 1px !important; background: #dce5f1 !important; display: block !important; }
.tpsw-services-v145-head h2 { margin: 0 auto 14px !important; color: #0f172a !important; font-size: clamp(2.05rem, 4.5vw, 3.55rem) !important; line-height: .98 !important; letter-spacing: -.052em !important; font-weight: 950 !important; }
.tpsw-services-v145-head h2 span { color: #1263f2 !important; }
.tpsw-services-v145-head p { margin: 0 auto !important; max-width: 690px !important; color: #263244 !important; font-size: clamp(.96rem, 1.14vw, 1.1rem) !important; line-height: 1.5 !important; font-weight: 560 !important; }
.tpsw-services-v145-head p strong { color: #1263dc !important; font-weight: 850 !important; }
.tpsw-services-v145-grid { display: grid !important; grid-template-columns: repeat(4, minmax(0, 1fr)) !important; gap: 18px !important; align-items: stretch !important; }
.tpsw-service-v145-card { display: flex !important; flex-direction: column !important; background: #fff !important; border: 1px solid #dfe7f1 !important; border-radius: 14px !important; padding: 20px 18px 18px !important; box-shadow: 0 14px 38px rgba(15, 23, 42, .055) !important; }
.tpsw-service-v145-icon { width: 100% !important; max-width: 158px !important; height: 114px !important; margin: 0 auto 16px !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.tpsw-service-v145-icon svg { width: 100% !important; height: auto !important; display: block !important; }
.tpsw-service-v145-card h3 { margin: 0 0 8px !important; color: #071327 !important; font-size: clamp(1.05rem, 1.22vw, 1.24rem) !important; line-height: 1.14 !important; letter-spacing: -.03em !important; font-weight: 950 !important; }
.tpsw-service-v145-card p { margin: 0 0 14px !important; color: #263244 !important; font-size: clamp(.86rem, .86vw, .96rem) !important; line-height: 1.46 !important; font-weight: 530 !important; }
.tpsw-service-v145-list { list-style: none !important; margin: auto 0 0 !important; padding: 13px 0 0 !important; border-top: 1px solid #e1e8f2 !important; display: grid !important; gap: 7px !important; }
.tpsw-service-v145-list li { display: grid !important; grid-template-columns: 14px 1fr !important; gap: 7px !important; align-items: start !important; margin: 0 !important; padding: 0 !important; list-style: none !important; color: #111827 !important; font-size: clamp(.81rem, .78vw, .91rem) !important; line-height: 1.22 !important; font-weight: 700 !important; }
.tpsw-service-v145-list li::before,
.tpsw-service-v145-list li::after { display: none !important; content: none !important; }
.tpsw-bullet-v145 { width: 13px !important; height: 13px !important; min-width: 13px !important; border: 1.5px solid #1263dc !important; border-radius: 999px !important; position: relative !important; display: inline-block !important; box-sizing: border-box !important; margin-top: .13em !important; background: #fff !important; }
.tpsw-bullet-v145::after { content: "" !important; position: absolute !important; left: 3.35px !important; top: 1.75px !important; width: 3.2px !important; height: 5.8px !important; border-right: 1.6px solid #1263dc !important; border-bottom: 1.6px solid #1263dc !important; transform: rotate(42deg) !important; border-radius: 1px !important; }
.tpsw-service-v145-link { display: inline-flex !important; align-items: center !important; gap: 7px !important; margin-top: 15px !important; color: #1263dc !important; text-decoration: none !important; font-size: clamp(.86rem, .82vw, .96rem) !important; line-height: 1.1 !important; font-weight: 950 !important; }
.tpsw-services-v145-includes { margin: 22px auto 0 !important; display: grid !important; grid-template-columns: repeat(5, minmax(0, 1fr)) !important; background: #f7faff !important; border: 1px solid #e1e8f2 !important; border-radius: 14px !important; box-shadow: 0 10px 28px rgba(15,23,42,.045) !important; overflow: hidden !important; }
.tpsw-services-v145-includes div { display: grid !important; grid-template-columns: 26px 1fr !important; column-gap: 9px !important; align-items: center !important; padding: 13px 15px !important; border-right: 1px solid #e1e8f2 !important; }
.tpsw-services-v145-includes div:last-child { border-right: 0 !important; }
.tpsw-services-v145-includes span { color: #1263dc !important; font-size: 1rem !important; line-height: 1 !important; text-align: center !important; }
.tpsw-services-v145-includes strong { display: block !important; color: #0f172a !important; font-size: .8rem !important; line-height: 1.14 !important; font-weight: 850 !important; }
.tpsw-services-v145-includes small { display: block !important; grid-column: 2 !important; color: #475569 !important; font-size: .68rem !important; line-height: 1.18 !important; font-weight: 520 !important; margin-top: 2px !important; }
.tpsw-services-v145-cta { text-align: center !important; margin: 24px auto 0 !important; max-width: 380px !important; }
.tpsw-services-v145-cta a { display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 12px !important; min-height: 50px !important; width: min(100%, 330px) !important; border-radius: 8px !important; background: #1263f2 !important; color: #fff !important; text-decoration: none !important; box-shadow: 0 12px 28px rgba(18,99,242,.22) !important; font-size: .93rem !important; font-weight: 900 !important; }
.tpsw-services-v145-cta p { margin: 9px auto 0 !important; color: #334155 !important; font-size: .82rem !important; line-height: 1.3 !important; font-weight: 520 !important; }
@media (max-width: 1180px) {
 .tpsw-services-v145-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
 .tpsw-services-v145-includes { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
 .tpsw-services-v145-includes div { border-right: 0 !important; border-bottom: 1px solid #e1e8f2 !important; }
}
@media (max-width: 760px) {
 #services.tpsw-services-v145 { padding: 46px 0 62px !important; }
 .tpsw-services-v145-head { margin-bottom: 22px !important; }
 .tpsw-services-v145-head h2 { font-size: clamp(1.85rem, 8.8vw, 2.55rem) !important; line-height: 1.02 !important; }
 .tpsw-services-v145-head p { font-size: clamp(.95rem, 3.7vw, 1.08rem) !important; line-height: 1.45 !important; }
 .tpsw-services-v145-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
 .tpsw-service-v145-card { border-radius: 22px !important; padding: 24px 24px 22px !important; }
 .tpsw-service-v145-icon { max-width: 220px !important; height: 142px !important; margin-bottom: 18px !important; }
 .tpsw-service-v145-card h3 { font-size: clamp(1.42rem, 6vw, 1.85rem) !important; line-height: 1.1 !important; }
 .tpsw-service-v145-card p { font-size: clamp(1rem, 4.1vw, 1.16rem) !important; line-height: 1.5 !important; font-weight: 530 !important; }
 .tpsw-service-v145-list { gap: 8px !important; padding-top: 14px !important; }
 .tpsw-service-v145-list li { grid-template-columns: 16px 1fr !important; gap: 9px !important; font-size: clamp(.96rem, 3.9vw, 1.07rem) !important; line-height: 1.24 !important; font-weight: 730 !important; }
 .tpsw-bullet-v145 { width: 15px !important; height: 15px !important; min-width: 15px !important; border-width: 1.6px !important; }
 .tpsw-bullet-v145::after { left: 4px !important; top: 2.1px !important; width: 3.8px !important; height: 6.9px !important; border-width: 1.7px !important; }
 .tpsw-services-v145-includes { grid-template-columns: 1fr !important; border-radius: 22px !important; margin-top: 20px !important; }
 .tpsw-services-v145-includes div { padding: 15px 22px !important; }
 .tpsw-services-v145-includes strong { font-size: 1rem !important; }
 .tpsw-services-v145-includes small { font-size: .8rem !important; }
 .tpsw-services-v145-cta a { min-height: 58px !important; border-radius: 999px !important; font-size: 1.02rem !important; }
 .tpsw-services-v145-cta p { font-size: .96rem !important; line-height: 1.4 !important; }
}


/* V147 - matched closer to screenshot reference 1 */
#services.tpsw-services-v147 {
 background: #f7fbff !important;
 padding: clamp(60px, 7vw, 96px) 0 !important;
 color: #0f172a !important;
 overflow: hidden !important;
}
#services.tpsw-services-v147 .container { max-width: 1180px !important; }
.tpsw-services-v147-head { max-width: 840px !important; margin: 0 auto 28px !important; text-align: center !important; }
.tpsw-services-v147-eyebrow { display: inline-flex !important; align-items: center !important; gap: 12px !important; color: #0b64dc !important; font-size: .72rem !important; letter-spacing: .14em !important; font-weight: 900 !important; line-height: 1 !important; margin-bottom: 10px !important; }
.tpsw-services-v147-eyebrow::before,
.tpsw-services-v147-eyebrow::after { content: "" !important; width: 38px !important; height: 1px !important; background: #dce5f1 !important; display: block !important; }
.tpsw-services-v147-head h2 { margin: 0 auto 14px !important; color: #0f172a !important; font-size: clamp(2.05rem, 4.5vw, 3.55rem) !important; line-height: .98 !important; letter-spacing: -.052em !important; font-weight: 950 !important; }
.tpsw-services-v147-head h2 span { color: #1263f2 !important; }
.tpsw-services-v147-head p { margin: 0 auto !important; max-width: 690px !important; color: #263244 !important; font-size: clamp(.96rem, 1.14vw, 1.1rem) !important; line-height: 1.5 !important; font-weight: 560 !important; }
.tpsw-services-v147-head p strong { color: #1263dc !important; font-weight: 850 !important; }
.tpsw-services-v147-grid { display: grid !important; grid-template-columns: repeat(4, minmax(0, 1fr)) !important; gap: 18px !important; align-items: stretch !important; }
.tpsw-service-v147-card { display: flex !important; flex-direction: column !important; background: #fff !important; border: 1px solid #dfe7f1 !important; border-radius: 14px !important; padding: 20px 18px 18px !important; box-shadow: 0 14px 38px rgba(15, 23, 42, .055) !important; }
.tpsw-service-v147-visual { width: 100% !important; max-width: 160px !important; height: 102px !important; margin: 0 auto 14px !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.tpsw-service-v147-visual svg { width: 100% !important; height: auto !important; display: block !important; overflow: visible !important; }
.tpsw-service-v147-card h3 { margin: 0 0 8px !important; color: #071327 !important; font-size: clamp(1.03rem, 1.16vw, 1.21rem) !important; line-height: 1.14 !important; letter-spacing: -.03em !important; font-weight: 950 !important; }
.tpsw-service-v147-card p { margin: 0 0 14px !important; color: #263244 !important; font-size: clamp(.84rem, .84vw, .94rem) !important; line-height: 1.46 !important; font-weight: 530 !important; }
.tpsw-service-v147-list { list-style: none !important; margin: 0 !important; padding: 13px 0 0 !important; border-top: 1px solid #e1e8f2 !important; display: grid !important; gap: 7px !important; }
.tpsw-service-v147-list li { display: grid !important; grid-template-columns: 14px 1fr !important; gap: 7px !important; align-items: start !important; margin: 0 !important; padding: 0 !important; list-style: none !important; color: #111827 !important; font-size: clamp(.79rem, .77vw, .89rem) !important; line-height: 1.22 !important; font-weight: 700 !important; }
.tpsw-service-v147-list li::before,
.tpsw-service-v147-list li::after { display: none !important; content: none !important; }
.tpsw-bullet-v147 { width: 13px !important; height: 13px !important; min-width: 13px !important; border: 1.5px solid #1263dc !important; border-radius: 999px !important; position: relative !important; display: inline-block !important; box-sizing: border-box !important; margin-top: .13em !important; background: #fff !important; }
.tpsw-bullet-v147::after { content: "" !important; position: absolute !important; left: 3.35px !important; top: 1.75px !important; width: 3.2px !important; height: 5.8px !important; border-right: 1.6px solid #1263dc !important; border-bottom: 1.6px solid #1263dc !important; transform: rotate(42deg) !important; border-radius: 1px !important; }
.tpsw-service-v147-link { display: inline-flex !important; align-items: center !important; gap: 7px !important; margin-top: auto !important; padding-top: 14px !important; color: #1263dc !important; text-decoration: none !important; font-size: clamp(.86rem, .82vw, .96rem) !important; line-height: 1.1 !important; font-weight: 950 !important; }
.tpsw-services-v147-includes { margin: 22px auto 0 !important; display: grid !important; grid-template-columns: repeat(5, minmax(0, 1fr)) !important; background: #f7faff !important; border: 1px solid #e1e8f2 !important; border-radius: 14px !important; box-shadow: 0 10px 28px rgba(15,23,42,.045) !important; overflow: hidden !important; }
.tpsw-services-v147-includes div { display: grid !important; grid-template-columns: 26px 1fr !important; column-gap: 9px !important; align-items: center !important; padding: 13px 15px !important; border-right: 1px solid #e1e8f2 !important; }
.tpsw-services-v147-includes div:last-child { border-right: 0 !important; }
.tpsw-services-v147-includes span { color: #1263dc !important; font-size: 1rem !important; line-height: 1 !important; text-align: center !important; }
.tpsw-services-v147-includes strong { display: block !important; color: #0f172a !important; font-size: .8rem !important; line-height: 1.14 !important; font-weight: 850 !important; }
.tpsw-services-v147-includes small { display: block !important; grid-column: 2 !important; color: #475569 !important; font-size: .68rem !important; line-height: 1.18 !important; font-weight: 520 !important; margin-top: 2px !important; }
.tpsw-services-v147-cta { text-align: center !important; margin: 24px auto 0 !important; max-width: 380px !important; }
.tpsw-services-v147-cta a { display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 12px !important; min-height: 50px !important; width: min(100%, 330px) !important; border-radius: 8px !important; background: #1263f2 !important; color: #fff !important; text-decoration: none !important; box-shadow: 0 12px 28px rgba(18,99,242,.22) !important; font-size: .93rem !important; font-weight: 900 !important; }
.tpsw-services-v147-cta p { margin: 9px auto 0 !important; color: #334155 !important; font-size: .82rem !important; line-height: 1.3 !important; font-weight: 520 !important; }
@media (max-width: 1180px) {
 .tpsw-services-v147-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
 .tpsw-services-v147-includes { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
 .tpsw-services-v147-includes div { border-right: 0 !important; border-bottom: 1px solid #e1e8f2 !important; }
}
@media (max-width: 760px) {
 #services.tpsw-services-v147 { padding: 46px 0 62px !important; }
 .tpsw-services-v147-head { margin-bottom: 22px !important; }
 .tpsw-services-v147-head h2 { font-size: clamp(1.85rem, 8.8vw, 2.55rem) !important; line-height: 1.02 !important; }
 .tpsw-services-v147-head p { font-size: clamp(.95rem, 3.7vw, 1.08rem) !important; line-height: 1.45 !important; }
 .tpsw-services-v147-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
 .tpsw-service-v147-card { border-radius: 22px !important; padding: 24px 24px 22px !important; }
 .tpsw-service-v147-visual { max-width: 220px !important; height: 138px !important; margin-bottom: 18px !important; }
 .tpsw-service-v147-card h3 { font-size: clamp(1.42rem, 6vw, 1.85rem) !important; line-height: 1.1 !important; }
 .tpsw-service-v147-card p { font-size: clamp(1rem, 4.1vw, 1.16rem) !important; line-height: 1.5 !important; font-weight: 530 !important; }
 .tpsw-service-v147-list { gap: 8px !important; padding-top: 14px !important; }
 .tpsw-service-v147-list li { grid-template-columns: 16px 1fr !important; gap: 9px !important; font-size: clamp(.96rem, 3.9vw, 1.07rem) !important; line-height: 1.24 !important; font-weight: 730 !important; }
 .tpsw-bullet-v147 { width: 15px !important; height: 15px !important; min-width: 15px !important; border-width: 1.6px !important; }
 .tpsw-bullet-v147::after { left: 4px !important; top: 2.1px !important; width: 3.8px !important; height: 6.9px !important; border-width: 1.7px !important; }
 .tpsw-services-v147-includes { grid-template-columns: 1fr !important; border-radius: 22px !important; margin-top: 20px !important; }
 .tpsw-services-v147-includes div { padding: 15px 22px !important; }
 .tpsw-services-v147-includes strong { font-size: 1rem !important; }
 .tpsw-services-v147-includes small { font-size: .8rem !important; }
 .tpsw-services-v147-cta a { min-height: 58px !important; border-radius: 999px !important; font-size: 1.02rem !important; }
 .tpsw-services-v147-cta p { font-size: .96rem !important; line-height: 1.4 !important; }
}


/* V148 - Nos Services: exact icon/text/spacing pass from reference */
#services.tpsw-services-v148 {
 background: #f7fbff !important;
 padding: clamp(60px, 7vw, 96px) 0 !important;
 color: #0f172a !important;
 overflow: hidden !important;
}
#services.tpsw-services-v148 .container { max-width: 1180px !important; }
.tpsw-services-v148-head { max-width: 840px !important; margin: 0 auto 28px !important; text-align: center !important; }
.tpsw-services-v148-eyebrow { display: inline-flex !important; align-items: center !important; gap: 12px !important; color: #0b64dc !important; font-size: .72rem !important; letter-spacing: .14em !important; font-weight: 900 !important; line-height: 1 !important; margin-bottom: 10px !important; }
.tpsw-services-v148-eyebrow::before,
.tpsw-services-v148-eyebrow::after { content: "" !important; width: 38px !important; height: 1px !important; background: #dce5f1 !important; display: block !important; }
.tpsw-services-v148-head h2 { margin: 0 auto 24px !important; color: #0f172a !important; font-size: clamp(2.05rem, 4.5vw, 3.55rem) !important; line-height: .98 !important; letter-spacing: -.052em !important; font-weight: 950 !important; }
.tpsw-services-v148-head h2 span { color: inherit !important; }
.tpsw-services-v148-head h2 .tpsw-services-v148-title-accent { color: #1263f2 !important; }
.tpsw-services-v148-head p { margin: 0 auto !important; max-width: 690px !important; color: #263244 !important; font-size: clamp(.96rem, 1.14vw, 1.1rem) !important; line-height: 1.5 !important; font-weight: 560 !important; }
.tpsw-services-v148-head p strong { color: #1263dc !important; font-weight: 850 !important; }

.tpsw-services-v148-grid {
 display: grid !important;
 grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
 gap: 18px !important;
 align-items: stretch !important;
}
.tpsw-service-v148-card {
 display: flex !important;
 flex-direction: column !important;
 background: #fff !important;
 border: 1.5px solid #c7d4e5 !important;
 border-radius: 14px !important;
 padding: 20px 18px 18px !important;
 box-shadow: 0 0 0 1px rgba(199,212,229,.28), 0 16px 36px rgba(15, 23, 42, .06) !important;
}
.tpsw-service-v148-visual {
 width: 100% !important;
 max-width: 208px !important;
 height: 150px !important;
 margin: 0 auto 18px !important;
 display: flex !important;
 align-items: center !important;
 justify-content: center !important;
}
.tpsw-service-v148-visual svg {
 width: 100% !important;
 height: auto !important;
 display: block !important;
 overflow: visible !important;
}
.tpsw-service-v148-visual img {
 width: 100% !important;
 height: 100% !important;
 display: block !important;
 object-fit: contain !important;
}

.tpsw-service-v148-card h3 {
 margin: 0 0 8px !important;
 color: #071327 !important;
 font-size: clamp(1.03rem, 1.16vw, 1.21rem) !important;
 line-height: 1.14 !important;
 letter-spacing: -.03em !important;
 font-weight: 950 !important;
}
.tpsw-service-v148-card p {
 margin: 0 0 14px !important;
 color: #263244 !important;
 font-size: clamp(.84rem, .84vw, .94rem) !important;
 line-height: 1.46 !important;
 font-weight: 530 !important;
}
@media (min-width: 990px) {
 .tpsw-service-v148-card--align-list .tpsw-service-v148-list {
  margin-top: 0 !important;
 }
}
.tpsw-service-v148-list {
 list-style: none !important;
 margin: 0 !important;
 padding: 13px 0 0 !important;
 border-top: 1px solid #d3deea !important;
 display: grid !important;
 gap: 7px !important;
}
.tpsw-service-v148-list li {
 display: grid !important;
 grid-template-columns: 14px 1fr !important;
 gap: 7px !important;
 align-items: start !important;
 margin: 0 !important;
 padding: 0 !important;
 list-style: none !important;
 color: #111827 !important;
 font-size: clamp(.79rem, .77vw, .89rem) !important;
 line-height: 1.22 !important;
 font-weight: 700 !important;
}
.tpsw-service-v148-list li::before,
.tpsw-service-v148-list li::after { display: none !important; content: none !important; }
.tpsw-bullet-v148 {
 width: 13px !important;
 height: 13px !important;
 min-width: 13px !important;
 border: 1.5px solid #1263dc !important;
 border-radius: 999px !important;
 position: relative !important;
 display: inline-block !important;
 box-sizing: border-box !important;
 margin-top: .13em !important;
 background: #fff !important;
}
.tpsw-bullet-v148::after {
 content: "" !important;
 position: absolute !important;
 left: 3.35px !important;
 top: 1.75px !important;
 width: 3.2px !important;
 height: 5.8px !important;
 border-right: 1.6px solid #1263dc !important;
 border-bottom: 1.6px solid #1263dc !important;
 transform: rotate(42deg) !important;
 border-radius: 1px !important;
}
.tpsw-service-v148-link {
 display: inline-flex !important;
 align-items: center !important;
 gap: 7px !important;
 margin-top: auto !important;
 padding-top: 14px !important;
 color: #1263dc !important;
 text-decoration: none !important;
 font-size: clamp(.86rem, .82vw, .96rem) !important;
 line-height: 1.1 !important;
 font-weight: 950 !important;
}

.tpsw-services-v148-includes {
 margin: 22px auto 0 !important;
 display: grid !important;
 grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
 background: #ffffff !important;
 border: 1.5px solid #c7d4e5 !important;
 border-radius: 14px !important;
 box-shadow: 0 0 0 1px rgba(199,212,229,.28), 0 16px 36px rgba(15,23,42,.06) !important;
 overflow: hidden !important;
}
.tpsw-services-v148-includes div {
 display: grid !important;
 grid-template-columns: 38px 1fr !important;
 column-gap: 12px !important;
 align-items: center !important;
 padding: 13px 15px !important;
 background: #ffffff !important;
 border-right: 1px solid #d3deea !important;
}
.tpsw-services-v148-includes div:last-child { border-right: 0 !important; }
.tpsw-services-v148-includes span { color: #1263dc !important; line-height: 1 !important; text-align: center !important; }
.tpsw-services-v148-include-icon { width: 28px !important; height: 28px !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; }
.tpsw-services-v148-include-icon svg { width: 28px !important; height: 28px !important; display: block !important; stroke: currentColor !important; stroke-width: 1.85 !important; stroke-linecap: round !important; stroke-linejoin: round !important; }
.tpsw-services-v148-includes strong { display: block !important; color: #0f172a !important; font-size: .8rem !important; line-height: 1.14 !important; font-weight: 850 !important; }
.tpsw-services-v148-includes small { display: block !important; grid-column: 2 !important; color: #475569 !important; font-size: .68rem !important; line-height: 1.18 !important; font-weight: 520 !important; margin-top: 2px !important; }

.tpsw-services-v148-cta { text-align: center !important; margin: 24px auto 0 !important; max-width: 380px !important; }
.tpsw-services-v148-cta a {
 display: inline-flex !important;
 align-items: center !important;
 justify-content: center !important;
 gap: 12px !important;
 min-height: 50px !important;
 width: min(100%, 330px) !important;
 border-radius: 8px !important;
 background: #1263f2 !important;
 color: #fff !important;
 text-decoration: none !important;
 box-shadow: 0 12px 28px rgba(18,99,242,.22) !important;
 font-size: .93rem !important;
 font-weight: 900 !important;
}
.tpsw-services-v148-cta p { margin: 9px auto 0 !important; color: #334155 !important; font-size: .82rem !important; line-height: 1.3 !important; font-weight: 520 !important; }

@media (max-width: 1180px) {
 .tpsw-services-v148-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
 .tpsw-services-v148-includes { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
 .tpsw-services-v148-includes div { border-right: 0 !important; border-bottom: 1px solid #d3deea !important; }
}
@media (max-width: 760px) {
 #services.tpsw-services-v148 { padding: 46px 0 62px !important; }
 .tpsw-services-v148-head { margin-bottom: 22px !important; }
 .tpsw-services-v148-head h2 { font-size: clamp(1.85rem, 8.8vw, 2.55rem) !important; line-height: 1.02 !important; }
 .tpsw-services-v148-head p { font-size: clamp(.95rem, 3.7vw, 1.08rem) !important; line-height: 1.45 !important; }
 .tpsw-services-v148-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
 .tpsw-service-v148-card { border-radius: 22px !important; padding: 24px 24px 22px !important; }
 .tpsw-service-v148-visual { max-width: 238px !important; height: 168px !important; margin-bottom: 18px !important; }
 .tpsw-service-v148-card h3 { font-size: clamp(1.42rem, 6vw, 1.85rem) !important; line-height: 1.1 !important; }
 .tpsw-service-v148-card p { font-size: clamp(1rem, 4.1vw, 1.16rem) !important; line-height: 1.5 !important; font-weight: 530 !important; }
 .tpsw-service-v148-list { gap: 8px !important; padding-top: 14px !important; }
 .tpsw-service-v148-list li { grid-template-columns: 16px 1fr !important; gap: 9px !important; font-size: clamp(.96rem, 3.9vw, 1.07rem) !important; line-height: 1.24 !important; font-weight: 730 !important; }
 .tpsw-bullet-v148 { width: 15px !important; height: 15px !important; min-width: 15px !important; border-width: 1.6px !important; }
 .tpsw-bullet-v148::after { left: 4px !important; top: 2.1px !important; width: 3.8px !important; height: 6.9px !important; border-width: 1.7px !important; }
 .tpsw-services-v148-includes { grid-template-columns: 1fr !important; border-radius: 22px !important; margin-top: 20px !important; }
 .tpsw-services-v148-includes div { padding: 15px 22px !important; }
 .tpsw-services-v148-includes div { grid-template-columns: 34px 1fr !important; column-gap: 12px !important; }
 .tpsw-services-v148-include-icon, .tpsw-services-v148-include-icon svg { width: 26px !important; height: 26px !important; }
 .tpsw-services-v148-includes strong { font-size: 1rem !important; }
 .tpsw-services-v148-includes small { font-size: .8rem !important; }
 .tpsw-services-v148-cta a { min-height: 58px !important; border-radius: 999px !important; font-size: 1.02rem !important; }
 .tpsw-services-v148-cta p { font-size: .96rem !important; line-height: 1.4 !important; }
}

.tpsw-service-v148-nowrap { white-space: nowrap; }

/* Hero main logo refinement: white premium wordmark with breathing room */
.hero h1.hero-brand-title {
 font-size: clamp(2.65rem, 4.6vw, 5.35rem) !important;
 letter-spacing: -0.052em !important;
 text-shadow:
 0 4px 20px rgba(0, 0, 0, 0.58),
 0 1px 3px rgba(0, 0, 0, 0.55) !important;
}

.hero h1.hero-brand-title .hero-brand-main,
.hero h1.hero-brand-title .hero-brand-accent,
.hero h1.hero-brand-title .hero-brand-site,
.hero h1.hero-brand-title .hero-brand-web {
 color: #ffffff !important;
 -webkit-text-fill-color: #ffffff !important;
 background: none !important;
 text-shadow: inherit !important;
}

@media (min-width: 761px) and (max-width: 1180px) {
 .hero h1.hero-brand-title {
  font-size: clamp(1.91rem, 5.35vw, 3.24rem) !important;
  letter-spacing: -0.052em !important;
 }
}

@media (max-width: 760px) {
 .hero h1.hero-brand-title {
  font-size: clamp(1.29rem, 6.47vw, 2.42rem) !important;
  letter-spacing: -0.054em !important;
 }
}

@media (max-width: 420px) {
 .hero h1.hero-brand-title {
  font-size: clamp(1.13rem, 6vw, 1.62rem) !important;
  letter-spacing: -0.056em !important;
 }
}


/* V171 - hero wordmark rejoined with original colors, current size preserved */
.hero h1.hero-brand-title {
 white-space: nowrap !important;
 text-wrap: nowrap !important;
}

.hero h1.hero-brand-title .hero-brand-main,
.hero h1.hero-brand-title .hero-brand-accent,
.hero h1.hero-brand-title .hero-brand-site,
.hero h1.hero-brand-title .hero-brand-web {
 display: inline !important;
 white-space: nowrap !important;
 text-shadow: inherit !important;
 background: none !important;
}

.hero h1.hero-brand-title .hero-brand-main {
 color: #ffffff !important;
 -webkit-text-fill-color: #ffffff !important;
}

.hero h1.hero-brand-title .hero-brand-site {
 color: #1f66ff !important;
 -webkit-text-fill-color: #1f66ff !important;
}

.hero h1.hero-brand-title .hero-brand-web {
 color: #29cfe7 !important;
 -webkit-text-fill-color: #29cfe7 !important;
}


/* V172 - Services CTA: centered text, no arrow, no note */
.tpsw-services-v148-cta a {
 justify-content: center !important;
 text-align: center !important;
 gap: 0 !important;
 }
.tpsw-services-v148-cta p { display: none !important; }

/* V174 - Services to contact transition cleanup */
.tpsw-services-v148-cta { display: none !important; margin: 0 !important; }

/* V173 - homepage contact section rebuild */
#contact.tpsw-contact-v173 {
 background: #f7fbff !important;
 padding: clamp(26px, 3vw, 36px) 0 clamp(72px, 8vw, 112px) !important;
 color: #0f172a !important;
 overflow: hidden !important;
}

#contact.tpsw-contact-v173 .container {
 max-width: 1180px !important;
}

.tpsw-contact-v173-head {
 max-width: 780px !important;
 margin: 0 auto clamp(28px, 3.2vw, 42px) !important;
 text-align: center !important;
}

.tpsw-contact-v173-eyebrow {
 display: inline-flex !important;
 align-items: center !important;
 justify-content: center !important;
 gap: 12px !important;
 margin: 0 0 12px !important;
 color: #0b64dc !important;
 font-size: .72rem !important;
 line-height: 1 !important;
 letter-spacing: .14em !important;
 font-weight: 900 !important;
 text-transform: uppercase !important;
}

.tpsw-contact-v173-eyebrow::before,
.tpsw-contact-v173-eyebrow::after {
 content: "" !important;
 display: block !important;
 width: 38px !important;
 height: 1px !important;
 background: #dce5f1 !important;
}

.tpsw-contact-v173-head h2 {
 margin: 0 auto 16px !important;
 color: #0f172a !important;
 font-size: clamp(2.05rem, 4.5vw, 3.55rem) !important;
 line-height: .98 !important;
 letter-spacing: -.052em !important;
 font-weight: 950 !important;
 text-align: center !important;
}

.tpsw-contact-v173-head p {
 display: block !important;
 margin: 0 auto !important;
 max-width: 690px !important;
 color: #263244 !important;
 font-size: clamp(.96rem, 1.14vw, 1.1rem) !important;
 line-height: 1.55 !important;
 font-weight: 560 !important;
 text-align: center !important;
}

.tpsw-contact-v173-shell {
 display: grid !important;
 grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr) !important;
 gap: clamp(20px, 2.8vw, 34px) !important;
 align-items: stretch !important;
 width: 100% !important;
 margin: 0 auto !important;
 padding: clamp(22px, 3vw, 38px) !important;
 background: #ffffff !important;
 border: 1.5px solid #c7d4e5 !important;
 border-radius: 28px !important;
 box-shadow: 0 0 0 1px rgba(199, 212, 229, .28), 0 24px 60px rgba(15, 23, 42, .08) !important;
}

.tpsw-contact-v173-form-panel,
.tpsw-contact-v173-side {
 min-width: 0 !important;
}

.tpsw-contact-v173-form {
 display: grid !important;
 gap: 18px !important;
 margin: 0 !important;
}

.tpsw-contact-v173-form-grid {
 display: grid !important;
 grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
 gap: 18px !important;
}

.tpsw-contact-v173 .field {
 gap: 8px !important;
}

.tpsw-contact-v173 .field label {
 color: #101828 !important;
 font-size: .92rem !important;
 line-height: 1.2 !important;
 font-weight: 850 !important;
 letter-spacing: -.01em !important;
}

.tpsw-contact-v173 input,
.tpsw-contact-v173 select,
.tpsw-contact-v173 textarea {
 width: 100% !important;
 min-height: 56px !important;
 padding: 15px 16px !important;
 border: 1.5px solid #c7d4e5 !important;
 border-radius: 16px !important;
 background-color: #ffffff !important;
 color: #0f172a !important;
 box-shadow: 0 1px 0 rgba(15, 23, 42, .02), inset 0 1px 0 rgba(255, 255, 255, .85) !important;
 font-size: .96rem !important;
 line-height: 1.35 !important;
 font-weight: 520 !important;
}

.tpsw-contact-v173 select {
 padding-right: 48px !important;
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
 background-repeat: no-repeat !important;
 background-position: right 16px center !important;
 background-size: 18px !important;
 appearance: none !important;
 -webkit-appearance: none !important;
 -moz-appearance: none !important;
}

.tpsw-contact-v173 textarea {
 min-height: 132px !important;
 resize: vertical !important;
}

.tpsw-contact-v173 input::placeholder,
.tpsw-contact-v173 textarea::placeholder {
 color: #7b8794 !important;
 opacity: 1 !important;
}

.tpsw-contact-v173 input:focus,
.tpsw-contact-v173 select:focus,
.tpsw-contact-v173 textarea:focus {
 outline: none !important;
 border-color: rgba(18, 99, 242, .72) !important;
 box-shadow: 0 0 0 4px rgba(18, 99, 242, .12) !important;
}

.tpsw-contact-v173-submit {
 display: inline-flex !important;
 align-items: center !important;
 justify-content: center !important;
 width: 100% !important;
 min-height: 56px !important;
 margin: 2px 0 0 !important;
 border: 1px solid #1263f2 !important;
 border-radius: 999px !important;
 background: #1263f2 !important;
 color: #ffffff !important;
 box-shadow: 0 14px 30px rgba(18, 99, 242, .22) !important;
 font-size: .96rem !important;
 line-height: 1 !important;
 font-weight: 900 !important;
 text-align: center !important;
 cursor: pointer !important;
 transition: transform .18s ease, box-shadow .18s ease, background .18s ease !important;
}

.tpsw-contact-v173-submit:hover,
.tpsw-contact-v173-submit:focus {
 transform: translateY(-1px) !important;
 background: #0f58dc !important;
 box-shadow: 0 18px 38px rgba(18, 99, 242, .27) !important;
}

.tpsw-contact-v173-privacy {
 margin: -4px 0 0 !important;
 color: #64748b !important;
 font-size: .86rem !important;
 line-height: 1.35 !important;
 font-weight: 650 !important;
 text-align: center !important;
}

/* V174 - contact form visible borders + professional gap filler */
.tpsw-contact-v173-form-panel {
 display: flex !important;
 min-height: 100% !important;
}

.tpsw-contact-v173-form {
 width: 100% !important;
 min-height: 100% !important;
}

.tpsw-contact-v173-after {
 margin-top: auto !important;
 padding: 18px !important;
 border: 1.5px solid #c7d4e5 !important;
 border-radius: 20px !important;
 background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
 box-shadow: 0 10px 26px rgba(15, 23, 42, .045) !important;
}

.tpsw-contact-v173-after > strong {
 display: block !important;
 margin: 0 0 12px !important;
 color: #0f172a !important;
 font-size: .96rem !important;
 line-height: 1.2 !important;
 font-weight: 920 !important;
 letter-spacing: -.015em !important;
}

.tpsw-contact-v173-after-grid {
 display: grid !important;
 grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
 gap: 10px !important;
}

.tpsw-contact-v173-after-grid span {
 position: relative !important;
 display: flex !important;
 align-items: center !important;
 min-height: 48px !important;
 padding: 11px 12px 11px 34px !important;
 border: 1px solid #dce7f4 !important;
 border-radius: 15px !important;
 background: rgba(255, 255, 255, .82) !important;
 color: #334155 !important;
 font-size: .82rem !important;
 line-height: 1.25 !important;
 font-weight: 760 !important;
}

.tpsw-contact-v173-after-grid span::before {
 content: "" !important;
 position: absolute !important;
 left: 12px !important;
 top: 50% !important;
 width: 10px !important;
 height: 10px !important;
 border-radius: 999px !important;
 background: #1263f2 !important;
 box-shadow: 0 0 0 5px rgba(18, 99, 242, .1) !important;
 transform: translateY(-50%) !important;
}

.tpsw-contact-v173-side {
 display: flex !important;
 flex-direction: column !important;
 gap: 18px !important;
 padding: clamp(22px, 2.4vw, 30px) !important;
 border: 1.5px solid #c7d4e5 !important;
 border-radius: 24px !important;
 background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%) !important;
 box-shadow: 0 0 0 1px rgba(199, 212, 229, .26), inset 0 1px 0 rgba(255, 255, 255, .78) !important;
}

.tpsw-contact-v173-side-top {
 display: grid !important;
 grid-template-columns: 52px 1fr !important;
 gap: 16px !important;
 align-items: start !important;
}

.tpsw-contact-v173-side-top > div {
 min-width: 0 !important;
}

.tpsw-contact-v173-icon,
.tpsw-contact-v173-method-icon {
 display: inline-flex !important;
 align-items: center !important;
 justify-content: center !important;
 flex: 0 0 auto !important;
 width: 46px !important;
 height: 46px !important;
 border-radius: 999px !important;
 background: rgba(18, 99, 242, .1) !important;
 color: #1263f2 !important;
 box-shadow: inset 0 0 0 1px rgba(18, 99, 242, .08) !important;
}

.tpsw-contact-v173-icon {
 width: 52px !important;
 height: 52px !important;
 background: #ffffff !important;
 box-shadow: 0 12px 26px rgba(15, 23, 42, .07), inset 0 0 0 1px rgba(18, 99, 242, .12) !important;
}

.tpsw-contact-v173-icon svg,
.tpsw-contact-v173-method-icon svg {
 width: 24px !important;
 height: 24px !important;
 display: block !important;
 stroke: currentColor !important;
 stroke-width: 1.9 !important;
 stroke-linecap: round !important;
 stroke-linejoin: round !important;
}

.tpsw-contact-v173-side h3 {
 margin: 0 0 8px !important;
 color: #071327 !important;
 font-size: clamp(1.22rem, 1.58vw, 1.56rem) !important;
 line-height: 1.08 !important;
 letter-spacing: -.035em !important;
 font-weight: 950 !important;
}

.tpsw-contact-v173-side p {
 margin: 0 !important;
 color: #475569 !important;
 font-size: .95rem !important;
 line-height: 1.5 !important;
 font-weight: 540 !important;
}

.tpsw-contact-v173-schedule-btn {
 display: inline-flex !important;
 align-items: center !important;
 justify-content: center !important;
 gap: 10px !important;
 width: 100% !important;
 min-height: 54px !important;
 padding: 0 18px !important;
 border-radius: 999px !important;
 background: #1263f2 !important;
 color: #ffffff !important;
 text-decoration: none !important;
 box-shadow: 0 14px 30px rgba(18, 99, 242, .2) !important;
 font-size: .95rem !important;
 line-height: 1 !important;
 font-weight: 900 !important;
 text-align: center !important;
 transition: transform .18s ease, box-shadow .18s ease, background .18s ease !important;
}

.tpsw-contact-v173-schedule-btn:hover,
.tpsw-contact-v173-schedule-btn:focus {
 transform: translateY(-1px) !important;
 background: #0f58dc !important;
 box-shadow: 0 18px 38px rgba(18, 99, 242, .25) !important;
}

.tpsw-contact-v173-schedule-btn-icon {
 display: inline-flex !important;
 align-items: center !important;
 justify-content: center !important;
 width: 18px !important;
 height: 18px !important;
 flex: 0 0 auto !important;
}

.tpsw-contact-v173-schedule-btn-icon svg {
 width: 18px !important;
 height: 18px !important;
 display: block !important;
 stroke: currentColor !important;
 stroke-width: 2 !important;
 stroke-linecap: round !important;
 stroke-linejoin: round !important;
}

.tpsw-contact-v173-divider {
 width: 100% !important;
 height: 1px !important;
 margin: 4px 0 0 !important;
 border: 0 !important;
 background: #d6e1ee !important;
}

.tpsw-contact-v173-side h4 {
 margin: 0 !important;
 color: #0f172a !important;
 font-size: 1rem !important;
 line-height: 1.2 !important;
 font-weight: 920 !important;
 letter-spacing: -.02em !important;
}

.tpsw-contact-v173-methods {
 display: grid !important;
 gap: 12px !important;
 margin-bottom: 0 !important;
}

.tpsw-contact-v173-method,
.tpsw-contact-v173-trust {
 display: grid !important;
 grid-template-columns: 46px 1fr !important;
 gap: 12px !important;
 align-items: center !important;
 min-width: 0 !important;
 padding: 14px !important;
 border: 1px solid #dce7f4 !important;
 border-radius: 18px !important;
 background: rgba(255, 255, 255, .78) !important;
 color: #0f172a !important;
 text-decoration: none !important;
 box-shadow: 0 10px 24px rgba(15, 23, 42, .045) !important;
}

.tpsw-contact-v173-method:hover {
 border-color: rgba(18, 99, 242, .32) !important;
 transform: translateY(-1px) !important;
}

.tpsw-contact-v173-method span,
.tpsw-contact-v173-trust span {
 min-width: 0 !important;
}

.tpsw-contact-v173-method small,
.tpsw-contact-v173-trust small {
 display: block !important;
 margin: 0 0 3px !important;
 color: #64748b !important;
 font-size: .74rem !important;
 line-height: 1.1 !important;
 font-weight: 900 !important;
 letter-spacing: .08em !important;
 text-transform: uppercase !important;
}

.tpsw-contact-v173-method strong,
.tpsw-contact-v173-trust strong {
 display: block !important;
 color: #0f172a !important;
 font-size: .98rem !important;
 line-height: 1.2 !important;
 font-weight: 900 !important;
 overflow-wrap: anywhere !important;
}

.tpsw-contact-v173-trust {
 margin-top: 0 !important;
 background: #ffffff !important;
 border-color: rgba(18, 99, 242, .18) !important;
}

.tpsw-contact-v173-trust .tpsw-contact-v173-method-icon {
 background: rgba(18, 99, 242, .1) !important;
 color: #1263f2 !important;
}

.tpsw-contact-v173-trust small {
 margin: 4px 0 0 !important;
 color: #475569 !important;
 font-size: .83rem !important;
 line-height: 1.35 !important;
 font-weight: 650 !important;
 letter-spacing: 0 !important;
 text-transform: none !important;
}

@media (max-width: 980px) {
 #contact.tpsw-contact-v173 {
  padding: 24px 0 78px !important;
 }

 .tpsw-contact-v173-shell {
  grid-template-columns: 1fr !important;
 }

 .tpsw-contact-v173-side {
  order: 2 !important;
 }
}

@media (max-width: 640px) {
 #contact.tpsw-contact-v173 .container {
  width: min(92%, 100%) !important;
 }

 .tpsw-contact-v173-head {
  margin-bottom: 24px !important;
 }

 .tpsw-contact-v173-head h2 {
  font-size: clamp(2rem, 9vw, 2.6rem) !important;
 }

 .tpsw-contact-v173-head p {
  font-size: .98rem !important;
 }

 .tpsw-contact-v173-shell {
  padding: 18px !important;
  border-radius: 24px !important;
 }

 .tpsw-contact-v173-form-grid {
  grid-template-columns: 1fr !important;
  gap: 16px !important;
 }

 .tpsw-contact-v173-after-grid {
  grid-template-columns: 1fr !important;
 }

 .tpsw-contact-v173-after {
  padding: 16px !important;
 }

 .tpsw-contact-v173 textarea {
  min-height: 122px !important;
 }

 .tpsw-contact-v173-side {
  padding: 20px !important;
  border-radius: 22px !important;
 }

 .tpsw-contact-v173-side-top {
  grid-template-columns: 1fr !important;
 }
}


/* V179 - align selected header/hero CTA buttons with contact schedule blue + FR submit capitalization */
.header-cta,
.header-phone,
.hero .btn-phone {
 background: #1263f2 !important;
 border-color: #1263f2 !important;
 color: #ffffff !important;
 box-shadow: 0 14px 30px rgba(18, 99, 242, .22) !important;
}

.header-cta:hover,
.header-cta:focus,
.header-cta:active,
.header-phone:hover,
.header-phone:focus,
.header-phone:active,
.hero .btn-phone:hover,
.hero .btn-phone:focus,
.hero .btn-phone:active {
 background: #0f58dc !important;
 border-color: #0f58dc !important;
 color: #ffffff !important;
 box-shadow: 0 18px 38px rgba(18, 99, 242, .25) !important;
}

.header-cta:hover,
.header-cta:focus,
.header-cta:active,
.header-phone:hover,
.header-phone:focus,
.header-phone:active {
 transform: none !important;
}

.hero .btn-phone:hover,
.hero .btn-phone:focus,
.hero .btn-phone:active {
 transform: translateY(-2px) !important;
}

/* V175 - homepage web creation process section */
#process.tpsw-process-v175 {
 position: relative !important;
 overflow: hidden !important;
 background: #f7fbff !important;
 padding: clamp(56px, 6.4vw, 86px) 0 clamp(44px, 5.6vw, 74px) !important;
 color: #0f172a !important;
}

#process.tpsw-process-v175::before {
 display: none !important;
 content: none !important;
}

#process.tpsw-process-v175 .container {
 position: relative !important;
 z-index: 1 !important;
 max-width: 1180px !important;
}

.tpsw-process-v175-head {
 max-width: 820px !important;
 margin: 0 auto clamp(30px, 3.8vw, 46px) !important;
 text-align: center !important;
}

.tpsw-process-v175-eyebrow {
 display: inline-flex !important;
 align-items: center !important;
 justify-content: center !important;
 gap: 12px !important;
 margin: 0 0 12px !important;
 color: #0b64dc !important;
 font-size: .72rem !important;
 line-height: 1 !important;
 letter-spacing: .14em !important;
 font-weight: 900 !important;
 text-transform: uppercase !important;
}

.tpsw-process-v175-eyebrow::before,
.tpsw-process-v175-eyebrow::after {
 content: "" !important;
 display: block !important;
 width: 38px !important;
 height: 1px !important;
 background: #dce5f1 !important;
}

.tpsw-process-v175-head h2 {
 margin: 0 auto 16px !important;
 color: #0f172a !important;
 font-size: clamp(2.05rem, 4.5vw, 3.55rem) !important;
 line-height: .98 !important;
 letter-spacing: -.052em !important;
 font-weight: 950 !important;
 text-align: center !important;
}

.tpsw-process-v175-title-accent {
 color: #1263f2 !important;
 white-space: nowrap !important;
}

.tpsw-process-v175-head p {
 display: block !important;
 margin: 0 auto !important;
 max-width: 760px !important;
 color: #263244 !important;
 font-size: clamp(.96rem, 1.14vw, 1.1rem) !important;
 line-height: 1.55 !important;
 font-weight: 560 !important;
 text-align: center !important;
}

.tpsw-process-v175-grid {
 position: relative !important;
 display: grid !important;
 grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
 gap: 22px !important;
 align-items: stretch !important;
}

.tpsw-process-v175-card {
 position: relative !important;
 display: flex !important;
 flex-direction: column !important;
 min-height: 248px !important;
 padding: 24px 22px 22px !important;
 background: #ffffff !important;
 border: 1.5px solid #c7d4e5 !important;
 border-radius: 22px !important;
 box-shadow: 0 0 0 1px rgba(199, 212, 229, .28), 0 18px 42px rgba(15, 23, 42, .06) !important;
 transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease !important;
}

.tpsw-process-v175-card:hover {
 transform: translateY(-2px) !important;
 border-color: rgba(18, 99, 242, .32) !important;
 box-shadow: 0 0 0 1px rgba(199, 212, 229, .3), 0 22px 50px rgba(15, 23, 42, .08) !important;
}

.tpsw-process-v175-card-top {
 display: flex !important;
 align-items: flex-start !important;
 justify-content: space-between !important;
 gap: 16px !important;
 margin-bottom: 16px !important;
}

.tpsw-process-v175-number {
 display: inline-flex !important;
 align-items: center !important;
 justify-content: center !important;
 min-width: 52px !important;
 height: 34px !important;
 padding: 0 14px !important;
 border-radius: 999px !important;
 background: rgba(18, 99, 242, .1) !important;
 color: #1263f2 !important;
 box-shadow: inset 0 0 0 1px rgba(18, 99, 242, .12) !important;
 font-size: .82rem !important;
 line-height: 1 !important;
 font-weight: 950 !important;
 letter-spacing: .08em !important;
}

.tpsw-process-v175-icon {
 display: inline-flex !important;
 align-items: center !important;
 justify-content: center !important;
 flex: 0 0 auto !important;
 width: 88px !important;
 height: 88px !important;
 border-radius: 0 !important;
 background: transparent !important;
 color: inherit !important;
 box-shadow: none !important;
 overflow: visible !important;
}

.tpsw-process-v175-icon svg {
 display: block !important;
 width: 88px !important;
 height: 88px !important;
}

.tpsw-process-v175-card h3 {
 margin: 0 0 10px !important;
 color: #071327 !important;
 font-size: clamp(1.08rem, 1.18vw, 1.26rem) !important;
 line-height: 1.14 !important;
 letter-spacing: -.03em !important;
 font-weight: 950 !important;
}

.tpsw-process-v175-card p {
 margin: 0 !important;
 color: #334155 !important;
 font-size: clamp(.9rem, .86vw, .98rem) !important;
 line-height: 1.52 !important;
 font-weight: 540 !important;
}

@media (min-width: 981px) {
 .tpsw-process-v175-card:not(:nth-child(3n))::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  right: -18px !important;
  width: 14px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, rgba(18, 99, 242, .22), rgba(68, 203, 224, .22)) !important;
  transform: translateY(-50%) !important;
 }
}

.tpsw-process-v175 + #contact.tpsw-contact-v173 {
 padding-top: clamp(48px, 5.4vw, 72px) !important;
}

@media (max-width: 980px) {
 #process.tpsw-process-v175 {
  padding: 54px 0 60px !important;
 }

 .tpsw-process-v175-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
 }

 .tpsw-process-v175-card {
  min-height: 236px !important;
 }
}

@media (max-width: 640px) {
 #process.tpsw-process-v175 .container {
  width: min(92%, 100%) !important;
 }

 .tpsw-process-v175-head {
  margin-bottom: 24px !important;
 }

 .tpsw-process-v175-head h2 {
  font-size: clamp(2rem, 9vw, 2.6rem) !important;
  line-height: 1.02 !important;
 }

 .tpsw-process-v175-head p {
  font-size: .98rem !important;
 }

 .tpsw-process-v175-grid {
  grid-template-columns: 1fr !important;
  gap: 16px !important;
 }

 .tpsw-process-v175-card {
  min-height: 0 !important;
  border-radius: 22px !important;
  padding: 22px 20px 21px !important;
 }

 .tpsw-process-v175-icon {
  width: 74px !important;
  height: 74px !important;
 }

 .tpsw-process-v175-icon svg {
  width: 74px !important;
  height: 74px !important;
 }
}

/* V184 - process section larger centered icon cards */
#process.tpsw-process-v175 .tpsw-process-v175-card {
  align-items: center !important;
  min-height: 420px !important;
  padding: 22px 24px 28px !important;
  text-align: center !important;
  overflow: hidden !important;
}

#process.tpsw-process-v175 .tpsw-process-v175-card-top {
  display: none !important;
}

#process.tpsw-process-v175 .tpsw-process-v175-number {
  margin: 0 auto 10px !important;
}

#process.tpsw-process-v175 .tpsw-process-v175-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 220px !important;
  height: auto !important;
  margin: 0 auto 18px !important;
}

#process.tpsw-process-v175 .tpsw-process-v175-icon img {
  display: block !important;
  width: min(100%, 220px) !important;
  height: auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 14px 22px rgba(37, 84, 242, .09)) !important;
}

#process.tpsw-process-v175 .tpsw-process-v175-icon svg {
  display: none !important;
}

#process.tpsw-process-v175 .tpsw-process-v175-card h3 {
  margin: 0 0 12px !important;
  text-align: center !important;
}

#process.tpsw-process-v175 .tpsw-process-v175-card p {
  max-width: 33ch !important;
  text-align: center !important;
}

@media (max-width: 980px) {
  #process.tpsw-process-v175 .tpsw-process-v175-card {
    min-height: 390px !important;
    padding: 22px 22px 24px !important;
  }

  #process.tpsw-process-v175 .tpsw-process-v175-icon {
    max-width: 200px !important;
  }

  #process.tpsw-process-v175 .tpsw-process-v175-icon img {
    width: min(100%, 200px) !important;
  }
}

@media (max-width: 640px) {
  #process.tpsw-process-v175 .tpsw-process-v175-card {
    min-height: 0 !important;
    padding: 20px 18px 22px !important;
  }

  #process.tpsw-process-v175 .tpsw-process-v175-number {
    margin-bottom: 8px !important;
  }

  #process.tpsw-process-v175 .tpsw-process-v175-icon {
    max-width: 184px !important;
    margin-bottom: 14px !important;
  }

  #process.tpsw-process-v175 .tpsw-process-v175-icon img {
    width: min(100%, 184px) !important;
  }
}

/* V185 - process cards refined visual layout */
#process.tpsw-process-v175 .tpsw-process-v175-card {
  align-items: stretch !important;
  min-height: 470px !important;
  padding: 18px 18px 24px !important;
  text-align: left !important;
}

#process.tpsw-process-v175 .tpsw-process-v175-card-top {
  display: none !important;
}

#process.tpsw-process-v175 .tpsw-process-v175-visual {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 248px !important;
  margin: 0 0 18px !important;
  padding: 22px 18px 18px !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%) !important;
  box-shadow: inset 0 0 0 1px rgba(199, 212, 229, .6) !important;
}

#process.tpsw-process-v175 .tpsw-process-v175-number {
  position: absolute !important;
  top: 16px !important;
  left: 16px !important;
  z-index: 2 !important;
  margin: 0 !important;
}

#process.tpsw-process-v175 .tpsw-process-v175-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 !important;
}

#process.tpsw-process-v175 .tpsw-process-v175-icon img {
  display: block !important;
  width: auto !important;
  max-width: min(100%, 240px) !important;
  max-height: 185px !important;
  height: auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 14px 22px rgba(37, 84, 242, .10)) !important;
}

#process.tpsw-process-v175 .tpsw-process-v175-card h3,
#process.tpsw-process-v175 .tpsw-process-v175-card p {
  text-align: center !important;
}

#process.tpsw-process-v175 .tpsw-process-v175-card h3 {
  margin: 0 0 12px !important;
}

#process.tpsw-process-v175 .tpsw-process-v175-card p {
  max-width: 34ch !important;
  margin-inline: auto !important;
}

@media (max-width: 1200px) {
  #process.tpsw-process-v175 .tpsw-process-v175-card {
    min-height: 450px !important;
  }
}

@media (max-width: 980px) {
  #process.tpsw-process-v175 .tpsw-process-v175-card {
    min-height: 430px !important;
    padding: 16px 16px 22px !important;
  }

  #process.tpsw-process-v175 .tpsw-process-v175-visual {
    min-height: 224px !important;
    margin-bottom: 16px !important;
  }

  #process.tpsw-process-v175 .tpsw-process-v175-icon img {
    max-width: min(100%, 220px) !important;
    max-height: 170px !important;
  }
}

@media (max-width: 640px) {
  #process.tpsw-process-v175 .tpsw-process-v175-card {
    min-height: 0 !important;
    padding: 14px 14px 20px !important;
  }

  #process.tpsw-process-v175 .tpsw-process-v175-visual {
    min-height: 210px !important;
    padding: 20px 14px 16px !important;
    border-radius: 20px !important;
  }

  #process.tpsw-process-v175 .tpsw-process-v175-number {
    top: 14px !important;
    left: 14px !important;
  }

  #process.tpsw-process-v175 .tpsw-process-v175-icon img {
    max-width: min(100%, 210px) !important;
    max-height: 160px !important;
  }
}

/* V186 - process cards tighter vertical rhythm */
#process.tpsw-process-v175 .tpsw-process-v175-card {
  min-height: 405px !important;
  padding-bottom: 20px !important;
}

#process.tpsw-process-v175 .tpsw-process-v175-visual {
  min-height: 230px !important;
  margin-bottom: 22px !important;
}

#process.tpsw-process-v175 .tpsw-process-v175-icon img {
  max-height: 188px !important;
}

#process.tpsw-process-v175 .tpsw-process-v175-card h3 {
  font-size: clamp(1.16rem, 1.25vw, 1.34rem) !important;
  line-height: 1.1 !important;
  margin-bottom: 12px !important;
  font-weight: 950 !important;
}

#process.tpsw-process-v175 .tpsw-process-v175-card p {
  line-height: 1.5 !important;
}

@media (max-width: 980px) {
  #process.tpsw-process-v175 .tpsw-process-v175-card {
    min-height: 390px !important;
    padding-bottom: 20px !important;
  }

  #process.tpsw-process-v175 .tpsw-process-v175-visual {
    min-height: 218px !important;
    margin-bottom: 20px !important;
  }

  #process.tpsw-process-v175 .tpsw-process-v175-icon img {
    max-height: 174px !important;
  }
}

@media (max-width: 640px) {
  #process.tpsw-process-v175 .tpsw-process-v175-card {
    min-height: 0 !important;
    padding-bottom: 20px !important;
  }

  #process.tpsw-process-v175 .tpsw-process-v175-visual {
    min-height: 200px !important;
    margin-bottom: 18px !important;
  }

  #process.tpsw-process-v175 .tpsw-process-v175-icon img {
    max-height: 160px !important;
  }
}


/* V187 - center service card titles on desktop and mobile */
#services.tpsw-services-v148 .tpsw-service-v148-card h3 {
  text-align: center !important;
}

/* V188 - reduce external gap between Services and Process */
#services.tpsw-services-v148 + #process.tpsw-process-v175 {
  padding-top: clamp(30px, 3.4vw, 46px) !important;
}

@media (max-width: 980px) {
  #services.tpsw-services-v148 + #process.tpsw-process-v175 {
    padding-top: 32px !important;
  }
}

@media (max-width: 640px) {
  #services.tpsw-services-v148 + #process.tpsw-process-v175 {
    padding-top: 30px !important;
  }
}

/* V189 - stronger PC-only external gap reduction between Services and Process */
@media (min-width: 981px) {
  #services.tpsw-services-v148 {
    padding-bottom: clamp(30px, 3vw, 42px) !important;
  }

  #services.tpsw-services-v148 + #process.tpsw-process-v175 {
    padding-top: clamp(24px, 2.2vw, 34px) !important;
  }
}

/* V190 - contact "Apres votre demande" contrast + matching inner bubble borders */
.tpsw-contact-v173-after {
  border: 1.5px solid #c7d4e5 !important;
  background: linear-gradient(180deg, #f2f7ff 0%, #eaf2ff 100%) !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .06), inset 0 1px 0 rgba(255, 255, 255, .72) !important;
}

.tpsw-contact-v173-after-grid span {
  border: 1.5px solid #c7d4e5 !important;
  background: rgba(255, 255, 255, .76) !important;
}

/* V191 - stronger borders for appointment contact cards and icon bubbles only */
.tpsw-contact-v173-side .tpsw-contact-v173-method,
.tpsw-contact-v173-side .tpsw-contact-v173-trust {
  border: 1.5px solid #c7d4e5 !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .05), inset 0 1px 0 rgba(255, 255, 255, .72) !important;
}

.tpsw-contact-v173-side .tpsw-contact-v173-method:hover {
  border-color: rgba(18, 99, 242, .42) !important;
}

.tpsw-contact-v173-side .tpsw-contact-v173-icon,
.tpsw-contact-v173-side .tpsw-contact-v173-method-icon {
  border: 1.5px solid #c7d4e5 !important;
  box-shadow: inset 0 0 0 1px rgba(18, 99, 242, .06) !important;
}

.tpsw-contact-v173-side .tpsw-contact-v173-icon {
  box-shadow: 0 12px 26px rgba(15, 23, 42, .07), inset 0 0 0 1px rgba(18, 99, 242, .08) !important;
}

/* V192 - standalone appointment booking page */
.tpsw-appointment-v192 {
 position: relative !important;
 overflow: hidden !important;
 padding: clamp(56px, 7vw, 96px) 0 clamp(70px, 8vw, 112px) !important;
 background:
  radial-gradient(circle at 10% 7%, rgba(56, 189, 248, .13), transparent 32%),
  radial-gradient(circle at 90% 14%, rgba(18, 99, 242, .12), transparent 34%),
  linear-gradient(180deg, #f8fbff 0%, #eef5ff 52%, #f8fbff 100%) !important;
 color: #0f172a !important;
}

.tpsw-appointment-v192::before {
 content: "" !important;
 position: absolute !important;
 inset: auto -10% 0 -10% !important;
 height: 35% !important;
 background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.78)) !important;
 pointer-events: none !important;
}

.tpsw-appointment-v192 .container {
 position: relative !important;
 z-index: 1 !important;
 max-width: 1180px !important;
}

.tpsw-appointment-v192-hero {
 max-width: 900px !important;
 margin: 0 auto clamp(34px, 5vw, 58px) !important;
 text-align: center !important;
}

.tpsw-appointment-v192-eyebrow {
 display: inline-flex !important;
 align-items: center !important;
 justify-content: center !important;
 gap: 12px !important;
 margin: 0 0 14px !important;
 color: #0b64dc !important;
 font-size: .74rem !important;
 line-height: 1 !important;
 letter-spacing: .16em !important;
 font-weight: 950 !important;
 text-transform: uppercase !important;
}

.tpsw-appointment-v192-eyebrow::before,
.tpsw-appointment-v192-eyebrow::after {
 content: "" !important;
 display: block !important;
 width: 44px !important;
 height: 1px !important;
 background: #d3deea !important;
}

.tpsw-appointment-v192-hero h1 {
 margin: 0 auto 18px !important;
 max-width: 900px !important;
 color: #0b1024 !important;
 font-size: clamp(2.35rem, 5.6vw, 5.1rem) !important;
 line-height: .98 !important;
 letter-spacing: -.06em !important;
 font-weight: 950 !important;
}

.tpsw-appointment-v192-highlight {
 display: inline-block !important;
 color: #3f63f3 !important;
}

.tpsw-appointment-v192-hero p {
 margin: 0 auto !important;
 max-width: 760px !important;
 color: #263244 !important;
 font-size: clamp(1rem, 1.22vw, 1.14rem) !important;
 line-height: 1.65 !important;
 font-weight: 560 !important;
}

.tpsw-appointment-v192-pills {
 display: flex !important;
 justify-content: center !important;
 flex-wrap: wrap !important;
 gap: 12px !important;
 margin: 26px auto 0 !important;
}

.tpsw-appointment-v192-pill {
 display: inline-flex !important;
 align-items: center !important;
 gap: 10px !important;
 min-height: 46px !important;
 padding: 10px 16px !important;
 border: 1.5px solid #c7d4e5 !important;
 border-radius: 999px !important;
 background: rgba(255, 255, 255, .86) !important;
 color: #334155 !important;
 box-shadow: 0 10px 26px rgba(15, 23, 42, .045), inset 0 1px 0 rgba(255, 255, 255, .86) !important;
 font-size: .92rem !important;
 line-height: 1.15 !important;
 font-weight: 850 !important;
}

.tpsw-appointment-v192-pill-icon,
.tpsw-appointment-v192-card-icon,
.tpsw-appointment-v192-benefit-icon,
.tpsw-appointment-v192-detail-icon {
 display: inline-flex !important;
 align-items: center !important;
 justify-content: center !important;
 flex: 0 0 auto !important;
 width: 34px !important;
 height: 34px !important;
 border-radius: 999px !important;
 border: 1.5px solid rgba(18, 99, 242, .16) !important;
 background: rgba(18, 99, 242, .09) !important;
 color: #1263f2 !important;
}

.tpsw-appointment-v192-pill-icon svg,
.tpsw-appointment-v192-card-icon svg,
.tpsw-appointment-v192-benefit-icon svg,
.tpsw-appointment-v192-detail-icon svg {
 width: 19px !important;
 height: 19px !important;
 display: block !important;
 stroke: currentColor !important;
 stroke-width: 2.1 !important;
 stroke-linecap: round !important;
 stroke-linejoin: round !important;
}

.tpsw-appointment-v192-main {
 display: grid !important;
 grid-template-columns: minmax(0, 1.14fr) minmax(340px, .86fr) !important;
 gap: clamp(20px, 2.7vw, 34px) !important;
 align-items: stretch !important;
 margin: 0 auto !important;
}

.tpsw-appointment-v192-card {
 min-width: 0 !important;
 border: 1.5px solid #c7d4e5 !important;
 border-radius: 28px !important;
 background: #ffffff !important;
 box-shadow: 0 0 0 1px rgba(199, 212, 229, .24), 0 24px 60px rgba(15, 23, 42, .075) !important;
}

.tpsw-appointment-v192-calendar-card {
 padding: clamp(22px, 3vw, 34px) !important;
 scroll-margin-top: 110px !important;
}

.tpsw-appointment-v192-card-head {
 display: grid !important;
 grid-template-columns: 54px 1fr !important;
 gap: 16px !important;
 align-items: start !important;
 margin-bottom: 22px !important;
}

.tpsw-appointment-v192-card-icon {
 width: 54px !important;
 height: 54px !important;
 background: #f0f5ff !important;
 border-color: #c7d4e5 !important;
 box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82) !important;
}

.tpsw-appointment-v192-card-icon svg {
 width: 25px !important;
 height: 25px !important;
 stroke-width: 2 !important;
}

.tpsw-appointment-v192-card h2,
.tpsw-appointment-v192-why h2,
.tpsw-appointment-v192-detail h2,
.tpsw-appointment-v192-final-cta h2 {
 margin: 0 !important;
 color: #0b1024 !important;
 letter-spacing: -.035em !important;
 font-weight: 950 !important;
}

.tpsw-appointment-v192-card h2,
.tpsw-appointment-v192-why h2 {
 font-size: clamp(1.34rem, 2vw, 1.8rem) !important;
 line-height: 1.08 !important;
}

.tpsw-appointment-v192-card-head p {
 margin: 9px 0 0 !important;
 color: #475569 !important;
 font-size: .98rem !important;
 line-height: 1.52 !important;
 font-weight: 560 !important;
}

.tpsw-appointment-v192-calendar-placeholder {
 border: 1.5px solid #d6e1ee !important;
 border-radius: 24px !important;
 background: linear-gradient(180deg, #f8fbff 0%, #f1f6ff 100%) !important;
 padding: clamp(16px, 2vw, 22px) !important;
 box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82) !important;
}

.tpsw-appointment-v192-calendar-top {
 display: flex !important;
 align-items: center !important;
 justify-content: space-between !important;
 gap: 14px !important;
 margin-bottom: 16px !important;
}

.tpsw-appointment-v192-calendar-top strong {
 color: #0f172a !important;
 font-size: 1rem !important;
 line-height: 1 !important;
 font-weight: 920 !important;
}

.tpsw-appointment-v192-calendar-top button {
 display: inline-flex !important;
 align-items: center !important;
 justify-content: center !important;
 width: 38px !important;
 height: 38px !important;
 border-radius: 999px !important;
 border: 1.5px solid #c7d4e5 !important;
 background: #ffffff !important;
 color: #1263f2 !important;
 font-size: 1.45rem !important;
 line-height: 1 !important;
 font-weight: 800 !important;
 opacity: 1 !important;
}

.tpsw-appointment-v192-calendar-grid {
 display: grid !important;
 grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
 gap: 8px !important;
}

.tpsw-appointment-v192-calendar-grid span {
 padding: 0 0 5px !important;
 color: #64748b !important;
 font-size: .72rem !important;
 line-height: 1 !important;
 font-weight: 900 !important;
 text-align: center !important;
 text-transform: uppercase !important;
}

.tpsw-appointment-v192-calendar-grid button,
.tpsw-appointment-v192-slots button {
 border: 1.5px solid #d6e1ee !important;
 background: #ffffff !important;
 color: #0f172a !important;
 box-shadow: 0 8px 18px rgba(15, 23, 42, .035) !important;
 cursor: default !important;
}

.tpsw-appointment-v192-calendar-grid button {
 min-height: 42px !important;
 border-radius: 14px !important;
 font-size: .9rem !important;
 font-weight: 850 !important;
}

.tpsw-appointment-v192-calendar-grid button:disabled {
 color: #a3afbf !important;
 background: rgba(255, 255, 255, .52) !important;
 box-shadow: none !important;
}

.tpsw-appointment-v192-calendar-grid button.is-active,
.tpsw-appointment-v192-slots button.is-active {
 border-color: #1263f2 !important;
 background: #1263f2 !important;
 color: #ffffff !important;
 box-shadow: 0 12px 24px rgba(18, 99, 242, .22) !important;
}

.tpsw-appointment-v192-slots {
 margin-top: 20px !important;
 padding-top: 18px !important;
 border-top: 1.5px solid #d6e1ee !important;
}

.tpsw-appointment-v192-slots strong {
 display: block !important;
 margin: 0 0 12px !important;
 color: #0f172a !important;
 font-size: .96rem !important;
 line-height: 1.2 !important;
 font-weight: 920 !important;
}

.tpsw-appointment-v192-slots > div {
 display: flex !important;
 flex-wrap: wrap !important;
 gap: 10px !important;
}

.tpsw-appointment-v192-slots button {
 min-height: 42px !important;
 padding: 0 16px !important;
 border-radius: 999px !important;
 font-size: .9rem !important;
 line-height: 1 !important;
 font-weight: 880 !important;
}

.tpsw-appointment-v192-privacy {
 display: flex !important;
 align-items: center !important;
 justify-content: center !important;
 gap: 8px !important;
 margin: 16px 0 0 !important;
 color: #64748b !important;
 font-size: .88rem !important;
 line-height: 1.35 !important;
 font-weight: 720 !important;
 text-align: center !important;
}

.tpsw-appointment-v192-why {
 padding: clamp(22px, 2.6vw, 32px) !important;
 background: #ffffff !important;
}

.tpsw-appointment-v192-benefits {
 display: grid !important;
 gap: 16px !important;
 margin: 22px 0 0 !important;
}

.tpsw-appointment-v192-benefit {
 display: grid !important;
 grid-template-columns: 42px 1fr !important;
 gap: 13px !important;
 align-items: start !important;
 padding: 0 0 16px !important;
 border-bottom: 1.5px solid #e4ebf4 !important;
}

.tpsw-appointment-v192-benefit:last-child {
 padding-bottom: 0 !important;
 border-bottom: 0 !important;
}

.tpsw-appointment-v192-benefit-icon {
 width: 42px !important;
 height: 42px !important;
 background: rgba(18, 99, 242, .09) !important;
}

.tpsw-appointment-v192-benefit h3 {
 margin: 0 !important;
 color: #0f172a !important;
 font-size: 1.02rem !important;
 line-height: 1.18 !important;
 font-weight: 920 !important;
 letter-spacing: -.02em !important;
}

.tpsw-appointment-v192-benefit p {
 margin: 6px 0 0 !important;
 color: #475569 !important;
 font-size: .94rem !important;
 line-height: 1.48 !important;
 font-weight: 560 !important;
}

.tpsw-appointment-v192-trust-box {
 margin: 22px 0 0 !important;
 padding: 18px !important;
 border: 1.5px solid #d6e1ee !important;
 border-radius: 20px !important;
 background: linear-gradient(180deg, #f4f8ff 0%, #eef5ff 100%) !important;
 box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82) !important;
}

.tpsw-appointment-v192-trust-box strong {
 display: block !important;
 margin: 0 0 6px !important;
 color: #0f172a !important;
 font-size: 1rem !important;
 line-height: 1.2 !important;
 font-weight: 920 !important;
}

.tpsw-appointment-v192-trust-box p {
 margin: 0 !important;
 color: #475569 !important;
 font-size: .92rem !important;
 line-height: 1.48 !important;
 font-weight: 570 !important;
}

.tpsw-appointment-v192-detail {
 margin: clamp(52px, 7vw, 82px) auto 0 !important;
 text-align: center !important;
}

.tpsw-appointment-v192-detail h2 {
 max-width: 780px !important;
 margin: 0 auto clamp(26px, 3.8vw, 38px) !important;
 font-size: clamp(2rem, 4vw, 3.3rem) !important;
 line-height: 1.02 !important;
}

.tpsw-appointment-v192-detail-grid {
 display: grid !important;
 grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
 gap: 16px !important;
 text-align: left !important;
}

.tpsw-appointment-v192-detail-grid article {
 min-width: 0 !important;
 padding: 20px !important;
 border: 1.5px solid #c7d4e5 !important;
 border-radius: 22px !important;
 background: #ffffff !important;
 box-shadow: 0 14px 34px rgba(15, 23, 42, .06) !important;
}

.tpsw-appointment-v192-detail-grid article > span {
 display: inline-flex !important;
 align-items: center !important;
 justify-content: center !important;
 width: 42px !important;
 height: 42px !important;
 margin: 0 0 14px !important;
 border: 1.5px solid rgba(18, 99, 242, .16) !important;
 border-radius: 999px !important;
 background: rgba(18, 99, 242, .09) !important;
 color: #1263f2 !important;
 font-size: 1.1rem !important;
 line-height: 1 !important;
}

.tpsw-appointment-v192-detail-grid h3 {
 margin: 0 !important;
 color: #0f172a !important;
 font-size: 1rem !important;
 line-height: 1.18 !important;
 font-weight: 930 !important;
 letter-spacing: -.02em !important;
}

.tpsw-appointment-v192-detail-grid p {
 margin: 8px 0 0 !important;
 color: #475569 !important;
 font-size: .9rem !important;
 line-height: 1.48 !important;
 font-weight: 560 !important;
}

.tpsw-appointment-v192-final-cta {
 display: flex !important;
 align-items: center !important;
 justify-content: space-between !important;
 gap: 22px !important;
 margin: clamp(34px, 5vw, 58px) auto 0 !important;
 padding: clamp(22px, 3vw, 32px) !important;
 border: 1.5px solid #c7d4e5 !important;
 border-radius: 26px !important;
 background: #ffffff !important;
 box-shadow: 0 22px 54px rgba(15, 23, 42, .075) !important;
}

.tpsw-appointment-v192-final-cta h2 {
 font-size: clamp(1.35rem, 2.1vw, 2rem) !important;
 line-height: 1.1 !important;
}

.tpsw-appointment-v192-final-cta p {
 margin: 8px 0 0 !important;
 color: #475569 !important;
 font-size: .98rem !important;
 line-height: 1.48 !important;
 font-weight: 560 !important;
}

.tpsw-appointment-v192-final-cta a {
 display: inline-flex !important;
 align-items: center !important;
 justify-content: center !important;
 flex: 0 0 auto !important;
 min-height: 52px !important;
 padding: 0 22px !important;
 border: 1px solid #1263f2 !important;
 border-radius: 999px !important;
 background: #1263f2 !important;
 color: #ffffff !important;
 box-shadow: 0 14px 30px rgba(18, 99, 242, .2) !important;
 font-size: .95rem !important;
 line-height: 1 !important;
 font-weight: 920 !important;
 text-decoration: none !important;
}

@media (max-width: 1100px) {
 .tpsw-appointment-v192-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
 }
}

@media (max-width: 980px) {
 .tpsw-appointment-v192-main {
  grid-template-columns: 1fr !important;
 }

 .tpsw-appointment-v192-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
 }
}

@media (max-width: 640px) {
 .tpsw-appointment-v192 {
  padding: 44px 0 76px !important;
 }

 .tpsw-appointment-v192 .container {
  width: min(92%, 100%) !important;
 }

 .tpsw-appointment-v192-hero {
  margin-bottom: 28px !important;
 }

 .tpsw-appointment-v192-eyebrow::before,
 .tpsw-appointment-v192-eyebrow::after {
  width: 30px !important;
 }

 .tpsw-appointment-v192-hero h1 {
  font-size: clamp(2.18rem, 11vw, 3.15rem) !important;
 }

 .tpsw-appointment-v192-pills {
  align-items: stretch !important;
  flex-direction: column !important;
 }

 .tpsw-appointment-v192-pill {
  justify-content: flex-start !important;
  width: 100% !important;
 }

 .tpsw-appointment-v192-card,
 .tpsw-appointment-v192-final-cta {
  border-radius: 24px !important;
 }

 .tpsw-appointment-v192-calendar-card,
 .tpsw-appointment-v192-why {
  padding: 20px !important;
 }

 .tpsw-appointment-v192-card-head,
 .tpsw-appointment-v192-benefit {
  grid-template-columns: 1fr !important;
 }

 .tpsw-appointment-v192-calendar-grid {
  gap: 6px !important;
 }

 .tpsw-appointment-v192-calendar-grid button {
  min-height: 38px !important;
  border-radius: 12px !important;
  font-size: .82rem !important;
 }

 .tpsw-appointment-v192-slots > div {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
 }

 .tpsw-appointment-v192-slots button {
  width: 100% !important;
 }

 .tpsw-appointment-v192-detail-grid {
  grid-template-columns: 1fr !important;
 }

 .tpsw-appointment-v192-final-cta {
  align-items: stretch !important;
  flex-direction: column !important;
  text-align: left !important;
 }

 .tpsw-appointment-v192-final-cta a {
  width: 100% !important;
 }
}

/* V194 - homepage process visual border + appointment contact icon bubble refinement */
#process.tpsw-process-v175 .tpsw-process-v175-visual {
  border: 1.5px solid #c7d4e5 !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .045), inset 0 1px 0 rgba(255, 255, 255, .72) !important;
}

#contact.tpsw-contact-v173 .tpsw-contact-v173-icon,
#contact.tpsw-contact-v173 .tpsw-contact-v173-method-icon {
  background: #ffffff !important;
  color: #1263f2 !important;
  border: 1.5px solid #1263f2 !important;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .06) !important;
}

#contact.tpsw-contact-v173 .tpsw-contact-v173-icon svg,
#contact.tpsw-contact-v173 .tpsw-contact-v173-method-icon svg {
  color: #1263f2 !important;
  stroke: #1263f2 !important;
}


/* V195 - appointment page interaction, stronger borders, clean uniform background */
.tpsw-appointment-v192 {
  background: #f5f8fd !important;
}

.tpsw-appointment-v192::before {
  display: none !important;
  content: none !important;
}

.tpsw-appointment-v192-hero {
  margin-bottom: clamp(28px, 4vw, 46px) !important;
}

.tpsw-appointment-v192-eyebrow {
  margin-bottom: 7px !important;
}

.tpsw-appointment-v192-card,
.tpsw-appointment-v192-final-cta,
.tpsw-appointment-v192-pill,
.tpsw-appointment-v192-calendar-placeholder,
.tpsw-appointment-v192-calendar-top button,
.tpsw-appointment-v192-calendar-grid button,
.tpsw-appointment-v192-slots button,
.tpsw-appointment-v192-trust-box,
.tpsw-appointment-v192-detail-grid article,
.tpsw-appointment-v192-confirm,
.tpsw-appointment-v192-confirm button,
.tpsw-appointment-v192-pill-icon,
.tpsw-appointment-v192-card-icon,
.tpsw-appointment-v192-benefit-icon,
.tpsw-appointment-v192-detail-icon,
.tpsw-appointment-v192-detail-grid article > span {
  border-width: 2px !important;
}

.tpsw-appointment-v192-pill-icon,
.tpsw-appointment-v192-card-icon,
.tpsw-appointment-v192-benefit-icon,
.tpsw-appointment-v192-detail-icon,
.tpsw-appointment-v192-detail-grid article > span {
  background: #ffffff !important;
  border-color: #1263f2 !important;
  color: #1263f2 !important;
  box-shadow: 0 10px 22px rgba(18, 99, 242, .08), inset 0 1px 0 rgba(255, 255, 255, .9) !important;
}

.tpsw-appointment-v192-pill-icon svg,
.tpsw-appointment-v192-card-icon svg,
.tpsw-appointment-v192-benefit-icon svg,
.tpsw-appointment-v192-detail-icon svg,
.tpsw-appointment-v192-detail-grid article > span svg {
  color: #1263f2 !important;
  stroke: #1263f2 !important;
}

.tpsw-appointment-v192-card,
.tpsw-appointment-v192-final-cta,
.tpsw-appointment-v192-detail-grid article,
.tpsw-appointment-v192-pill,
.tpsw-appointment-v192-calendar-placeholder,
.tpsw-appointment-v192-trust-box {
  border-color: #c7d4e5 !important;
}

.tpsw-appointment-v192-calendar-placeholder {
  background: #ffffff !important;
}

.tpsw-appointment-v192-calendar-top button {
  border-color: #1263f2 !important;
  cursor: pointer !important;
}

.tpsw-appointment-v192-calendar-top button:disabled,
.tpsw-appointment-v192-calendar-grid button:disabled {
  cursor: not-allowed !important;
  opacity: .42 !important;
}

.tpsw-appointment-v192-calendar-grid button,
.tpsw-appointment-v192-slots button {
  cursor: pointer !important;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease !important;
}

.tpsw-appointment-v192-calendar-grid button:not(:disabled):hover,
.tpsw-appointment-v192-slots button:hover {
  border-color: #1263f2 !important;
  transform: translateY(-1px) !important;
}

.tpsw-appointment-v192-calendar-grid button.is-today:not(.is-active) {
  border-color: rgba(18, 99, 242, .45) !important;
  color: #1263f2 !important;
}

.tpsw-appointment-v192-slots > div {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.tpsw-appointment-v192-slots button {
  padding: 0 10px !important;
}

.tpsw-appointment-v192-confirm {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 14px !important;
  align-items: center !important;
  margin-top: 18px !important;
  padding: 16px !important;
  border: 2px solid #c7d4e5 !important;
  border-radius: 20px !important;
  background: #f8fbff !important;
}

.tpsw-appointment-v192-confirm-summary span {
  display: block !important;
  margin-bottom: 5px !important;
  color: #64748b !important;
  font-size: .74rem !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

.tpsw-appointment-v192-confirm-summary strong {
  display: block !important;
  color: #0f172a !important;
  font-size: .98rem !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
}

.tpsw-appointment-v192-confirm button {
  min-height: 46px !important;
  padding: 0 18px !important;
  border: 2px solid #1263f2 !important;
  border-radius: 999px !important;
  background: #1263f2 !important;
  color: #ffffff !important;
  box-shadow: 0 12px 26px rgba(18, 99, 242, .20) !important;
  font-size: .9rem !important;
  line-height: 1 !important;
  font-weight: 920 !important;
  cursor: pointer !important;
}

.tpsw-appointment-v192-confirm button:disabled {
  border-color: #c7d4e5 !important;
  background: #e8eef7 !important;
  color: #7c8aa0 !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
}

.tpsw-appointment-v192-confirm p {
  grid-column: 1 / -1 !important;
  margin: 0 !important;
  padding: 12px 14px !important;
  border: 2px solid rgba(18, 99, 242, .24) !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  color: #0f172a !important;
  font-size: .92rem !important;
  line-height: 1.45 !important;
  font-weight: 720 !important;
}

.tpsw-appointment-v192-detail {
  background: transparent !important;
}

@media (max-width: 820px) {
  .tpsw-appointment-v192-slots > div {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .tpsw-appointment-v192-hero {
    margin-bottom: 24px !important;
  }

  .tpsw-appointment-v192-eyebrow {
    margin-bottom: 6px !important;
  }

  .tpsw-appointment-v192-slots > div {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .tpsw-appointment-v192-confirm {
    grid-template-columns: 1fr !important;
  }

  .tpsw-appointment-v192-confirm button {
    width: 100% !important;
  }
}

/* V196 - reduce top space between global header and appointment page hero */
.tpsw-appointment-v192 {
  padding-top: clamp(28px, 3.5vw, 48px) !important;
}

/* V197 - appointment request form + moved why section + stronger appointment borders */
.tpsw-appointment-v192-main {
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr) !important;
}

.tpsw-appointment-v192-client-card {
  padding: clamp(22px, 2.6vw, 32px) !important;
  background: #ffffff !important;
}

.tpsw-appointment-v192-form-intro {
  margin: 10px 0 20px !important;
  color: #475569 !important;
  font-size: .98rem !important;
  line-height: 1.55 !important;
  font-weight: 600 !important;
}

.tpsw-appointment-v192-form {
  display: grid !important;
  gap: 14px !important;
}

.tpsw-appointment-v192-form-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.tpsw-appointment-v192-form label {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
}

.tpsw-appointment-v192-form label > span,
.tpsw-appointment-v192-form-selected > span {
  color: #0f172a !important;
  font-size: .82rem !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
  letter-spacing: .015em !important;
}

.tpsw-appointment-v192-form input,
.tpsw-appointment-v192-form textarea {
  width: 100% !important;
  min-height: 48px !important;
  box-sizing: border-box !important;
  border: 2px solid #c7d4e5 !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  color: #0f172a !important;
  padding: 12px 14px !important;
  font: inherit !important;
  font-size: .94rem !important;
  line-height: 1.35 !important;
  font-weight: 650 !important;
  outline: none !important;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .035) !important;
}

.tpsw-appointment-v192-form textarea {
  min-height: 116px !important;
  resize: vertical !important;
}

.tpsw-appointment-v192-form input:focus,
.tpsw-appointment-v192-form textarea:focus {
  border-color: #1263f2 !important;
  box-shadow: 0 0 0 4px rgba(18, 99, 242, .10), 0 10px 24px rgba(15, 23, 42, .045) !important;
}

.tpsw-appointment-v192-form-selected {
  display: grid !important;
  gap: 7px !important;
  margin-top: 2px !important;
  padding: 14px !important;
  border: 2px solid #c7d4e5 !important;
  border-radius: 18px !important;
  background: #f8fbff !important;
}

.tpsw-appointment-v192-form-selected strong {
  color: #0f172a !important;
  font-size: .96rem !important;
  line-height: 1.32 !important;
  font-weight: 900 !important;
}

.tpsw-appointment-v192-form button[type="submit"] {
  width: 100% !important;
  min-height: 52px !important;
  border: 2px solid #1263f2 !important;
  border-radius: 999px !important;
  background: #1263f2 !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(18, 99, 242, .20) !important;
  font-size: .95rem !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  cursor: pointer !important;
}

.tpsw-appointment-v192-form button[type="submit"]:disabled {
  border-color: #c7d4e5 !important;
  background: #e8eef7 !important;
  color: #7c8aa0 !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
}

.tpsw-appointment-v192-form-note {
  margin: -2px 0 0 !important;
  color: #64748b !important;
  font-size: .84rem !important;
  line-height: 1.45 !important;
  font-weight: 650 !important;
}

.tpsw-appointment-v192-why-lower {
  margin: clamp(42px, 6vw, 70px) auto 0 !important;
  text-align: center !important;
}

.tpsw-appointment-v192-why-lower h2 {
  max-width: 780px !important;
  margin: 0 auto clamp(24px, 3vw, 34px) !important;
  color: #0b1024 !important;
  font-size: clamp(1.9rem, 3.6vw, 3rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -.045em !important;
  font-weight: 950 !important;
}

.tpsw-appointment-v192-why-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  text-align: left !important;
}

.tpsw-appointment-v192-why-grid article {
  min-width: 0 !important;
  padding: 22px !important;
  border: 2px solid #c7d4e5 !important;
  border-radius: 22px !important;
  background: #ffffff !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06) !important;
}

.tpsw-appointment-v192-why-grid .tpsw-appointment-v192-benefit-icon {
  width: 42px !important;
  height: 42px !important;
  margin: 0 0 14px !important;
  background: #ffffff !important;
  border: 2px solid #1263f2 !important;
  color: #1263f2 !important;
}

.tpsw-appointment-v192-why-grid h3 {
  margin: 0 !important;
  color: #0f172a !important;
  font-size: 1.04rem !important;
  line-height: 1.18 !important;
  font-weight: 930 !important;
  letter-spacing: -.02em !important;
}

.tpsw-appointment-v192-why-grid p {
  margin: 8px 0 0 !important;
  color: #475569 !important;
  font-size: .92rem !important;
  line-height: 1.5 !important;
  font-weight: 570 !important;
}

.tpsw-appointment-v192-why-lower .tpsw-appointment-v192-trust-box {
  max-width: 760px !important;
  margin: 20px auto 0 !important;
  text-align: left !important;
  border-width: 2px !important;
  background: #ffffff !important;
}

.tpsw-appointment-v192-calendar-grid button,
.tpsw-appointment-v192-slots button,
.tpsw-appointment-v192-calendar-top button {
  border-width: 2px !important;
}

@media (max-width: 1100px) {
  .tpsw-appointment-v192-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 980px) {
  .tpsw-appointment-v192-main {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .tpsw-appointment-v192-form-grid,
  .tpsw-appointment-v192-why-grid {
    grid-template-columns: 1fr !important;
  }

  .tpsw-appointment-v192-client-card {
    padding: 20px !important;
  }
}


/* V201 - appointment request API state */
.tpsw-appointment-v192-form-success,
.tpsw-appointment-v192-form-error {
  padding: 16px 18px !important;
  border-radius: 18px !important;
  border: 2px solid #1263f2 !important;
  background: #ffffff !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .06) !important;
}

.tpsw-appointment-v192-form-error {
  border-color: #ef4444 !important;
}

.tpsw-appointment-v192-form-success strong,
.tpsw-appointment-v192-form-error strong {
  display: block !important;
  color: #0f172a !important;
  font-size: 1rem !important;
  line-height: 1.2 !important;
  font-weight: 920 !important;
}

.tpsw-appointment-v192-form-success p,
.tpsw-appointment-v192-form-error p {
  margin: 7px 0 0 !important;
  color: #475569 !important;
  font-size: .92rem !important;
  line-height: 1.45 !important;
  font-weight: 580 !important;
}

.tpsw-appointment-v192-form input,
.tpsw-appointment-v192-form textarea,
.tpsw-appointment-v192-form-selected {
  border-width: 2px !important;
}

.tpsw-appointment-v192-form button[type="submit"] {
  border: 2px solid #1263f2 !important;
}


/* V202 - centered appointment confirmation popup */
.tpsw-appointment-success-modal__box {
  text-align: left !important;
  max-width: 640px !important;
}

.tpsw-appointment-success-modal__box h3 {
  text-align: center !important;
}

.tpsw-appointment-success-modal__box p {
  font-weight: 620 !important;
}

.tpsw-appointment-success-modal__button {
  display: block !important;
  width: 100% !important;
  margin-top: 22px !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 14px 22px !important;
  background: linear-gradient(135deg, #3f63f4, #1263f2) !important;
  color: #ffffff !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  box-shadow: 0 16px 34px rgba(18, 99, 242, .28) !important;
}

.tpsw-appointment-success-modal__button:hover {
  transform: translateY(-1px) !important;
}


/* V203 - appointment confirmation warning copy */
.tpsw-appointment-success-modal__box h3 {
  text-transform: none !important;
}

.tpsw-appointment-success-modal__box p,
.tpsw-appointment-success-modal__text {
  display: block !important;
}

.tpsw-appointment-success-modal__box p span {
  display: block !important;
}

.tpsw-appointment-success-modal__notice {
  color: #1e3a8a !important;
  font-size: .9rem !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  margin: 0 0 10px !important;
}

.tpsw-appointment-success-modal__line {
  color: #334155 !important;
  font-size: 1rem !important;
  line-height: 1.55 !important;
  font-weight: 650 !important;
}

.tpsw-appointment-success-modal__details {
  margin: 16px 0 !important;
  padding: 16px !important;
  border: 2px solid rgba(63, 99, 244, .18) !important;
  border-radius: 18px !important;
  background: #f8fbff !important;
  color: #0f172a !important;
  font-size: .96rem !important;
  line-height: 1.55 !important;
  font-weight: 650 !important;
}

.tpsw-appointment-success-modal__details span + span {
  margin-top: 6px !important;
}

.tpsw-appointment-success-modal__action {
  color: #0f172a !important;
  font-size: 1rem !important;
  line-height: 1.55 !important;
  font-weight: 700 !important;
  margin-top: 12px !important;
}

.tpsw-appointment-success-modal__junk {
  color: #475569 !important;
  font-size: .96rem !important;
  line-height: 1.55 !important;
  font-weight: 650 !important;
  margin-top: 10px !important;
}


/* V204 - professional Teams invitation confirmation modal */
.tpsw-appointment-success-modal {
  background: rgba(15, 23, 42, .58) !important;
  backdrop-filter: blur(9px) !important;
  -webkit-backdrop-filter: blur(9px) !important;
}

.tpsw-appointment-success-modal__box {
  width: min(860px, 92vw) !important;
  max-width: 860px !important;
  padding: clamp(34px, 5vw, 70px) clamp(24px, 5vw, 64px) 38px !important;
  border-radius: 28px !important;
  border: 1px solid rgba(219, 231, 255, .95) !important;
  background: #ffffff !important;
  box-shadow: 0 34px 100px rgba(15, 23, 42, .30) !important;
  text-align: center !important;
  overflow: visible !important;
}

.tpsw-appointment-success-modal__box h3 {
  margin: 0 auto 22px !important;
  color: #0b2f83 !important;
  font-size: clamp(2.15rem, 5vw, 3.45rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -.045em !important;
  font-weight: 950 !important;
  text-align: center !important;
  text-transform: none !important;
}

.tpsw-appointment-success-modal__box p,
.tpsw-appointment-success-modal__text {
  margin: 0 !important;
  color: #334155 !important;
  font-size: 1rem !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
  text-align: center !important;
}

.tpsw-appointment-success-modal__box p span {
  display: block !important;
}

.tpsw-appointment-success-modal__intro {
  max-width: 700px !important;
  margin: 0 auto 34px !important;
  color: #34435f !important;
  font-size: clamp(1.05rem, 2vw, 1.34rem) !important;
  line-height: 1.42 !important;
  font-weight: 500 !important;
  letter-spacing: -.015em !important;
}

.tpsw-appointment-success-modal__cards {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin: 0 0 24px !important;
}

.tpsw-appointment-success-modal__card {
  min-height: 150px !important;
  padding: 30px 22px 24px !important;
  border: 1px solid rgba(203, 213, 225, .78) !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  box-shadow: 0 15px 36px rgba(15, 23, 42, .07) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.tpsw-appointment-success-modal__icon,
.tpsw-appointment-success-modal__sender-icon {
  width: 58px !important;
  height: 58px !important;
  border-radius: 999px !important;
  background: #edf4ff !important;
  color: #1263f2 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
}

.tpsw-appointment-success-modal__icon {
  margin: 0 0 18px !important;
}

.tpsw-appointment-success-modal__icon svg,
.tpsw-appointment-success-modal__sender-icon svg {
  width: 30px !important;
  height: 30px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.15 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.tpsw-appointment-success-modal__card-label {
  margin: 0 0 12px !important;
  color: #1263f2 !important;
  font-size: clamp(1rem, 1.8vw, 1.24rem) !important;
  line-height: 1.2 !important;
  font-weight: 850 !important;
  letter-spacing: -.02em !important;
}

.tpsw-appointment-success-modal__card-value {
  color: #0f2147 !important;
  font-size: clamp(1.02rem, 1.8vw, 1.2rem) !important;
  line-height: 1.3 !important;
  font-weight: 550 !important;
  overflow-wrap: anywhere !important;
}

.tpsw-appointment-success-modal__sender {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  margin: 0 auto 22px !important;
  color: #64748b !important;
  font-size: clamp(1rem, 1.8vw, 1.18rem) !important;
  line-height: 1.3 !important;
  font-weight: 500 !important;
  text-align: center !important;
}

.tpsw-appointment-success-modal__sender strong {
  color: #1263f2 !important;
  font-weight: 800 !important;
  overflow-wrap: anywhere !important;
}

.tpsw-appointment-success-modal__junk {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 22px !important;
  width: 100% !important;
  margin: 0 0 24px !important;
  padding: 22px 30px !important;
  border: 1px solid rgba(18, 99, 242, .20) !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #eef6ff, #f7fbff) !important;
  color: #0b2f83 !important;
  font-size: clamp(1rem, 1.8vw, 1.15rem) !important;
  line-height: 1.38 !important;
  font-weight: 650 !important;
  text-align: left !important;
}

.tpsw-appointment-success-modal__junk-icon {
  width: 54px !important;
  height: 54px !important;
  border-radius: 999px !important;
  border: 3px solid #1263f2 !important;
  color: #1263f2 !important;
  background: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  font-size: 1.8rem !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  font-family: Georgia, serif !important;
  font-style: italic !important;
}

.tpsw-appointment-success-modal__button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 76px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 12px !important;
  padding: 18px 26px !important;
  background: linear-gradient(135deg, #2676ff 0%, #064ed9 100%) !important;
  color: #ffffff !important;
  font-size: clamp(1.08rem, 2vw, 1.35rem) !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  box-shadow: 0 18px 34px rgba(18, 99, 242, .26) !important;
  transition: transform .18s ease, box-shadow .18s ease !important;
}

.tpsw-appointment-success-modal__button:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 22px 40px rgba(18, 99, 242, .34) !important;
}

.tpsw-appointment-success-modal .form-success-modal__close {
  top: 20px !important;
  right: 22px !important;
  width: 58px !important;
  height: 58px !important;
  background: #f3f6ff !important;
  color: #0f2147 !important;
  font-size: 2.05rem !important;
  font-weight: 400 !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .10) !important;
}

.tpsw-appointment-success-modal .form-success-modal__close:hover {
  background: #eaf0ff !important;
}

@media (max-width: 760px) {
  .tpsw-appointment-success-modal__box {
    padding: 74px 20px 24px !important;
    border-radius: 24px !important;
  }

  .tpsw-appointment-success-modal__cards {
    grid-template-columns: 1fr !important;
  }

  .tpsw-appointment-success-modal__sender {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .tpsw-appointment-success-modal__junk {
    align-items: flex-start !important;
    padding: 18px !important;
    gap: 14px !important;
  }

  .tpsw-appointment-success-modal__button {
    min-height: 66px !important;
    border-radius: 14px !important;
  }
}


/* V205 - exact professional Teams invitation modal layout */
body.has-success-modal {
  overflow: hidden !important;
}

.form-success-modal.tpsw-appointment-success-modal,
.tpsw-appointment-success-modal.form-success-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483000 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  background: rgba(18, 29, 52, .64) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  overflow-y: auto !important;
}

.form-success-modal.tpsw-appointment-success-modal.is-open,
.tpsw-appointment-success-modal.form-success-modal.is-open {
  display: flex !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box {
  position: relative !important;
  width: min(940px, calc(100vw - 44px)) !important;
  max-width: 940px !important;
  max-height: calc(100vh - 40px) !important;
  margin: auto !important;
  padding: 74px 52px 38px !important;
  border: 1px solid rgba(219, 231, 255, .96) !important;
  border-radius: 30px !important;
  background: #ffffff !important;
  box-shadow: 0 34px 110px rgba(15, 23, 42, .32) !important;
  text-align: center !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box h3 {
  margin: 0 auto 22px !important;
  color: #0b2f83 !important;
  font-size: clamp(2.35rem, 4vw, 3.55rem) !important;
  line-height: 1.03 !important;
  letter-spacing: -.045em !important;
  font-weight: 950 !important;
  text-align: center !important;
  text-transform: none !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText {
  margin: 0 !important;
  padding: 0 !important;
  color: #334155 !important;
  font-size: 1rem !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
  text-align: center !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__intro {
  display: block !important;
  max-width: 780px !important;
  margin: 0 auto 38px !important;
  color: #34435f !important;
  font-size: clamp(1.04rem, 1.65vw, 1.28rem) !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
  letter-spacing: -.01em !important;
  text-align: center !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__cards {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 20px !important;
  width: 100% !important;
  margin: 0 0 26px !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 160px !important;
  padding: 30px 24px 24px !important;
  border: 1px solid rgba(203, 213, 225, .75) !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  box-shadow: 0 15px 36px rgba(15, 23, 42, .07) !important;
  text-align: center !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__icon,
.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__sender-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 58px !important;
  height: 58px !important;
  border-radius: 999px !important;
  background: #edf4ff !important;
  color: #1263f2 !important;
  flex: 0 0 auto !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__icon {
  margin: 0 0 18px !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__icon svg,
.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__sender-icon svg {
  display: block !important;
  width: 30px !important;
  height: 30px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.15 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__card-label {
  display: block !important;
  margin: 0 0 12px !important;
  color: #1263f2 !important;
  font-size: clamp(1.04rem, 1.65vw, 1.24rem) !important;
  line-height: 1.2 !important;
  font-weight: 850 !important;
  letter-spacing: -.02em !important;
  text-align: center !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__card-value {
  display: block !important;
  color: #0f2147 !important;
  font-size: clamp(1.04rem, 1.65vw, 1.18rem) !important;
  line-height: 1.3 !important;
  font-weight: 560 !important;
  overflow-wrap: anywhere !important;
  text-align: center !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__sender {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  width: 100% !important;
  margin: 0 auto 26px !important;
  color: #64748b !important;
  font-size: clamp(1.02rem, 1.65vw, 1.17rem) !important;
  line-height: 1.3 !important;
  font-weight: 500 !important;
  text-align: center !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__sender strong {
  color: #1263f2 !important;
  font-weight: 800 !important;
  overflow-wrap: anywhere !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__junk {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 24px !important;
  width: 100% !important;
  margin: 0 0 24px !important;
  padding: 22px 32px !important;
  border: 1px solid rgba(18, 99, 242, .20) !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #eef6ff 0%, #f7fbff 100%) !important;
  box-shadow: none !important;
  color: #0b2f83 !important;
  font-size: clamp(1.03rem, 1.65vw, 1.15rem) !important;
  line-height: 1.38 !important;
  font-weight: 650 !important;
  text-align: left !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__junk-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  border-radius: 999px !important;
  border: 3px solid #1263f2 !important;
  color: #1263f2 !important;
  background: #ffffff !important;
  flex: 0 0 auto !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__junk-icon svg {
  width: 28px !important;
  height: 28px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.6 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box .tpsw-appointment-success-modal__button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 76px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 12px !important;
  padding: 18px 26px !important;
  background: linear-gradient(135deg, #2676ff 0%, #064ed9 100%) !important;
  color: #ffffff !important;
  font-size: clamp(1.08rem, 2vw, 1.35rem) !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  box-shadow: 0 18px 34px rgba(18, 99, 242, .26) !important;
  transition: transform .18s ease, box-shadow .18s ease !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box .tpsw-appointment-success-modal__button:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 22px 40px rgba(18, 99, 242, .34) !important;
}

.tpsw-appointment-success-modal .form-success-modal__close {
  position: absolute !important;
  top: 22px !important;
  right: 24px !important;
  width: 58px !important;
  height: 58px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #f3f6ff !important;
  color: #0f2147 !important;
  font-size: 2.05rem !important;
  line-height: 1 !important;
  font-weight: 400 !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .10) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.tpsw-appointment-success-modal .form-success-modal__close:hover {
  background: #eaf0ff !important;
}

@media (max-width: 820px) {
  .tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box {
    width: min(680px, calc(100vw - 28px)) !important;
    padding: 76px 20px 24px !important;
    border-radius: 24px !important;
  }

  .tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__cards {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__sender {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__junk {
    align-items: flex-start !important;
    padding: 18px !important;
    gap: 14px !important;
  }

  .tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box .tpsw-appointment-success-modal__button {
    min-height: 66px !important;
    border-radius: 14px !important;
  }
}

/* V206 - compact Teams invitation modal: same visual, reduced height to avoid desktop scroll */
.form-success-modal.tpsw-appointment-success-modal,
.tpsw-appointment-success-modal.form-success-modal {
  padding: 16px !important;
  overflow: hidden !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box {
  width: min(820px, calc(100vw - 40px)) !important;
  max-width: 820px !important;
  max-height: calc(100vh - 32px) !important;
  padding: 50px 42px 28px !important;
  border-radius: 28px !important;
  overflow-y: auto !important;
  scrollbar-width: none !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box h3 {
  margin: 0 auto 14px !important;
  font-size: clamp(2rem, 3.2vw, 3rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -.042em !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__intro {
  max-width: 710px !important;
  margin: 0 auto 26px !important;
  font-size: clamp(.96rem, 1.35vw, 1.12rem) !important;
  line-height: 1.42 !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__cards {
  gap: 16px !important;
  margin: 0 0 18px !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__card {
  min-height: 128px !important;
  padding: 22px 20px 18px !important;
  border-radius: 15px !important;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .055) !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__icon,
.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__sender-icon {
  width: 48px !important;
  height: 48px !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__icon {
  margin: 0 0 14px !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__icon svg,
.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__sender-icon svg {
  width: 25px !important;
  height: 25px !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__card-label {
  margin: 0 0 9px !important;
  font-size: clamp(.98rem, 1.35vw, 1.11rem) !important;
  line-height: 1.18 !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__card-value {
  font-size: clamp(.97rem, 1.25vw, 1.06rem) !important;
  line-height: 1.26 !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__sender {
  gap: 13px !important;
  margin: 0 auto 18px !important;
  font-size: clamp(.94rem, 1.25vw, 1.04rem) !important;
  line-height: 1.25 !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__junk {
  gap: 18px !important;
  margin: 0 0 18px !important;
  padding: 17px 26px !important;
  border-radius: 15px !important;
  font-size: clamp(.96rem, 1.25vw, 1.04rem) !important;
  line-height: 1.34 !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__junk-icon {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  border-width: 2.5px !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__junk-icon svg {
  width: 23px !important;
  height: 23px !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box .tpsw-appointment-success-modal__button {
  min-height: 60px !important;
  padding: 14px 22px !important;
  border-radius: 12px !important;
  font-size: clamp(1rem, 1.55vw, 1.18rem) !important;
  box-shadow: 0 14px 28px rgba(18, 99, 242, .24) !important;
}

.tpsw-appointment-success-modal .form-success-modal__close {
  top: 18px !important;
  right: 20px !important;
  width: 50px !important;
  height: 50px !important;
  font-size: 1.75rem !important;
}

@media (max-width: 820px) {
  .form-success-modal.tpsw-appointment-success-modal,
  .tpsw-appointment-success-modal.form-success-modal {
    overflow-y: auto !important;
  }

  .tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box {
    width: min(620px, calc(100vw - 24px)) !important;
    max-height: calc(100vh - 24px) !important;
    padding: 64px 18px 22px !important;
    border-radius: 22px !important;
  }

  .tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box h3 {
    font-size: clamp(1.9rem, 8vw, 2.65rem) !important;
  }

  .tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__intro {
    margin-bottom: 18px !important;
    font-size: 1rem !important;
  }

  .tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__card {
    min-height: 118px !important;
  }
}

/* V207 - appointment page contrast pass: darker borders, clearer cards, less pale page */
.tpsw-appointment-v192 {
  background:
    radial-gradient(circle at 8% 8%, rgba(37, 99, 235, .14), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(14, 165, 233, .12), transparent 32%),
    linear-gradient(180deg, #eef4ff 0%, #e4edfb 48%, #eef4ff 100%) !important;
}

.tpsw-appointment-v192 .container {
  max-width: 1160px !important;
}

.tpsw-appointment-v192-pill {
  border-color: #9fb2d0 !important;
  background: rgba(255, 255, 255, .96) !important;
  color: #15213a !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08), inset 0 1px 0 rgba(255, 255, 255, .92) !important;
}

.tpsw-appointment-v192-pill-icon,
.tpsw-appointment-v192-card-icon,
.tpsw-appointment-v192-benefit-icon,
.tpsw-appointment-v192-detail-icon,
.tpsw-appointment-v192-detail-grid article > span {
  border-color: #2f63f4 !important;
  background: #eef4ff !important;
  color: #245cff !important;
  box-shadow: 0 10px 22px rgba(37, 92, 255, .12), inset 0 1px 0 rgba(255, 255, 255, .95) !important;
}

.tpsw-appointment-v192-card,
.tpsw-appointment-v192-client-card,
.tpsw-appointment-v192-calendar-card {
  border-color: #a8bad5 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 1px rgba(111, 134, 170, .16), 0 28px 68px rgba(15, 23, 42, .13) !important;
}

.tpsw-appointment-v192-card h2,
.tpsw-appointment-v192-client-card h2 {
  color: #070d22 !important;
}

.tpsw-appointment-v192-card-head p,
.tpsw-appointment-v192-form-intro,
.tpsw-appointment-v192-form-note,
.tpsw-appointment-v192-privacy {
  color: #334155 !important;
}

.tpsw-appointment-v192-calendar-placeholder {
  border: 2px solid #a8bad5 !important;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), 0 14px 32px rgba(15, 23, 42, .07) !important;
}

.tpsw-appointment-v192-calendar-top {
  border-bottom: 1px solid rgba(133, 154, 186, .28) !important;
  padding-bottom: 10px !important;
}

.tpsw-appointment-v192-calendar-top strong {
  color: #061126 !important;
  font-weight: 950 !important;
}

.tpsw-appointment-v192-calendar-top button {
  border-color: #2f63f4 !important;
  background: #ffffff !important;
  color: #245cff !important;
  box-shadow: 0 8px 18px rgba(37, 92, 255, .12) !important;
}

.tpsw-appointment-v192-calendar-grid span {
  color: #475569 !important;
  font-weight: 950 !important;
}

.tpsw-appointment-v192-calendar-grid button,
.tpsw-appointment-v192-slots button {
  border: 2px solid #b7c7df !important;
  background: #ffffff !important;
  color: #061126 !important;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .06) !important;
}

.tpsw-appointment-v192-calendar-grid button:disabled {
  border-color: #d7e0ec !important;
  background: #f2f5fa !important;
  color: #b1bdcb !important;
  opacity: .70 !important;
}

.tpsw-appointment-v192-calendar-grid button:not(:disabled):hover,
.tpsw-appointment-v192-slots button:hover {
  border-color: #245cff !important;
  background: #f2f6ff !important;
  color: #0b3fd8 !important;
  box-shadow: 0 12px 24px rgba(37, 92, 255, .13) !important;
}

.tpsw-appointment-v192-calendar-grid button.is-active,
.tpsw-appointment-v192-slots button.is-active {
  border-color: #245cff !important;
  background: linear-gradient(135deg, #4168ff 0%, #1c4ee8 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 28px rgba(37, 92, 255, .25) !important;
}

.tpsw-appointment-v192-slots {
  border-top-color: #b7c7df !important;
}

.tpsw-appointment-v192-slots strong {
  color: #061126 !important;
}

.tpsw-appointment-v192-confirm,
.tpsw-appointment-v192-form-selected {
  border-color: #a8bad5 !important;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92) !important;
}

.tpsw-appointment-v192-confirm-summary span,
.tpsw-appointment-v192-form-selected > span {
  color: #4a5c78 !important;
}

.tpsw-appointment-v192-confirm-summary strong,
.tpsw-appointment-v192-form-selected strong {
  color: #061126 !important;
}

.tpsw-appointment-v192-confirm button,
.tpsw-appointment-v192-form button[type="submit"] {
  border-color: #245cff !important;
  background: linear-gradient(135deg, #4168ff 0%, #1c4ee8 100%) !important;
  box-shadow: 0 16px 34px rgba(37, 92, 255, .26) !important;
}

.tpsw-appointment-v192-form label > span {
  color: #061126 !important;
  font-weight: 950 !important;
}

.tpsw-appointment-v192-form input,
.tpsw-appointment-v192-form textarea {
  border-color: #a8bad5 !important;
  background: #ffffff !important;
  color: #061126 !important;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .055) !important;
}

.tpsw-appointment-v192-form input::placeholder,
.tpsw-appointment-v192-form textarea::placeholder {
  color: #6b7b92 !important;
  opacity: 1 !important;
}

.tpsw-appointment-v192-form input:focus,
.tpsw-appointment-v192-form textarea:focus {
  border-color: #245cff !important;
  box-shadow: 0 0 0 4px rgba(37, 92, 255, .13), 0 12px 26px rgba(15, 23, 42, .08) !important;
}

@media (min-width: 981px) {
  .tpsw-appointment-v192-main {
    gap: 32px !important;
  }
}

/* V208 - form validation, selected slot cleanup, compact final labels */
.tpsw-appointment-v192-confirm {
  grid-template-columns: 1fr !important;
  background: #ffffff !important;
  border-color: #9fb2d2 !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .055) !important;
}

.tpsw-appointment-v192-confirm button,
.tpsw-appointment-v192-confirm [data-appointment-confirm] {
  display: none !important;
}

.tpsw-appointment-v192-confirm-summary span {
  color: #1e3a8a !important;
}

.tpsw-appointment-v192-confirm-summary strong {
  max-width: 100% !important;
  font-size: 1rem !important;
  line-height: 1.28 !important;
}

.tpsw-appointment-v192-form button[type="submit"] {
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.tpsw-appointment-v192-form label.is-appointment-invalid > span,
.tpsw-appointment-v192-form-selected.is-appointment-invalid > span,
.tpsw-appointment-v192-confirm.is-appointment-invalid .tpsw-appointment-v192-confirm-summary span {
  color: #dc2626 !important;
}

.tpsw-appointment-v192-form input.is-appointment-invalid,
.tpsw-appointment-v192-form textarea.is-appointment-invalid,
.tpsw-appointment-v192-form label.is-appointment-invalid input,
.tpsw-appointment-v192-form label.is-appointment-invalid textarea,
.tpsw-appointment-v192-form-selected.is-appointment-invalid,
.tpsw-appointment-v192-confirm.is-appointment-invalid {
  border-color: #ef4444 !important;
  background: #fff7f7 !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, .12), 0 12px 28px rgba(127, 29, 29, .08) !important;
}

.tpsw-appointment-v192-field-error {
  display: block !important;
  margin-top: -2px !important;
  color: #dc2626 !important;
  font-size: .78rem !important;
  line-height: 1.25 !important;
  font-weight: 850 !important;
}

.tpsw-appointment-v192-form-selected {
  background: #ffffff !important;
  border-color: #9fb2d2 !important;
}

.tpsw-appointment-v192-form-selected > span {
  color: #1e3a8a !important;
}

@media (max-width: 640px) {
  .tpsw-appointment-v192-confirm {
    padding: 14px !important;
  }
}

/* V210 - Contact homepage: stronger contrast without changing section background */
#contact.tpsw-contact-v173 .tpsw-contact-v173-shell {
  border: 2.5px solid #9fb1cd !important;
  background: #ffffff !important;
  box-shadow: 0 30px 80px rgba(15, 23, 42, .12), 0 0 0 1px rgba(55, 84, 134, .08) !important;
}

#contact.tpsw-contact-v173 .tpsw-contact-v173-form-panel {
  background: #ffffff !important;
}

#contact.tpsw-contact-v173 .tpsw-contact-v173-side {
  border: 2.5px solid #a3b5d0 !important;
  background: #ffffff !important;
  box-shadow: 0 22px 54px rgba(15, 23, 42, .10), inset 0 1px 0 rgba(255, 255, 255, .95) !important;
}

#contact.tpsw-contact-v173 input,
#contact.tpsw-contact-v173 select,
#contact.tpsw-contact-v173 textarea {
  border: 2px solid #b3c2da !important;
  background-color: #ffffff !important;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .045), inset 0 1px 0 rgba(255, 255, 255, .95) !important;
}

#contact.tpsw-contact-v173 input:hover,
#contact.tpsw-contact-v173 select:hover,
#contact.tpsw-contact-v173 textarea:hover {
  border-color: #8fa5c5 !important;
}

#contact.tpsw-contact-v173 input:focus,
#contact.tpsw-contact-v173 select:focus,
#contact.tpsw-contact-v173 textarea:focus {
  border-color: #315cf6 !important;
  box-shadow: 0 0 0 4px rgba(49, 92, 246, .16), 0 12px 28px rgba(15, 23, 42, .07) !important;
}

#contact.tpsw-contact-v173 .tpsw-contact-v173-submit,
#contact.tpsw-contact-v173 .tpsw-contact-v173-schedule-btn {
  background: linear-gradient(135deg, #4367ff 0%, #2144e8 100%) !important;
  border-color: #2144e8 !important;
  box-shadow: 0 18px 38px rgba(33, 68, 232, .30) !important;
}

#contact.tpsw-contact-v173 .tpsw-contact-v173-submit:hover,
#contact.tpsw-contact-v173 .tpsw-contact-v173-submit:focus,
#contact.tpsw-contact-v173 .tpsw-contact-v173-schedule-btn:hover,
#contact.tpsw-contact-v173 .tpsw-contact-v173-schedule-btn:focus {
  background: linear-gradient(135deg, #315cf6 0%, #1837ca 100%) !important;
  box-shadow: 0 22px 46px rgba(33, 68, 232, .36) !important;
}

#contact.tpsw-contact-v173 .tpsw-contact-v173-after {
  border: 2px solid #9fb1cd !important;
  background: #ffffff !important;
  box-shadow: 0 16px 38px rgba(15, 23, 42, .08) !important;
}

#contact.tpsw-contact-v173 .tpsw-contact-v173-after-grid span {
  border: 2px solid #b8c7df !important;
  background: #ffffff !important;
  color: #263244 !important;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .045) !important;
}

#contact.tpsw-contact-v173 .tpsw-contact-v173-after-grid span::before {
  background: #315cf6 !important;
  box-shadow: 0 0 0 6px rgba(49, 92, 246, .13) !important;
}

#contact.tpsw-contact-v173 .tpsw-contact-v173-method,
#contact.tpsw-contact-v173 .tpsw-contact-v173-trust {
  border: 2px solid #b4c4dc !important;
  background: #ffffff !important;
  box-shadow: 0 14px 32px rgba(15, 23, 42, .07) !important;
}

#contact.tpsw-contact-v173 .tpsw-contact-v173-method:hover {
  border-color: #315cf6 !important;
  background: #fbfdff !important;
  box-shadow: 0 18px 38px rgba(49, 92, 246, .13) !important;
}

#contact.tpsw-contact-v173 .tpsw-contact-v173-icon,
#contact.tpsw-contact-v173 .tpsw-contact-v173-method-icon {
  color: #315cf6 !important;
  background: #eef4ff !important;
  border: 2px solid rgba(49, 92, 246, .42) !important;
  box-shadow: 0 10px 24px rgba(49, 92, 246, .12) !important;
}

#contact.tpsw-contact-v173 .tpsw-contact-v173-icon {
  background: #ffffff !important;
  border-color: rgba(49, 92, 246, .50) !important;
}

#contact.tpsw-contact-v173 .tpsw-contact-v173-side h3,
#contact.tpsw-contact-v173 .tpsw-contact-v173-side h4,
#contact.tpsw-contact-v173 .tpsw-contact-v173-method strong,
#contact.tpsw-contact-v173 .tpsw-contact-v173-trust strong,
#contact.tpsw-contact-v173 .tpsw-contact-v173-after > strong {
  color: #071327 !important;
}

#contact.tpsw-contact-v173 .tpsw-contact-v173-side p,
#contact.tpsw-contact-v173 .tpsw-contact-v173-trust small,
#contact.tpsw-contact-v173 .tpsw-contact-v173-privacy {
  color: #46556d !important;
}

#contact.tpsw-contact-v173 .tpsw-contact-v173-divider {
  background: #b7c6dc !important;
}

/* V212 - confirmation modal contrast pass: stronger borders, sender card, white icon circles */
.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box {
  border: 2px solid #9fb2d6 !important;
  box-shadow: 0 34px 105px rgba(15, 23, 42, .38) !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__card,
.tpsw-appointment-success-modal__card {
  border: 2px solid #a7badb !important;
  background: #ffffff !important;
  box-shadow: 0 18px 36px rgba(15, 23, 42, .095) !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__icon,
.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__sender-icon,
.tpsw-appointment-success-modal__icon,
.tpsw-appointment-success-modal__sender-icon {
  background: #ffffff !important;
  border: 2.5px solid #1263f2 !important;
  color: #1263f2 !important;
  box-shadow: 0 10px 22px rgba(18, 99, 242, .12) !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__sender,
.tpsw-appointment-success-modal__sender {
  width: min(470px, 100%) !important;
  min-height: 122px !important;
  margin: 0 auto 20px !important;
  padding: 22px 22px 20px !important;
  border: 2px solid #a7badb !important;
  border-radius: 15px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 36px rgba(15, 23, 42, .09) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  color: #5f6f8d !important;
  text-align: center !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__sender > span:not(.tpsw-appointment-success-modal__sender-icon),
.tpsw-appointment-success-modal__sender > span:not(.tpsw-appointment-success-modal__sender-icon) {
  display: block !important;
  line-height: 1.28 !important;
  font-weight: 650 !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__sender strong,
.tpsw-appointment-success-modal__sender strong {
  display: block !important;
  margin-top: 5px !important;
  color: #1263f2 !important;
  font-weight: 900 !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__junk,
.tpsw-appointment-success-modal__junk {
  border: 2px solid #7fabff !important;
  background: linear-gradient(135deg, #eef6ff 0%, #fbfdff 100%) !important;
  box-shadow: 0 16px 32px rgba(18, 99, 242, .12) !important;
}

.tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__junk-icon,
.tpsw-appointment-success-modal__junk-icon {
  background: #ffffff !important;
  border: 3px solid #1263f2 !important;
  color: #1263f2 !important;
  box-shadow: 0 10px 22px rgba(18, 99, 242, .12) !important;
}

.tpsw-appointment-success-modal .form-success-modal__close {
  border: 1.5px solid #d2ddf4 !important;
}

@media (max-width: 820px) {
  .tpsw-appointment-success-modal .form-success-modal__box.tpsw-appointment-success-modal__box p#appointmentSuccessText .tpsw-appointment-success-modal__sender,
  .tpsw-appointment-success-modal__sender {
    width: 100% !important;
    min-height: 118px !important;
    margin-bottom: 18px !important;
  }
}


/* V213 - Appointment detail section: visual cards with large illustrations */
.tpsw-appointment-v192-detail {
  margin-top: clamp(54px, 7vw, 86px) !important;
  text-align: center !important;
}

.tpsw-appointment-v192-detail h2 {
  max-width: 820px !important;
  margin: 0 auto clamp(30px, 4vw, 46px) !important;
  font-size: clamp(2.35rem, 4.6vw, 4rem) !important;
  line-height: .98 !important;
  letter-spacing: -.055em !important;
  text-align: center !important;
}

.tpsw-appointment-v213-detail-grid,
.tpsw-appointment-v192-detail-grid.tpsw-appointment-v213-detail-grid {
  width: min(100%, 1320px) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: clamp(14px, 1.5vw, 22px) !important;
  align-items: stretch !important;
  text-align: center !important;
}

.tpsw-appointment-v213-detail-card,
.tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card {
  min-height: 326px !important;
  padding: 22px 18px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  border: 2px solid #b8c8df !important;
  border-radius: 24px !important;
  background: #ffffff !important;
  box-shadow: 0 22px 48px rgba(15, 23, 42, .095), inset 0 1px 0 rgba(255,255,255,.95) !important;
  overflow: hidden !important;
}

.tpsw-appointment-v213-detail-card:hover {
  transform: translateY(-3px) !important;
  border-color: #7ea2d6 !important;
  box-shadow: 0 28px 62px rgba(15, 23, 42, .13), inset 0 1px 0 rgba(255,255,255,.95) !important;
}

.tpsw-appointment-v213-detail-image {
  display: block !important;
  width: 100% !important;
  max-width: 190px !important;
  height: 132px !important;
  margin: 0 auto 16px !important;
  object-fit: contain !important;
}

.tpsw-appointment-v213-detail-card h3,
.tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card h3 {
  width: 100% !important;
  margin: 0 auto 12px !important;
  color: #071126 !important;
  font-size: clamp(1.02rem, 1.1vw, 1.24rem) !important;
  line-height: 1.08 !important;
  font-weight: 950 !important;
  letter-spacing: -.025em !important;
  text-align: center !important;
}

.tpsw-appointment-v213-detail-card p,
.tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card p {
  width: 100% !important;
  margin: 0 auto !important;
  color: #23324a !important;
  font-size: clamp(.92rem, .9vw, 1.03rem) !important;
  line-height: 1.42 !important;
  font-weight: 670 !important;
  text-align: center !important;
}

.tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card > span,
.tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card .tpsw-appointment-v192-detail-icon {
  display: none !important;
}

@media (max-width: 1180px) {
  .tpsw-appointment-v213-detail-grid,
  .tpsw-appointment-v192-detail-grid.tpsw-appointment-v213-detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .tpsw-appointment-v192-detail h2 {
    font-size: clamp(2.1rem, 9vw, 3.1rem) !important;
  }

  .tpsw-appointment-v213-detail-grid,
  .tpsw-appointment-v192-detail-grid.tpsw-appointment-v213-detail-grid {
    grid-template-columns: 1fr !important;
    max-width: 420px !important;
  }

  .tpsw-appointment-v213-detail-card,
  .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card {
    min-height: auto !important;
    padding: 24px 22px 28px !important;
  }

  .tpsw-appointment-v213-detail-image {
    max-width: 210px !important;
    height: 145px !important;
  }
}


/* V214 - Appointment detail section: exact cropped illustration icons + wider cards + tighter spacing */
.tpsw-appointment-v192-detail {
  margin-top: clamp(18px, 2.5vw, 36px) !important;
  padding-top: 0 !important;
  text-align: center !important;
}

.tpsw-appointment-v192-detail h2 {
  max-width: 900px !important;
  margin: 0 auto clamp(30px, 3.2vw, 44px) !important;
  font-size: clamp(2.45rem, 4.6vw, 4.25rem) !important;
  line-height: .96 !important;
  text-align: center !important;
}

.tpsw-appointment-v213-detail-grid,
.tpsw-appointment-v192-detail-grid.tpsw-appointment-v213-detail-grid {
  width: min(calc(100vw - 72px), 1510px) !important;
  max-width: none !important;
  margin-left: 50% !important;
  transform: translateX(-50%) !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: clamp(18px, 1.65vw, 28px) !important;
  align-items: stretch !important;
  text-align: center !important;
}

.tpsw-appointment-v213-detail-card,
.tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card {
  min-height: 415px !important;
  padding: 26px 24px 30px !important;
  border: 2px solid #a9bdd8 !important;
  border-radius: 24px !important;
  background: #ffffff !important;
  box-shadow: 0 24px 54px rgba(15, 23, 42, .10), inset 0 1px 0 rgba(255,255,255,.95) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  overflow: hidden !important;
}

.tpsw-appointment-v213-detail-image {
  display: block !important;
  width: 100% !important;
  max-width: 260px !important;
  height: 185px !important;
  margin: 0 auto 20px !important;
  object-fit: contain !important;
}

.tpsw-appointment-v213-detail-card h3,
.tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card h3 {
  width: 100% !important;
  max-width: 250px !important;
  margin: 0 auto 14px !important;
  color: #071126 !important;
  font-size: clamp(1.12rem, 1.15vw, 1.36rem) !important;
  line-height: 1.08 !important;
  font-weight: 950 !important;
  letter-spacing: -.025em !important;
  text-align: center !important;
}

.tpsw-appointment-v213-detail-card p,
.tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card p {
  width: 100% !important;
  max-width: 250px !important;
  margin: 0 auto !important;
  color: #1f2d43 !important;
  font-size: clamp(.96rem, .9vw, 1.06rem) !important;
  line-height: 1.48 !important;
  font-weight: 650 !important;
  text-align: center !important;
}

@media (max-width: 1280px) {
  .tpsw-appointment-v213-detail-grid,
  .tpsw-appointment-v192-detail-grid.tpsw-appointment-v213-detail-grid {
    width: min(calc(100vw - 46px), 1160px) !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .tpsw-appointment-v213-detail-card,
  .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card {
    min-height: 390px !important;
  }
}

@media (max-width: 760px) {
  .tpsw-appointment-v192-detail {
    margin-top: 28px !important;
  }
  .tpsw-appointment-v192-detail h2 {
    font-size: clamp(2.05rem, 8.8vw, 3.1rem) !important;
    margin-bottom: 28px !important;
  }
  .tpsw-appointment-v213-detail-grid,
  .tpsw-appointment-v192-detail-grid.tpsw-appointment-v213-detail-grid {
    width: min(calc(100vw - 36px), 430px) !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .tpsw-appointment-v213-detail-card,
  .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card {
    min-height: auto !important;
    padding: 26px 24px 30px !important;
  }
  .tpsw-appointment-v213-detail-image {
    max-width: 285px !important;
    height: 205px !important;
    margin-bottom: 18px !important;
  }
  .tpsw-appointment-v213-detail-card h3,
  .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card h3,
  .tpsw-appointment-v213-detail-card p,
  .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card p {
    max-width: 320px !important;
  }
}

/* V215 - make appointment detail icons much larger */
.tpsw-appointment-v213-detail-card,
.tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card {
  min-height: 438px !important;
  padding: 18px 22px 30px !important;
}

.tpsw-appointment-v213-detail-image {
  display: block !important;
  width: 100% !important;
  max-width: 320px !important;
  height: 220px !important;
  margin: -2px auto 18px !important;
  object-fit: contain !important;
}

@media (max-width: 1280px) {
  .tpsw-appointment-v213-detail-card,
  .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card {
    min-height: 420px !important;
  }

  .tpsw-appointment-v213-detail-image {
    max-width: 300px !important;
    height: 205px !important;
  }
}

@media (max-width: 760px) {
  .tpsw-appointment-v213-detail-card,
  .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card {
    padding: 22px 20px 28px !important;
  }

  .tpsw-appointment-v213-detail-image {
    max-width: 335px !important;
    height: 240px !important;
    margin: 0 auto 18px !important;
  }
}


/* V216 - REAL icon enlargement: use tightly cropped PNG assets and force larger display */
.tpsw-appointment-v213-detail-card,
.tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card {
  min-height: 430px !important;
  padding: 24px 24px 30px !important;
}

.tpsw-appointment-v213-detail-image,
.tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card .tpsw-appointment-v213-detail-image {
  width: min(92%, 300px) !important;
  max-width: 300px !important;
  height: 220px !important;
  max-height: 220px !important;
  margin: 0 auto 18px !important;
  object-fit: contain !important;
  object-position: center center !important;
}

@media (max-width: 1280px) {
  .tpsw-appointment-v213-detail-image,
  .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card .tpsw-appointment-v213-detail-image {
    width: min(92%, 280px) !important;
    max-width: 280px !important;
    height: 205px !important;
  }
}

@media (max-width: 760px) {
  .tpsw-appointment-v213-detail-image,
  .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card .tpsw-appointment-v213-detail-image {
    width: min(92%, 320px) !important;
    max-width: 320px !important;
    height: 235px !important;
  }
}


/* V217 - Contact section icon circles correction only */
.tpsw-home-contact-v210-card .tpsw-home-contact-v210-icon,
.tpsw-home-contact-v210-method .tpsw-home-contact-v210-icon,
.tpsw-home-contact-v210-info .tpsw-home-contact-v210-icon,
.tpsw-home-contact-v210-benefit-icon,
.home-contact .tpsw-home-contact-v210-icon,
.home-contact .tpsw-home-contact-v210-benefit-icon,
.tpsw-home-contact .tpsw-home-contact-v210-icon,
.tpsw-home-contact .tpsw-home-contact-v210-benefit-icon {
  background: #ffffff !important;
  border: 3px solid #3f66ff !important;
  color: #2f5cff !important;
  box-shadow: 0 10px 24px rgba(47, 92, 255, 0.13) !important;
}

.tpsw-home-contact-v210-card .tpsw-home-contact-v210-icon svg,
.tpsw-home-contact-v210-method .tpsw-home-contact-v210-icon svg,
.tpsw-home-contact-v210-info .tpsw-home-contact-v210-icon svg,
.tpsw-home-contact-v210-benefit-icon svg,
.home-contact .tpsw-home-contact-v210-icon svg,
.home-contact .tpsw-home-contact-v210-benefit-icon svg,
.tpsw-home-contact .tpsw-home-contact-v210-icon svg,
.tpsw-home-contact .tpsw-home-contact-v210-benefit-icon svg {
  color: #2f5cff !important;
  stroke: #2f5cff !important;
}


/* V217 fallback selectors for existing contact icons */
[class*="contact"] [class*="icon"] {
  --tpsw-contact-icon-bg: #ffffff;
}

section[class*="contact"] span[class*="icon"],
section[class*="contact"] .contact-icon,
section[class*="contact"] .tpsw-contact-icon {
  background-color: #ffffff !important;
  border-color: #3f66ff !important;
  color: #2f5cff !important;
}

section[class*="contact"] span[class*="icon"] svg,
section[class*="contact"] .contact-icon svg,
section[class*="contact"] .tpsw-contact-icon svg {
  stroke: #2f5cff !important;
}


/* V218 - Exact correction: Home Contact circular icons.
   Real classes in the contact section:
   - .tpsw-contact-v173-icon = main circle beside "Prendre un Rendez-Vous"
   - .tpsw-contact-v173-method-icon = circles beside Téléphone, Courriel, Réponse Rapide, Premier Échange
*/

/* Main icon circle beside "Prendre un Rendez-Vous" */
section.tpsw-contact-v173 .tpsw-contact-v173-side-top > .tpsw-contact-v173-icon,
section#contact.tpsw-contact-v173 .tpsw-contact-v173-side-top > .tpsw-contact-v173-icon {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border: 3px solid #3f66ff !important;
  color: #2f5cff !important;
  box-shadow: 0 12px 24px rgba(47, 92, 255, 0.14) !important;
}

/* Contact method icon circles: Téléphone, Courriel, Réponse Rapide, Premier Échange */
section.tpsw-contact-v173 .tpsw-contact-v173-method-icon,
section#contact.tpsw-contact-v173 .tpsw-contact-v173-method-icon {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border: 3px solid #3f66ff !important;
  color: #2f5cff !important;
  box-shadow: 0 10px 22px rgba(47, 92, 255, 0.13) !important;
}

/* SVG strokes inside all corrected circles */
section.tpsw-contact-v173 .tpsw-contact-v173-icon svg,
section.tpsw-contact-v173 .tpsw-contact-v173-method-icon svg,
section#contact.tpsw-contact-v173 .tpsw-contact-v173-icon svg,
section#contact.tpsw-contact-v173 .tpsw-contact-v173-method-icon svg {
  stroke: #2f5cff !important;
  color: #2f5cff !important;
}

/* Force no pale blue fill from older rules or inherited variables */
section.tpsw-contact-v173 .tpsw-contact-v173-icon::before,
section.tpsw-contact-v173 .tpsw-contact-v173-method-icon::before,
section#contact.tpsw-contact-v173 .tpsw-contact-v173-icon::before,
section#contact.tpsw-contact-v173 .tpsw-contact-v173-method-icon::before {
  background: transparent !important;
}


/* V219 - Fix previous mistake only:
   Restore the icon INSIDE the blue "Prendre un Rendez-Vous" button.
   Keep the contact-card icon circles from V218 unchanged.
*/
section#contact.tpsw-contact-v173 .tpsw-contact-v173-schedule-btn .tpsw-contact-v173-schedule-btn-icon,
section.tpsw-contact-v173 .tpsw-contact-v173-schedule-btn .tpsw-contact-v173-schedule-btn-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 auto !important;
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #ffffff !important;
  padding: 0 !important;
}

section#contact.tpsw-contact-v173 .tpsw-contact-v173-schedule-btn .tpsw-contact-v173-schedule-btn-icon svg,
section.tpsw-contact-v173 .tpsw-contact-v173-schedule-btn .tpsw-contact-v173-schedule-btn-icon svg {
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  color: #ffffff !important;
  stroke: #ffffff !important;
  fill: none !important;
  background: transparent !important;
  box-shadow: none !important;
}


/* V221 - Footer solid navy correction.
   Base: 219.zip
   Header: unchanged.
   Footer: solid color only, no gradient.
*/
footer,
body footer,
#site-footer footer,
.site-shell footer {
  background: #202638 !important;
  background-color: #202638 !important;
  background-image: none !important;
  color: #d8e1f2 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

footer .footer-inner,
footer .footer-inner-v83 {
  color: #d8e1f2 !important;
}

footer .footer-contact-link {
  color: #ffffff !important;
  font-weight: 850 !important;
}

footer .footer-links-row a {
  color: rgba(255, 255, 255, 0.88) !important;
  font-weight: 800 !important;
}

footer .footer-contact-link:hover,
footer .footer-links-row a:hover {
  color: #68e7ff !important;
}

footer .footer-separator {
  color: rgba(255, 255, 255, 0.35) !important;
}

footer .footer-facebook-link {
  color: #7ccfff !important;
  font-weight: 850 !important;
}

footer .footer-facebook-link:hover {
  color: #ffffff !important;
}

footer .footer-facebook-icon {
  background: #ffffff !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18), 0 0 0 2px rgba(104, 231, 255, 0.20) !important;
}

footer .footer-facebook-icon svg {
  fill: #1877f2 !important;
}

footer #footerText,
footer p {
  color: rgba(255, 255, 255, 0.68) !important;
  font-weight: 650 !important;
}


/* V222 - Apply darker contact-style outer borders to Process and Services cards.
   Base: 221.zip
   Reference color taken from the darker contact card border used in the contact section:
   #a3b5d0
*/

/* Notre Processus: 6 main step cards only */
.tpsw-process-v175 .tpsw-process-v175-card {
  border: 2.5px solid #a3b5d0 !important;
  box-shadow: 0 0 0 1px rgba(163, 181, 208, 0.22), 0 20px 46px rgba(15, 23, 42, 0.075) !important;
}

/* Notre Processus: stronger border on hover, same visual system */
.tpsw-process-v175 .tpsw-process-v175-card:hover {
  border-color: #8fa5c4 !important;
  box-shadow: 0 0 0 1px rgba(143, 165, 196, 0.28), 0 24px 54px rgba(15, 23, 42, 0.095) !important;
}

/* Nos Services: four main service cards only */
.tpsw-services-v148 .tpsw-service-v148-card {
  border: 2.5px solid #a3b5d0 !important;
  box-shadow: 0 0 0 1px rgba(163, 181, 208, 0.22), 0 20px 46px rgba(15, 23, 42, 0.075) !important;
}

/* Nos Services: fifth lower include/features bubble outer border only */
.tpsw-services-v148 .tpsw-services-v148-includes {
  border: 2.5px solid #a3b5d0 !important;
  box-shadow: 0 0 0 1px rgba(163, 181, 208, 0.22), 0 20px 46px rgba(15, 23, 42, 0.075) !important;
}

/* Keep only the internal dividers of the lower include/features bubble slightly lighter */
.tpsw-services-v148 .tpsw-services-v148-includes div {
  border-right-color: #c3d0e2 !important;
}


/* V223 - Appointment detail section spacing, wider cards, and title capitalization.
   Base: 222.zip
*/

/* Add a bit more breathing room between the booking/calendar area and the detail section */
.tpsw-appointment-v192-detail {
  margin-top: clamp(46px, 5.2vw, 82px) !important;
}

/* Capitalized title line: keep same visual weight, only allow slightly wider title block */
.tpsw-appointment-v192-detail h2 {
  max-width: 1040px !important;
  margin-bottom: clamp(34px, 3.5vw, 50px) !important;
}

/* Make the 5 detail cards wider and reduce the feeling of tall empty vertical space */
.tpsw-appointment-v213-detail-grid,
.tpsw-appointment-v192-detail-grid.tpsw-appointment-v213-detail-grid {
  width: min(calc(100vw - 54px), 1680px) !important;
  gap: clamp(20px, 1.7vw, 30px) !important;
}

/* Wider cards, less unnecessary empty height */
.tpsw-appointment-v213-detail-card,
.tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card {
  min-height: 390px !important;
  padding: 24px 26px 28px !important;
  justify-content: flex-start !important;
}

/* Keep the image large but reduce excess vertical dead space */
.tpsw-appointment-v213-detail-image,
.tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card .tpsw-appointment-v213-detail-image {
  max-width: 330px !important;
  width: min(94%, 330px) !important;
  height: 205px !important;
  margin: 0 auto 16px !important;
}

/* Give titles and text a bit more horizontal room inside wider cards */
.tpsw-appointment-v213-detail-card h3,
.tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card h3 {
  max-width: 300px !important;
}

.tpsw-appointment-v213-detail-card p,
.tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card p {
  max-width: 310px !important;
}

@media (max-width: 1280px) {
  .tpsw-appointment-v213-detail-grid,
  .tpsw-appointment-v192-detail-grid.tpsw-appointment-v213-detail-grid {
    width: min(calc(100vw - 42px), 1180px) !important;
  }

  .tpsw-appointment-v213-detail-card,
  .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card {
    min-height: 380px !important;
  }
}

@media (max-width: 760px) {
  .tpsw-appointment-v192-detail {
    margin-top: 44px !important;
  }

  .tpsw-appointment-v213-detail-card,
  .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card {
    min-height: auto !important;
  }
}


/* V224 - Fix appointment detail cards exactly:
   - Reduce horizontal gap between the 5 cards
   - Make cards wider by using more horizontal viewport
   - Keep same 5-column layout on desktop
*/
.tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-grid,
.tpsw-appointment-v192-detail .tpsw-appointment-v192-detail-grid.tpsw-appointment-v213-detail-grid {
  width: min(calc(100vw - 24px), 1880px) !important;
  max-width: none !important;
  margin-left: 50% !important;
  transform: translateX(-50%) !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 12px !important;
  column-gap: 12px !important;
  row-gap: 12px !important;
}

.tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-card,
.tpsw-appointment-v192-detail .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card {
  min-width: 0 !important;
  min-height: 390px !important;
  padding: 24px 24px 28px !important;
}

.tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-card h3,
.tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-card p {
  max-width: 330px !important;
}

@media (max-width: 1280px) {
  .tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-grid,
  .tpsw-appointment-v192-detail .tpsw-appointment-v192-detail-grid.tpsw-appointment-v213-detail-grid {
    width: min(calc(100vw - 24px), 1180px) !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }
}

@media (max-width: 760px) {
  .tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-grid,
  .tpsw-appointment-v192-detail .tpsw-appointment-v192-detail-grid.tpsw-appointment-v213-detail-grid {
    width: min(calc(100vw - 28px), 440px) !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}


/* V225 - Correct V224 oversizing.
   Goal:
   - Keep title capitalization from V224
   - Reduce space between the 5 cards
   - Stop the cards from stretching full-screen
   - Bring the section back into the same visual width as the rest of the site
*/
.tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-grid,
.tpsw-appointment-v192-detail .tpsw-appointment-v192-detail-grid.tpsw-appointment-v213-detail-grid {
  width: min(calc(100vw - 80px), 1380px) !important;
  max-width: 1380px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  transform: none !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 16px !important;
  column-gap: 16px !important;
  row-gap: 16px !important;
}

.tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-card,
.tpsw-appointment-v192-detail .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card {
  min-height: 370px !important;
  padding: 22px 20px 26px !important;
}

.tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-image,
.tpsw-appointment-v192-detail .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card .tpsw-appointment-v213-detail-image {
  max-width: 285px !important;
  width: min(92%, 285px) !important;
  height: 190px !important;
  margin: 0 auto 14px !important;
}

.tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-card h3,
.tpsw-appointment-v192-detail .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card h3 {
  max-width: 260px !important;
}

.tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-card p,
.tpsw-appointment-v192-detail .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card p {
  max-width: 270px !important;
}

/* Keep a clean, moderate distance between the booking block and this section */
.tpsw-appointment-v192-detail {
  margin-top: clamp(42px, 4.5vw, 68px) !important;
}

@media (max-width: 1280px) {
  .tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-grid,
  .tpsw-appointment-v192-detail .tpsw-appointment-v192-detail-grid.tpsw-appointment-v213-detail-grid {
    width: min(calc(100vw - 44px), 1120px) !important;
    max-width: 1120px !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
}

@media (max-width: 760px) {
  .tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-grid,
  .tpsw-appointment-v192-detail .tpsw-appointment-v192-detail-grid.tpsw-appointment-v213-detail-grid {
    width: min(calc(100vw - 32px), 430px) !important;
    max-width: 430px !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-card,
  .tpsw-appointment-v192-detail .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card {
    min-height: auto !important;
  }
}


/* V226 - Appointment detail section alignment fix.
   Base: 225.zip
   Goal:
   - Keep the cards controlled, not full-screen
   - Center the 5-card row visually
   - Reduce the main title size
*/

/* Reduce the title: still strong, but no longer oversized */
.tpsw-appointment-v192-detail h2,
.tpsw-appointment-v192-detail #appointmentDetailTitle {
  max-width: 920px !important;
  font-size: clamp(2.35rem, 3.7vw, 3.55rem) !important;
  line-height: 1.02 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* Center the card row using fixed responsive columns instead of a stretched grid */
.tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-grid,
.tpsw-appointment-v192-detail .tpsw-appointment-v192-detail-grid.tpsw-appointment-v213-detail-grid {
  width: 100% !important;
  max-width: 1360px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
  transform: none !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(225px, 1fr)) !important;
  gap: 14px !important;
  column-gap: 14px !important;
  row-gap: 14px !important;
  justify-content: center !important;
  align-items: stretch !important;
}

/* Controlled card size */
.tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-card,
.tpsw-appointment-v192-detail .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card {
  min-height: 365px !important;
  padding: 22px 18px 26px !important;
}

/* Slightly smaller image to match the smaller title and controlled section width */
.tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-image,
.tpsw-appointment-v192-detail .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card .tpsw-appointment-v213-detail-image {
  max-width: 270px !important;
  width: min(92%, 270px) !important;
  height: 182px !important;
  margin: 0 auto 14px !important;
}

/* Keep inner text centered and compact */
.tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-card h3,
.tpsw-appointment-v192-detail .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card h3 {
  max-width: 250px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-card p,
.tpsw-appointment-v192-detail .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card p {
  max-width: 255px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 1280px) {
  .tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-grid,
  .tpsw-appointment-v192-detail .tpsw-appointment-v192-detail-grid.tpsw-appointment-v213-detail-grid {
    max-width: 1040px !important;
    grid-template-columns: repeat(3, minmax(225px, 1fr)) !important;
    padding: 0 22px !important;
  }
}

@media (max-width: 760px) {
  .tpsw-appointment-v192-detail h2,
  .tpsw-appointment-v192-detail #appointmentDetailTitle {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
    max-width: 420px !important;
  }

  .tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-grid,
  .tpsw-appointment-v192-detail .tpsw-appointment-v192-detail-grid.tpsw-appointment-v213-detail-grid {
    max-width: 430px !important;
    grid-template-columns: 1fr !important;
    padding: 0 16px !important;
    gap: 16px !important;
  }

  .tpsw-appointment-v192-detail .tpsw-appointment-v213-detail-card,
  .tpsw-appointment-v192-detail .tpsw-appointment-v192-detail-grid article.tpsw-appointment-v213-detail-card {
    min-height: auto !important;
  }
}


/* ===== Appointment page v228: why reserve redesign ===== */
.tpsw-appointment-v228-why-lower {
  margin: clamp(54px, 6vw, 88px) auto 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  max-width: 1320px;
}

.tpsw-appointment-v228-why-lower .tpsw-appointment-v192-eyebrow {
  margin-bottom: 0.9rem;
}

.tpsw-appointment-v228-why-lower h2 {
  margin: 0 auto clamp(28px, 3.5vw, 42px);
  max-width: 980px;
  text-align: center;
  font-size: clamp(2.2rem, 4.2vw, 3.7rem);
  line-height: 1.08;
}

.tpsw-appointment-v228-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
  align-items: stretch;
}

.tpsw-appointment-v228-why-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.65rem 1.4rem 1.55rem;
  min-height: 100%;
  background: #ffffff;
  border: 2px solid #c8d5ea;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
  text-align: left;
}

.tpsw-appointment-v228-why-image {
  display: block;
  width: min(100%, 180px);
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  margin: 0 auto 1.15rem;
}

.tpsw-appointment-v228-why-card h3 {
  width: 100%;
  margin: 0 0 0.7rem;
  text-align: left;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.tpsw-appointment-v228-why-card p {
  width: 100%;
  margin: 0;
  text-align: left;
  font-size: 1.04rem;
  line-height: 1.62;
  color: #475569;
}

.tpsw-appointment-v192-final-cta {
  margin-top: clamp(28px, 4vw, 46px);
}

@media (max-width: 1200px) {
  .tpsw-appointment-v228-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .tpsw-appointment-v228-why-lower {
    margin-top: 44px;
  }

  .tpsw-appointment-v228-why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tpsw-appointment-v228-why-card {
    border-radius: 24px;
    padding: 1.35rem 1.15rem 1.3rem;
  }

  .tpsw-appointment-v228-why-card h3,
  .tpsw-appointment-v228-why-card p {
    text-align: center;
  }
}


/* ===== Appointment page v229: why reserve cleanup ===== */
.tpsw-appointment-v192-why-lower.tpsw-appointment-v228-why-lower {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.tpsw-appointment-v192-why-lower.tpsw-appointment-v228-why-lower::before,
.tpsw-appointment-v192-why-lower.tpsw-appointment-v228-why-lower::after {
  content: none !important;
}

.tpsw-appointment-v228-why-lower {
  margin-top: clamp(56px, 6vw, 84px) !important;
  background: transparent !important;
}

.tpsw-appointment-v228-why-lower h2 {
  max-width: 860px !important;
  margin: 0 auto clamp(24px, 3vw, 34px) !important;
  font-size: clamp(2rem, 3.7vw, 3.15rem) !important;
  line-height: 1.06 !important;
}

.tpsw-appointment-v228-why-grid {
  gap: clamp(14px, 1.4vw, 20px) !important;
}

.tpsw-appointment-v228-why-card {
  padding: 1.5rem 1.3rem 1.4rem !important;
  background: #ffffff !important;
}

.tpsw-appointment-v228-why-image {
  width: min(100%, 210px) !important;
  max-width: 210px !important;
  margin: 0 auto 1rem !important;
  background: transparent !important;
}

.tpsw-appointment-v228-why-card h3 {
  margin: 0 0 0.55rem !important;
  font-size: clamp(1.05rem, 1.45vw, 1.45rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em !important;
}

.tpsw-appointment-v228-why-card p {
  font-size: 0.98rem !important;
  line-height: 1.48 !important;
}

@media (max-width: 767px) {
  .tpsw-appointment-v228-why-lower h2 {
    font-size: clamp(1.8rem, 8vw, 2.45rem) !important;
  }

  .tpsw-appointment-v228-why-image {
    width: min(100%, 190px) !important;
    max-width: 190px !important;
  }
}


/* ===== Appointment page v230: refine why-card titles + CTA title case sizing ===== */
.tpsw-appointment-v228-why-card h3 {
  font-size: clamp(0.98rem, 1.18vw, 1.28rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.015em !important;
}

.tpsw-appointment-v192-final-cta h2,
.tpsw-appointment-v192-final-cta .h2,
.tpsw-appointment-v192-final-cta-title {
  font-size: clamp(1.75rem, 2.7vw, 2.55rem) !important;
  line-height: 1.1 !important;
}


/* ===== V231 - Page Réalisations redesign from visual mockup ===== */
.tpsw-real-v231 {
  position: relative !important;
  overflow: hidden !important;
  padding: clamp(56px, 6vw, 92px) 0 clamp(70px, 7vw, 108px) !important;
  background:
    radial-gradient(circle at 8% 7%, rgba(56, 189, 248, .15), transparent 34%),
    radial-gradient(circle at 91% 11%, rgba(71, 112, 255, .13), transparent 35%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 54%, #f8fbff 100%) !important;
  color: #0b1024 !important;
}

.tpsw-real-v231::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 auto auto 0 !important;
  width: min(38vw, 520px) !important;
  height: min(42vw, 560px) !important;
  background-image: radial-gradient(rgba(40, 130, 255, .18) 1.3px, transparent 1.3px) !important;
  background-size: 18px 18px !important;
  opacity: .55 !important;
  pointer-events: none !important;
  mask-image: linear-gradient(90deg, #000 0%, transparent 82%) !important;
}

.tpsw-real-v231-wrap {
  position: relative !important;
  z-index: 1 !important;
  width: min(100% - 44px, 1340px) !important;
  margin: 0 auto !important;
}

.tpsw-real-v231-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: end !important;
  gap: clamp(26px, 4vw, 64px) !important;
  margin-bottom: clamp(30px, 4vw, 48px) !important;
}

.tpsw-real-v231-kicker {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 9px 15px !important;
  border-radius: 999px !important;
  background: rgba(219, 234, 254, .82) !important;
  border: 1.5px solid rgba(79, 132, 255, .22) !important;
  color: #1d63f0 !important;
  font-size: .82rem !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

.tpsw-real-v231-kicker span {
  width: 10px !important;
  height: 10px !important;
  border-radius: 999px !important;
  background: #57c7ff !important;
  box-shadow: 0 0 0 5px rgba(87, 199, 255, .20) !important;
}

.tpsw-real-v231 h1 {
  margin: 18px 0 14px !important;
  max-width: 760px !important;
  color: #0b1024 !important;
  font-size: clamp(3.2rem, 6.1vw, 5.8rem) !important;
  line-height: .95 !important;
  letter-spacing: -.07em !important;
  font-weight: 950 !important;
}

.tpsw-real-v231-title-block p {
  max-width: 560px !important;
  margin: 0 !important;
  color: #43516a !important;
  font-size: clamp(1rem, 1.2vw, 1.18rem) !important;
  line-height: 1.58 !important;
  font-weight: 620 !important;
}

.tpsw-real-v231-filters {
  display: flex !important;
  justify-content: flex-end !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  max-width: 560px !important;
  padding-bottom: 36px !important;
}

.tpsw-real-v231-filters span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 38px !important;
  padding: 0 20px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .92) !important;
  border: 1.5px solid #d6e1f0 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85) !important;
  color: #5a6479 !important;
  font-size: .93rem !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

.tpsw-real-v231-filters .is-active {
  background: linear-gradient(135deg, #1263f2, #315cff) !important;
  border-color: #1263f2 !important;
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(18, 99, 242, .25) !important;
}

.tpsw-real-v231-featured,
.tpsw-real-v231-card {
  overflow: hidden !important;
  background: rgba(255,255,255,.94) !important;
  border: 1.5px solid #d3def0 !important;
  border-radius: 22px !important;
  box-shadow: 0 22px 60px rgba(15, 23, 42, .075) !important;
}

.tpsw-real-v231-featured {
  display: grid !important;
  grid-template-columns: minmax(0, 1.2fr) minmax(410px, .86fr) !important;
  align-items: stretch !important;
  margin-bottom: 22px !important;
  min-height: 330px !important;
}

.tpsw-real-v231-featured-media {
  position: relative !important;
  min-height: 330px !important;
  background:
    radial-gradient(circle at 30% 20%, rgba(103, 198, 255, .30), transparent 38%),
    linear-gradient(135deg, rgba(223, 238, 255, .94), rgba(248, 251, 255, .96)) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 22px !important;
}

.tpsw-real-v231-featured-media img {
  width: 100% !important;
  height: 100% !important;
  max-height: 310px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  filter: drop-shadow(0 22px 28px rgba(15,23,42,.14)) !important;
}

.tpsw-real-v231-featured-content,
.tpsw-real-v231-card-content {
  padding: clamp(28px, 3vw, 44px) !important;
}

.tpsw-real-v231-category,
.tpsw-real-v231-pill {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  margin: 0 0 12px !important;
  padding: 8px 12px !important;
  border-radius: 999px !important;
  background: #eaf2ff !important;
  color: #1263f2 !important;
  font-size: .78rem !important;
  line-height: 1 !important;
  letter-spacing: .035em !important;
  text-transform: uppercase !important;
  font-weight: 950 !important;
}

.tpsw-real-v231-featured h2,
.tpsw-real-v231-card h2 {
  margin: 0 0 14px !important;
  color: #0b1024 !important;
  font-size: clamp(1.55rem, 2.1vw, 2.3rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -.04em !important;
  font-weight: 950 !important;
}

.tpsw-real-v231-featured p,
.tpsw-real-v231-card p {
  margin: 0 0 18px !important;
  color: #44536a !important;
  font-size: clamp(.98rem, 1.04vw, 1.08rem) !important;
  line-height: 1.62 !important;
  font-weight: 560 !important;
}

.tpsw-real-v231 ul {
  display: grid !important;
  gap: 10px !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  list-style: none !important;
}

.tpsw-real-v231 li {
  position: relative !important;
  padding-left: 26px !important;
  color: #1b2942 !important;
  font-size: .97rem !important;
  line-height: 1.35 !important;
  font-weight: 760 !important;
}

.tpsw-real-v231 li::before {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  top: .05em !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 17px !important;
  height: 17px !important;
  border-radius: 999px !important;
  background: #1263f2 !important;
  color: white !important;
  font-size: .65rem !important;
  font-weight: 950 !important;
}

.tpsw-real-v231-actions {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
}

.tpsw-real-v231-btn,
.tpsw-real-v231-link,
.tpsw-real-v231-cta-main,
.tpsw-real-v231-cta-secondary {
  text-decoration: none !important;
}

.tpsw-real-v231-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 42px !important;
  padding: 0 20px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #1263f2, #315cff) !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(18, 99, 242, .24) !important;
  font-size: .93rem !important;
  font-weight: 900 !important;
}

.tpsw-real-v231-link {
  color: #1263f2 !important;
  font-size: .93rem !important;
  font-weight: 880 !important;
}

.tpsw-real-v231-secondary-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
  margin-bottom: 24px !important;
}

.tpsw-real-v231-card {
  display: grid !important;
  grid-template-columns: minmax(0, .92fr) minmax(240px, .84fr) !important;
  min-height: 310px !important;
}

.tpsw-real-v231-card--reverse {
  grid-template-columns: minmax(0, .9fr) minmax(260px, .9fr) !important;
}

.tpsw-real-v231-card-media {
  display: flex !important;
  align-items: stretch !important;
  justify-content: center !important;
  min-height: 100% !important;
  background:
    radial-gradient(circle at 50% 20%, rgba(94, 190, 255, .14), transparent 36%),
    linear-gradient(145deg, rgba(248,251,255,.96), rgba(235,244,255,.92)) !important;
  overflow: hidden !important;
}

.tpsw-real-v231-card-media img,
.tpsw-real-v231-card-media video {
  width: 100% !important;
  height: 100% !important;
  min-height: 300px !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
}

.tpsw-real-v231-card:nth-child(1) .tpsw-real-v231-card-media img {
  object-fit: contain !important;
  padding: 24px 16px !important;
}

.tpsw-real-v231-cta {
  display: grid !important;
  grid-template-columns: 78px minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 22px !important;
  padding: clamp(24px, 3vw, 32px) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 8% 50%, rgba(86, 199, 255, .22), transparent 28%),
    linear-gradient(135deg, #135ee9 0%, #0f4fd1 54%, #0743b5 100%) !important;
  color: #fff !important;
  box-shadow: 0 24px 54px rgba(18, 99, 242, .24) !important;
}

.tpsw-real-v231-cta-icon {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  display: inline-grid !important;
  place-items: center !important;
  background: rgba(255,255,255,.12) !important;
  border: 1.5px solid rgba(255,255,255,.24) !important;
}

.tpsw-real-v231-cta-icon svg {
  width: 32px !important;
  height: 32px !important;
  stroke: #fff !important;
  stroke-width: 1.9 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.tpsw-real-v231-cta h2 {
  margin: 0 0 6px !important;
  color: #fff !important;
  font-size: clamp(1.55rem, 2vw, 2.15rem) !important;
  line-height: 1.08 !important;
  font-weight: 950 !important;
  letter-spacing: -.035em !important;
}

.tpsw-real-v231-cta p {
  margin: 0 !important;
  max-width: 680px !important;
  color: rgba(255,255,255,.88) !important;
  font-size: .98rem !important;
  line-height: 1.48 !important;
  font-weight: 620 !important;
}

.tpsw-real-v231-cta-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
}

.tpsw-real-v231-cta-main,
.tpsw-real-v231-cta-secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 46px !important;
  padding: 0 20px !important;
  border-radius: 12px !important;
  font-size: .96rem !important;
  font-weight: 930 !important;
  white-space: nowrap !important;
}

.tpsw-real-v231-cta-main {
  background: #fff !important;
  color: #135ee9 !important;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .18) !important;
}

.tpsw-real-v231-cta-secondary {
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.34) !important;
  background: rgba(255,255,255,.08) !important;
}

@media (max-width: 1180px) {
  .tpsw-real-v231-hero,
  .tpsw-real-v231-featured,
  .tpsw-real-v231-secondary-grid,
  .tpsw-real-v231-card,
  .tpsw-real-v231-cta {
    grid-template-columns: 1fr !important;
  }

  .tpsw-real-v231-filters {
    justify-content: flex-start !important;
    padding-bottom: 0 !important;
  }

  .tpsw-real-v231-featured-media,
  .tpsw-real-v231-card-media {
    min-height: 260px !important;
  }

  .tpsw-real-v231-cta-actions {
    justify-content: flex-start !important;
  }
}

@media (max-width: 760px) {
  .tpsw-real-v231 {
    padding-top: 42px !important;
  }

  .tpsw-real-v231-wrap {
    width: min(100% - 28px, 460px) !important;
  }

  .tpsw-real-v231 h1 {
    font-size: clamp(2.7rem, 15vw, 4rem) !important;
  }

  .tpsw-real-v231-featured-content,
  .tpsw-real-v231-card-content {
    padding: 24px !important;
  }

  .tpsw-real-v231-card-media img,
  .tpsw-real-v231-card-media video,
  .tpsw-real-v231-featured-media img {
    min-height: 220px !important;
    max-height: 280px !important;
  }

  .tpsw-real-v231-cta {
    text-align: left !important;
    gap: 16px !important;
  }

  .tpsw-real-v231-cta-actions,
  .tpsw-real-v231-cta-main,
  .tpsw-real-v231-cta-secondary {
    width: 100% !important;
  }
}


/* ===== Page Réalisations v237: branch real FlashTech screenshot + Les Pros video ===== */
.tpsw-real-v237-project-image,
.tpsw-real-v237-project-video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
}

.tpsw-real-v237-project-image--flashtech {
  object-position: center top !important;
}

.tpsw-real-v237-project-video {
  object-position: center center !important;
  background: #0b1024 !important;
}

.tpsw-real-v237-media--flashtech,
.tpsw-real-v237-media--pros {
  min-height: 244px !important;
  background: #eef5ff !important;
}

@media (max-width: 1180px) {
  .tpsw-real-v237-media--flashtech,
  .tpsw-real-v237-media--pros {
    min-height: 300px !important;
  }
}

@media (max-width: 680px) {
  .tpsw-real-v237-media--flashtech,
  .tpsw-real-v237-media--pros {
    min-height: 230px !important;
  }
}
