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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fef7f7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    background: linear-gradient(135deg, #ff6b9d 0%, #e91e63 50%, #c2185b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: linear-gradient(135deg, #ff6b9d 0%, #e91e63 50%, #c2185b 100%);
    color: white;
}

.nav-brand a {
    text-decoration: none;
}

.nav-brand a h1 {
    background: linear-gradient(135deg, #ff6b9d 0%, #e91e63 50%, #c2185b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.5rem;
}

.app-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d 0%, #e91e63 50%, #c2185b 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.apps-section {
    padding: 100px 0;
    background: #fff;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.app-card {
    background: linear-gradient(180deg, #fef7f7 0%, #fff 100%);
    border: 1px solid #fce4ec;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.12);
}

.app-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.app-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 1rem;
}

.app-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.app-card-links {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.app-card-links .btn {
    font-size: 0.9rem;
    padding: 0.65rem 1.2rem;
}

.footer-apps {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-app-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-app-name {
    font-weight: 700;
    font-size: 0.95rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-app-group .footer-links {
    gap: 1rem;
}

.hero {
    background: linear-gradient(135deg, #ff6b9d 0%, #e91e63 50%, #c2185b 100%);
    color: white;
    padding: 140px 0 120px;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.03)" x="0" y="0" width="50" height="50"/></svg>');
    opacity: 0.5;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-image {
    position: relative;
    animation: fadeIn 1s ease-out 0.6s both;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.6s ease;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.95;
}

.trust-icon {
    font-size: 1.3rem;
}

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

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

.btn {
    text-decoration: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary {
    background: #fff;
    color: #e91e63;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #e91e63;
    transform: translateY(-2px);
}

.features {
    padding: 120px 0;
    background: linear-gradient(180deg, #fef7f7 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 157, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b9d 0%, #e91e63 50%, #c2185b 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.feature-card:hover::after {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.feature-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 107, 157, 0.25);
    border-color: rgba(255, 107, 157, 0.4);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #e91e63 50%, #c2185b 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.feature-icon {
    font-size: 2.8rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #e91e63;
}

.feature-card p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.8;
}

.cta-section {
    background: linear-gradient(135deg, #ff6b9d 0%, #e91e63 50%, #c2185b 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 42px;
    font-size: 1.1rem;
}

.btn-white {
    background: white;
    color: #e91e63;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #e91e63;
    transform: translateY(-3px);
}

.legal-page {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #fef7f7 0%, #fce4ec 50%, #f8bbd9 100%);
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.1);
    backdrop-filter: blur(10px);
}

.legal-content h1 {
    font-size: 3rem;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #e91e63 50%, #c2185b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.update-date {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #fce4ec;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 1.2rem;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: #334155;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-section p {
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: #475569;
    margin-bottom: 0.7rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.legal-section strong {
    color: #1e293b;
    font-weight: 600;
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #fce4ec;
    text-align: center;
}

.legal-footer p {
    color: #e91e63;
    font-weight: 600;
    font-size: 1.05rem;
}

.footer {
    background: linear-gradient(135deg, #c2185b 0%, #ad1457 50%, #880e4f 100%);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-email {
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-email a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-email a:hover {
    opacity: 1;
    border-bottom-color: white;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .hero-image img {
        transform: perspective(1000px) rotateY(0deg);
    }
}

@media (max-width: 768px) {
    .header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 107, 157, 0.1);
    }
    
    .nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
        max-width: 100%;
    }
    
    .nav-brand h1 {
        font-size: 1.4rem;
        margin: 0;
        background: linear-gradient(135deg, #ff6b9d 0%, #e91e63 50%, #c2185b 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .nav-menu {
        gap: 0.5rem;
        flex-wrap: nowrap;
        justify-content: flex-end;
        font-size: 0.85rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        max-width: 65%;
        scrollbar-width: none;
    }

    .nav-menu::-webkit-scrollbar {
        display: none;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu a {
        padding: 0.6rem 0.8rem;
        white-space: nowrap;
        font-size: 0.85rem;
        border-radius: 12px;
        min-height: 44px;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .hero {
        padding: 100px 0 80px;
        margin-top: 0;
        background: linear-gradient(135deg, #ff6b9d 0%, #e91e63 50%, #c2185b 100%);
    }
    
    .hero-container {
        padding: 0 1.5rem;
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .btn {
        text-align: center;
        padding: 18px 32px;
        width: 100%;
        font-size: 1.1rem;
        border-radius: 16px;
        font-weight: 600;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .trust-indicators {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
        margin-top: 2.5rem;
    }
    
    .trust-item {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }
    
    .hero-image img {
        border-radius: 20px;
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .features {
        padding: 100px 0;
        background: linear-gradient(180deg, #fef7f7 0%, #ffffff 100%);
    }
    
    .section-header {
        margin-bottom: 4rem;
        padding: 0 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .feature-card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 8px 32px rgba(255, 107, 157, 0.15);
        border: 1px solid rgba(255, 107, 157, 0.2);
        backdrop-filter: blur(10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        min-height: 280px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .feature-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 50px rgba(255, 107, 157, 0.25);
    }
    
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        margin: 0 auto 1.5rem;
        border-radius: 18px;
        box-shadow: 0 6px 20px rgba(255, 107, 157, 0.3);
    }
    
    .feature-icon {
        font-size: 2.2rem;
    }
    
    .feature-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .feature-card p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: center;
    }
    
    .cta-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #ff6b9d 0%, #e91e63 50%, #c2185b 100%);
    }
    
    .cta-content {
        padding: 0 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .btn-large {
        width: 100%;
        padding: 20px 32px;
        font-size: 1.1rem;
        border-radius: 16px;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
    }
    
    .footer {
        padding: 3rem 0;
        background: linear-gradient(135deg, #c2185b 0%, #ad1457 50%, #880e4f 100%);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 2rem;
        justify-content: center;
    }

    .footer-apps {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .footer-app-group {
        align-items: center;
    }

    .apps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .app-card {
        padding: 2rem 1.5rem;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1.5rem;
        border-radius: 20px;
    }
    
    .legal-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
    }
    
    .nav {
        padding: 0.8rem 1rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-brand h1 {
        font-size: 1.2rem;
        background: linear-gradient(135deg, #ff6b9d 0%, #e91e63 50%, #c2185b 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .nav-menu {
        font-size: 0.75rem;
        gap: 0.3rem;
    }
    
    .nav-menu a {
        padding: 0.5rem 0.6rem;
        font-size: 0.75rem;
        border-radius: 10px;
        min-height: 40px;
    }
    
    .hero {
        padding: 90px 0 70px;
        margin-top: 0;
        background: linear-gradient(135deg, #ff6b9d 0%, #e91e63 50%, #c2185b 100%);
    }
    
    .hero-container {
        padding: 0 1rem;
        gap: 2.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .btn {
        padding: 16px 28px;
        font-size: 1rem;
        border-radius: 14px;
        min-height: 52px;
    }
    
    .trust-indicators {
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .trust-item {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        border-radius: 10px;
    }
    
    .hero-image img {
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }
    
    .features {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .features-grid {
        padding: 0 1rem;
        gap: 1.2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        border-radius: 18px;
        min-height: 260px;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        margin-bottom: 1.2rem;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content {
        padding: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-large {
        padding: 18px 28px;
        font-size: 1rem;
        border-radius: 14px;
        min-height: 56px;
    }
    
    .footer {
        padding: 2.5rem 0;
    }
    
    .footer-content {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .legal-content {
        padding: 1.5rem 1rem;
        margin: 0 1rem;
        border-radius: 18px;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .legal-section ul {
        margin-left: 1rem;
    }
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 380px) {
    .nav {
        padding: 0.5rem 0.5rem;
    }
    
    .nav-brand h1 {
        font-size: 0.9rem;
    }
    
    .nav-menu {
        gap: 0.15rem;
    }
    
    .nav-menu a {
        padding: 0.25rem 0.3rem;
        font-size: 0.65rem;
    }
}
