@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Sora:wght@700;800&display=swap');

:root {
    --kpl-primary: #15803d;
    --kpl-secondary: #166534;
    --kpl-accent: #e11d48;
    --kpl-background: #0a0b10;
    --kpl-text: #e0e0e0;
    --kpl-muted: #86efac;
    --kpl-dark-text: #14532d;
    --kpl-white: #ffffff;
    --kpl-gray-100: #f7fafc;
    --kpl-gray-200: #edf2f7;
    --kpl-gray-300: #e2e8f0;
    --kpl-gray-400: #cbd5e0;
    --kpl-gray-500: #a0aec0;
    --kpl-gray-600: #718096;
    --kpl-gray-700: #4a5568;
    --kpl-gray-800: #2d3748;
    --kpl-gray-900: #1a202c;

    --st-space-xs: 8px;
    --st-space-sm: 16px;
    --st-space-md: 24px;
    --st-space-lg: 32px;
    --st-space-xl: 48px;
    --st-space-xxl: 64px;
    --st-space-xxxl: 96px;
    --st-space-xxxxl: 128px;

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

    --st-transition-ease: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --st-shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.1);
    --st-shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
    --st-shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --st-shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
    --st-shadow-card: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
}

/* Base Reset & Utils */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--kpl-text);
    background-color: var(--kpl-background);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--kpl-accent);
    color: var(--kpl-white);
}

a {
    color: var(--kpl-primary);
    text-decoration: none;
    transition: var(--st-transition-ease);
}

a:hover {
    color: var(--kpl-accent);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--st-border-radius-sm);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    color: var(--kpl-white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: var(--st-space-md);
}

.st-h1,
h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
}

.st-h2,
h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.015em;
}

.st-h3,
h3 {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
}

p {
    margin-bottom: var(--st-space-md);
    font-size: 1.125rem;
    line-height: 1.75;
    max-width: 65ch;
}

.st-subheading {
    font-size: 1.25rem;
    color: var(--kpl-muted);
    margin-bottom: var(--st-space-lg);
}

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

/* Layout */
.st-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--st-space-md);
    padding-right: var(--st-space-md);
}

.st-section {
    padding-top: var(--st-space-xxxl);
    padding-bottom: var(--st-space-xxxl);
    position: relative;
}

.st-section-alt {
    background-color: rgba(255, 255, 255, 0.02);
}

.st-grid {
    display: grid;
    gap: var(--st-space-lg);
}

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

@media (min-width: 768px) {
    .st-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

@media (min-width: 1024px) {
    .st-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.st-grid-4 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .st-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .st-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.st-flex {
    display: flex;
    gap: var(--st-space-md);
    align-items: center;
}

/* Buttons */
.st-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--st-space-sm) var(--st-space-lg);
    border-radius: var(--st-border-radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--st-transition-ease);
    line-height: 1.5;
}

.st-button-primary {
    background-color: var(--kpl-accent);
    color: var(--kpl-white);
    box-shadow: 0 0 15px var(--kpl-accent), 0 0 30px var(--kpl-accent);
}

.st-button-primary:hover {
    background-color: #f8345c;
    box-shadow: 0 0 20px var(--kpl-accent), 0 0 40px var(--kpl-accent);
    transform: translateY(-2px);color:#ffffff}

.st-button-secondary {
    background-color: var(--kpl-secondary);
    color: var(--kpl-white);
    border-color: var(--kpl-secondary);
}

.st-button-secondary:hover {
    background-color: #1a7a40;
    border-color: #1a7a40;
    transform: translateY(-2px);color:#d6f5e2}

.st-button-outline {
    background-color: transparent;
    color: var(--kpl-white);
    border-color: var(--kpl-white);
}

.st-button-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--kpl-primary);
    transform: translateY(-2px);
}

.st-link {
    display: inline-flex;
    align-items: center;
    gap: var(--st-space-xs);
    color: var(--kpl-primary);
    font-weight: 500;
}

.st-link:hover {
    color: var(--kpl-accent);
    text-decoration: none;
}

/* Icons */
.st-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.st-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--st-space-xl);
    height: var(--st-space-xl);
    border-radius: var(--st-border-radius-md);
    background-color: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.st-icon-large .st-icon {
    width: 36px;
    height: 36px;
    color: var(--kpl-primary);
}

/* Header & Navigation */
.st-header {
    background-color: rgba(0, 0, 0, 0.2);
    padding: var(--st-space-sm) var(--st-space-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.st-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.st-logo {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--kpl-white);
    letter-spacing: -0.03em;
}

.st-nav-list {
    display: none;
    list-style: none;
}

@media (min-width: 768px) {
    .st-nav-list {
        display: flex;
        gap: var(--st-space-lg);
    }
}

.st-nav-link {
    color: var(--kpl-text);
    font-weight: 500;
    padding: var(--st-space-xs) 0;
    position: relative;
}

.st-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--kpl-accent);
    transition: var(--st-transition-ease);
}

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

.st-mobile-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--kpl-white);
    font-size: 1.8rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .st-mobile-toggle {
        display: none;
    }
}

/* Mobile Nav Overlay */
.st-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--kpl-background);
    backdrop-filter: blur(15px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.st-nav-overlay.active {
    transform: translateX(0);
}

.st-nav-overlay .st-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--st-space-lg);
    text-align: center;
}

.st-nav-overlay .st-nav-link {
    font-size: 1.8rem;
    padding: var(--st-space-md) 0;
    color: var(--kpl-white);
}

.st-nav-overlay .st-mobile-toggle {
    position: absolute;
    top: var(--st-space-md);
    right: var(--st-space-md);
    font-size: 2rem;
}

/* Hero Section */
.st-hero {
    min-height: 80vh;
    padding: var(--st-space-xxxl) 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.st-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(21, 128, 61, 0.3) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
}

.st-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.3) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
}

.st-hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--st-space-xxl);
    z-index: 1;
}

@media (min-width: 1024px) {
    .st-hero-content {
        flex-direction: row;
        align-items: center;
    }
}

.st-hero-text {
    flex: 3;
}

.st-hero-image {
    flex: 2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--st-border-radius-lg);
    padding: var(--st-space-sm);
    backdrop-filter: blur(10px);
    box-shadow: var(--st-shadow-xl);
}

.st-hero-image img {
    border-radius: var(--st-border-radius-sm);
    opacity: 0.8;
}

.st-hero-image .play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: var(--kpl-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--st-transition-ease);
}

.st-hero-image .play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--kpl-accent);
}

.st-hero-image .play-button svg {
    width: 40px;
    height: 40px;
    fill: var(--kpl-white);
    margin-left: 5px;
}

.st-hero-subtitle {
    font-size: 1.25rem;
    color: var(--kpl-gray-300);
    margin-top: var(--st-space-sm);
    max-width: 700px;
}

/* Trust Credential Strip */
.st-trust-credentials {
    padding: var(--st-space-md) 0;
    background-color: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.st-trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--st-space-md);
}

.st-trust-item {
    display: inline-flex;
    align-items: center;
    gap: var(--st-space-xs);
    padding: var(--st-space-xs) var(--st-space-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--st-border-radius-sm);
    color: var(--kpl-gray-300);
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.02);
    transition: var(--st-transition-ease);
}

.st-trust-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--st-shadow-sm);
    border-color: var(--kpl-muted);
}

.st-trust-item .st-icon {
    width: 20px;
    height: 20px;
    color: var(--kpl-muted);
    flex-shrink: 0;
}

/* Cards */
.st-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--st-border-radius-lg);
    padding: var(--st-space-lg);
    transition: var(--st-transition-ease);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
}

.st-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.08);
}

.st-card-feature,
.st-card-service,
.st-card-process {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--st-space-md);
}

.st-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--st-space-xs);
}

.st-check-item {
    display: flex;
    align-items: flex-start;
    gap: var(--st-space-xs);
    font-size: 1rem;
    color: var(--kpl-gray-300);
}

.st-check-item .st-icon {
    width: 20px;
    height: 20px;
    color: var(--kpl-muted);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Zigzag Feature */
.st-zigzag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--st-space-xl);
}

@media (min-width: 768px) {
    .st-zigzag-item {
        flex-direction: row;
        text-align: left;
    }
}

.st-zigzag-item:nth-child(even) {
    flex-direction: column-reverse;
}

@media (min-width: 768px) {
    .st-zigzag-item:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.st-zigzag-image,
.st-zigzag-text {
    flex: 1;
}

.st-zigzag-image {
    position: relative;
    padding: var(--st-space-sm);
    background-color: var(--kpl-secondary);
    border-radius: var(--st-border-radius-lg);
}

.st-zigzag-image img {
    border-radius: var(--st-border-radius-md);
}

/* Stats Section */
.st-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--st-space-lg);
    margin-top: var(--st-space-xl);
    text-align: center;
}

.st-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--st-border-radius-lg);
    padding: var(--st-space-lg);
}

.st-stat-number {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    color: var(--kpl-primary);
    line-height: 1;
    margin-bottom: var(--st-space-xs);
}

.st-stat-label {
    font-size: 0.95rem;
    color: var(--kpl-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Case Study */
.st-case-study {
    background-color: var(--kpl-background);
    padding-top: var(--st-space-xxxl);
    padding-bottom: var(--st-space-xxxl);
}

.st-case-study-image {
    width: 100%;
    height: 50vh;
    overflow: hidden;
    position: relative;
    margin-bottom: var(--st-space-xl);
    border-radius: var(--st-border-radius-lg);
}

.st-case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.st-case-study-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.st-case-study-content h3 {
    color: var(--kpl-primary);
    margin-bottom: var(--st-space-sm);
}

.st-case-study-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--st-space-lg);
    margin-top: var(--st-space-xl);
    margin-bottom: var(--st-space-xl);
}

.st-case-study-stat-item {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--st-border-radius-md);
    padding: var(--st-space-md);
    text-align: center;
    min-width: 150px;
}

.st-case-study-stat-number {
    font-size: 2.2rem;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--kpl-accent);
    line-height: 1;
}

.st-case-study-stat-label {
    font-size: 0.9rem;
    color: var(--kpl-gray-400);
    margin-top: var(--st-space-xs);
}

/* Pullquote / Testimonial */
.st-pullquote {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-style: italic;
    color: var(--kpl-white);
    line-height: 1.35;
    text-align: center;
    position: relative;
    padding: var(--st-space-xxl);
    max-width: 900px;
    margin: 0 auto;
}

.st-pullquote::before {
    content: '\201C'; /* Left double quotation mark */
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: var(--st-space-md);
    left: var(--st-space-md);
    line-height: 1;
    z-index: 0;
}

.st-pullquote-content {
    position: relative;
    z-index: 1;
}

.st-testimonial-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--st-border-radius-lg);
    padding: var(--st-space-lg);
    transition: var(--st-transition-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: var(--st-space-md);
}

.st-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.08);
}

.st-testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--kpl-gray-300);
    line-height: 1.7;
}

.st-testimonial-cite {
    display: flex;
    align-items: center;
    gap: var(--st-space-sm);
    margin-top: var(--st-space-md);
}

.st-testimonial-cite img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--kpl-primary);
    flex-shrink: 0;
}

.st-testimonial-cite-info strong {
    display: block;
    color: var(--kpl-white);
    font-weight: 600;
}

.st-testimonial-cite-info span {
    color: var(--kpl-gray-400);
    font-size: 0.9rem;
}

.st-testimonial-stars {
    color: gold;
    font-size: 1.2rem;
    margin-bottom: var(--st-space-xs);
}

/* Pricing Table */
.st-pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: var(--st-space-xl);
}

.st-toggle-switch {
    position: relative;
    display: inline-flex;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--st-border-radius-md);
    padding: var(--st-space-xs);
}

.st-toggle-option {
    padding: var(--st-space-xs) var(--st-space-md);
    cursor: pointer;
    z-index: 1;
    color: var(--kpl-gray-300);
    font-weight: 500;
    transition: var(--st-transition-ease);
}

.st-toggle-option.active {
    color: var(--kpl-white);
}

.st-toggle-slider {
    position: absolute;
    top: var(--st-space-xs);
    left: var(--st-space-xs);
    height: calc(100% - calc(var(--st-space-xs) * 2));
    width: calc(50% - var(--st-space-xs));
    background-color: var(--kpl-primary);
    border-radius: var(--st-border-radius-sm);
    transition: var(--st-transition-ease);
    z-index: 0;
}

.st-toggle-switch[data-active-tab='annual'] .st-toggle-slider {
    transform: translateX(100%);
}

.st-pricing-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--st-border-radius-lg);
    padding: var(--st-space-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: var(--st-transition-ease);
}

.st-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.08);
}

.st-pricing-card h3 {
    color: var(--kpl-primary);
    margin-bottom: var(--st-space-xs);
}

.st-pricing-card .price {
    font-size: 3rem;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--kpl-white);
    line-height: 1;
}

.st-pricing-card .duration {
    color: var(--kpl-gray-400);
    font-size: 1rem;
    margin-bottom: var(--st-space-lg);
}

.st-pricing-card .st-check-list {
    margin-top: var(--st-space-lg);
    margin-bottom: var(--st-space-xl);
    text-align: left;
    flex-grow: 1;
}

/* FAQ Accordion */
.st-faq-item {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--st-border-radius-md);
    margin-bottom: var(--st-space-sm);
    overflow: hidden;
    transition: border-color var(--st-transition-ease);
}

.st-faq-item:last-child {
    margin-bottom: 0;
}

.st-faq-item.active {
    border-color: var(--kpl-primary);
}

.st-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--st-space-md);
    font-weight: 600;
    color: var(--kpl-white);
    cursor: pointer;
    font-size: 1.125rem;
}

.st-faq-q .st-icon {
    transition: transform var(--st-transition-ease);
}

.st-faq-item.active .st-faq-q .st-icon {
    transform: rotate(90deg);
}

.st-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 var(--st-space-md);
}

.st-faq-item.active .st-faq-a {
    max-height: 500px; /* Adjust as needed */
    padding-bottom: var(--st-space-md);
}

.st-faq-a p {
    color: var(--kpl-gray-300);
    font-size: 1rem;
    margin-bottom: 0;
}

/* CTA Section */
.st-cta {
    background-color: var(--kpl-secondary);
    padding: var(--st-space-xxxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--st-border-radius-lg);
    margin-block: var(--st-space-xxxl);
}

.st-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(21, 128, 61, 0.2) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
}

.st-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.st-cta h2 {
    color: var(--kpl-white);
    margin-bottom: var(--st-space-md);
}

.st-cta p {
    color: var(--kpl-gray-200);
    margin-bottom: var(--st-space-xl);
    font-size: 1.25rem;
}

.st-cta .st-button {
    margin-top: var(--st-space-lg);
}

/* Form Styling */
.st-contact-form {
    max-width: 600px;
    margin: var(--st-space-xl) auto;
    display: flex;
    flex-direction: column;
    gap: var(--st-space-md);
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--st-border-radius-lg);
    padding: var(--st-space-xl);
}

.st-form-group {
    margin-bottom: var(--st-space-sm);
}

.st-form-label {
    display: block;
    margin-bottom: var(--st-space-xs);
    color: var(--kpl-gray-200);
    font-weight: 500;
}

.st-form-input,
.st-form-textarea {
    width: 100%;
    padding: var(--st-space-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--kpl-white);
    border-radius: var(--st-border-radius-sm);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    transition: border-color var(--st-transition-ease), box-shadow var(--st-transition-ease);
}

.st-form-input:focus,
.st-form-textarea:focus {
    outline: none;
    border-color: var(--kpl-primary);
    box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.5);
}

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

.st-form-error {
    color: var(--kpl-accent);
    font-size: 0.875rem;
    margin-top: var(--st-space-xs);
    display: none;
}

.st-form-success {
    color: var(--kpl-muted);
    font-size: 1rem;
    margin-top: var(--st-space-sm);
    display: none;
}

/* Footer */
.st-footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding-top: var(--st-space-xxxl);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.st-footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--st-space-xl);
}

@media (min-width: 768px) {
    .st-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .st-footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.st-footer-col h4 {
    color: var(--kpl-white);
    margin-bottom: var(--st-space-md);
    font-size: 1.1rem;
}

.st-footer-col p,
.st-footer-col address {
    color: var(--kpl-gray-400);
    font-size: 0.95rem;
    margin-bottom: var(--st-space-sm);
    font-style: normal;
}

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

.st-footer-list li {
    margin-bottom: var(--st-space-xs);
}

.st-footer-link {
    color: var(--kpl-gray-400);
    font-size: 0.95rem;
}

.st-footer-link:hover {
    color: var(--kpl-primary);
    text-decoration: underline;
}

.st-footer-bottom {
    text-align: center;
    padding: var(--st-space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: var(--st-space-xxl);
    color: var(--kpl-gray-500);
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.st-animate {
    opacity: 0;
    transform: translateY(20px);
}

.st-animate.st-animated {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Editorial Elements */
.st-pullquote {
    font-family: 'Sora', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-style: italic;
    color: var(--kpl-white);
    line-height: 1.35;
    text-align: center;
    position: relative;
    padding: var(--st-space-xxl);
    max-width: 900px;
    margin: 0 auto;
}

.st-pullquote::before {
    content: '“'; /* Oversized opening quote */
    font-family: 'Sora', serif;
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    z-index: 0;
    opacity: 0.7;
}

@media (min-width: 768px) {
    .st-pullquote::before {
        left: var(--st-space-xl);
        transform: none;
    }
}

.st-pullquote-author {
    display: block;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 500;
    color: var(--kpl-muted);
    margin-top: var(--st-space-md);
    position: relative;
    z-index: 1;
}

.st-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--st-space-lg);
    text-align: center;
    margin-top: var(--st-space-xl);
}

.st-stat-item-editorial {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--st-border-radius-md);
    padding: var(--st-space-lg);
}

.st-stat-number-editorial {
    font-size: clamp(3.5rem, 8vw, 4.5rem);
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    color: var(--kpl-accent);
    line-height: 1;
    margin-bottom: var(--st-space-xs);
}

.st-stat-label-editorial {
    font-size: 0.95rem;
    color: var(--kpl-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* Media Queries */
@media (max-width: 1024px) {
    .st-section {
        padding-top: var(--st-space-xxl);
        padding-bottom: var(--st-space-xxl);
    }

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

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

    .st-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .st-hero-image {
        margin-top: var(--st-space-xl);
    }

    .st-zigzag-item:nth-child(even) {
        flex-direction: column;
    }
    .st-zigzag-item {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .st-h1, h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .st-h2, h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    p {
        font-size: 1rem;
    }

    .st-nav-list {
        display: none;
    }

    .st-footer-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .st-pricing-toggle {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .st-container {
        padding-left: var(--st-space-sm);
        padding-right: var(--st-space-sm);
    }

    .st-section {
        padding-top: var(--st-space-xxl);
        padding-bottom: var(--st-space-xxl);
    }

    .st-button {
        font-size: 0.9rem;
        padding: var(--st-space-sm) var(--st-space-md);
    }

    .st-footer-col h4 {
        font-size: 1rem;
    }

    .st-footer-col p, .st-footer-list a {
        font-size: 0.85rem;
    }
    .st-pullquote::before {
        font-size: 6rem;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
    }
    .st-card {
        padding: var(--st-space-md);
    }
    .st-hero-image .play-button {
        width: 60px;
        height: 60px;
    }
    .st-hero-image .play-button svg {
        width: 30px;
        height: 30px;
    }
}


/* === Quality polish === */
.st-card, [class*="st-card"] { transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s ease; }
.st-card:hover, [class*="st-card"]:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.16); }

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

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

/* === STYLE FAMILY: premium_dark_saas === */
.st-section { background: #0a0b10; color: #e6e7eb; }
.st-section-alt { background: linear-gradient(180deg, #0a0b10 0%, #11131c 100%); color: #e6e7eb; }
.st-hero { background: radial-gradient(ellipse at top left, color-mix(in srgb, #15803d 30%, transparent), transparent 60%), radial-gradient(ellipse at bottom right, color-mix(in srgb, #e11d48 22%, transparent), transparent 60%), #0a0b10; color: #fff; padding: 128px 0 96px; }
.st-h1 { color: #fff; }
.st-card, .st-card-feature, .st-card-service { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: #e6e7eb; backdrop-filter: blur(12px); }
.st-card:hover { box-shadow: 0 0 0 1px #15803d, 0 18px 48px -12px color-mix(in srgb, #15803d 50%, transparent); }
.st-button-primary { background: #15803d; color: #fff; box-shadow: 0 0 24px -8px #15803d; border-radius: 10px; }
.st-button-secondary, .st-button-outline { background: transparent; color: #e6e7eb; border: 1px solid rgba(255,255,255,0.18); border-radius: 10px; }
.st-footer { background: #06070b; color: #9ca3af; }