/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #C3A780;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(195, 167, 128, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(195, 167, 128, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 40px;
    color: #0a0a0a;
    letter-spacing: -0.03em;
}

.brand-name {
    display: inline-block;
    vertical-align: middle;
}

.brand-logo {
    height: 80px;
    width: auto;
    margin-left: 12px;
    vertical-align: middle;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo:hover {
    transform: scale(1.05);
}

.hero-description {
    font-size: 1.4rem;
    color: #4a4a4a;
    margin-bottom: 56px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary, .btn-secondary {
    padding: 20px 40px;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.btn-primary {
    background: #C3A780;
    color: white;
    box-shadow: 0 8px 32px rgba(195, 167, 128, 0.3);
}

.btn-primary:hover {
    background: #b0986a;
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(195, 167, 128, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: rgba(26, 26, 26, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* App Downloads */
.app-downloads {
    margin-top: 48px;
}

.download-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: transparent;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 160px;
    height: 60px;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ios-btn {
    background: transparent;
}

.android-btn {
    background: transparent;
}

.download-icon {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.download-btn:hover .download-icon {
    transform: scale(1.05);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 100%;
    max-width: 300px;
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.phone-frame {
    background: #1a1a1a;
    border-radius: 40px;
    padding: 8px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.phone-screen {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
    position: relative;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 32px;
}

.card-header {
    background: rgba(248, 249, 250, 0.8);
    padding: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-dots {
    display: flex;
    gap: 12px;
}

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.card-dots span:first-child {
    background: #ff5f57;
}

.card-dots span:nth-child(2) {
    background: #ffbd2e;
}

.card-dots span:last-child {
    background: #28ca42;
}

.card-content {
    padding: 40px;
}

.demo-section h3 {
    color: #1a1a1a;
    margin-bottom: 24px;
    font-size: 1.6rem;
    font-weight: 700;
}

.demo-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat {
    text-align: center;
    padding: 24px;
    background: rgba(248, 249, 250, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #C3A780;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: #4a4a4a;
    font-weight: 500;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.3rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #fafbfc;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.4rem;
    color: #0a0a0a;
    margin-bottom: 32px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.about-text p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item .stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #C3A780;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 1.1rem;
    color: #4a4a4a;
    font-weight: 600;
}

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

.image-placeholder {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, #C3A780 0%, #b0986a 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 32px 64px rgba(195, 167, 128, 0.2);
}

.placeholder-content {
    text-align: center;
}

.placeholder-icon {
    font-size: 5rem;
    margin-bottom: 24px;
}

.placeholder-icon i {
    color: white;
}

.placeholder-content p {
    font-size: 1.8rem;
    font-weight: 700;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #C3A780;
    min-width: 300px;
    max-width: 400px;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 12px;
}

.notification-success {
    border-left-color: #28a745;
}

.notification-error {
    border-left-color: #dc3545;
}

.notification-content i {
    font-size: 1.2rem;
}

.notification-success .notification-content i {
    color: #28a745;
}

.notification-error .notification-content i {
    color: #dc3545;
}

.notification-content span {
    font-weight: 500;
    color: #333;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: #ffffff;
}

.feature-category {
    margin-bottom: 80px;
}

.category-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-icon {
    font-size: 3rem;
    color: #C3A780;
    margin-bottom: 24px;
}

.category-header h3 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.category-header p {
    font-size: 1.2rem;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto;
}

.feature-subcategory {
    margin-bottom: 60px;
}

.feature-subcategory h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-subcategory h4 i {
    color: #C3A780;
    font-size: 1.4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 32px 24px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
    border-color: rgba(195, 167, 128, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #C3A780;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: #b0986a;
}

.feature-card h3,
.feature-card h5 {
    font-size: 1.4rem;
    color: #0a0a0a;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: #4a4a4a;
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 400;
}

/* New Card-Based Features Layout */
.feature-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #C3A780 0%, #B8956A 100%);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 96px rgba(0, 0, 0, 0.12);
}

.lawyer-category::before {
    background: linear-gradient(90deg, #C3A780 0%, #B8956A 100%);
}

.user-category::before {
    background: linear-gradient(90deg, #C3A780 0%, #B8956A 100%);
}

.category-card .category-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0;
    background: none;
    border: none;
}

.category-card .category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    font-size: 0;
}

.lawyer-category .category-icon {
    background: linear-gradient(135deg, #C3A780 0%, #B8956A 100%);
}

.user-category .category-icon {
    background: linear-gradient(135deg, #C3A780 0%, #B8956A 100%);
}

.category-card .category-icon i {
    font-size: 32px;
    color: white;
}

.category-card .category-header h3 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.category-card .category-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.category-card .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.category-card .feature-card {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: left;
    backdrop-filter: none;
}

.category-card .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C3A780 0%, #B8956A 100%);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-category .feature-card::before {
    background: linear-gradient(90deg, #C3A780 0%, #B8956A 100%);
}

.category-card .feature-card:hover::before {
    transform: scaleX(1);
}

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

.category-card .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    font-size: 0;
}

.lawyer-category .feature-icon {
    background: linear-gradient(135deg, #C3A780 0%, #B8956A 100%);
}

.user-category .feature-icon {
    background: linear-gradient(135deg, #C3A780 0%, #B8956A 100%);
}

.category-card .feature-icon i {
    font-size: 20px;
    color: white;
}

.category-card .feature-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.category-card .feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* App Download Section */
.app-section {
    padding: 120px 0;
    background: #ffffff;
}

.app-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.app-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.app-text p {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-bottom: 40px;
    line-height: 1.6;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(248, 249, 250, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.app-feature .feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #C3A780 0%, #B8956A 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(195, 167, 128, 0.3);
}

.app-feature .feature-icon i {
    color: white;
    font-size: 18px;
}

.app-feature span:last-child {
    font-weight: 500;
    color: #4a4a4a;
}

.download-buttons-large {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download-btn-large {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    background: transparent;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
    height: 80px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.download-btn-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.ios-btn-large {
    background: transparent;
}

.android-btn-large {
    background: transparent;
}

.download-icon-large {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.download-btn-large:hover .download-icon-large {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #fafbfc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.contact-info h3 {
    font-size: 2.4rem;
    color: #0a0a0a;
    margin-bottom: 32px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.contact-info p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 48px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #C3A780 0%, #B8956A 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    box-shadow: 0 4px 12px rgba(195, 167, 128, 0.3);
}

.contact-icon i {
    color: white;
    font-size: 18px;
}

.contact-item span:last-child {
    color: #4a4a4a;
    line-height: 1.6;
    font-weight: 500;
}

.contact-form {
    background: rgba(255, 255, 255, 0.8);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px);
}

.form-group {
    margin-bottom: 32px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C3A780;
    box-shadow: 0 0 0 3px rgba(195, 167, 128, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-logo .logo {
    margin-bottom: 24px;
}

.footer-logo .logo-img {
    height: 36px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.footer-logo p {
    color: #a0a0a0;
    line-height: 1.7;
    font-size: 1.1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-column a {
    display: block;
    color: #a0a0a0;
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.footer-column a:hover {
    color: #C3A780;
}

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

.footer-bottom p {
    color: #a0a0a0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .app-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .download-buttons-large {
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-visual {
    animation: fadeInUp 0.8s ease-out;
}

.hero-visual {
    animation-delay: 0.2s;
}
