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

:root {
    --primary-purple: #7936E9;
    --primary-purple-dark: #6a2dd1;
    --primary-purple-light: #e8d5f9;
    --text-dark: #2c3e50;
    --text-gray: #5a6c7d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --green: #27ae60;
    --red: #e74c3c;
    --orange: #f39c12;
    --yellow: #f1c40f;
    --blue: #3498db;
    --font-display: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --section-space-desktop: clamp(5.5rem, 7vw, 7rem);
    --section-space-tablet: clamp(4.5rem, 6vw, 5.5rem);
    --section-space-mobile: clamp(3.5rem, 8vw, 4.5rem);
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

[lang="he"] body,
[dir="rtl"] body {
    font-family: var(--font-body);
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .header-content:not(.site-header__content) {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-content {
    direction: rtl;
}

[dir="rtl"] .hero-buttons {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-benefits {
    flex-direction: row-reverse;
}

[dir="rtl"] .problem-grid,
[dir="rtl"] .features-grid,
[dir="rtl"] .benefits-grid {
    direction: rtl;
}

[dir="rtl"] .solution-comparison {
    direction: rtl;
}

[dir="rtl"] .comparison-left {
    order: 2;
}

[dir="rtl"] .comparison-right {
    order: 1;
}

[dir="rtl"] .client-portal-grid {
    direction: rtl;
}

[dir="rtl"] .client-portal-text {
    order: 2;
}

[dir="rtl"] .client-portal-image {
    order: 1;
}

[dir="rtl"] .infrastructure-grid {
    direction: rtl;
}

[dir="rtl"] .infrastructure-text {
    order: 2;
}

[dir="rtl"] .infrastructure-image {
    order: 1;
}

[dir="rtl"] .portal-feature-block {
    direction: rtl;
}

[dir="rtl"] .portal-feature-block-reverse {
    direction: ltr;
}

[dir="rtl"] .portal-feature-image {
    order: 2;
}

[dir="rtl"] .portal-feature-content {
    order: 1;
}

[dir="rtl"] .footer-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-bottom {
    flex-direction: row-reverse;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    z-index: 10;
    background: var(--white);
    border-radius: 8px;
    padding: 0.25rem;
    margin-left: 1rem;
}

[dir="rtl"] .language-switcher {
    margin-left: 0;
    margin-right: 1rem;
}

.language-switcher select {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--white);
    cursor: pointer;
    outline: none;
    min-width: 100px;
}

.language-switcher select:hover {
    border-color: var(--primary-purple);
}

.language-switcher select:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(121, 54, 233, 0.1);
}

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

/* Header / mobile menu / footer shell live in site-shell.css — do not redeclare here */

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

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

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

.nav a.nav-active {
    color: var(--primary-purple);
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sign-in {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
}

/* Mobile menu owned by site-shell.css */

body.menu-open,
body.nav-open {
    overflow: hidden;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-purple);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(155, 89, 182, 0.3);
}

.btn-outline,
.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-outline:hover,
.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--white);
}

.btn-text {
    background: transparent;
    color: var(--primary-purple);
    border: none;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
    text-decoration: none;
}

.btn-text:hover {
    text-decoration: underline;
}

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

a.btn {
    text-decoration: none;
    box-sizing: border-box;
}

.btn-ghost {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid #dde3ec;
    padding: 0.6rem 1.1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.btn-ghost:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.btn-cta-trial {
    background: var(--primary-purple);
    box-shadow: 0 4px 16px rgba(121, 54, 233, 0.25);
}

.btn-cta-trial:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(121, 54, 233, 0.35);
}

.header-premium {
    transition: padding 0.35s ease, box-shadow 0.35s ease;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.92);
}

.header-premium.is-scrolled {
    padding: 0.55rem 0;
    box-shadow: 0 4px 24px rgba(12, 18, 34, 0.08);
}

.header-premium .header-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

/* Contact page */
.contact-page-section {
    padding: 2.5rem 0 3rem;
    background: var(--bg-light);
}

.contact-page-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.contact-page-title {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.contact-page-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.65;
}

.contact-form-wrap {
    max-width: 520px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem 2.25rem;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(44, 62, 80, 0.08);
}

.contact-form .form-field {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.contact-form fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

.contact-form fieldset legend {
    display: block;
    font-weight: 600;
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.contact-form input:not([type="checkbox"]):not([type="radio"]),
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.contact-form input:not([type="checkbox"]):not([type="radio"]):focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(121, 54, 233, 0.12);
}

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

/* Never use left:-9999px — expands RTL scrollWidth and can park the page off-screen */
.contact-honeypot {
    position: absolute !important;
    top: 0;
    inset-inline-start: 0;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    white-space: nowrap !important;
    opacity: 0;
    pointer-events: none;
}

.contact-form-wrap,
.contact-form {
    position: relative;
}

.is-hidden {
    display: none !important;
}

.contact-submit {
    width: 100%;
    margin-top: 0.5rem;
    justify-content: center;
}

.contact-success {
    display: none;
    padding: 2rem 1.5rem;
    background: var(--primary-purple-light);
    border-radius: 12px;
    color: var(--text-dark);
    text-align: center;
}

.contact-success.visible {
    display: block;
}

.contact-success-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.contact-success-body {
    white-space: pre-line;
    margin: 0;
    line-height: 1.6;
}

.contact-form-error {
    color: var(--red);
    font-size: 0.9rem;
    margin: -0.25rem 0 0.75rem;
    display: none;
}

.contact-form-error.visible {
    display: block;
}

[dir="rtl"] .contact-page-intro,
[dir="rtl"] .contact-success {
    text-align: center;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-purple {
    background: var(--primary-purple-light);
    color: var(--primary-purple-dark);
}

.badge-pink {
    background: #ffeef5;
    color: #c0392b;
}

.badge-orange {
    background: #fff4e6;
    color: #e67e22;
}

.badge-green {
    background: #d5f4e6;
    color: #27ae60;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-green::before {
    content: "💡";
    font-size: 1rem;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: var(--white);
}

.hero-features {
    padding: 3rem 0 5rem;
}

.hero-features-page {
    padding: 4rem 0 3rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content-centered {
    grid-template-columns: 1fr;
    text-align: center;
}

.hero-text {
    max-width: 600px;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 1rem 0;
    color: var(--text-dark);
}

.hero-title-features {
    font-size: 3rem;
    margin: 0 0 1.5rem;
}

.highlight-purple {
    color: #a67ef0;
    font-weight: 800;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-description-centered {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

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

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

.hero-benefits {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.benefit-item i {
    color: var(--primary-purple);
}

/* Dashboard Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
    width: 100%;
    max-width: 600px;
}

.browser-bar {
    background: #f5f5f5;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-url {
    flex: 1;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-gray);
    text-align: center;
}

.dashboard-content {
    padding: 2rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-left: 4px solid var(--primary-purple);
    border-radius: 4px;
}

.case-highlight {
    flex: 1;
}

.dashboard-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.dashboard-header p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.dashboard-header i {
    color: var(--primary-purple);
    font-size: 1.5rem;
}

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

.stat-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
}

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

.list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.list-item i {
    font-size: 1.5rem;
}

.list-item span:first-of-type {
    flex: 1;
    font-weight: 500;
}

.time {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    background: var(--white);
}

.problem-section .badge {
    display: block;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin: 1rem 0 1.5rem;
    color: var(--text-dark);
}

.section-description {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

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

.problem-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.problem-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(0,0,0,0.1);
}

.problem-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.problem-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.testimonial-box {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 50%, #bbdefb 100%);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.testimonial-author {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Solution Section */
.solution-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.solution-section .badge {
    display: block;
    text-align: center;
    margin-bottom: 1.5rem;
}

.solution-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.comparison-left h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.tool-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tool-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tool-item i {
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
}

.tool-item div {
    color: var(--text-gray);
    line-height: 1.7;
}

.lexmanage-box {
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 12px;
    padding: 3rem;
    height: 100%;
}

.lexmanage-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.lexmanage-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.lexmanage-box p {
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.95;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    font-size: 1rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transformation-section {
    margin-top: 4rem;
}

.transformation-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.transformation-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.transformation-card:hover {
    transform: translateY(-4px);
}

.transformation-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.transformation-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.transformation-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--white);
}

.features-section .badge {
    display: block;
    text-align: center;
    margin-bottom: 1.5rem;
}

.features-section-simple {
    padding: 3rem 0 5rem;
}

.features-page-section {
    padding: 3rem 0 5rem;
}

.section-title-features-page {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-description-features-page {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
}

.section-title-features {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description-features {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.features-grid-simple {
    max-width: 900px;
    margin: 0 auto;
    gap: 2.5rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-card-simple {
    text-align: center;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card-icon-simple {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-card-simple h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card > p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-card .feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-card .feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.feature-card .feature-list i {
    font-size: 0.875rem;
}

/* Client Portal Page */
.hero-client-portal {
    padding: 4rem 0 3rem;
}

.hero-title-client-portal {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.text-dark {
    color: var(--text-dark);
}

.text-purple {
    color: var(--primary-purple);
}

.client-portal-content {
    padding: 4rem 0 5rem;
    background: var(--white);
}

.client-portal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.client-portal-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.client-portal-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.client-portal-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-portal-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.laptop-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.laptop-screen {
    background: #2c2c2c;
    border-radius: 12px 12px 0 0;
    padding: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.portal-dashboard {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.portal-header {
    background: var(--white);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.portal-logo-section {
    display: flex;
    flex-direction: column;
}

.portal-logo {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.portal-subtitle {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 400;
}

.portal-header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.portal-btn-primary {
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
}

.portal-btn-icon {
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portal-header-icons {
    display: flex;
    gap: 1rem;
    color: var(--white);
    font-size: 1.1rem;
    background: #2c2c2c;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.portal-content {
    display: flex;
    min-height: 350px;
}

.portal-sidebar {
    width: 70px;
    background: var(--primary-purple);
    padding: 1.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
}

.sidebar-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.8;
}

.sidebar-item.active {
    background: rgba(255,255,255,0.2);
    opacity: 1;
}

.sidebar-item:hover {
    background: rgba(255,255,255,0.15);
    opacity: 1;
}

.portal-main {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--white);
}

.section-heading {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.portal-section {
    margin-bottom: 1rem;
}

.progress-section {
    margin-bottom: 1.5rem;
}

.progress-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-purple);
    border-radius: 5px;
}

.portal-grid-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.portal-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.card-border {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-purple-light);
}

.card-content {
    padding: 1rem 1rem 1rem 1.25rem;
}

.card-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.25rem;
}

.card-title {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.portal-list-section {
    margin-top: 0;
}

.message-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-purple);
    flex-shrink: 0;
}

.message-content {
    flex: 1;
}

.message-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
}

.portal-payment-section {
    margin-top: 0;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 120px;
    padding: 1rem 0;
}

.bar {
    flex: 1;
    background: var(--primary-purple);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
}

.portal-events-section {
    margin-top: 0;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.event-item i {
    color: var(--primary-purple);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.event-content {
    flex: 1;
}

.event-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.event-time {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.laptop-base {
    background: #2c2c2c;
    height: 12px;
    border-radius: 0 0 4px 4px;
    margin-top: -4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.laptop-base::after {
    content: '';
    display: block;
    width: 200px;
    height: 4px;
    background: #1a1a1a;
    margin: 0 auto;
    border-radius: 0 0 2px 2px;
}

.decorative-plant {
    position: absolute;
    left: -40px;
    bottom: 20px;
    z-index: -1;
}

.plant-pot {
    width: 30px;
    height: 25px;
    background: #8b6f47;
    border-radius: 0 0 4px 4px;
    margin: 0 auto;
}

.plant-leaves {
    width: 40px;
    height: 50px;
    background: #4a7c59;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    margin: -5px auto 0;
    position: relative;
}

.plant-leaves::before,
.plant-leaves::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 35px;
    background: #4a7c59;
    border-radius: 50%;
}

.plant-leaves::before {
    left: -15px;
    top: 5px;
}

.plant-leaves::after {
    right: -15px;
    top: 5px;
}

/* Who It's For Page */
.hero-who-its-for {
    padding: 4rem 0 3rem;
}

.hero-title-who-its-for {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

/* Who Benefits Section */
.who-benefits-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.benefit-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.benefit-card-popular {
    border: 2px solid var(--primary-purple);
    box-shadow: 0 4px 12px rgba(121, 54, 233, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-purple);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-card > p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.benefit-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.benefit-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.benefit-features i {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.perfect-for {
    background: var(--primary-purple-light);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.perfect-for strong {
    color: var(--primary-purple);
}

/* Practice Areas Section */
.practice-areas-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.practice-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.practice-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.practice-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.practice-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.practice-card > p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.practice-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.practice-link:hover {
    color: var(--primary-purple-dark);
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: var(--primary-purple);
}

.testimonial-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-title {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-metric {
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 0.95rem;
}

/* Comparison Table Section */
.comparison-section {
    padding: 4rem 0;
    background: var(--white);
}

.comparison-table-wrapper {
    margin-top: 3rem;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.comparison-table thead {
    background: var(--bg-light);
}

.comparison-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid #e0e0e0;
}

.comparison-table th:first-child {
    width: 40%;
}

.comparison-table th:not(:first-child) {
    text-align: center;
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    color: var(--text-gray);
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.comparison-table i {
    font-size: 1.25rem;
}

/* Security Page */
.hero-security {
    padding: 4rem 0 3rem;
}

.hero-title-security {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.security-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
}

.security-certifications {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 1rem;
}

/* Security Features Section */
.security-features-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.security-feature-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.security-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.security-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.security-feature-card > p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.security-feature-list {
    list-style: none;
}

.security-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Compliance Section */
.compliance-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.compliance-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.compliance-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.compliance-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.compliance-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.compliance-card > p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.compliance-features {
    list-style: none;
}

.compliance-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.compliance-features i {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.additional-certs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.cert-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.cert-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cert-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cert-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Infrastructure Section */
.infrastructure-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.section-title-left {
    text-align: left;
    margin-bottom: 1.5rem;
}

.infrastructure-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.infrastructure-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.infra-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.infra-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.infra-feature h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.infra-feature p {
    color: var(--text-gray);
    line-height: 1.7;
}

.infrastructure-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.datacenter-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    object-fit: cover;
}

/* Security Operations Section */
.security-ops-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.security-ops-card {
    background: linear-gradient(135deg, #e8d5f9 0%, #d4b3f3 50%, #ffffff 100%);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.security-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.security-metric-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.metric-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.metric-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Privacy Section */
.privacy-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.privacy-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.privacy-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.privacy-card > p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.privacy-features {
    list-style: none;
}

.privacy-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Breach Notification Section */
.breach-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.breach-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.breach-icon {
    width: 60px;
    height: 60px;
    background: #fff9e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e67e22;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.breach-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.breach-content p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Portal Feature Cards Section */
.portal-features-cards {
    padding: 4rem 0;
    background: var(--white);
}

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

.portal-feature-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.portal-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.portal-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.portal-feature-card > p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.portal-feature-list {
    list-style: none;
}

.portal-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Portal Features Section */
.portal-features-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.portal-feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.portal-feature-block-reverse {
    direction: rtl;
}

.portal-feature-block-reverse > * {
    direction: ltr;
}

.portal-feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.portal-feature-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.portal-feature-content > p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.portal-feature-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.portal-feature-items li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.portal-feature-items strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.portal-feature-items p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Client Benefits Section */
.client-benefits-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.client-benefit-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.client-benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.client-benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.client-benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Portal CTA Section */
.portal-cta-section {
    padding: 5rem 0;
    background: var(--primary-purple);
    color: var(--white);
}

.portal-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.portal-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.portal-cta-content > p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.portal-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--primary-purple);
    border: none;
}

.btn-white:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}

.portal-cta-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
    flex-wrap: wrap;
}

.portal-cta-features span {
    color: var(--white);
}

/* Footer */
.footer {
    background: #293f54;
    color: rgba(255, 255, 255, 0.72);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo .logo-icon {
    background: var(--white);
    color: var(--primary-purple);
}

/* Legacy .footer-site / .footer-grid removed — use .site-footer (site-shell.css) */

/* Responsive Design */

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .problem-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-comparison {
        grid-template-columns: 1fr;
    }
    
    .transformation-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .client-portal-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .decorative-plant {
        display: none;
    }
    
    .portal-features-grid,
    .client-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .portal-feature-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portal-feature-block-reverse {
        direction: ltr;
    }
    
    .portal-cta-buttons {
        flex-direction: column;
    }
    
    .btn-white,
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .practice-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .security-features-grid,
    .privacy-grid {
        grid-template-columns: 1fr;
    }
    
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .additional-certs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .security-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .infrastructure-grid {
        grid-template-columns: 1fr;
    }
    
}

@media (max-width: 768px) {
    .hero-title-security,
    .hero-title-who-its-for,
    .hero-title-client-portal {
        font-size: 2rem;
    }
    
    .portal-cta-content h2 {
        font-size: 2rem;
    }
    
    .portal-cta-content > p {
        font-size: 1rem;
    }
    
    .client-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portal-feature-block h3 {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    
    .practice-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table-wrapper {
        overflow-x: scroll;
    }
    
    .additional-certs {
        grid-template-columns: 1fr;
    }
    
    .security-metrics {
        grid-template-columns: 1fr;
    }
    
    .breach-card {
        flex-direction: column;
    }
    
    .hero-title-security,
    .hero-title-who-its-for,
    .hero-title-client-portal {
        font-size: 2rem;
    }
    
    .portal-cta-content h2 {
        font-size: 2rem;
    }
    
    .portal-cta-content > p {
        font-size: 1rem;
    }
    
    .client-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portal-feature-block h3 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

