/* Lawfirm Page Styles */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

/* Hero Section */
.lawfirm-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lawfirm-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.lawfirm-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.lawfirm-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lawfirm-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.lawfirm-hero .hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 30px 0;
    line-height: 1.8;
}

.hero-buttons {
    margin-top: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Benefits section */
.lawfirm-benefits {
    padding: 90px 0;
    background: rgba(0, 0, 0, 0.25);
}

.benefits-card {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 22px;
    padding: 46px 40px;
    border: 2px solid rgba(0, 212, 255, 0.18);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.benefits-title {
    margin: 0 0 14px;
    font-size: 2.6rem;
    font-weight: 900;
    text-align: center;
    color: white;
    letter-spacing: -0.2px;
}

.benefits-subtitle {
    margin: 0 auto 30px;
    max-width: 900px;
    text-align: center;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    font-size: 1.05rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 10px;
}

.benefit-item {
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 26px 24px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.benefit-item:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.35);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.10);
}

.benefit-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.10);
    border: 1px solid rgba(0, 212, 255, 0.25);
    color: #00d4ff;
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.benefit-item h3 {
    color: white;
    font-size: 1.25rem;
    margin: 0 0 10px;
}

.benefit-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
}

.benefits-cta {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.benefits-cta-text {
    width: 100%;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    text-align: center;
}

.benefits-cta-text strong {
    color: #00d4ff;
}

.benefits-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* Why / Stats / Services (law_basic-style landing) */
.lawfirm-why {
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 34px 28px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.45);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.12);
}

.why-emoji {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(0, 212, 255, 0.10);
    border: 1px solid rgba(0, 212, 255, 0.25);
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.why-card h3 {
    color: white;
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
}

.lawfirm-stats {
    padding: 40px 0 100px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 22px 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
}

.stat-number {
    color: #00d4ff;
    font-weight: 900;
    font-size: 1.9rem;
    line-height: 1.1;
}

.stat-label {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.lawfirm-services {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.25);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 34px 28px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.45);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.12);
}

.service-emoji {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(0, 212, 255, 0.10);
    border: 1px solid rgba(0, 212, 255, 0.25);
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.service-card h3 {
    color: white;
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
}

/* Expand Section */
.lawfirm-expand {
    padding: 90px 0;
    background: transparent;
}

.expand-card {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 34px;
    border: 1px solid rgba(0, 212, 255, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.expand-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.expand-item {
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 22px 22px;
}

.expand-title {
    color: white;
    font-weight: 900;
    font-size: 1.1rem;
    margin: 0 0 12px;
}

.expand-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.expand-list li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    position: relative;
    padding-left: 22px;
}

.expand-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: 900;
}

.expand-list li:last-child {
    border-bottom: none;
}

.expand-footnote {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
    text-align: center;
}

.expand-footnote strong {
    color: #00d4ff;
}

/* Price Section */
.lawfirm-price {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
}

/* Maintenance / Add-ons Sections (separated from price) */
.lawfirm-maintenance {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.25);
}

.lawfirm-addons {
    padding: 100px 0;
    background: transparent;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 980px;
    margin: 0 auto;
}

.price-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.price-card.featured {
    border-color: rgba(0, 212, 255, 0.6);
    background: rgba(0, 212, 255, 0.1);
}

.price-card.premium .price-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
    color: #111;
}

.price-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin: 20px 0;
}

.price-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-top: 30px;
    flex: 1;
}

.price-features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 25px;
}

.price-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
}

.btn-demo {
    padding: 12px 22px;
    font-size: 1rem;
}

.btn-demo-outline {
    background: transparent;
    border: 2px solid rgba(0, 212, 255, 0.45);
    color: #00d4ff;
}

/* Basic preview modal */
.rm-modal {
    display: none;
    position: fixed;
    inset: 0;
    padding: 18px;
    z-index: 9999;
}

.rm-modal:target {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rm-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.68);
}

.rm-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 560px;
    background: rgba(12, 14, 22, 0.96);
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 18px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
    padding: 18px 18px 16px;
}

.rm-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.rm-modal__header h3 {
    margin: 0;
    color: white;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: -0.2px;
}

.rm-modal__close {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.78);
    font-size: 28px;
    line-height: 1;
    padding: 4px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.rm-modal__close:hover {
    border-color: rgba(0, 212, 255, 0.35);
}

.rm-modal__sub {
    margin: 10px 0 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.rm-modal__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.rm-modal__option {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    text-decoration: none;
    font-weight: 900;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.rm-modal__option:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 212, 255, 0.45);
    box-shadow: 0 10px 26px rgba(0, 212, 255, 0.10);
}

/* Maintenance */
.maintenance {
    max-width: 980px;
    margin: 0 auto;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.maintenance-title {
    margin: 0 0 8px;
    color: white;
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
}

.maintenance-subtitle {
    margin: 0 auto 18px;
    max-width: 820px;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    line-height: 1.7;
}

.maintenance-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 28px 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 980px;
    margin: 0 auto;
}

.maintenance-card.featured {
    border-color: rgba(0, 212, 255, 0.35);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.10);
}

.maintenance-plan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.4px;
    margin-bottom: 12px;
}

.maintenance-card.featured .maintenance-plan {
    background: rgba(0, 212, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.28);
    color: #00d4ff;
}

.maintenance-price {
    font-size: 2rem;
    font-weight: 900;
    color: #00d4ff;
    margin-bottom: 14px;
}

.maintenance-features {
    list-style: none;
    margin: 0 auto 14px;
    padding: 0;
    max-width: 520px;
    text-align: left;
}

.maintenance-features li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    position: relative;
    padding-left: 22px;
}

.maintenance-features li:before {
    content: \"✓\";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: 900;
}

.maintenance-features li:last-child {
    border-bottom: none;
}

.maintenance-note {
    margin-top: auto;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.maintenance-note strong {
    color: #00d4ff;
}

/* Paid add-ons */
.paid-addons {
    max-width: 980px;
    margin: 0 auto;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.paid-addons-title {
    margin: 0 0 8px;
    color: white;
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
}

.paid-addons-subtitle {
    margin: 0 auto 18px;
    max-width: 820px;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    line-height: 1.7;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 980px;
    margin: 0 auto;
}

.addon-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 28px 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.addon-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.35);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.10);
}

.addon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.28);
    color: #00d4ff;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.4px;
    margin-bottom: 12px;
}

.addon-card h4 {
    margin: 0 0 10px;
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
}

.addon-desc {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.addon-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.addon-features li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    position: relative;
    padding-left: 22px;
}

.addon-features li:before {
    content: \"✓\";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: 900;
}

.addon-features li:last-child {
    border-bottom: none;
}

.addon-actions {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.btn-addon {
    padding: 12px 18px;
    font-size: 1rem;
    width: 100%;
    max-width: 260px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Add-on detail pages */
.addon-detail {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.25);
}

.addon-detail .detail-card {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 44px 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.addon-detail h1 {
    margin: 0 0 14px;
    color: white;
    font-size: 2.3rem;
    font-weight: 900;
}

.addon-detail .detail-lead {
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.detail-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 26px 0 38px;
}

.detail-step {
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 18px 18px;
}

.detail-step .step-title {
    color: white;
    font-weight: 800;
    margin: 0 0 8px;
}

.detail-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 0.98rem;
}

.detail-video {
    margin-top: 34px;
}

.detail-video .video-card {
    border-radius: 18px;
    border: 1px solid rgba(0, 212, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
    padding: 12px;
}

.detail-video .video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 14px;
    overflow: hidden;
}

.detail-video .video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.detail-back {
    margin-top: 34px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.detail-back .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    text-align: center;
}

/* AI Features Section */
.lawfirm-ai {
    padding: 100px 0;
}

.ai-process {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 60px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ai-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.ai-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.ai-step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.ai-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.ai-arrow {
    font-size: 2rem;
    color: #00d4ff;
    font-weight: bold;
}

.ai-example {
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ai-example h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.example-card {
    display: flex;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    align-items: flex-start;
    transition: all 0.3s ease;
}

.example-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.example-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.example-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.example-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* CTA Section */
.lawfirm-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .lawfirm-hero {
        padding: 100px 0 60px;
    }
    
    .lawfirm-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .lawfirm-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .lawfirm-hero .hero-description {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }

    .lawfirm-benefits {
        padding: 70px 0;
    }

    .benefits-card {
        padding: 30px 18px;
        border-radius: 18px;
    }

    .benefits-title {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-cta-actions {
        width: 100%;
        justify-content: center;
    }

    .why-grid,
    .services-grid,
    .expand-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .price-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card {
        padding: 30px 20px;
    }

    .expand-card {
        padding: 30px 18px;
    }

    .maintenance-card {
        padding: 24px 18px;
    }

    .maintenance-grid {
        grid-template-columns: 1fr;
    }

    .addons-grid {
        grid-template-columns: 1fr;
    }

    .addon-actions {
        justify-content: center;
    }

    .detail-steps {
        grid-template-columns: 1fr;
    }

    .addon-detail .detail-card {
        padding: 32px 18px;
    }

    .detail-back {
        flex-direction: column;
        align-items: center;
    }

    .detail-back .btn {
        width: 100%;
        max-width: 100%;
    }

    .rm-modal__grid {
        grid-template-columns: 1fr;
    }
    
    .ai-process {
        flex-direction: column;
    }
    
    .ai-arrow {
        transform: rotate(90deg);
    }
    
    .example-grid {
        grid-template-columns: 1fr;
    }
    
    .example-card {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .example-icon {
        font-size: 3rem;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

