:root {
    --primary: #1e3a8a;
    --primary-light: #2c5282;
    --primary-dark: #0f2744;
    --secondary: #f1f5f9;
    --accent: #06b6d4;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --border-color: #e2e8f0;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius: 16px;
    --border-radius-lg: 20px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[width][height] {
    aspect-ratio: attr(width) / attr(height);
}

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

/* Header */
header {
    background-color: #ffffff;
    border-radius: 50px;
    border: 1px solid #e5e7eb;
    position: sticky;
    top: 16px;
    z-index: 100;
    margin: 16px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

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

.logo img {
    height: 36px;
    width: auto;
    filter: brightness(0);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 32px;
}

nav ul li a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
    position: relative;
}

nav ul li a.nav-btn {
    background: #0f172a !important;
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
}

nav ul li a.nav-btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(15, 23, 42, 0.3);
}

.nav-btn {
    background: #0f172a !important;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(15, 23, 42, 0.3);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 80px 24px 24px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu ul li {
    margin-bottom: 24px;
    text-align: center;
}

.mobile-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 32px;
    font-weight: 500;
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu ul li a:hover {
    color: var(--accent);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 8px;
}

.mobile-nav-btn {
    background: var(--primary);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 24px;
    display: inline-block;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #ffffff;
    text-align: center;
}

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

.hero h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 32px;
    color: #0f172a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 24px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 48px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
    justify-content: center;
}

.hero-buttons .btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.hero-buttons .btn:first-child {
    background: #0f172a;
    color: white;
    border: 2px solid #0f172a;
}

.hero-buttons .btn:first-child:hover {
    background: #1e293b;
    border-color: #1e293b;
}

.hero-buttons .btn-outline {
    background: transparent;
    color: #0f172a;
    border: 2px solid #0f172a;
}

.hero-buttons .btn-outline:hover {
    background: #f8fafc;
}

.hero-image {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-image img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.hero-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

/* Typography */
h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 16px;
}

.btn:hover {
    background: #0a1e4a;
}

.btn-outline {
    background: white;
    color: #0f172a;
    border: 2px solid #0f172a;
}

.btn-outline:hover {
    background: #0f172a;
    color: white;
}

/* Trust Indicators */
.trust-indicators {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    margin-top: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-number {
    font-size: 28px;
    font-weight: 800;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    white-space: nowrap;
}

.trust-label {
    font-size: 28px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Problem Solution */
.problem-solution {
    padding: 120px 0;
    background: var(--secondary);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 64px auto 0 auto;
}

.problem-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--card-shadow);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    min-height: 340px;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.problem-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 20px;
}

.problem-icon svg {
    display: block;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Demo Section */
.demo-section {
    padding: 120px 0;
    background: white;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
    width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow-hover);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Features */
.features {
    padding: 120px 0;
    background: var(--secondary);
}

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

.feature-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px 32px 90px 32px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.feature-card h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-expand-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.feature-expand-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Steps */
.steps {
    padding: 120px 0;
    background: white;
}

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

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step-item {
    position: relative;
    counter-increment: step-counter;
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.step-item::before {
    content: counter(step-counter);
    display: flex;
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
}

.step-item h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.step-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
    text-align: left;
}

/* Screenshots */
.screenshots {
    padding: 120px 0;
    background: var(--secondary);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.screenshot-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.screenshot-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.screenshot-image {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    position: relative;
    background: var(--primary);
    overflow: hidden;
}

.screenshot-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
}

.screenshot-content {
    padding: 32px 24px;
}

.screenshot-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.screenshot-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
}

/* Pricing */
.pricing {
    padding: 120px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--card-shadow-hover);
}

.pricing-card.popular::before {
    content: "Recommended";
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1;
}

.pricing-period {
    font-size: 15px;
    color: var(--text-muted);
}

.pricing-features {
    list-style-type: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    font-size: 15px;
}

.pricing-features li i {
    color: var(--success);
    margin-right: 12px;
    font-size: 16px;
}

.pricing-btn {
    display: block;
    text-align: center;
    background: var(--primary);
    color: white;
    padding: 16px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(37, 99, 235, 0.4);
}

.pricing-btn-contact {
    background: var(--text-primary);
    box-shadow: 0 4px 14px 0 rgba(15, 23, 42, 0.3);
}

.pricing-btn-contact:hover {
    background: var(--text-secondary);
    box-shadow: 0 8px 25px 0 rgba(15, 23, 42, 0.4);
}

/* Contact */
.contact {
    padding: 120px 0;
    background: var(--secondary);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--card-shadow);
    margin-top: 64px;
    border: 1px solid var(--border-color);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* CTA */
.cta {
    padding: 120px 0;
    background: var(--primary);
    color: white;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>') repeat;
    background-size: 60px 60px;
}

.cta h2 {
    color: white;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.cta p {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block !important;
    background: #ffffff !important;
    color: #0f172a !important;
    padding: 16px 40px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000;
    border: none !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4) !important;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px 0 rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
    background-color: var(--text-primary);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 15px;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-column p {
    color: #94a3b8;
    line-height: 1.6;
}

.social-links {
    display: flex;
    margin-top: 24px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 12px;
    color: white;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

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

/* About */
.about {
    padding: 120px 0;
    background: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 64px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    text-align: justify;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text p strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Privacy Modal */
.privacy-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow-y: auto;
}

.privacy-modal-content {
    background-color: #fefefe;
    margin: 2% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
}

.privacy-modal-header {
    background: linear-gradient(135deg, #1e3a5f, #0f2744);
    color: white;
    padding: 20px 30px;
    border-radius: 8px 8px 0 0;
    position: sticky;
    top: 0;
    z-index: 10001;
}

.privacy-modal-header h2 {
    margin: 0;
    font-size: 24px;
}

.privacy-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.privacy-close:hover,
.privacy-close:focus {
    opacity: 0.7;
}

.privacy-modal-body {
    padding: 30px;
    line-height: 1.6;
    color: #333;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
}

.privacy-modal-body h3 {
    color: #1e3a5f;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
}

.privacy-modal-body h3:first-child {
    margin-top: 0;
}

.privacy-modal-body h4 {
    color: #1e3a5f;
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 600;
}

.privacy-modal-body ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-modal-body li {
    margin-bottom: 8px;
}

.privacy-modal-body p {
    margin-bottom: 15px;
}

.privacy-last-updated {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-style: italic;
    color: #666;
}

/* Terms Modal */
.terms-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow-y: auto;
}

.terms-modal-content {
    background-color: #fefefe;
    margin: 2% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
}

.terms-modal-header {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 20px 30px;
    border-radius: 8px 8px 0 0;
    position: sticky;
    top: 0;
    z-index: 10001;
}

.terms-modal-header h2 {
    margin: 0;
    font-size: 24px;
}

.terms-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.terms-close:hover,
.terms-close:focus {
    opacity: 0.7;
}

.terms-modal-body {
    padding: 30px;
    line-height: 1.6;
    color: #333;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
}

.terms-modal-body h3 {
    color: #dc2626;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.terms-modal-body h3:first-child {
    margin-top: 0;
}

.terms-modal-body h4 {
    color: #dc2626;
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 600;
}

.terms-modal-body ul {
    margin: 15px 0;
    padding-left: 20px;
}

.terms-modal-body li {
    margin-bottom: 8px;
}

.terms-modal-body p {
    margin-bottom: 15px;
}

.terms-last-updated {
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-style: italic;
    color: #dc2626;
    font-weight: 500;
}

.terms-warning-box {
    background: #fef2f2;
    border-left: 4px solid #dc2626;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.terms-liability-box {
    background: #fffbeb;
    border: 2px solid #f59e0b;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-weight: 500;
}

/* Feature Cards New */
.features-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 64px auto 0 auto;
}

.feature-card-new {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    min-height: 340px;
}

.feature-card-new .card-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 20px;
}

.feature-card-new .card-icon svg {
    display: block;
}

.feature-card-new h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-card-new p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 24px;
}

.learn-more-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #0f172a;
    border-radius: 50px;
    background: white;
    color: #0f172a;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.learn-more-btn:hover {
    background: #0f172a;
    color: white;
}

.learn-more-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

/* Feature Modal */
.feature-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

.feature-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.feature-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid #0f172a;
    font-size: 28px;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.feature-modal-close:hover,
.feature-modal-close:active {
    background: #0f172a;
    color: white;
    transform: scale(1.1);
}

.feature-modal-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    padding: 32px 32px 0 32px;
    background: white;
}

.feature-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.feature-modal-body {
    padding: 32px;
}

.feature-modal-body h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f172a;
    text-align: left;
}

.feature-modal-body p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-modal-details h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #0f172a;
}

.feature-modal-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-modal-details ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

.feature-modal-details ul li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 12px;
    font-size: 18px;
    flex-shrink: 0;
}

/* Stories Section */
.stories {
    padding: 80px 0;
    background: #f8fafc;
}

.stories h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 12px;
    color: #0f172a;
}

.stories .section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 18px;
    margin-bottom: 48px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.story-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.story-rating {
    color: #f59e0b;
    font-size: 20px;
    margin-bottom: 16px;
}

.story-card h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.4;
}

.story-quote {
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.story-likes {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 12px;
    background: #f1f5f9;
    border-radius: 8px;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    color: #94a3b8;
    font-size: 13px;
}

.stories-cta {
    text-align: center;
}

.currency-loading {
    color: var(--text-muted);
    font-size: 0.9em;
}

.currency-symbol {
    font-weight: 600;
    color: var(--primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    header {
        margin: 8px;
        border-radius: 30px;
        top: 8px;
    }
    
    .header-container {
        padding: 16px 20px;
        justify-content: space-between;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        display: none;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero .container {
        padding: 0 20px;
    }
    
    h1, .hero h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 48px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin-bottom: 16px;
        margin-right: 0;
        text-align: center;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-outline {
        margin-bottom: 0;
    }
    
    h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .logo img {
        height: 32px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .trust-number {
        font-size: 24px;
    }
    
    .trust-label {
        font-size: 14px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid-new {
        grid-template-columns: 1fr;
    }
    
    .steps-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .features,
    .steps,
    .screenshots,
    .pricing,
    .contact,
    .cta,
    .problem-solution {
        padding: 80px 0;
    }
    
    .about-text p {
        font-size: 16px;
        text-align: left;
    }
    
    .demo-section {
        padding: 80px 0;
    }
    
    .privacy-modal-content,
    .terms-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .privacy-modal-header,
    .terms-modal-header {
        padding: 15px 20px;
    }
    
    .privacy-modal-body,
    .terms-modal-body {
        padding: 20px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-modal-image {
        height: 250px;
        padding: 20px 20px 0 20px;
    }
    
    .feature-modal-body {
        padding: 24px;
    }
    
    .feature-modal-body h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    h1, .hero h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .logo img {
        height: 28px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero p {
        font-size: 15px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Hide reCAPTCHA v3 badge - functionality retained */
.grecaptcha-badge {
    visibility: hidden !important;
}
