* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #3590b8;
    --dark-blue: #2a7a9e;
    --brand-gradient: linear-gradient(135deg, #3590b8 0%, #2a7a9e 100%);
    --light-blue: #e0f2f8;
    --orange: #f97316;
    --green: #10b981;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: "Arial", sans-serif !important;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    height: 30px;
}

.logo-image {
    height: 100%;
    max-height: 30px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.btn-download {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-download:hover {
    background: var(--dark-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: var(--white);
    min-height: auto;
}

.app-store-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.app-store-left {
    min-width: 0;
}

.app-store-right {
    min-width: 0;
}

/* App Header */
.app-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.app-icon-container {
    flex-shrink: 0;
}

.app-icon-box {
    width: 120px;
    height: 120px;
    background: transparent;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    padding: 10px;
}

.app-icon-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.app-info-header {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-name-header {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.app-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.app-stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.app-install-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.app-install-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-meta-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.meta-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

.btn-install {
    background: var(--brand-gradient);
    color: var(--white);
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-install:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-qr {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid #e5e7eb;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: border-color 0.3s;
}

.btn-qr:hover {
    border-color: var(--primary-blue);
}

.qr-icon {
    font-size: 1.25rem;
}

/* App Screenshots Section */
.app-screenshots-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.app-screenshots-section .screenshot-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.app-screenshots-section .screenshot-item:hover {
    transform: translateY(-5px);
}

.app-screenshots-section .screenshot-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--white);
    transition: all 0.3s ease;
}

.app-screenshots-section .screenshot-item:hover .screenshot-image {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
}

/* App Description */
.app-description {
    margin-bottom: 2rem;
    font-family: "Arial", sans-serif !important;
}

.app-description h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: "Arial", sans-serif !important;
}

.app-description p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-family: "Arial", sans-serif !important;
}

.app-description p strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Sidebar */
.app-store-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-section {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.sidebar-section h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.sidebar-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: 600;
}

.sidebar-icon.check {
    background: var(--green);
    color: var(--white);
}

.sidebar-text {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.version-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.version-number {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.version-date {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.version-desc {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.version-link {
    font-size: 0.875rem;
    color: var(--primary-blue);
    text-decoration: none;
    margin-top: 0.5rem;
}

.version-link:hover {
    text-decoration: underline;
}

.developer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.developer-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.developer-source {
    font-size: 0.875rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--light-blue);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.data-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.data-icon {
    font-size: 1.5rem;
}

.data-text {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.data-link {
    font-size: 0.875rem;
    color: var(--primary-blue);
    text-decoration: none;
}

.data-link:hover {
    text-decoration: underline;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.badge {
    display: inline-block;
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.illustration-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.app-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.app-icon {
    font-size: 2rem;
}

.app-label {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.app-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.app-rating {
    font-size: 0.75rem;
    color: var(--orange);
}

/* Phone Mockup */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-screenshots {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    max-width: 100%;
    width: 100%;
}

.screenshot-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-5px);
}

.screenshot-image {
    width: 100%;
    max-width: 140px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--white);
    transition: box-shadow 0.3s ease;
}

.screenshot-item:hover .screenshot-image {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-family: "Arial", sans-serif !important;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: "Arial", sans-serif !important;
}

.about-text > p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-family: "Arial", sans-serif !important;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-icon-minimal {
    width: 48px;
    height: 48px;
    background: var(--brand-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon-minimal {
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image-content {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Registration Section */
.registration-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.registration-image {
    display: flex;
    justify-content: center;
}

.registration-image-content {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.registration-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.registration-text > p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.registration-list {
    list-style: none;
    margin-bottom: 2rem;
}

.registration-list li {
    padding: 0.75rem 0;
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Geography Section */
.geography-section {
    padding: 4rem 0;
    background: var(--white);
    text-align: center;
}

.geography-content {
    max-width: 800px;
    margin: 0 auto;
}

.geography-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.geography-content p {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.geography-content p strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.stats-wrapper {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.stats-header h2 {
    font-size: 2rem;
    font-weight: 700;
}

.stats-tabs {
    display: flex;
    gap: 0.5rem;
}

.tab {
    padding: 0.5rem 1rem;
    border: none;
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.tab.active {
    background: var(--primary-blue);
    color: var(--white);
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.donut-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.chart-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(
        #f97316 0% 47%,
        var(--primary-blue) 47% 81%,
        #10b981 81% 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chart-center {
    width: 140px;
    height: 140px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.chart-label {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.chart-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-color.bill {
    background: var(--orange);
}

.legend-color.payment {
    background: var(--primary-blue);
}

.legend-color.income {
    background: var(--green);
}

.stats-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Easy Sign Up Section */
.easy-signup {
    padding: 4rem 0;
    background: var(--bg-light);
}

.signup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.signup-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.signup-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.btn-learn-more {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-learn-more:hover {
    background: var(--dark-blue);
}

.signup-image {
    display: flex;
    justify-content: center;
}

.illustration-box {
    width: 400px;
    height: 400px;
    background: var(--brand-gradient);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.signup-image .illustration-image,
.simple-image .illustration-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Simple & Affordable Section */
.simple-affordable {
    padding: 4rem 0;
    background: var(--white);
}

.simple-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.simple-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.simple-text p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.feature-icons {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--light-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Analytics Section */
.analytics {
    padding: 4rem 0;
    background: var(--bg-light);
}

.analytics-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.analytics-header h2 {
    font-size: 2rem;
    font-weight: 700;
}

.analytics-dropdown {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.analytics-dropdown select {
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
}

.dropdown-label {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.chart-container {
    margin-bottom: 2rem;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 300px;
    gap: 1rem;
}

.bar {
    flex: 1;
    background: var(--brand-gradient);
    border-radius: 8px 8px 0 0;
    height: var(--height);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
    position: relative;
    transition: transform 0.3s;
}

.bar:hover {
    transform: scaleY(1.1);
}

.bar-value {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
}

.btn-view-details {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-view-details:hover {
    background: var(--dark-blue);
}

/* Mobile Dashboard Section */
.mobile-dashboard {
    padding: 4rem 0;
    background: var(--white);
}

.dashboard-content {
    display: flex;
    justify-content: center;
}

.dashboard-phone {
    width: 300px;
    height: 600px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    padding: 20px;
    transform: perspective(1000px) rotateY(5deg) rotateX(-5deg);
}

.dashboard-screen {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 1.5rem;
}

.dashboard-header {
    margin-bottom: 1.5rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: var(--brand-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.user-name {
    font-weight: 600;
    font-size: 1.125rem;
}

.user-welcome {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.credit-card-display {
    background: var(--brand-gradient);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.card-number {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.card-holder {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.card-logo {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.balance {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.upcoming-payments h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.payment-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    color: var(--white);
}

.payment-card.orange {
    background: var(--orange);
}

.payment-card.green {
    background: var(--green);
}

.payment-icon {
    font-size: 1.5rem;
}

.payment-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.payment-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
}

.payment-amount {
    margin-left: auto;
    font-weight: 700;
    font-size: 1.125rem;
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 1rem 0;
    margin-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.nav-item {
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.nav-item.active {
    opacity: 1;
}

/* Great Features Section */
.great-features {
    padding: 4rem 0;
    background: var(--bg-light);
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.features-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Users Section */
.users-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.users-header {
    text-align: center;
    margin-bottom: 3rem;
}

.users-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.user-type-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.user-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.user-type-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.user-type-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.user-type-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.user-type-card p strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Testimonial Section */
.testimonial {
    padding: 4rem 0;
    background: var(--white);
}

.testimonial-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.testimonial-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.testimonial-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.testimonial-text blockquote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-nav {
    display: flex;
    gap: 1rem;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid #e5e7eb;
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.nav-arrow:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* Footer */
.footer {
    background: var(--brand-gradient);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--white);
    text-decoration: underline;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.btn-subscribe {
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-subscribe:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Privacy Policy Section */
.privacy-policy-section {
    padding: 4rem 0;
    background: var(--white);
    min-height: calc(100vh - 200px);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    font-family: "Arial", sans-serif !important;
}

.privacy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    font-family: "Arial", sans-serif !important;
}

.privacy-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-family: "Arial", sans-serif !important;
}

.privacy-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: "Arial", sans-serif !important;
}

.privacy-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-family: "Arial", sans-serif !important;
}

.privacy-content .intro-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.privacy-content p strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.privacy-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    line-height: 1.8;
    font-family: "Arial", sans-serif !important;
}

.privacy-list li::before {
    content: "•";
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.privacy-content a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: text-decoration 0.3s;
}

.privacy-content a:hover {
    text-decoration: underline;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .about-content,
    .registration-content,
    .users-content {
        grid-template-columns: 1fr;
    }

    .app-store-layout {
        grid-template-columns: 1fr;
    }

    .app-store-right {
        order: -1;
    }

    .app-screenshots-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .app-screenshots-section .screenshot-image {
        max-width: 100%;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }

    .privacy-content h3 {
        font-size: 1.125rem;
    }

    .privacy-content .intro-text {
        font-size: 1rem;
        padding: 1rem;
    }

    .app-screenshots {
        gap: 0.75rem;
        max-width: 100%;
    }

    .screenshot-image {
        max-width: 100px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .stats-content {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .phone-mockup,
    .dashboard-phone {
        transform: none;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .signup-text h2,
    .simple-text h2,
    .features-header h2 {
        font-size: 1.75rem;
    }

    .app-buttons {
        flex-direction: column;
    }

    .stats-metrics {
        grid-template-columns: 1fr;
    }
}

