/* ========================================
   Nilo Assistant – Static Site Styles
   Visual design adapted from draft mockup
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #334155;
    background: #fff;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Navigation --- */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.12s ease-out, box-shadow 0.12s ease-out, border-color 0.12s ease-out;
}

#main-nav .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    transition: color 0.12s ease-out;
}

.nav-section-links {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
}

.nav-section-links a {
    position: relative;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    padding: 1rem 0.875rem;
    transition: color 0.12s ease-out;
    white-space: nowrap;
}

.nav-section-links a:hover {
    color: #fff;
}

.nav-section-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.875rem;
    right: 0.875rem;
    height: 2px;
    background: #a855f7;
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.nav-section-links a:hover::after,
.nav-section-links a.active::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.nav-language-switcher {
    display: inline-flex;
    color: rgba(255, 255, 255, 0.92) !important;
}

.nav-language-field {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-width: 11.5rem;
}

.nav-language-select {
    appearance: none;
    width: 100%;
    padding: 0.5rem 2.3rem 0.5rem 2.35rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    transition: color 0.12s ease-out, border-color 0.12s ease-out, background 0.12s ease-out;
}

.nav-language-select:focus {
    outline: 2px solid rgba(255, 255, 255, 0.35);
    outline-offset: 2px;
}

.btn-nav-language-icon {
    width: 1.45rem;
    height: 1.45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    position: absolute;
    left: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.btn-nav-language-icon svg {
    width: 100%;
    height: 100%;
}

.nav-language-field::after {
    content: '';
    position: absolute;
    right: 0.85rem;
    top: 50%;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

.btn-nav-outline {
    padding: 0.375rem 1rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.85) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    transition: background 0.12s ease-out, color 0.12s ease-out, border-color 0.12s ease-out;
}

.btn-nav-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff !important;
}

.btn-nav {
    padding: 0.375rem 1rem;
    background: #9333ea;
    color: #fff !important;
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-nav:hover {
    background: #7e22ce;
    color: #fff !important;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s, opacity 0.3s, background 0.3s;
}

#main-nav.scrolled .mobile-menu-btn span {
    background: #0f172a;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite alternate;
}

.blob-1 {
    top: 5rem;
    left: 5rem;
    width: 18rem;
    height: 18rem;
    background: #a855f7;
}

.blob-2 {
    top: 10rem;
    right: 5rem;
    width: 18rem;
    height: 18rem;
    background: #06b6d4;
    animation-delay: 0.7s;
}

.blob-3 {
    bottom: 5rem;
    left: 50%;
    width: 18rem;
    height: 18rem;
    background: #ec4899;
    animation-delay: 1s;
}

.blob-4 {
    top: 5rem;
    left: 5rem;
    width: 24rem;
    height: 24rem;
    background: #a855f7;
}

.blob-5 {
    bottom: 5rem;
    right: 5rem;
    width: 24rem;
    height: 24rem;
    background: #06b6d4;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }

    100% {
        transform: scale(1.15);
        opacity: 0.35;
    }
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 1.5rem 5rem;
    width: 100%;
}

.legal-page {
    background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
    padding: 160px 0 80px;
}

.legal-page-inner {
    max-width: 900px;
    color: #b0b0b0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-page-intro {
    margin-bottom: 3rem;
}

.legal-page-intro h1 {
    color: #ffffff;
    margin: 0 0 0.75rem 0;
}

.legal-page-section {
    margin-bottom: 2.5rem;
}

.legal-page-section:last-child {
    margin-bottom: 0;
}

.legal-page-section h2 {
    color: #ffffff;
    margin: 0 0 0.75rem 0;
}

.legal-page p {
    margin: 0;
}

.legal-page a {
    color: #c4b5fd;
}

.legal-page a:hover {
    color: #ddd6fe;
}

.hero-owner-stories-home {
    min-height: auto;
    align-items: flex-start;
}

.hero-owner-stories-home .hero-content {
    padding-top: 5.5rem;
    padding-bottom: 4rem;
    gap: 2.25rem;
}

.hero-split {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.hero-text {
    max-width: 680px;
    color: #fff;
    flex: 1 1 55%;
}

.hero-text-centered {
    max-width: 760px;
    flex: none;
}

.hero-text-centered .hero-subtitle {
    max-width: 100%;
}

.hero-text-centered .hero-buttons {
    justify-content: center;
}

.hero-image {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 540px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-image-large {
    flex: none;
    width: 100%;
    max-width: 960px;
}

.hero-image-large img {
    max-width: 100%;
    border-radius: 1.25rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #d8b4fe;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 560px;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    max-width: 560px;
}

.hero-highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #d1d5db;
    font-size: 1.05rem;
    line-height: 1.6;
}

.hero-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #06b6d4;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #06b6d4;
    color: #fff;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background: #0891b2;
    transform: scale(1.03);
}

.btn-outline {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    color: #fff;
    font-weight: 600;
    border: 2px solid #fff;
    border-radius: 0.5rem;
    transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
    background: #fff;
    color: #0f172a;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* Social proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-proof p {
    font-size: 0.875rem;
    color: #d1d5db;
}

.social-proof strong {
    color: #fff;
}

.avatar-group {
    display: flex;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: -0.5rem;
}

.avatar-purple {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.avatar-cyan {
    background: linear-gradient(135deg, #22d3ee, #3b82f6);
}

.avatar-orange {
    background: linear-gradient(135deg, #fb923c, #ef4444);
}

/* --- Section Shared --- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #f3e8ff;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #9333ea;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 720px;
    margin: 0 auto;
}

/* --- Showcase Sections --- */
.showcase {
    padding: 6rem 0;
    background: #f8fafc;
}

.showcase-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-text {
    flex: 1 1 45%;
}

.showcase-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #0f172a;
}

.showcase-text p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.showcase-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.showcase-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.6;
}

.showcase-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #06b6d4;
    font-weight: 700;
}

.showcase-image {
    flex: 1 1 55%;
}

.showcase-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.florist-workflow-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.florist-workflow-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
}

.florist-workflow-panel-reverse {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.florist-workflow-panel-copy h3 {
    margin: 0.35rem 0 0.9rem;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
}

.florist-workflow-panel-copy p {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
}

.florist-workflow-list {
    margin-bottom: 1.25rem;
}

.florist-workflow-panel-visual {
    min-width: 0;
}

.florist-ui-shot {
    margin: 0;
    padding: 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.florist-ui-shot img {
    display: block;
}

.florist-ui-shot figcaption {
    margin-top: 0.9rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
}

.florist-workflow-card {
    padding: 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    text-align: left;
}

.workflow-micro-label {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #f3e8ff;
    color: #7e22ce;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.florist-workflow-card h3 {
    margin: 1rem 0 0.75rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
}

.florist-workflow-card p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

.workflow-prompt {
    margin: 1.25rem 0 1.5rem;
    padding: 1rem 1.1rem;
    background: #0f172a;
    border-radius: 1rem;
    color: #f8fafc;
    font-size: 0.98rem;
    line-height: 1.65;
}

.florist-workflow-card .benefit-list {
    margin-top: 1.25rem;
}

.lightbox-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.lightbox-trigger:focus-visible {
    outline: 3px solid #7e22ce;
    outline-offset: 6px;
    border-radius: 1rem;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-overlay[hidden] {
    display: none;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(4px);
}

.lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(1100px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.lightbox-close {
    align-self: flex-end;
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.24);
}

.lightbox-close:focus-visible {
    outline: 3px solid #c084fc;
    outline-offset: 3px;
}

.lightbox-figure {
    margin: 0;
    padding: 1rem;
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.35);
    overflow: auto;
}

.lightbox-figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.85rem;
}

.lightbox-figure figcaption {
    margin-top: 0.9rem;
    font-size: 0.96rem;
    line-height: 1.6;
    color: #475569;
}

body.lightbox-open {
    overflow: hidden;
}

.showcase-alt {
    background: #fff;
}

.showcase-row-reverse {
    flex-direction: row-reverse;
}

.showcase-icon-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 320px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.badge-coming-soon {
    font-size: 0.75em;
    background: linear-gradient(135deg, #a78bfa, #ec4899);
    padding: 2px 10px;
    border-radius: 20px;
    vertical-align: middle;
    color: #fff;
    margin-left: 0.5rem;
}

/* --- Features --- */
.features {
    padding: 6rem 0;
    background: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 2.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card-link {
    display: block;
    cursor: pointer;
}

.feature-card-link:focus-visible {
    outline: 3px solid #9333ea;
    outline-offset: 3px;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff;
}

.icon-cyan-purple {
    background: linear-gradient(135deg, #06b6d4, #a855f7);
}

.icon-purple-pink {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.icon-pink-orange {
    background: linear-gradient(135deg, #ec4899, #f97316);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.feature-card>p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-card>p a {
    color: #9333ea;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.feature-card>p a:hover {
    color: #7e22ce;
}

/* --- Partner Program --- */
.partner-hero {
    padding: 8rem 0 3.5rem;
    background: linear-gradient(180deg, #0f172a 0%, #172554 100%);
}

.partner-hero .hero-bg-effects {
    display: none;
}

.features.partner-section-soft,
.showcase.partner-showcase,
.showcase.partner-showcase+.features,
.features+.features.partner-section-soft,
.features.partner-section-soft+.features.partner-cta-section {
    padding: 3.5rem 0;
}

.partner-hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
    gap: 2rem;
    align-items: center;
}

.partner-hero-copy {
    max-width: 760px;
}

.partner-hero-panel,
.partner-process-card,
.partner-compare-card,
.partner-cta-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.partner-hero-panel {
    padding: 2rem;
    border-radius: 1.5rem;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.72);
}

.partner-panel-label {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.14);
    color: #67e8f9;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.partner-hero-panel h2 {
    margin: 1rem 0 0.75rem;
    color: #fff;
    font-size: 1.9rem;
    line-height: 1.15;
}

.partner-hero-panel p {
    color: #cbd5e1;
    line-height: 1.7;
}

.partner-check-list {
    margin-top: 1.25rem;
}

.partner-check-list li {
    position: relative;
    padding-left: 1.55rem;
    margin-bottom: 0.8rem;
    color: #e2e8f0;
}

.partner-check-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #22d3ee;
    font-size: 1.2rem;
    line-height: 1;
}

.partner-section-soft {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.partner-showcase {
    background: #fff;
}

.partner-earn-hero {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.partner-earn-hero .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.partner-earn-content>h2 {
    margin: 2.25rem 0 1rem;
}

.partner-earn-content>h2:first-child {
    margin-top: 0;
}

.partner-features-page .features {
    padding: 4.5rem 0;
}

.partner-features-page .section-header {
    margin-bottom: 2.75rem;
}

.partner-features-page article {
    padding: 2rem 0;
    border-top: 1px solid #e2e8f0;
}

.partner-features-page article:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.partner-features-page article:last-of-type {
    padding-bottom: 0;
}

.partner-features-page article h3 {
    margin-bottom: 0.9rem;
    font-size: 1.55rem;
    line-height: 1.25;
    color: #0f172a;
}

.partner-features-page article p {
    color: #475569;
    line-height: 1.75;
}

.partner-features-page article p+p,
.partner-features-page article p+.showcase-list,
.partner-features-page article .showcase-list+p {
    margin-top: 1rem;
}

.partner-features-page article .showcase-list {
    margin-top: 1.25rem;
    margin-bottom: 0;
}

.partner-features-page article .showcase-list li:last-child {
    margin-bottom: 0;
}

.api-docs-page .features {
    padding: 4.5rem 0;
}

.api-docs-page .section-header {
    margin-bottom: 2.75rem;
}

.api-docs-page article {
    padding: 2rem 0;
    border-top: 1px solid #e2e8f0;
}

.api-docs-page article:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.api-docs-page article:last-of-type {
    padding-bottom: 0;
}

.api-docs-page article h3 {
    margin-bottom: 0.9rem;
    font-size: 1.55rem;
    line-height: 1.25;
    color: #0f172a;
}

.api-docs-page article h4 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
}

.api-docs-page article p {
    color: #475569;
    line-height: 1.75;
}

.api-docs-page article p+p,
.api-docs-page article p+.showcase-list,
.api-docs-page article .showcase-list+p {
    margin-top: 1rem;
}

.api-docs-page article .showcase-list {
    margin-top: 1.25rem;
    margin-bottom: 0;
}

.api-docs-page article .showcase-list li:last-child {
    margin-bottom: 0;
}

.api-docs-page article code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.9em;
    background: #f1f5f9;
    padding: 0.15rem 0.35rem;
    border-radius: 0.25rem;
    color: #0f172a;
}

.api-docs-page article .partner-code-block code {
    background: transparent;
    padding: 0;
    border-radius: 0;
    color: #e2e8f0;
}

/* --- API Docs Layout --- */
.api-docs-layout {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.api-docs-sidebar {
    width: 240px;
    flex-shrink: 0;
    padding-top: 2rem;
}

.api-docs-sidebar-nav {
    position: sticky;
    top: 80px;
}

.api-docs-sidebar-nav h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin: 1.5rem 0 0.6rem;
    padding-left: 0.5rem;
}

.api-docs-sidebar-nav h4:first-child {
    margin-top: 0;
}

.api-docs-sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.api-docs-sidebar-nav li {
    margin: 0;
}

.api-docs-sidebar-nav a {
    display: block;
    padding: 0.4rem 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    border-radius: 0.375rem;
    transition: background 0.12s ease-out, color 0.12s ease-out;
}

.api-docs-sidebar-nav a:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.api-docs-sidebar-nav a.active {
    background: #f3e8ff;
    color: #7e22ce;
    font-weight: 600;
}

.api-docs-content {
    flex: 1;
    min-width: 0;
}

@media (max-width: 900px) {
    .api-docs-layout {
        flex-direction: column;
        gap: 1rem;
    }
    .api-docs-sidebar {
        width: 100%;
        padding-top: 1rem;
    }
    .api-docs-sidebar-nav {
        position: static;
    }
    .api-docs-sidebar-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    .api-docs-sidebar-nav h4 {
        width: 100%;
        margin-top: 0.75rem;
    }
    .api-docs-sidebar-nav a {
        white-space: nowrap;
    }
}

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

.partner-role-card {
    border: 1px solid #e2e8f0;
}

.partner-role-card p,
.partner-value-grid .feature-card p {
    margin-bottom: 0;
}

.partner-process-card {
    padding: 1.35rem;
    border-radius: 1.5rem;
    color: #fff;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 48%, #164e63 100%);
}

.partner-process-step {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1rem 0;
}

.partner-process-step+.partner-process-step {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.partner-process-step span {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: rgba(34, 211, 238, 0.14);
    color: #67e8f9;
    font-size: 1.1rem;
    font-weight: 800;
}

.partner-process-step h3 {
    margin: 0 0 0.4rem;
    font-size: 1.15rem;
    color: #fff;
}

.partner-process-step p {
    margin: 0;
    color: #cbd5e1;
}

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

.partner-code-shell {
    margin: 0 auto 1.5rem;
    max-width: 980px;
}

.partner-note-card {
    background: #f8fafc;
    border: 1px solid #dbeafe;
    border-radius: 1rem 1rem 0 0;
    padding: 1.25rem 1.5rem;
}

.partner-note-card h3 {
    margin: 0 0 0.35rem;
    color: #0f172a;
    font-size: 1.05rem;
}

.partner-note-card p {
    margin: 0;
    color: #475569;
}

.partner-code-block {
    margin: 0;
    padding: 1.5rem;
    border-radius: 0 0 1rem 1rem;
    border: 1px solid #cbd5e1;
    border-top: 0;
    background: #0f172a;
    color: #e2e8f0;
    overflow-x: auto;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.partner-code-block code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.95rem;
    line-height: 1.7;
}

.partner-compare-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 1.5rem;
    background: #cbd5e1;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid #cbd5e1;
}

.partner-compare-card>div {
    padding: 2rem;
    background: #fff;
}

.partner-compare-card h3 {
    margin-bottom: 0.75rem;
    color: #0f172a;
    font-size: 1.35rem;
}

.partner-compare-card p {
    color: #475569;
    margin: 0;
}

.partner-cta-section {
    background: linear-gradient(180deg, #ffffff 0%, #ecfeff 100%);
}

.partner-cta-card {
    padding: 3rem;
    border-radius: 1.75rem;
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #164e63 55%, #0891b2 100%);
    color: #fff;
}

.partner-cta-card h2 {
    margin-bottom: 1rem;
    font-size: 2.4rem;
    line-height: 1.15;
}

.partner-cta-card p {
    max-width: 700px;
    margin: 0 auto 1.75rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
}

/* --- Owner Stories --- */
.owner-stories-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.owner-stories-gallery-section {
    background: #fff;
}

.owner-story-gallery-shell {
    margin-top: 3.5rem;
    position: relative;
    z-index: 2;
}

.owner-story-gallery {
    display: block;
}

.owner-story-gallery-visual {
    position: relative;
    overflow: hidden;
    border-radius: 1.75rem;
    background: #0f172a;
    min-width: 0;
}

.owner-story-gallery-visual-full {
    width: 100%;
}

.owner-story-gallery-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.owner-story-gallery-frame {
    min-width: 100%;
}

.owner-story-gallery-art {
    min-height: 680px;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 600;
}

.owner-story-gallery-art::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.03) 0%, rgba(15, 23, 42, 0.08) 58%, rgba(15, 23, 42, 0.16) 100%);
}

.owner-story-gallery-art span {
    position: relative;
    z-index: 1;
}

.owner-story-gallery-overlay {
    position: relative;
    z-index: 1;
    max-width: 42rem;
    margin-left: 3rem;
    color: #fff;
}

.owner-story-gallery-overlay h1,
.owner-story-gallery-overlay h2 {
    font-size: 3rem;
    line-height: 1.05;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 4px 18px rgba(15, 23, 42, 0.62), 0 1px 2px rgba(15, 23, 42, 0.8);
}

.owner-story-gallery-overlay p {
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.75;
    color: #f8fafc;
    max-width: 38rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 14px rgba(15, 23, 42, 0.6), 0 1px 2px rgba(15, 23, 42, 0.75);
}

.owner-story-gallery-cta {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    z-index: 2;
    margin-bottom: 0;
}

.owner-story-gallery-art-florist-1 {
    background-image: url('/assets/images/owner-story-florist-hero.jpeg?v=3');
}

.owner-story-gallery-art-landscaping-1 {
    background-image: url('/assets/images/owner-story-landscaping-hero.jpeg?v=3');
    background-position: center 44%;
}

.owner-story-gallery-art-auto-repair-1 {
    background-image: url('/assets/images/owner-story-auto-repair-stage-2.jpeg?v=1');
    background-position: center 46%;
}

.owner-story-gallery-art-boutique-hotel-1 {
    background-image: url('/assets/images/owner-story-boutique-hotel-stage-2.jpeg?v=1');
    background-position: center 48%;
}

.owner-story-gallery-art-handyman-1 {
    background-image: url('/assets/images/owner-story-handyman-stage-2.jpeg?v=1');
    background-position: center 46%;
}

.handyman-story-slot-1 {
    background-image: url('/assets/images/owner-story-handyman-stage-1.jpeg?v=1');
    background-position: center 42%;
}

.handyman-story-slot-2 {
    background-image: url('/assets/images/owner-story-handyman-stage-2.jpeg?v=1');
    background-position: center 46%;
}

.owner-story-gallery-shell-inline {
    margin-top: 0;
}

.hero-owner-stories-home .owner-story-gallery-shell-inline {
    width: 100%;
}

.florist-story-slot-1 {
    background-image: url('/assets/images/florist-story-1.jpeg?v=2');
}

.florist-story-slot-2 {
    background-image: url('/assets/images/florist-story-2.jpeg?v=2');
}

.florist-story-slot-3 {
    background-image: url('/assets/images/florist-story-3.jpeg?v=2');
}

.landscaping-story-slot-1 {
    background-image: url('/assets/images/owner-story-landscaping-stage-1.jpeg?v=2');
    background-position: center 52%;
}

.landscaping-story-slot-2 {
    background-image: url('/assets/images/owner-story-landscaping-stage-2.jpeg?v=2');
    background-position: center 42%;
}

.auto-repair-story-slot-1 {
    background-image: url('/assets/images/owner-story-auto-repair-stage-1.jpeg?v=1');
    background-position: center 42%;
}

.auto-repair-story-slot-2 {
    background-image: url('/assets/images/owner-story-auto-repair-stage-2.jpeg?v=1');
    background-position: center 46%;
}

.boutique-hotel-story-slot-1 {
    background-image: url('/assets/images/owner-story-boutique-hotel-stage-1.jpeg?v=1');
    background-position: center 44%;
}

.boutique-hotel-story-slot-2 {
    background-image: url('/assets/images/owner-story-boutique-hotel-stage-2.jpeg?v=1');
    background-position: center 48%;
}

.owner-story-evolution-section {
    position: relative;
    overflow: hidden;
    padding: 8.5rem 0 4rem;
    background:
        radial-gradient(circle at top left, rgba(236, 253, 245, 0.92), transparent 24%),
        radial-gradient(circle at 82% 12%, rgba(254, 226, 226, 0.82), transparent 20%),
        linear-gradient(180deg, #fffdf8 0%, #fffaf4 46%, #ffffff 100%);
}

.owner-story-evolution-section::before,
.owner-story-evolution-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.18;
    z-index: 0;
}

.owner-story-evolution-section::before {
    top: 5.5rem;
    left: -1.25rem;
    width: 11rem;
    height: 11rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='90' cy='90' r='14' fill='%23f59e0b'/%3E%3Cellipse cx='90' cy='38' rx='24' ry='36' fill='%23f9a8d4'/%3E%3Cellipse cx='90' cy='142' rx='24' ry='36' fill='%23fbcfe8'/%3E%3Cellipse cx='38' cy='90' rx='36' ry='24' fill='%23fecdd3'/%3E%3Cellipse cx='142' cy='90' rx='36' ry='24' fill='%23fda4af'/%3E%3Cellipse transform='rotate(45 53 53)' cx='53' cy='53' rx='22' ry='34' fill='%23fce7f3'/%3E%3Cellipse transform='rotate(-45 127 53)' cx='127' cy='53' rx='22' ry='34' fill='%23f9a8d4'/%3E%3Cellipse transform='rotate(-45 53 127)' cx='53' cy='127' rx='22' ry='34' fill='%23fbcfe8'/%3E%3Cellipse transform='rotate(45 127 127)' cx='127' cy='127' rx='22' ry='34' fill='%23fecaca'/%3E%3C/g%3E%3C/svg%3E");
}

.owner-story-evolution-section::after {
    right: -2rem;
    bottom: 1rem;
    width: 13rem;
    height: 13rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M112 173c-16-24-27-54-29-83 0-22 12-40 31-40s31 18 31 40c-2 29-14 59-33 83Z' fill='%2384cc16'/%3E%3Cpath d='M110 168c-29-9-57-27-74-50-11-18-10-39 6-48 16-10 36-2 47 16 12 22 18 51 21 82Z' fill='%23f9a8d4'/%3E%3Cpath d='M110 168c29-9 57-27 74-50 11-18 10-39-6-48-16-10-36-2-47 16-12 22-18 51-21 82Z' fill='%23fbcfe8'/%3E%3Ccircle cx='110' cy='108' r='16' fill='%23f59e0b'/%3E%3C/g%3E%3C/svg%3E");
}

.owner-story-evolution-section-landscaping {
    background:
        radial-gradient(circle at top left, rgba(220, 252, 231, 0.92), transparent 24%),
        radial-gradient(circle at 84% 16%, rgba(254, 243, 199, 0.86), transparent 18%),
        linear-gradient(180deg, #f8fbf4 0%, #f5f7ef 46%, #ffffff 100%);
}

.owner-story-evolution-section-landscaping::before {
    top: 5rem;
    left: -1.5rem;
    width: 11rem;
    height: 11rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M110 178c-24-20-41-53-41-88 0-28 17-50 41-50s41 22 41 50c0 35-17 68-41 88Z' fill='%2384cc16'/%3E%3Cpath d='M110 168c-6-26-6-56 0-88' stroke='%23166534' stroke-width='8' stroke-linecap='round'/%3E%3Cpath d='M110 116c-17-6-31-17-40-31' stroke='%23166534' stroke-width='8' stroke-linecap='round'/%3E%3Cpath d='M110 138c16-6 30-17 39-31' stroke='%23166534' stroke-width='8' stroke-linecap='round'/%3E%3Ccircle cx='110' cy='110' r='12' fill='%23f59e0b'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.16;
}

.owner-story-evolution-section-landscaping::after {
    right: -2rem;
    bottom: 0.5rem;
    width: 13rem;
    height: 13rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M33 153c17-30 54-49 86-49 28 0 52 10 69 28-17 24-47 44-83 53-25 6-51 3-72-7 0-9 0-17 0-25Z' fill='%23d9f99d'/%3E%3Cpath d='M58 163c23-28 54-48 92-58' stroke='%234a7c2c' stroke-width='9' stroke-linecap='round'/%3E%3Cpath d='M106 114c10 10 18 23 23 36' stroke='%234a7c2c' stroke-width='8' stroke-linecap='round'/%3E%3Cpath d='M89 124c-4 11-6 24-5 37' stroke='%234a7c2c' stroke-width='8' stroke-linecap='round'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.16;
}

.owner-story-evolution-section-auto-repair {
    background:
        radial-gradient(circle at top left, rgba(219, 234, 254, 0.94), transparent 24%),
        radial-gradient(circle at 84% 16%, rgba(254, 240, 138, 0.52), transparent 18%),
        linear-gradient(180deg, #f4f7fb 0%, #eef3f7 46%, #ffffff 100%);
}

.owner-story-evolution-section-auto-repair::before {
    top: 4.8rem;
    left: -1.5rem;
    width: 11rem;
    height: 11rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='110' cy='110' r='52' fill='%2394a3b8'/%3E%3Ccircle cx='110' cy='110' r='24' fill='%23e2e8f0'/%3E%3Cpath d='M110 32l12 22h26l-17 18 6 25-27-13-27 13 6-25-17-18h26z' fill='%23facc15' opacity='.85'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.16;
}

.owner-story-evolution-section-auto-repair::after {
    right: -2rem;
    bottom: 0.5rem;
    width: 13rem;
    height: 13rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Crect x='34' y='68' width='152' height='84' rx='22' fill='%23cbd5e1'/%3E%3Crect x='54' y='88' width='112' height='44' rx='12' fill='%23eff6ff'/%3E%3Cpath d='M66 88l18-24h52l18 24' stroke='%23334155' stroke-width='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='74' cy='160' r='16' fill='%23334155'/%3E%3Ccircle cx='146' cy='160' r='16' fill='%23334155'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.16;
}

.owner-story-evolution-section-handyman {
    background:
        radial-gradient(circle at top left, rgba(255, 237, 213, 0.94), transparent 24%),
        radial-gradient(circle at 84% 16%, rgba(191, 219, 254, 0.48), transparent 18%),
        linear-gradient(180deg, #fffaf3 0%, #f7f0e7 46%, #ffffff 100%);
}

.owner-story-evolution-section-handyman::before {
    top: 4.9rem;
    left: -1.5rem;
    width: 11rem;
    height: 11rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M72 70c17-17 39-17 56 0l12 12-57 57-12-12c-17-17-17-39 1-57Z' fill='%23f59e0b'/%3E%3Cpath d='M140 82l12-12c9-9 23-9 32 0s9 23 0 32l-12 12-32-32Z' fill='%23924f2f'/%3E%3Cpath d='M83 139l18 18-29 29c-6 6-15 6-21 0s-6-15 0-21l32-26Z' fill='%23d6d3d1'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.16;
}

.owner-story-evolution-section-handyman::after {
    right: -2rem;
    bottom: 0.5rem;
    width: 13rem;
    height: 13rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Crect x='30' y='78' width='160' height='66' rx='18' fill='%23c2410c'/%3E%3Crect x='108' y='64' width='30' height='28' rx='8' fill='%239a3412'/%3E%3Ccircle cx='66' cy='152' r='18' fill='%23334155'/%3E%3Ccircle cx='154' cy='152' r='18' fill='%23334155'/%3E%3Cpath d='M48 102h124' stroke='%23ffedd5' stroke-width='8' stroke-linecap='round'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.16;
}

.owner-story-evolution-section-boutique-hotel {
    background:
        radial-gradient(circle at top left, rgba(243, 232, 255, 0.94), transparent 24%),
        radial-gradient(circle at 84% 16%, rgba(254, 240, 138, 0.4), transparent 18%),
        linear-gradient(180deg, #fbf8ff 0%, #f7f1fb 46%, #ffffff 100%);
}

.owner-story-evolution-section-boutique-hotel::before {
    top: 4.9rem;
    left: -1.5rem;
    width: 11rem;
    height: 11rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M48 154V96c0-14 10-24 24-24h76c14 0 24 10 24 24v58' stroke='%237c3aed' stroke-width='12' stroke-linecap='round'/%3E%3Crect x='36' y='148' width='148' height='26' rx='10' fill='%23ddd6fe'/%3E%3Crect x='62' y='92' width='24' height='36' rx='8' fill='%23f5d0fe'/%3E%3Crect x='98' y='92' width='24' height='36' rx='8' fill='%23ede9fe'/%3E%3Crect x='134' y='92' width='24' height='36' rx='8' fill='%23f5d0fe'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.16;
}

.owner-story-evolution-section-boutique-hotel::after {
    right: -2rem;
    bottom: 0.5rem;
    width: 13rem;
    height: 13rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Crect x='56' y='40' width='108' height='132' rx='20' fill='%23fae8ff'/%3E%3Cpath d='M78 74h64' stroke='%237c3aed' stroke-width='10' stroke-linecap='round'/%3E%3Cpath d='M78 106h64' stroke='%23a855f7' stroke-width='10' stroke-linecap='round'/%3E%3Cpath d='M78 138h44' stroke='%23c084fc' stroke-width='10' stroke-linecap='round'/%3E%3Ccircle cx='154' cy='142' r='18' fill='%23f59e0b'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.16;
}

.owner-story-evolution-layout {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.owner-story-evolution-copy {
    flex: 1 1 0;
    min-width: 0;
}

.owner-story-evolution-copy .badge {
    position: relative;
    z-index: 1;
    padding: 0.65rem 1.25rem;
    background: rgba(255, 244, 251, 0.96);
    border: 1px solid rgba(196, 132, 252, 0.58);
    box-shadow: 0 10px 28px rgba(196, 132, 252, 0.14);
    color: #8b3fc7;
    font-weight: 700;
    letter-spacing: -0.01em;
    backdrop-filter: blur(6px);
}

.owner-story-evolution-copy-landscaping .badge {
    background: rgba(243, 250, 236, 0.96);
    border-color: rgba(74, 124, 44, 0.42);
    box-shadow: 0 10px 28px rgba(74, 124, 44, 0.12);
    color: #335b1d;
}

.owner-story-evolution-copy-auto-repair .badge {
    background: rgba(239, 246, 255, 0.96);
    border-color: rgba(59, 130, 246, 0.34);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.12);
    color: #1d4ed8;
}

.owner-story-evolution-copy-handyman .badge {
    background: rgba(255, 247, 237, 0.96);
    border-color: rgba(194, 65, 12, 0.34);
    box-shadow: 0 10px 28px rgba(180, 83, 9, 0.12);
    color: #c2410c;
}

.owner-story-evolution-copy-boutique-hotel .badge {
    background: rgba(250, 245, 255, 0.96);
    border-color: rgba(147, 51, 234, 0.28);
    box-shadow: 0 10px 28px rgba(147, 51, 234, 0.12);
    color: #7c3aed;
}

.owner-story-evolution-copy h1 {
    margin: 1.25rem 0 1.5rem;
    font-size: clamp(2.65rem, 4.9vw, 4.35rem);
    line-height: 0.98;
    color: #18233c;
    letter-spacing: -0.05em;
    max-width: 11ch;
}

.owner-story-evolution-lead {
    max-width: 44rem;
    font-size: 1.12rem;
    line-height: 1.85;
    color: #374151;
    margin-bottom: 2rem;
}

.owner-story-evolution-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.owner-story-evolution-point {
    padding: 1.1rem 1.25rem;
    border: 1px solid #f1dfd2;
    border-radius: 1.35rem;
    background: rgba(255, 252, 248, 0.88);
    box-shadow: 0 18px 40px rgba(148, 71, 37, 0.08);
}

.owner-story-evolution-point-label {
    margin-bottom: 0.35rem;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f766e;
}

.owner-story-evolution-point p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

.owner-story-evolution-point-landscaping {
    border-color: #d8e2c7;
    background: rgba(250, 252, 245, 0.92);
    box-shadow: 0 18px 40px rgba(74, 124, 44, 0.08);
}

.owner-story-evolution-point-landscaping .owner-story-evolution-point-label {
    color: #3f6212;
}

.owner-story-evolution-point-auto-repair {
    border-color: #d5deea;
    background: rgba(248, 251, 255, 0.94);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.08);
}

.owner-story-evolution-point-auto-repair .owner-story-evolution-point-label {
    color: #1d4ed8;
}

.owner-story-evolution-point-handyman {
    border-color: #ecd7c2;
    background: rgba(255, 250, 243, 0.94);
    box-shadow: 0 18px 40px rgba(180, 83, 9, 0.08);
}

.owner-story-evolution-point-handyman .owner-story-evolution-point-label {
    color: #c2410c;
}

.owner-story-evolution-point-boutique-hotel {
    border-color: #e8dbf8;
    background: rgba(252, 249, 255, 0.94);
    box-shadow: 0 18px 40px rgba(124, 58, 237, 0.08);
}

.owner-story-evolution-point-boutique-hotel .owner-story-evolution-point-label {
    color: #7c3aed;
}

.owner-story-vertical-gallery {
    flex: 0 0 min(36rem, 42%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.owner-story-vertical-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 1.65rem;
    background: linear-gradient(180deg, #fffefb 0%, #ffffff 100%);
    border: 1px solid #eadfd6;
    box-shadow: 0 24px 55px rgba(134, 88, 52, 0.12);
}

.owner-story-vertical-card-landscaping {
    background: linear-gradient(180deg, #fbfcf7 0%, #ffffff 100%);
    border-color: #dce7cf;
    box-shadow: 0 24px 55px rgba(63, 98, 18, 0.11);
}

.owner-story-vertical-card-auto-repair {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border-color: #d6e1ed;
    box-shadow: 0 24px 55px rgba(30, 64, 175, 0.1);
}

.owner-story-vertical-card-handyman {
    background: linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
    border-color: #eddcc9;
    box-shadow: 0 24px 55px rgba(154, 52, 18, 0.1);
}

.owner-story-vertical-card-boutique-hotel {
    background: linear-gradient(180deg, #fcfaff 0%, #ffffff 100%);
    border-color: #eadff7;
    box-shadow: 0 24px 55px rgba(124, 58, 237, 0.1);
}

.owner-story-vertical-image {
    min-height: 16rem;
    background-size: cover;
    background-position: center;
    position: relative;
}

.owner-story-vertical-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 250, 244, 0) 42%, rgba(255, 250, 244, 0.12) 100%);
}

.owner-story-vertical-card-copy {
    padding: 1.15rem 1.2rem 1.3rem;
}

.owner-story-vertical-stage {
    margin-bottom: 0.45rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b45309;
}

.owner-story-vertical-card-copy h2 {
    margin: 0 0 0.55rem;
    font-size: 1.25rem;
    line-height: 1.2;
    color: #1f2937;
}

.owner-story-vertical-card-copy p {
    margin: 0;
    color: #5b6574;
    line-height: 1.7;
}

.owner-story-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.78);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}

.owner-story-gallery-arrow:hover {
    background: rgba(15, 23, 42, 0.92);
}

.owner-story-gallery-arrow-prev {
    left: 1rem;
}

.owner-story-gallery-arrow-next {
    right: 1rem;
}

.owner-story-gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.65rem;
    z-index: 2;
}

.owner-story-gallery-dot {
    width: 0.8rem;
    height: 0.8rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.owner-story-gallery-dot.active {
    background: #fff;
    transform: scale(1.15);
}

.owner-story-kicker {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #f5f3ff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.owner-story-points {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.owner-story-points li {
    position: relative;
    padding-left: 1.5rem;
    color: #e2e8f0;
}

.owner-story-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #22d3ee;
    box-shadow: 0 0 0 0.22rem rgba(34, 211, 238, 0.18);
}

.owner-story-secondary-btn {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.owner-story-secondary-btn:hover {
    background: #fff;
    color: #0f172a;
}

.owner-stories-copy-section {
    background: #fff;
}

.owner-stories-copy-section-in-hero {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    background: transparent;
}

.hero-owner-stories-home .owner-stories-copy-intro .section-badge {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    color: #c4b5fd;
}

.hero-owner-stories-home .owner-stories-copy-intro h2 {
    color: #fff;
}

.hero-owner-stories-home .owner-stories-copy-body {
    color: #dbe4f0;
}

.hero-owner-stories-home .owner-stories-copy-body p {
    margin-bottom: 1.1rem;
}

.owner-stories-copy-layout {
    display: flex;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: flex-start;
    width: 100%;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.owner-stories-copy-intro {
    flex: 0 0 34%;
}

.owner-stories-copy-intro h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    line-height: 1.08;
    color: #0f172a;
}

.owner-stories-copy-body {
    flex: 1 1 auto;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #475569;
}

.owner-stories-copy-body p {
    margin: 0 0 1rem;
}

.owner-stories-copy-body .hero-buttons {
    justify-content: flex-start;
}

.owner-story-copy-outline {
    color: #0f172a;
    border-color: #0f172a;
}

.owner-story-copy-outline:hover {
    background: #0f172a;
    color: #fff;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #334155;
}

.benefit-list li::before {
    content: "";
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
    min-width: 1.1rem;
    border-radius: 50%;
    background: #a855f7;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
}

/* --- Pricing --- */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #faf5ff 0%, #fff 50%, #ecfeff 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s;
    position: relative;
}

.pricing-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.popular {
    border: 2px solid #9333ea;
    box-shadow: 0 12px 48px rgba(147, 51, 234, 0.15);
    transform: scale(1.05);
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: -0.9rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1.2rem;
    background: linear-gradient(135deg, #9333ea, #db2777);
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
}

.price .period {
    font-size: 1rem;
    color: #64748b;
}

.price-note {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #334155;
}

.pricing-features li::before {
    content: "";
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
    min-width: 1.1rem;
    margin-top: 0.15rem;
    border-radius: 50%;
    background: #a855f7;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
}

.btn-pricing {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.85rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #9333ea;
    color: #9333ea;
    background: #fff;
    transition: background 0.2s, color 0.2s;
}

.btn-pricing:hover {
    background: #faf5ff;
}

.btn-pricing-primary {
    background: #9333ea;
    color: #fff;
    border-color: #9333ea;
}

.btn-pricing-primary:hover {
    background: #7e22ce;
    border-color: #7e22ce;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    color: #64748b;
}

.pricing-note strong {
    color: #0f172a;
}

/* --- How It Works --- */
.how-it-works {
    padding: 6rem 0;
    background: #fff;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.step-content {
    position: relative;
    padding: 2rem 2.5rem;
}

.step-number-bg {
    position: absolute;
    top: 0;
    left: 1rem;
    font-size: 6rem;
    font-weight: 800;
    color: #f3e8ff;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.step-content h3 {
    position: relative;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.step-content>p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 640px;
}

.integrations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.integration-tag {
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    transition: background 0.2s, color 0.2s;
}

.integration-tag:hover {
    background: #f3e8ff;
    color: #7e22ce;
}

/* --- FAQ --- */
.faq {
    padding: 6rem 0;
    background: #fff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: #c084fc;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    transition: background 0.2s;
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
    color: #9333ea;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: "\2212";
}

.faq-item summary:hover {
    background: #f8fafc;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: #64748b;
    line-height: 1.7;
}

.faq-contact {
    text-align: center;
    margin-top: 3rem;
}

.faq-contact p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.faq-contact a {
    color: #9333ea;
    font-weight: 600;
    transition: color 0.2s;
}

.faq-contact a:hover {
    color: #7e22ce;
}

/* --- Contact --- */
.contact {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
    overflow: hidden;
}

.contact-bg-effects {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.contact-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge-dark {
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #d8b4fe;
    backdrop-filter: blur(8px);
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.contact-info>p {
    font-size: 1.2rem;
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-purple-bg {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
}

.icon-cyan-bg {
    background: rgba(6, 182, 212, 0.2);
    color: #67e8f9;
}

.icon-pink-bg {
    background: rgba(236, 72, 153, 0.2);
    color: #f9a8d4;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: #9ca3af;
}

.contact-value {
    display: block;
    font-weight: 600;
    color: #fff;
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-family: inherit;
    color: #0f172a;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}

.form-group textarea {
    resize: none;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #9333ea, #db2777);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: inherit;
}

.btn-submit:hover {
    opacity: 0.9;
}

/* --- Footer --- */
.site-footer {
    background: linear-gradient(135deg, #14b8a6 0%, #34d399 50%, #22d3ee 100%);
    color: #fff;
    padding: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
    line-height: 1.7;
}

.footer-newsletter h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-newsletter>p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.875rem;
    outline: none;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: #fff;
    color: #0d9488;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.newsletter-form button:hover {
    opacity: 0.9;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
}

.footer-col h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: #fff;
    transition: background 0.2s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .owner-story-evolution-section {
        padding-top: 7rem;
    }

    .owner-story-evolution-section::before {
        width: 8.5rem;
        height: 8.5rem;
        left: -1.5rem;
    }

    .owner-story-evolution-section::after {
        width: 10rem;
        height: 10rem;
        right: -2.5rem;
    }

    .owner-story-evolution-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .owner-story-vertical-gallery {
        flex: none;
        width: 100%;
    }

    .owner-story-vertical-image {
        min-height: 18rem;
    }

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

    .hero-text {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 420px;
    }

    .hero-image-large img {
        max-width: 100%;
    }

    .showcase-row {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .partner-hero-layout {
        grid-template-columns: 1fr;
    }

    .partner-hero-copy {
        max-width: 100%;
        text-align: center;
    }

    .partner-hero-panel {
        max-width: 760px;
        margin: 0 auto;
    }

    .partner-role-grid,
    .partner-value-grid,
    .partner-compare-card {
        grid-template-columns: 1fr;
    }

    .showcase-row-reverse {
        flex-direction: column;
    }

    .florist-workflow-panel,
    .florist-workflow-panel-reverse {
        grid-template-columns: 1fr;
    }

    .lightbox-overlay {
        padding: 1rem;
    }

    .lightbox-dialog {
        width: min(100%, calc(100vw - 1rem));
        max-height: calc(100vh - 1rem);
    }

    .showcase-list {
        display: inline-block;
        text-align: left;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .owner-story-gallery-shell {
        margin-top: 2.5rem;
    }

    .owner-story-gallery-art {
        min-height: 580px;
    }

    .owner-story-gallery-overlay h1,
    .owner-story-gallery-overlay h2 {
        font-size: 2.35rem;
    }
}

@media (max-width: 768px) {

    .partner-features-page .features {
        padding: 3.5rem 0;
    }

    .partner-features-page .section-header {
        margin-bottom: 2.25rem;
    }

    .partner-features-page article {
        padding: 1.5rem 0;
    }

    /* Mobile nav */
    .nav-section-links,
    .nav-actions {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 0.75rem 1.5rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .nav-section-links.open,
    .nav-actions.open {
        display: flex;
    }

    .nav-section-links a {
        color: #334155 !important;
        font-size: 0.9375rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-section-links a::after {
        display: none;
    }

    .nav-actions {
        padding-top: 0;
        padding-bottom: 1rem;
        gap: 0.5rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .nav-actions a {
        text-align: center;
        width: 100%;
    }

    .nav-actions .nav-language-switcher {
        min-width: 0;
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
        border-bottom: 1px solid #f1f5f9;
        color: #334155 !important;
    }

    .nav-actions .nav-language-field {
        width: 100%;
        min-width: 0;
    }

    .nav-actions .nav-language-select {
        color: #0f172a;
        border-color: #cbd5e1;
        background: #fff;
    }

    .nav-actions .btn-nav-outline {
        color: #334155 !important;
        border-color: #cbd5e1;
    }

    .legal-page {
        padding: 128px 0 64px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .showcase-text h2 {
        font-size: 2rem;
    }

    .owner-story-evolution-section {
        padding-top: 6.25rem;
        padding-bottom: 3rem;
    }

    .partner-hero {
        padding-top: 7rem;
        padding-bottom: 4rem;
    }

    .partner-hero-panel h2,
    .partner-cta-card h2 {
        font-size: 2rem;
    }

    .partner-cta-card {
        padding: 2rem 1.5rem;
    }

    .partner-process-step {
        grid-template-columns: 2.7rem minmax(0, 1fr);
        text-align: left;
    }

    .partner-process-step span {
        width: 2.7rem;
        height: 2.7rem;
    }

    .owner-story-evolution-section::before,
    .owner-story-evolution-section::after {
        opacity: 0.16;
    }

    .owner-story-evolution-section::before {
        width: 6.75rem;
        height: 6.75rem;
        top: 4.25rem;
    }

    .owner-story-evolution-section::after {
        width: 8rem;
        height: 8rem;
        bottom: 0.5rem;
    }

    .owner-story-evolution-copy h1 {
        font-size: 2.3rem;
    }

    .owner-story-evolution-lead {
        font-size: 1rem;
    }

    .owner-story-evolution-point {
        padding: 1rem 1rem 1.05rem;
    }

    .owner-story-vertical-image {
        min-height: 14rem;
    }

    .owner-story-vertical-card-copy h2 {
        font-size: 1.1rem;
    }

    /* Hero */
    .hero-owner-stories-home .hero-content {
        padding-top: 5rem;
        padding-bottom: 3rem;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        text-align: center;
    }

    .hero-image img {
        max-width: 100%;
    }

    /* Features */
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .owner-story-gallery-shell {
        margin-top: 1.5rem;
    }

    .owner-story-gallery-art {
        min-height: 460px;
        padding: 1.25rem;
    }

    .owner-story-gallery-overlay {
        margin-left: 0;
    }

    .owner-story-kicker {
        top: 1rem;
        right: 1rem;
        padding: 0.45rem 0.8rem;
        font-size: 0.72rem;
    }

    .owner-story-gallery-overlay h1,
    .owner-story-gallery-overlay h2 {
        font-size: 1.9rem;
    }

    .owner-story-gallery-cta {
        position: static;
        margin-top: 1.25rem;
    }

    .owner-story-gallery-arrow {
        width: 2.5rem;
        height: 2.5rem;
    }

    .owner-story-gallery-dots {
        bottom: 0.85rem;
    }

    .owner-stories-copy-layout {
        flex-direction: column;
        padding: 0 1.5rem;
    }

    .owner-stories-copy-intro,
    .owner-stories-copy-body {
        flex: none;
        width: 100%;
    }

    .owner-stories-copy-body {
        font-size: 0.94rem;
    }

    .owner-stories-copy-body .hero-buttons {
        justify-content: center;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: none;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .partner-hero-panel h2,
    .partner-cta-card h2 {
        font-size: 1.7rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

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