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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border: #e5e7eb;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    min-height: 72px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.logo img {
    height: 84px;
    width: auto;
    display: block;
}

nav .logo img, nav a img {
    height: 84px !important;
    width: auto !important;
    display: block !important;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-signin {
    color: var(--primary) !important;
}

/* Buttons */
.btn-primary {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 102, 241, 0.3);
}

.btn-large {
    background: var(--gradient);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 102, 241, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: background 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
}

/* Hero CTA group */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Section */
.hero {
    background: var(--gradient);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.bg-gradient {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

/* Feature Cards */
.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Feature Large */
.feature-large {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--border);
}

.feature-large h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-large h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Agent Cards */
.agent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.agent-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.agent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.agent-card--featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, #f5f4ff 0%, #ffffff 100%);
}

.agent-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.agent-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.agent-role {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

.agent-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.badge--live {
    background: #d1fae5;
    color: #065f46;
}

.badge--soon {
    background: #f3f4f6;
    color: #9ca3af;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Page Hero */
.page-hero {
    background: var(--gradient);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Content Blocks */
.content-block {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.content-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.values-list {
    list-style: none;
    margin-top: 1.5rem;
}

.values-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.values-list li:last-child {
    border-bottom: none;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.field-error {
    display: block;
    font-size: 0.82rem;
    color: #dc2626;
    margin-top: 0.3rem;
    min-height: 1rem;
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #dc2626;
}

.form-error {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #dc2626;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.form-error a {
    color: #dc2626;
    font-weight: 600;
}

.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
    margin-left: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-success {
    text-align: center;
    padding: 2.5rem 2rem;
}

.success-icon {
    width: 56px;
    height: 56px;
    background: #f0efff;
    color: #534AB7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
}

.form-success h3 {
    color: #534AB7;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-detail p,
.contact-detail a {
    color: var(--text-light);
}

.contact-detail a {
    text-decoration: none;
}

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

.contact-detail ul {
    list-style: none;
    margin-top: 0.5rem;
}

.contact-detail li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.contact-detail li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-left .logo {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-left img {
    height: 54px !important;
    width: auto !important;
}

.footer-left p {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #534AB7;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Flip Cards */
.flip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.flip-card {
    height: 250px;
    cursor: pointer;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

@media (hover: hover) and (pointer: fine) {
    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
    }
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.flip-card-front {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    justify-content: flex-start;
    transition: box-shadow 0.2s;
}

@media (hover: hover) and (pointer: fine) {
    .flip-card:hover .flip-card-front {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }
}

.flip-card-front--featured {
    border: 2px solid #534AB7;
    background: linear-gradient(135deg, #f5f4ff 0%, #ffffff 100%);
}

.flip-card-back {
    background: #534AB7;
    color: #ffffff;
    transform: rotateY(180deg);
    justify-content: space-between;
    gap: 1rem;
}

.flip-card-back p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
    flex: 1;
}

.flip-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.flip-agent-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
}

.flip-agent-role {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.15rem;
}

.flip-agent-desc {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Case Studies Preview Section */
.case-studies-section {
    background: #f8f8f8;
}

.cs-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.cs-preview-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cs-preview-card--coral  { border-top-color: #D85A30; }
.cs-preview-card--indigo { border-top-color: #534AB7; }

.cs-preview-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cs-preview-card--coral  .cs-preview-label { color: #D85A30; }
.cs-preview-card--indigo .cs-preview-label { color: #534AB7; }

.cs-preview-headline {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.35;
    margin: 0;
}

.cs-preview-summary {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

.cs-preview-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cs-preview-pill {
    font-size: 0.8rem;
    font-weight: 600;
    background: #f3f4f6;
    color: #374151;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
}

.cs-preview-btn {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid transparent;
    align-self: flex-start;
    transition: background 0.2s, color 0.2s;
    margin-top: auto;
}

.cs-preview-btn--coral {
    color: #D85A30;
    border-color: #D85A30;
}

.cs-preview-btn--coral:hover {
    background: #D85A30;
    color: #ffffff;
}

.cs-preview-btn--indigo {
    color: #534AB7;
    border-color: #534AB7;
}

.cs-preview-btn--indigo:hover {
    background: #534AB7;
    color: #ffffff;
}

/* Contact page internal link */
.contact-internal-link {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid #534AB7;
}

.contact-internal-link a {
    color: #534AB7;
    font-weight: 600;
    text-decoration: none;
}

.contact-internal-link a:hover {
    text-decoration: underline;
}

.flip-cta {
    display: inline-block;
    background: #ffffff;
    color: #534AB7;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.45rem 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
    align-self: flex-start;
    flex-shrink: 0;
}

.flip-cta:hover {
    background: #f0efff;
}

.flip-cta--subtle {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.flip-cta--subtle:hover {
    background: rgba(255, 255, 255, 0.28);
    color: #ffffff;
}

/* Coral Buttons */
.btn-coral-large {
    background: #D85A30;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.btn-coral-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(216, 90, 48, 0.35);
}

.btn-full-width {
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* SVG Icon in feature cards */
.icon-svg {
    margin-bottom: 1rem;
}

/* Stats Bar */
.stats-bar {
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #534AB7;
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Gray section background */
.section-gray {
    background: #f8f8f8;
}

/* Testimonial Section */
.testimonial-section {
    background: #534AB7;
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    max-width: 780px;
    margin: 0 auto 1.5rem;
    opacity: 0.97;
}

.testimonial-attribution {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.testimonial-link {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.8;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}

.testimonial-link:hover {
    opacity: 1;
}

/* Pricing Card */
.pricing-card {
    max-width: 480px;
    margin: 0 auto;
    border: 2px solid #534AB7;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(83, 74, 183, 0.1);
    text-align: center;
}

.pricing-price {
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #534AB7;
    line-height: 1;
}

.pricing-period {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-trial {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.pricing-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1.5rem 0;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.97rem;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #534AB7;
    font-weight: 700;
}

.pricing-fine-print {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Two-tier Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 820px;
    margin: 0 auto;
}

.pricing-card-tier {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    text-align: center;
}

.pricing-card-tier--pro {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(216, 90, 48, 0.12);
}

.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.pricing-tier-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.pricing-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.pricing-grid-fine-print {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.btn-outline-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}

/* Signup Plan Selector */
.signup-plan-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.signup-plan-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.signup-plan-card {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    background: #fff;
    text-align: center;
    transition: border-color 0.15s, background 0.15s;
    user-select: none;
}

.signup-plan-card.selected {
    border-color: #534AB7;
    background: rgba(83, 74, 183, 0.05);
}

.signup-plan-price {
    font-size: 1.125rem;
    font-weight: 800;
    color: #1f2937;
}

.signup-plan-desc {
    font-size: 0.8125rem;
    color: #6b7280;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages */
.page-hero-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.75;
    margin-bottom: 0.75rem;
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 4rem 20px 5rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f3f4f6;
}

.legal-section p,
.legal-section li {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section strong {
    display: block;
    margin-top: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.05rem;
}

/* Footer legal links */
.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.6rem;
}

.footer-legal-links a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.45;
    font-size: 0.82rem;
    transition: opacity 0.2s;
}

.footer-legal-links a:hover {
    opacity: 0.85;
}

/* Next Steps (contact page) */
.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.next-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.next-step-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--gradient);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.next-step p {
    color: var(--text-light);
    margin: 0;
    padding-top: 0.35rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

    .grid-2,
    .grid-3,
    .flip-grid,
    .cs-cards-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .flip-card {
        height: auto;
        min-height: 180px;
    }

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

    /* Mobile nav */
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 0 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        border-bottom: none;
        box-shadow: none;
        gap: 0;
        z-index: 999;
    }

    .nav-links.open {
        max-height: 400px;
        padding: 0.75rem 1.5rem 1.25rem;
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    }

    .nav-links li {
        border-bottom: 1px solid #f3f4f6;
    }

    .nav-links li:last-child {
        border-bottom: none;
        padding-top: 0.5rem;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0;
    }

    .nav-links .btn-primary {
        display: inline-block;
        padding: 0.5rem 1.5rem;
    }

    nav .logo img, nav a img {
        height: 68px !important;
    }

    .logo img {
        height: 68px;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .testimonial-quote {
        font-size: 1.2rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }
}

/* Cookie Consent Banner */
#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.10);
    border-radius: 12px 12px 0 0;
    padding: 0;
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    position: relative;
}

.cookie-banner-inner p {
    flex: 1;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    min-width: 200px;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-accept {
    background: #D85A30;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.cookie-accept:hover {
    background: #c24e27;
}

.cookie-manage {
    color: #6b7280;
    font-size: 0.875rem;
    text-decoration: underline;
    white-space: nowrap;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    transition: border-color 0.2s, color 0.2s;
}

.cookie-manage:hover {
    color: #1f2937;
    border-color: #9ca3af;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    line-height: 1;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    transition: color 0.2s;
}

.cookie-close:hover {
    color: #1f2937;
}

@media (max-width: 600px) {
    .cookie-banner-inner {
        padding: 1rem 1rem 1.25rem;
        padding-right: 2.5rem;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-accept {
        flex: 1;
        text-align: center;
    }
}