/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #14171A;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #0C53A6 0%, #0b4b95 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 30px rgba(12, 83, 166, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0a4691 0%, #094085 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(12, 83, 166, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #0C53A6;
    border: 2px solid #0C53A6;
}

.btn-secondary:hover {
    background: #0C53A6;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(12, 83, 166, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #14171A;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #0C53A6;
}

/* Navigation Download Button */
.nav-link.btn-primary {
    background: rgba(12, 83, 166, 0.1);
    color: #0C53A6;
    border: 1.5px solid #0C53A6;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: none;
}

.nav-link.btn-primary:hover {
    background: #0C53A6;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(12, 83, 166, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #0C53A6;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #0C53A6 0%, #0b4b95 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.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 20"><defs><radialGradient id="a" cx="50" cy="50" r="50"><stop offset="0" stop-color="rgba(255,255,255,.1)"/><stop offset="1" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><rect width="100" height="20" fill="url(%23a)"/></svg>') repeat;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-highlight {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.highlight {
    color: #0C53A6;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0C53A6, #FC698C);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-audience {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.audience-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.audience-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.audience-card h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.audience-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.audience-link {
    color: #FEF3C7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.audience-link:hover {
    color: white;
}

.hero-image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    position: relative;
}

.hero-illustration-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.app-preview {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.app-screenshot {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(12, 83, 166, 0.3);
    transition: all 0.3s ease;
}

.app-screenshot:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(12, 83, 166, 0.4);
}

.main-screenshot {
    width: 280px;
    z-index: 2;
}

.secondary-screenshot {
    width: 240px;
    z-index: 1;
    transform: translateY(30px);
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: #14171A;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* For Customers Section */
.for-customers {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.for-customers::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 1000 1000"><polygon fill="rgba(12,83,166,0.03)" points="0,1000 1000,200 1000,1000"/></svg>');
    pointer-events: none;
}

.customer-benefits {
    margin-bottom: 4rem;
}

.benefit-main {
    margin-bottom: 3rem;
}

.benefit-main h3 {
    text-align: center;
    color: #14171A;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(12, 83, 166, 0.05) 0%, rgba(11, 75, 149, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(12, 83, 166, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0C53A6 0%, #0b4b95 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(12, 83, 166, 0.3);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h4 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.legal-areas {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 32px;
    margin-bottom: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.legal-areas h3 {
    text-align: center;
    color: #14171A;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(12, 83, 166, 0.03) 0%, rgba(11, 75, 149, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(12, 83, 166, 0.15);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0C53A6 0%, #0b4b95 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(12, 83, 166, 0.4);
}

.process-step h4 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.process-step p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.area-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 83, 166, 0.1);
}

.area-item i {
    color: #0C53A6;
    font-size: 1.2rem;
}

.area-item span {
    color: #14171A;
    font-weight: 500;
}

.customer-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 16px;
}

.customer-cta h3 {
    color: #14171A;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.customer-cta p {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(12, 83, 166, 0.3);
}

.btn-large:hover {
    box-shadow: 0 15px 40px rgba(12, 83, 166, 0.4);
}

/* For Lawyers Section */
.for-lawyers {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.lawyer-benefits {
    margin-bottom: 4rem;
}

.lawyer-features {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    margin-top: 3rem;
}

.lawyer-features h3 {
    text-align: center;
    color: #14171A;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.feature-item i {
    color: #0C53A6;
    font-size: 1.2rem;
}

.feature-item span {
    color: #14171A;
    font-weight: 500;
}

.lawyer-stats {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    text-align: center;
}

.lawyer-stats h3 {
    color: #14171A;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0C53A6;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.lawyer-cta {
    text-align: center;
    background: linear-gradient(135deg, #0C53A6, #0b4b95);
    padding: 3rem;
    border-radius: 16px;
    color: white;
}

.lawyer-cta h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.lawyer-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.lawyer-cta .btn {
    background: white;
    color: #0C53A6;
}

.lawyer-cta .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* App Showcase Section */
.app-showcase {
    padding: 80px 0;
    background: white;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.showcase-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-feature.reverse {
    direction: rtl;
}

.showcase-feature.reverse > * {
    direction: ltr;
}

.feature-content h3 {
    color: #14171A;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-content p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: #14171A;
    font-weight: 500;
}

.feature-list i {
    color: #0C53A6;
    font-size: 1rem;
}

.feature-image {
    text-align: center;
}

.showcase-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(12, 83, 166, 0.2);
    transition: all 0.3s ease;
}

.showcase-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(12, 83, 166, 0.3);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #0C53A6 0%, #0b4b95 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.how-it-works .section-title {
    color: white;
}

.how-it-works .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.how-it-works::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 1000 1000"><circle fill="rgba(255,255,255,0.05)" cx="200" cy="200" r="100"/><circle fill="rgba(255,255,255,0.03)" cx="800" cy="300" r="150"/><circle fill="rgba(255,255,255,0.04)" cx="600" cy="700" r="120"/></svg>');
    animation: float 30s ease-in-out infinite;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.step-number i {
    font-size: 2rem;
}

.step-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.step-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Lawyers Section */
.lawyers {
    padding: 80px 0;
    background: white;
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.specialization-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(12, 83, 166, 0.1);
}

.specialization-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(12, 83, 166, 0.15);
}

.specialization-card i {
    font-size: 3rem;
    color: #0C53A6;
    margin-bottom: 1rem;
}

.specialization-card h3 {
    color: #14171A;
    margin-bottom: 1rem;
}

.specialization-card p {
    color: #6c757d;
    font-size: 0.95rem;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: linear-gradient(135deg, #0C53A6, #0b4b95);
    color: white;
    text-align: center;
}

.download-title {
    color: white;
    margin-bottom: 1rem;
}

.download-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.download-unified {
    text-align: center;
    margin-bottom: 4rem;
}

.download-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.feature-item i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.feature-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    width: 180px;
    height: 54px;
    background: #000;
}

.download-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.download-btn img {
    height: 90%;
    width: 90%;
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
    object-fit: contain;
}

.download-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.download-stat {
    text-align: center;
}

.download-stat .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.download-stat .stat-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #14171A;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #C3C3C3;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #0C53A6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #0b4b95;
    transform: translateY(-2px);
}

.footer-title {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #C3C3C3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0C53A6;
}

.footer-links i {
    margin-right: 0.5rem;
    color: #0C53A6;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    padding-bottom: 1rem;
    text-align: center;
    color: #C3C3C3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }
    
    .lawyer-hero {
        padding: 120px 0 80px;
        min-height: auto;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-link.btn-primary {
        margin-top: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-illustration-img {
        max-width: 320px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-audience {
        grid-template-columns: 1fr;
    }

    .hero-illustration-img {
        max-width: 400px;
    }

    .app-preview {
        flex-direction: column;
        gap: 1rem;
    }

    .main-screenshot,
    .secondary-screenshot {
        width: 220px;
        transform: translateY(0);
    }

    .showcase-feature,
    .showcase-feature.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .feature-content h3 {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .benefits-grid,
    .areas-grid,
    .process-steps,
    .features-list,
    .stats-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .download-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-features {
        gap: 2rem;
    }
    
    .feature-item {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-audience {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .audience-card {
        padding: 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .for-customers,
    .for-lawyers,
    .how-it-works,
    .app-showcase {
        padding: 60px 0;
    }

    .showcase-content {
        gap: 3rem;
    }

    .legal-areas,
    .lawyer-features,
    .lawyer-stats,
    .customer-cta,
    .lawyer-cta {
        padding: 2rem;
    }

    .download {
        padding: 60px 0;
    }

    .footer {
        padding: 40px 0 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Lawyer Page Styles */
.lawyer-hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #0C53A6 0%, #0b4b95 100%);
    color: white;
    text-align: center;
}

.lawyer-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lawyer-hero .hero-highlight {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lawyer-hero .hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
    color: white;
}

.hero-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.hero-stats .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.lawyer-benefits-detailed {
    padding: 100px 0;
    background: #f8fafc;
}

.benefits-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card-detailed {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(12, 83, 166, 0.15);
}

.benefit-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0C53A6 0%, #0b4b95 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(12, 83, 166, 0.3);
}

.benefit-icon-large i {
    font-size: 2rem;
    color: white;
}

.benefit-card-detailed h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.benefit-card-detailed p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.benefit-features li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0C53A6;
    font-weight: bold;
}

.how-it-works-lawyers {
    padding: 100px 0;
    background: white;
}

.process-timeline {
    margin-top: 3rem;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0C53A6 0%, #0b4b95 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(12, 83, 166, 0.3);
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
}

.lawyer-interest-form {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.form-header p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1.1rem;
}

.interest-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0C53A6;
    box-shadow: 0 0 0 3px rgba(12, 83, 166, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.submit-btn {
    margin-top: 1rem;
    align-self: center;
}

.lawyer-faq {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #0C53A6;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

.lawyer-cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #0C53A6 0%, #0b4b95 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Mobile Responsive for Lawyer Page */
@media (max-width: 768px) {
    .lawyer-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .timeline-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Specialization Checkbox Styles */
.specialization-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.checkbox-option:hover {
    background-color: #f8fafc;
    border-color: #0C53A6;
}

.checkbox-option input[type="checkbox"] {
    margin: 0;
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
    accent-color: #0C53A6;
}

.checkbox-option input[type="checkbox"]:checked + .checkmark {
    display: none;
}

.checkbox-option:has(input[type="checkbox"]:checked) {
    background-color: rgba(12, 83, 166, 0.1);
    border-color: #0C53A6;
    font-weight: 500;
}

@media (max-width: 768px) {
    .specialization-group {
        grid-template-columns: 1fr;
    }
}

/* Other Specialization Field */
.other-specialization-field {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    animation: slideDown 0.3s ease-out;
}

.other-specialization-field label {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.other-specialization-field input {
    width: 100%;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.95rem;
}

.other-specialization-field input:focus {
    border-color: #0C53A6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(12, 83, 166, 0.1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}