@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700;800;900&family=Lato:wght@400;700&display=swap');

:root {
    --91s-primary: #0369a1;
    --91s-secondary: #075985;
    --91s-accent: #d97706;
    --91s-background: #f0f9ff;
    --91s-text: #0c4a6e;
    --91s-muted: #7dd3fc;
    --91s-light-gray: #e2e8f0;
    --91s-dark-gray: #475569;
    --91s-white: #ffffff;
    --91s-black: #000000;

    --91s-font-heading: 'Merriweather', serif;
    --91s-font-body: 'Lato', sans-serif;

    --91s-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --91s-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
    --91s-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.06), 0 4px 10px rgba(0, 0, 0, 0.04);

    --91s-border-radius-sm: 8px;
    --91s-border-radius-md: 12px;
    --91s-border-radius-lg: 16px;

    --91s-spacing-xxs: 4px;
    --91s-spacing-xs: 8px;
    --91s-spacing-sm: 16px;
    --91s-spacing-md: 24px;
    --91s-spacing-lg: 32px;
    --91s-spacing-xl: 48px;
    --91s-spacing-xxl: 64px;
    --91s-spacing-hero: 96px;
    --91s-spacing-section: 128px;
}

/* Base Reset & Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base for rem units */
}

body {
    font-family: var(--91s-font-body);
    color: var(--91s-text);
    background-color: var(--91s-background);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--91s-primary);
    color: var(--91s-white);
}

/* Typography Scale */
.tp-h1, h1 {
    font-family: var(--91s-font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--91s-text);
}

.tp-h2, h2 {
    font-family: var(--91s-font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.15;
    color: var(--91s-text);
    margin-bottom: var(--91s-spacing-lg);
}

.tp-h3, h3 {
    font-family: var(--91s-font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--91s-text);
    margin-bottom: var(--91s-spacing-sm);
}

.tp-h4, h4 {
    font-family: var(--91s-font-body);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--91s-text);
    margin-bottom: var(--91s-spacing-xs);
}

p {
    font-size: 1.125rem; /* ~18px */
    line-height: 1.75;
    max-width: 65ch;
}

a {
    color: var(--91s-primary);
    text-decoration: none;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--91s-secondary);
}

/* Utility Classes */
.tp-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--91s-spacing-md);
    padding-right: var(--91s-spacing-md);
}

.tp-section {
    padding-top: var(--91s-spacing-hero);
    padding-bottom: var(--91s-spacing-hero);
    position: relative;
}

.tp-section-alt {
    background-color: var(--91s-light-gray);
    padding-top: var(--91s-spacing-hero);
    padding-bottom: var(--91s-spacing-hero);
    position: relative;
}

.tp-grid {
    display: grid;
    gap: var(--91s-spacing-lg);
}

.tp-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.tp-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.tp-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.tp-flex {
    display: flex;
    gap: var(--91s-spacing-md);
}

.tp-flex-col {
    flex-direction: column;
}

.tp-flex-center {
    justify-content: center;
    align-items: center;
}

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

.tp-subheading {
    font-size: 1.25rem;
    color: var(--91s-primary);
    margin-bottom: var(--91s-spacing-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Icons */
.tp-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tp-icon-large {
    width: 48px;
    height: 48px;
    color: var(--91s-primary);
    margin-bottom: var(--91s-spacing-xs);
}

.tp-icon-wrapper {
    background-color: var(--91s-muted);
    padding: var(--91s-spacing-xs);
    border-radius: var(--91s-border-radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--91s-spacing-sm);
}

/* Buttons */
.tp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--91s-spacing-sm) var(--91s-spacing-lg);
    border-radius: var(--91s-border-radius-sm);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    line-height: 1;
    position: relative;
    box-shadow: 4px 4px 0px var(--91s-black);
}

.tp-button:active {
    transform: translateY(2px) translateX(2px);
    box-shadow: 2px 2px 0px var(--91s-black);
}

.tp-button-primary {
    background-color: var(--91s-primary);
    color: var(--91s-white);
    border-color: var(--91s-primary);
}

.tp-button-primary:hover {
    background-color: var(--91s-secondary);
    border-color: var(--91s-secondary);
}

.tp-button-secondary {
    background-color: var(--91s-accent);
    color: var(--91s-white);
    border-color: var(--91s-accent);
}

.tp-button-secondary:hover {
    background-color: #c26500;
    border-color: #c26500;color:#ffffff}

.tp-button-outline {
    background-color: transparent;
    color: var(--91s-primary);
    border-color: var(--91s-primary);
}

.tp-button-outline:hover {
    background-color: var(--91s-primary);
    color: var(--91s-white);
}

.tp-link {
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: var(--91s-spacing-xs);
}

.tp-link:hover .tp-icon {
    transform: translateX(4px);
}

/* Header & Navigation */
.tp-header {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--91s-spacing-md) 0;
}

.tp-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tp-logo {
    font-family: var(--91s-font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--91s-white);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.tp-nav-list {
    display: flex;
    list-style: none;
    gap: var(--91s-spacing-lg);
}

.tp-nav-link {
    color: var(--91s-white);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--91s-spacing-xs) 0;
    position: relative;
}

.tp-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--91s-accent);
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-nav-link:hover::after {
    width: 100%;
}

.tp-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--91s-white);
    font-size: var(--91s-spacing-md);
    cursor: pointer;
    z-index: 1001;
}

.tp-mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.tp-mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.tp-mobile-nav-overlay .tp-nav-list {
    flex-direction: column;
    text-align: center;
}

.tp-mobile-nav-overlay .tp-nav-link {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    padding: var(--91s-spacing-sm) 0;
}

/* Hero Section */
.tp-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--91s-primary) 0%, var(--91s-secondary) 100%);
    color: var(--91s-white);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--91s-spacing-hero);
    padding-bottom: var(--91s-spacing-hero);
}

.tp-hero::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%237dd3fc' fill-opacity='0.1' d='M0 100C0 44.772 44.772 0 100 0s100 44.772 100 100-44.772 100-100 100S0 155.228 0 100z'/%3E%3C/svg%3E");
  background-size: 80px;
  opacity: 0.2;
  z-index: 1;
}

.tp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.tp-hero-content .tp-h1 {
    color: var(--91s-white);
    margin-bottom: var(--91s-spacing-md);
}

.tp-hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: var(--91s-spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tp-hero .tp-button {
    margin-top: var(--91s-spacing-lg);
}

.tp-hero .tp-button-primary {
    background-color: var(--91s-accent);
    border-color: var(--91s-accent);
    color: var(--91s-white);
    box-shadow: 4px 4px 0px var(--91s-black);
}

.tp-hero .tp-button-primary:hover {
    background-color: #c26500;
    border-color: #c26500;color:#ffffff}

/* Cards */
.tp-card {
    background-color: var(--91s-white);
    border-radius: var(--91s-border-radius-md);
    padding: var(--91s-spacing-lg);
    box-shadow: 4px 4px 0px var(--91s-black);
    border: 1px solid var(--91s-black);
    position: relative;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-card:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 0px var(--91s-black);
}

.tp-card-feature {
    text-align: center;
}

.tp-card-feature .tp-icon-large {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--91s-spacing-sm);
}

.tp-card-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tp-card-process {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.tp-card-process .tp-icon-large {
    margin-bottom: var(--91s-spacing-sm);
}

/* Product Cards */
.tp-product-card {
    background-color: var(--91s-white);
    border-radius: var(--91s-border-radius-lg);
    border: 1px solid var(--91s-light-gray);
    box-shadow: var(--91s-shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--91s-shadow-lg);
}

.tp-product-card-image {
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    border-radius: var(--91s-border-radius-lg) var(--91s-border-radius-lg) 0 0;
}

.tp-product-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp-product-card-content {
    padding: var(--91s-spacing-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tp-product-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--91s-spacing-xs);
    color: var(--91s-text);
}

.tp-product-card-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--91s-primary);
    margin-top: auto;
    margin-bottom: var(--91s-spacing-sm);
}

.tp-product-card .tp-button {
    width: 100%;
}

/* Check List */
.tp-check-list {
    list-style: none;
    padding: 0;
    margin-top: var(--91s-spacing-md);
}

.tp-check-item {
    display: flex;
    align-items: center;
    gap: var(--91s-spacing-sm);
    margin-bottom: var(--91s-spacing-xs);
    font-size: 1.125rem;
    line-height: 1.5;
}

.tp-check-item .tp-icon {
    color: var(--91s-primary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Editorial Moments */
.tp-pullquote {
    font-family: var(--91s-font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    font-style: italic;
    text-align: center;
    margin: var(--91s-spacing-xxl) auto;
    position: relative;
    max-width: 900px;
    color: var(--91s-dark-gray);
}

.tp-pullquote::before {
    content: '“';
    font-family: var(--91s-font-heading);
    font-size: clamp(6rem, 15vw, 12rem);
    color: var(--91s-muted);
    position: absolute;
    top: -50px;
    left: -20px;
    z-index: 0;
    line-height: 1;
    opacity: 0.5;
}

.tp-pullquote::after {
    content: '”';
    font-family: var(--91s-font-heading);
    font-size: clamp(6rem, 15vw, 12rem);
    color: var(--91s-muted);
    position: absolute;
    bottom: -80px;
    right: -20px;
    z-index: 0;
    line-height: 1;
    opacity: 0.5;
}

.tp-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--91s-spacing-lg);
    text-align: center;
    margin-top: var(--91s-spacing-xl);
}

.tp-stat-item {
    background-color: var(--91s-white);
    padding: var(--91s-spacing-lg);
    border-radius: var(--91s-border-radius-md);
    box-shadow: var(--91s-shadow-md);
    border: 1px solid var(--91s-black);
    box-shadow: 4px 4px 0px var(--91s-black);
}

.tp-stat-number {
    font-family: var(--91s-font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--91s-primary);
    line-height: 1;
    margin-bottom: var(--91s-spacing-xs);
}

.tp-stat-label {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--91s-dark-gray);
}

/* Testimonials */
.tp-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--91s-spacing-lg);
}

.tp-testimonial-card {
    background-color: var(--91s-white);
    padding: var(--91s-spacing-lg);
    border-radius: var(--91s-border-radius-md);
    box-shadow: 4px 4px 0px var(--91s-black);
    border: 1px solid var(--91s-black);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.tp-testimonial-card .tp-icon.star {
    fill: var(--91s-accent);
    stroke: none;
    width: 20px;
    height: 20px;
}

.tp-testimonial-stars {
    margin-bottom: var(--91s-spacing-sm);
    display: flex;
    gap: 2px;
}

.tp-testimonial-quote {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: var(--91s-spacing-md);
    color: var(--91s-dark-gray);
}

.tp-testimonial-cite {
    font-weight: 700;
    color: var(--91s-text);
    margin-top: auto;
}

.tp-testimonial-cite span {
    display: block;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--91s-dark-gray);
}

/* FAQ */
.tp-faq-item {
    background-color: var(--91s-white);
    border-radius: var(--91s-border-radius-md);
    margin-bottom: var(--91s-spacing-sm);
    border: 1px solid var(--91s-light-gray);
    overflow: hidden;
}

.tp-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--91s-spacing-md);
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    color: var(--91s-text);
    background-color: var(--91s-white);
    transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-faq-q:hover {
    background-color: var(--91s-background);
}

.tp-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--91s-primary);
    transition: transform 0.3s ease;
}

.tp-faq-item.active .tp-faq-q::after {
    content: '-';
    transform: rotate(0deg);
}

.tp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 var(--91s-spacing-md);
    color: var(--91s-dark-gray);
}

.tp-faq-item.active .tp-faq-a {
    max-height: 500px; /* Adjust as needed */
    padding-bottom: var(--91s-spacing-md);
    padding-top: var(--91s-spacing-xs);
}

/* CTA */
.tp-cta {
    background-color: var(--91s-primary);
    color: var(--91s-white);
    padding: var(--91s-spacing-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tp-cta::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%237dd3fc' fill-opacity='0.1' d='M0 100C0 44.772 44.772 0 100 0s100 44.772 100 100-44.772 100-100 100S0 155.228 0 100z'/%3E%3C/svg%3E");
  background-size: 80px;
  opacity: 0.2;
  z-index: 1;
}

.tp-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tp-cta .tp-h2 {
    color: var(--91s-white);
    margin-bottom: var(--91s-spacing-md);
}

.tp-cta p {
    font-size: 1.25rem;
    margin-bottom: var(--91s-spacing-lg);
    color: var(--91s-white);
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Forms */
.tp-contact-form {
    max-width: 600px;
    margin: var(--91s-spacing-xl) auto;
    background-color: var(--91s-white);
    padding: var(--91s-spacing-xl);
    border-radius: var(--91s-border-radius-lg);
    box-shadow: var(--91s-shadow-md);
    border: 1px solid var(--91s-black);
    box-shadow: 4px 4px 0px var(--91s-black);
}

.tp-form-group {
    margin-bottom: var(--91s-spacing-md);
}

.tp-form-label {
    display: block;
    font-weight: 700;
    margin-bottom: var(--91s-spacing-xs);
    color: var(--91s-dark-gray);
}

.tp-form-input, .tp-form-textarea {
    width: 100%;
    padding: var(--91s-spacing-sm);
    border: 1px solid var(--91s-light-gray);
    border-radius: var(--91s-border-radius-sm);
    font-family: var(--91s-font-body);
    font-size: 1rem;
    color: var(--91s-text);
    background-color: var(--91s-background);
    transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-form-input:focus, .tp-form-textarea:focus {
    outline: none;
    border-color: var(--91s-primary);
    box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.2);
}

.tp-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.tp-form-error {
    color: #a40e0e;
    font-size: 0.9rem;
    margin-top: var(--91s-spacing-xxs);
}

.tp-form-success {
    color: #157a3a;
    font-size: 1rem;
    font-weight: 700;
    margin-top: var(--91s-spacing-sm);
    text-align: center;
    background-color: #dcfce7;
    padding: var(--91s-spacing-sm);
    border-radius: var(--91s-border-radius-sm);
    display: none;
}

.tp-form-sending {
    color: var(--91s-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-top: var(--91s-spacing-sm);
    text-align: center;
    display: none;
}

/* Footer */
.tp-footer {
    background-color: var(--91s-text);
    color: var(--91s-light-gray);
    padding-top: var(--91s-spacing-xxl);
    padding-bottom: var(--91s-spacing-md);
    font-size: 0.95rem;
}

.tp-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--91s-spacing-xl);
    margin-bottom: var(--91s-spacing-xxl);
}

.tp-footer-col h4 {
    color: var(--91s-white);
    margin-bottom: var(--91s-spacing-md);
    font-size: 1.1rem;
}

.tp-footer-col p {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--91s-muted);
}

.tp-footer-col .tp-logo {
    color: var(--91s-white);
    margin-bottom: var(--91s-spacing-sm);
    display: block;
}

.tp-footer-list {
    list-style: none;
    padding: 0;
}

.tp-footer-list li {
    margin-bottom: var(--91s-spacing-xs);
}

.tp-footer-link {
    color: var(--91s-muted);
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-footer-link:hover {
    color: var(--91s-primary);
}

.tp-footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--91s-spacing-md);
    margin-top: var(--91s-spacing-md);
    font-size: 0.85rem;
    color: var(--91s-muted);
}

.tp-social-links {
    display: flex;
    gap: var(--91s-spacing-sm);
    margin-top: var(--91s-spacing-md);
}

.tp-social-links a {
    color: var(--91s-muted);
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-social-links a:hover {
    color: var(--91s-primary);
}

/* Animations */
.tp-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cart Counter in Nav */
.tp-cart-count {
    background-color: var(--91s-accent);
    color: var(--91s-white);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50%;
    padding: 2px 6px;
    position: absolute;
    top: -8px;
    right: -12px;
    min-width: 20px;
    text-align: center;
    line-height: 1.2;
}

.tp-nav-item {
    position: relative;
}

/* Checkout Page Styles */
.tp-checkout-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--91s-spacing-xl);
    align-items: flex-start;
}

.tp-checkout-form-section {
    background-color: var(--91s-white);
    padding: var(--91s-spacing-lg);
    border-radius: var(--91s-border-radius-md);
    box-shadow: var(--91s-shadow-md);
    margin-bottom: var(--91s-spacing-lg);
    border: 1px solid var(--91s-black);
    box-shadow: 4px 4px 0px var(--91s-black);
}

.tp-checkout-form-section h3 {
    color: var(--91s-primary);
    margin-bottom: var(--91s-spacing-lg);
}

.tp-order-summary {
    background-color: var(--91s-background);
    padding: var(--91s-spacing-lg);
    border-radius: var(--91s-border-radius-md);
    box-shadow: var(--91s-shadow-md);
    position: sticky;
    top: var(--91s-spacing-md);
    border: 1px solid var(--91s-black);
    box-shadow: 4px 4px 0px var(--91s-black);
}

.tp-order-summary h3 {
    color: var(--91s-text);
    margin-bottom: var(--91s-spacing-lg);
}

.tp-order-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--91s-spacing-xs);
    font-size: 1rem;
}

.tp-order-summary-item span:first-child {
    color: var(--91s-dark-gray);
}

.tp-order-summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.2rem;
    padding-top: var(--91s-spacing-sm);
    margin-top: var(--91s-spacing-sm);
    border-top: 1px solid var(--91s-light-gray);
}

.tp-security-badges {
    display: flex;
    gap: var(--91s-spacing-sm);
    align-items: center;
    justify-content: center;
    margin-top: var(--91s-spacing-md);
    color: var(--91s-dark-gray);
    font-size: 0.9rem;
}

.tp-security-badges .tp-icon {
    color: var(--91s-accent);
    width: 20px;
    height: 20px;
}

.tp-checkout-success {
    background-color: #dcfce7;
    color: #117e39;
    padding: var(--91s-spacing-xl);
    border-radius: var(--91s-border-radius-lg);
    text-align: center;
    box-shadow: var(--91s-shadow-md);
    margin-top: var(--91s-spacing-xxl);
    display: none;
}

/* Cart Page Styles */
.tp-cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: var(--91s-spacing-lg);
    background-color: var(--91s-white);
    border-radius: var(--91s-border-radius-md);
    overflow: hidden;
    box-shadow: var(--91s-shadow-md);
    border: 1px solid var(--91s-black);
    box-shadow: 4px 4px 0px var(--91s-black);
}

.tp-cart-table th, .tp-cart-table td {
    text-align: left;
    padding: var(--91s-spacing-sm) var(--91s-spacing-md);
    border-bottom: 1px solid var(--91s-light-gray);
}

.tp-cart-table th {
    background-color: var(--91s-background);
    font-weight: 700;
    color: var(--91s-text);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.tp-cart-table tr:last-child td {
    border-bottom: none;
}

.tp-cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--91s-border-radius-sm);
    vertical-align: middle;
    margin-right: var(--91s-spacing-sm);
}

.tp-cart-item-name {
    font-weight: 700;
    color: var(--91s-text);
}

.tp-quantity-controls {
    display: flex;
    align-items: center;
    gap: var(--91s-spacing-xxs);
}

.tp-quantity-btn {
    background-color: var(--91s-background);
    border: 1px solid var(--91s-light-gray);
    border-radius: var(--91s-border-radius-sm);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.tp-quantity-btn:hover {
    background-color: var(--91s-light-gray);
}

.tp-quantity-input {
    width: 40px;
    text-align: center;
    border: 1px solid var(--91s-light-gray);
    border-radius: var(--91s-border-radius-sm);
    padding: 0 var(--91s-spacing-xs);
    height: 32px;
}

.tp-remove-item {
    color: #a40e0e;
    cursor: pointer;
    font-size: 0.9rem;
}

.tp-cart-summary {
    background-color: var(--91s-white);
    padding: var(--91s-spacing-lg);
    border-radius: var(--91s-border-radius-md);
    box-shadow: var(--91s-shadow-md);
    border: 1px solid var(--91s-black);
    box-shadow: 4px 4px 0px var(--91s-black);
    max-width: 400px;
    margin-left: auto;
}

.tp-cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--91s-spacing-xs);
}

.tp-cart-summary-total {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: var(--91s-spacing-md);
    padding-top: var(--91s-spacing-md);
    border-top: 1px solid var(--91s-light-gray);
}

.tp-cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: var(--91s-spacing-lg);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .tp-nav-list {
        gap: var(--91s-spacing-md);
    }

    .tp-section {
        padding-top: var(--91s-spacing-xxl);
        padding-bottom: var(--91s-spacing-xxl);
    }

    .tp-checkout-layout {
        grid-template-columns: 1fr;
    }

    .tp-order-summary {
        position: static;
        margin-top: var(--91s-spacing-lg);
    }

    .tp-cart-summary {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .tp-nav-list {
        display: none;
    }

    .tp-mobile-toggle {
        display: block;
    }

    .tp-hero-subtitle {
        font-size: 1.25rem;
    }

    .tp-footer-grid {
        grid-template-columns: 1fr;
    }

    .tp-footer-col {
        text-align: center;
    }

    .tp-social-links {
        justify-content: center;
    }

    .tp-pullquote::before, .tp-pullquote::after {
        font-size: clamp(4rem, 10vw, 8rem);
    }

    .tp-cart-table thead {
        display: none;
    }

    .tp-cart-table, .tp-cart-table tbody, .tp-cart-table tr, .tp-cart-table td {
        display: block;
        width: 100%;
    }

    .tp-cart-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .tp-cart-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: var(--91s-spacing-md);
        font-weight: 700;
        text-align: left;
    }

    .tp-cart-item-image {
        margin-left: auto;
        margin-right: auto;
        display: block;
        margin-bottom: var(--91s-spacing-sm);
    }
}

@media (max-width: 480px) {
    .tp-container {
        padding-left: var(--91s-spacing-sm);
        padding-right: var(--91s-spacing-sm);
    }

    .tp-h1, h1 {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .tp-h2, h2 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    p {
        font-size: 1rem;
    }

    .tp-button {
        font-size: 1rem;
        padding: var(--91s-spacing-xs) var(--91s-spacing-md);
    }

    .tp-section {
        padding-top: var(--91s-spacing-xxl);
        padding-bottom: var(--91s-spacing-xxl);
    }

    .tp-hero-subtitle {
        font-size: 1.1rem;
    }

    .tp-cart-actions {
        flex-direction: column;
        gap: var(--91s-spacing-sm);
    }

    .tp-cart-actions .tp-button {
        width: 100%;
    }
}


/* === Quality polish === */
@keyframes tpFadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.tp-animate { opacity: 0; }
.tp-animate.tp-visible { animation: tpFadeInUp 0.6s ease forwards; }

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

/* FAQ collapsed-by-default — hard fallback (any language, any topic) */
.tp-faq-a, [class*="faq-a"], [class*="faq-answer"] { display: none !important; max-height: 0; overflow: hidden; padding: 0 22px; transition: none; }
.tp-faq-item.active .tp-faq-a, [class*="faq-item"].active [class*="faq-a"], [class*="faq-item"].active [class*="faq-answer"] { display: block !important; max-height: none !important; padding: 0 22px 18px; }
.tp-faq-q, [class*="faq-q"], [class*="faq-question"] { cursor: pointer; user-select: none; }
.tp-faq-q *, [class*="faq-q"] * { pointer-events: none; }

/* === PREMIUM SCAFFOLD (class-contract baseline) === */
/* Layout */
.tp-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.tp-section { padding: 96px 0; background: #f0f9ff; }
.tp-section-alt { padding: 96px 0; background: color-mix(in srgb, #0369a1 4%, #f0f9ff); }
.tp-grid { display: grid; gap: 32px; }
.tp-grid-2 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.tp-grid-3 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.tp-grid-4 { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.tp-text-center { text-align: center; }
/* Header / Nav */
.tp-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.94); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid color-mix(in srgb, #0c4a6e 8%, transparent); }
.tp-header > .tp-container, .tp-header .tp-container { display: flex; align-items: center; gap: 32px; padding-top: 12px; padding-bottom: 12px; min-height: 64px; }
.tp-brand, .tp-logo { display: inline-flex; align-items: center; gap: 10px; font-family: Merriweather; font-weight: 700; font-size: 1.05rem; line-height: 1; color: #0369a1; letter-spacing: -0.015em; text-decoration: none; flex-shrink: 0; max-width: 220px; margin-right: 24px; }
.tp-brand-mark { display: inline-flex; color: #0369a1; flex-shrink: 0; }
.tp-brand-mark svg { display: block; width: 24px; height: 24px; }
.tp-brand-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-left: 2px; }
.tp-nav-list, .tp-nav-links { display: flex; gap: 28px; list-style: none; margin: 0 0 0 auto; padding: 0; align-items: center; }
.tp-nav-link { color: #0c4a6e; font-weight: 500; font-size: 0.95rem; padding: 6px 0; position: relative; text-decoration: none; }
.tp-nav-link + .tp-nav-link { margin-left: 0; }
.tp-nav-link:hover { color: #0369a1; }
.tp-mobile-toggle { display: none; background: none; border: 0; padding: 6px; cursor: pointer; margin-left: auto; font-size: 1.4rem; line-height: 1; }
/* Hero */
.tp-hero { padding: 112px 0 96px; background: radial-gradient(circle at 82% 18%, color-mix(in srgb, #0369a1 12%, transparent), transparent 34%), linear-gradient(180deg, color-mix(in srgb, #0369a1 7%, #f0f9ff) 0%, #f0f9ff 100%); position: relative; overflow: hidden; }
/* Hero hardening — kill AI-generated giant ghost/background text & accidental absolute-positioned mockups */
.tp-hero [class*="ghost"], .tp-hero [class*="bg-text"], .tp-hero [class*="watermark"], .tp-hero [class*="hero-bg"], .tp-hero [aria-hidden="true"][class*="text"], .tp-hero [data-decorative="true"] { display: none !important; }
.tp-hero .tp-hero-image, .tp-hero .tp-dashboard-mockup { position: relative !important; }
.tp-hero .tp-hero-image { max-width: 100%; }
.tp-hero .tp-hero-image > * { max-width: 100%; }
.tp-hero .tp-stats { position: static !important; }
.tp-hero > .tp-container { max-width: 1200px; }
.tp-hero h1, .tp-hero .tp-h1 { font-family: Merriweather; font-size: clamp(2.75rem, 5.2vw, 4.75rem); line-height: 1.04; letter-spacing: -0.025em; font-weight: 800; color: #0c4a6e; margin: 0; max-width: 720px; width: 100%; text-wrap: balance; word-break: normal; overflow-wrap: break-word; hyphens: none; }
.tp-hero p, .tp-hero .tp-hero-sub, .tp-hero .tp-hero-subtitle { font-size: clamp(1.125rem, 1.5vw, 1.3rem); line-height: 1.7; color: #7dd3fc; max-width: 48ch; margin: 0; }
.tp-hero-content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr); gap: 72px; align-items: center; }
.tp-hero-text { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.tp-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.tp-hero-image { position: relative; }
.tp-hero-image::before { content: ''; position: absolute; inset: 22px -18px -18px 22px; border-radius: 24px; background: color-mix(in srgb, #0369a1 12%, transparent); z-index: 0; }
.tp-hero-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; box-shadow: 0 36px 90px -34px rgba(0,0,0,0.42), 0 2px 10px rgba(0,0,0,0.08); }
.tp-hero-subtitle { font-size: 1.25rem; line-height: 1.6; color: #7dd3fc; max-width: 60ch; }
.tp-h1 { font-family: Merriweather; font-size: clamp(2.5rem, 5vw, 4.25rem); line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; color: #0c4a6e; margin: 0; }
.tp-h2 { font-family: Merriweather; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; letter-spacing: -0.015em; font-weight: 700; color: #0c4a6e; margin: 0 0 24px; }
.tp-h3 { font-family: Merriweather; font-size: 1.5rem; line-height: 1.3; font-weight: 700; color: #0c4a6e; margin: 0 0 12px; }
.tp-subheading { font-size: 1.125rem; line-height: 1.7; color: #7dd3fc; max-width: 720px; margin: 0 auto 64px; }
/* Buttons */
.tp-button { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: all 0.25s cubic-bezier(0.4,0,0.2,1); white-space: nowrap; line-height: 1; }
.tp-button-primary { background: #0369a1; color: #fff; border-color: #0369a1; }
.tp-button-primary:hover { background: #075985; border-color: #075985; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px -8px color-mix(in srgb, #0369a1 50%, transparent); }
.tp-button-secondary { background: #075985; color: #fff; border-color: #075985; }
.tp-button-secondary:hover { transform: translateY(-2px); filter: brightness(1.05); color: #fff; }
.tp-button-outline { background: transparent; color: #0369a1; border-color: #0369a1; }
.tp-button-outline:hover { background: #0369a1; color: #fff; }
.tp-link { color: #0369a1; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.tp-link:hover { gap: 10px; }
/* Cards */
.tp-card { background: #fff; border: 1px solid color-mix(in srgb, #0c4a6e 6%, transparent); border-radius: 14px; padding: 32px; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06); display: flex; flex-direction: column; gap: 16px; }
.tp-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06); }
.tp-card-feature, .tp-card-service, .tp-card-process { text-align: left; }
/* Icons */
.tp-icon-wrapper { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 12px; background: color-mix(in srgb, #0369a1 10%, transparent); color: #0369a1; }
.tp-icon-wrapper svg, .tp-icon-wrapper .tp-icon { width: 28px; height: 28px; stroke: #0369a1; }
.tp-icon { width: 20px; height: 20px; stroke: currentColor; flex-shrink: 0; }
.tp-icon-large { width: 48px; height: 48px; stroke: #0369a1; }
/* Check list */
.tp-check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.tp-check-item { display: flex; align-items: flex-start; gap: 12px; line-height: 1.6; }
.tp-check-item .tp-icon { color: #0369a1; margin-top: 4px; }
/* Editorial */
.tp-pullquote { font-family: Merriweather; font-style: italic; font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.4; color: #0c4a6e; max-width: 900px; margin: 64px auto; padding: 0 32px; position: relative; text-align: center; }
.tp-pullquote::before { content: '"'; font-size: 6rem; line-height: 0.8; color: #0369a1; opacity: 0.3; position: absolute; left: 0; top: -16px; }
.tp-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 48px; padding: 64px 0; }
.tp-stat-item { text-align: center; }
.tp-stat-number { display: block; font-family: Merriweather; font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; color: #0369a1; line-height: 1; letter-spacing: -0.03em; }
.tp-stat-label { display: block; margin-top: 12px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #7dd3fc; }
/* Testimonials */
.tp-testimonial-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.tp-testimonial-card { background: #fff; padding: 32px; border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); border: 1px solid color-mix(in srgb, #0c4a6e 6%, transparent); }
.tp-testimonial-quote { font-style: italic; line-height: 1.7; color: #0c4a6e; margin-bottom: 16px; }
.tp-testimonial-cite { font-weight: 600; color: #0369a1; font-size: 0.95rem; }
.tp-testimonial-stars { color: #d97706; margin-bottom: 12px; }
/* FAQ */
.tp-faq { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.tp-faq-item { background: #fff; border: 1px solid color-mix(in srgb, #0c4a6e 8%, transparent); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s ease; }
.tp-faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.tp-faq-q { padding: 20px 24px; cursor: pointer; user-select: none; font-weight: 600; color: #0c4a6e; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.tp-faq-q::after { content: '+'; font-size: 1.5rem; color: #0369a1; transition: transform 0.3s ease; flex-shrink: 0; }
.tp-faq-item.active .tp-faq-q::after { transform: rotate(45deg); }
/* CTA */
.tp-cta { padding: 96px 0; background: linear-gradient(135deg, #0369a1 0%, #075985 100%); color: #fff; text-align: center; }
.tp-cta .tp-h2, .tp-cta h2 { color: #fff; }
.tp-cta-content { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; align-items: center; }
.tp-cta .tp-button-primary { background: #fff; color: #0369a1; border-color: #fff; }
.tp-cta .tp-button-primary:hover { background: #f0f9ff; color: #0369a1; }
/* Form */
.tp-form, .tp-contact-form { display: flex; flex-direction: column; gap: 20px; width: min(100%, 680px); margin: 32px auto 0; background: #fff; padding: 44px; border-radius: 24px; border: 1px solid color-mix(in srgb, #0c4a6e 7%, transparent); box-shadow: 0 30px 80px -34px rgba(0,0,0,0.32), 0 10px 28px -18px color-mix(in srgb, #0369a1 40%, transparent); text-align: left; color: #0c4a6e; }
.tp-form-row { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .tp-form-row { grid-template-columns: 1fr; } }
.tp-form-group { display: flex; flex-direction: column; gap: 8px; }
.tp-form-label, .tp-form label { font-weight: 600; font-size: 0.9rem; color: #0c4a6e; letter-spacing: 0.01em; }
.tp-form-input, .tp-form-textarea, .tp-form input:not([type="submit"]), .tp-form textarea, .tp-form select { padding: 15px 16px; border: 1.5px solid color-mix(in srgb, #0c4a6e 12%, transparent); border-radius: 12px; font-size: 1rem; font-family: inherit; background: color-mix(in srgb, #0369a1 2%, #fff); color: #0c4a6e; transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; width: 100%; box-sizing: border-box; }
.tp-form-input:hover, .tp-form-textarea:hover { border-color: color-mix(in srgb, #0369a1 35%, transparent); }
.tp-form-input:focus, .tp-form-textarea:focus, .tp-form input:focus, .tp-form textarea:focus { outline: none; border-color: #0369a1; box-shadow: 0 0 0 4px color-mix(in srgb, #0369a1 18%, transparent); }
.tp-form-textarea, .tp-form textarea { min-height: 140px; resize: vertical; }
/* Form messages — HIDDEN BY DEFAULT, only shown when JS adds .is-visible or removes [hidden] */
.tp-form-error, [class*="form-error"], [class*="form-message-error"] { display: none; color: #dc2626; font-size: 0.875rem; padding: 10px 12px; background: color-mix(in srgb, #dc2626 8%, transparent); border-radius: 8px; }
.tp-form-success, [class*="form-success"], [class*="form-message-success"] { display: none; color: #047857; font-weight: 600; padding: 12px 14px; background: color-mix(in srgb, #059669 10%, transparent); border-radius: 8px; }
.tp-form-error[hidden], .tp-form-success[hidden], [class*="form-error"][hidden], [class*="form-success"][hidden] { display: none !important; }
.tp-form-error.is-visible, .tp-form-success.is-visible { display: block; }
.tp-cta .tp-form, .tp-cta .tp-contact-form { color: #0c4a6e; }
.tp-cta .tp-form button[type="submit"], .tp-cta .tp-contact-form button[type="submit"] { background: #0369a1; color: #fff; border-color: #0369a1; }
/* Footer */
.tp-footer { background: #0c4a6e; color: color-mix(in srgb, #fff 80%, transparent); padding: 96px 0 32px; }
.tp-footer .tp-h3, .tp-footer h3, .tp-footer h4 { color: #fff; font-family: Merriweather; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.tp-footer .tp-logo { color: #fff; }
.tp-footer-grid { display: grid; gap: 48px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 64px; }
.tp-footer-col { display: flex; flex-direction: column; gap: 12px; }
.tp-footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.tp-footer-link { color: color-mix(in srgb, #fff 70%, transparent); font-size: 0.95rem; }
.tp-footer-link:hover { color: #fff; }
.tp-footer-bottom { padding-top: 32px; border-top: 1px solid color-mix(in srgb, #fff 12%, transparent); font-size: 0.875rem; color: color-mix(in srgb, #fff 60%, transparent); text-align: center; }
.tp-social-links { display: flex; gap: 16px; }
.tp-social-links a { color: color-mix(in srgb, #fff 70%, transparent); }
.tp-social-links a:hover { color: #fff; }
/* Responsive */
@media (max-width: 900px) {
  .tp-hero { padding: 80px 0 64px; }
  .tp-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .tp-section, .tp-section-alt { padding: 64px 0; }
  .tp-cta { padding: 64px 0; }
  .tp-footer { padding: 64px 0 24px; }
}
@media (max-width: 720px) {
  .tp-nav-list { display: none; }
  .tp-mobile-toggle { display: inline-flex; }
  .tp-nav.active .tp-nav-list, .tp-header.active .tp-nav-list, .tp-nav-list.active, .tp-nav-links.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 24px; gap: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .tp-card { padding: 24px; }
  .tp-form, .tp-contact-form { padding: 28px; border-radius: 18px; }
}

/* === STYLE FAMILY: bold_startup === */
.tp-h1 { font-family: 'Archivo Black', 'Space Grotesk', sans-serif; font-weight: 900; font-size: clamp(3.25rem, 8vw, 6.5rem); letter-spacing: -0.03em; line-height: 0.95; }
.tp-card, .tp-card-feature { border: 2px solid #111; box-shadow: 6px 6px 0 0 #111; border-radius: 14px; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.tp-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 0 #111; }
.tp-button-primary { background: #0369a1; color: #fff; border: 2px solid #111; border-radius: 10px; box-shadow: 4px 4px 0 0 #111; }
.tp-button-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 #111; }
.tp-section-alt { background: color-mix(in srgb, #d97706 18%, #f0f9ff); }