

/* ========================================
   VARIABLES & RESET
======================================== */
:root {
    --primary-color: #4F46E5;
    --secondary-color: #84CC16;
    --accent-color: #F43F5E;
    --dark-bg: #1E1B4B;
    --darker-bg: #0F172A;
    --light-bg: #F8FAFC;
    --surface-light: #F1F5F9;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --white: #FFFFFF;
    --purple-accent: #A855F7;
    --mint-accent: #10B981;
    --orange-accent: #FB923C;
    --gradient-primary: linear-gradient(135deg, #1E1B4B 0%, #312E81 100%);
    --gradient-accent: linear-gradient(135deg, #4F46E5 0%, #A855F7 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

#cookieSettings {
  color: var(--primary-color);
}

#phone {
  width: 100%;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
.header-main {
    position: relative;
    z-index: 1000;
}

.navbar {
    background: var(--gradient-primary);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(30, 27, 75, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white) !important;
}

.logo-img {
    height: 40px;
    width: auto;
}

.brand-text {
    background: linear-gradient(135deg, var(--secondary-color), var(--mint-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white) !important;
}

.nav-link:hover::after {
    width: 80%;
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    overflow: hidden;
    padding: 120px 0 80px;
}

.particles-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.typed-wrapper {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    min-height: 60px;
}

.typed-prefix {
    color: var(--white);
    font-weight: 600;
    margin-right: 0.5rem;
}

.typed-text {
    color: var(--secondary-color);
    font-weight: 700;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subdescription {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--dark-bg);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--mint-accent);
    border-color: var(--mint-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.hero-image {
    animation: fadeInRight 1s ease-out 0.4s both;
}

.floating-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    animation: floating 3s ease-in-out infinite;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ========================================
   SECTION HEADERS
======================================== */
.section-header {
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--purple-accent));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   TOP APPS SECTION
======================================== */
.top-apps-section {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.app-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.app-rank {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.app-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.app-icon i {
    font-size: 2rem;
    color: var(--white);
}

.app-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.app-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    background: var(--surface-light);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-tag i {
    font-size: 0.625rem;
}

/* ========================================
   REVIEWS SECTION
======================================== */
.reviews-section {
    padding: 80px 0;
    background: var(--white);
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.review-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
}

.premium-review {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(168, 85, 247, 0.05));
    border: 2px solid var(--primary-color);
}

.review-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.review-header {
    margin-bottom: 1.5rem;
}

.review-title {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.review-rating i {
    color: var(--orange-accent);
    font-size: 1.125rem;
}

.rating-number {
    margin-left: 0.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.review-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.review-highlights h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.review-highlights ul {
    list-style: none;
    padding: 0;
}

.review-highlights li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--surface-light);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.review-highlights li:last-child {
    border-bottom: none;
}

.review-highlights i {
    color: var(--mint-accent);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* ========================================
   COMPARISON TABLE
======================================== */
.comparison-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.comparison-wrapper {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table thead th {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem 1rem;
    font-weight: 700;
    text-align: center;
    border: none;
}

.comparison-table thead th:first-child {
    border-top-left-radius: var(--border-radius);
    text-align: left;
}

.comparison-table thead th:last-child {
    border-top-right-radius: var(--border-radius);
}

.comparison-table tbody tr {
    transition: var(--transition);
}

.comparison-table tbody tr:hover {
    background: var(--surface-light);
}

.comparison-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--surface-light);
}

.feature-column {
    text-align: left !important;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-name i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.rating-excellent {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--mint-accent), var(--secondary-color));
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
}

.rating-good {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--purple-accent));
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
}

.rating-average {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--orange-accent), #FB7185);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
}

.rating-poor {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent-color), #F87171);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
}

.comparison-notes {
    margin-top: 3rem;
}

.comparison-notes h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.note-card {
    background: var(--surface-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.note-card h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.note-card i {
    color: var(--orange-accent);
}

/* ========================================
   FEATURES SECTION
======================================== */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    gap: 3rem;
}

.feature-card {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin-top: 1.5rem;
}

/* ========================================
   NOTIFICATIONS SECTION
======================================== */
.notifications-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.notifications-content {
    padding: 2rem;
}

.section-text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.notification-types {
    margin-top: 2rem;
}

.notification-type {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.notification-type:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.type-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.type-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.type-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.type-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.notification-tips {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.notification-tips h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.notification-tips ul {
    list-style: none;
    padding: 0;
}

.notification-tips li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notification-tips i {
    color: var(--mint-accent);
    font-size: 1.125rem;
    margin-top: 0.25rem;
}

.notifications-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   WIDGETS SECTION
======================================== */
.widgets-section {
    padding: 80px 0;
    background: var(--white);
}

.widgets-content {
    padding: 2rem;
}

.widget-features {
    margin-top: 2rem;
}

.widget-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.widget-feature:hover {
    transform: translateX(-8px);
    box-shadow: var(--shadow-md);
}

.feature-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.feature-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-info p {
    color: var(--text-light);
    line-height: 1.7;
}

.widget-customization {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
}

.widget-customization h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.widgets-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar i {
    font-size: 1.75rem;
    color: var(--white);
}

.testimonial-author {
    flex: 1;
}

.testimonial-author h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    color: var(--orange-accent);
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-app {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

/* ========================================
   INFO SECTION
======================================== */
.info-section {
    padding: 80px 0;
    background: var(--white);
}

.info-card {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    height: 100%;
    transition: var(--transition);
}

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

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.info-icon i {
    font-size: 2rem;
    color: var(--white);
}

.info-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-info {
    padding: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.contact-text h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--surface-light);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

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

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    margin-bottom: 3rem;
}

.footer-about, .footer-links, .footer-contact {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer h3, .footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 1.125rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

/* ========================================
   COOKIE CONSENT
======================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-consent.show {
    transform: translateY(0);
}

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

.cookie-text h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--text-light);
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

/* ========================================
   COOKIE MODAL
======================================== */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--surface-light);
}

.cookie-modal-header h3 {
    color: var(--text-dark);
    margin-bottom: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.cookie-modal-close:hover {
    color: var(--text-dark);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--surface-light);
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cookie-category h4 {
    color: var(--text-dark);
    margin-bottom: 0;
}

.cookie-category p {
    color: var(--text-light);
    line-height: 1.7;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--surface-light);
    transition: var(--transition);
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--primary-color);
}

input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--surface-light);
    justify-content: flex-end;
}

.cookie-modal-footer .btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary {
    background: var(--surface-light);
    color: var(--text-dark);
    border: none;
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--white);
}

/* ========================================
   LEGAL PAGES
======================================== */
.legal-section {
    padding: 120px 0 80px;
    background: var(--light-bg);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--surface-light);
}

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

.legal-block h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.legal-block h3 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-block li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-details-legal {
    background: var(--surface-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.contact-details-legal p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-details-legal i {
    color: var(--primary-color);
}

.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface-light);
    border-radius: var(--border-radius);
}

.cookie-table th {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--white);
    color: var(--text-light);
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* ========================================
   THANKS PAGE
======================================== */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    background: var(--light-bg);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-icon i {
    font-size: 3rem;
    color: var(--white);
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.thanks-submessage {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.thanks-actions .btn {
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.thanks-contact {
    padding-top: 2rem;
    border-top: 2px solid var(--surface-light);
}

.thanks-contact h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.thanks-contact p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.thanks-contact i {
    color: var(--primary-color);
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ========================================
   RESPONSIVE - MOBILE FIRST
======================================== */




@media (min-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .typed-wrapper {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}


@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .typed-wrapper {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (min-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .apps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}


@media (max-width: 767px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-hero {
        width: 100%;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
    
    .footer-legal {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .comparison-wrapper {
        padding: 1rem;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table td,
    .comparison-table th {
        padding: 0.75rem 0.5rem;
    }
    
    .notification-type,
    .widget-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .thanks-actions {
        flex-direction: column;
    }
    
    .thanks-actions .btn {
        width: 100%;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}


@media (min-width: 768px) and (max-width: 991px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 575px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .typed-wrapper {
        font-size: 1.25rem;
        min-height: 50px;
    }
}


@media (max-width: 767px) {
    .cookie-modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1.5rem;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-modal-footer .btn {
        width: 100%;
    }
}