@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #14059D;
    --secondary: #3A0FD6;
    --accent: #5099FC;
    --action: #DF05FC;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --dark: #0a0a1a;
    --dark-light: #12122a;
    --gradient-main: linear-gradient(135deg, #14059D, #3A0FD6, #5099FC, #DF05FC);
    --gradient-hero: linear-gradient(135deg, #14059D 0%, #3A0FD6 40%, #5099FC 70%, #DF05FC 100%);
    --gradient-card: linear-gradient(145deg, rgba(20, 5, 157, 0.08), rgba(58, 15, 214, 0.04));
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 24px rgba(58, 15, 214, 0.25), 0 0 48px rgba(223, 5, 252, 0.08);
    --shadow-glow-lg: 0 0 32px rgba(58, 15, 214, 0.35), 0 0 64px rgba(223, 5, 252, 0.12);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --leading-tight: 1.25;
    --leading-snug: 1.4;
    --leading-normal: 1.6;
    --leading-relaxed: 1.75;
    --tracking-tight: -0.02em;
    --tracking-normal: 0;
    --tracking-wide: 0.05em;
    --logo-size: 100px;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    max-width: 100%;
    overflow: hidden;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--logo-size);
    height: var(--logo-size);
    flex-shrink: 0;
    overflow: hidden;
}

.brand-icon img {
    width: var(--logo-size);
    height: var(--logo-size);
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.brand-text {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--white);
    letter-spacing: var(--tracking-tight);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.footer-logo span {
    font-size: var(--text-3xl);
}

@media (max-width: 991px) {
    :root {
        --logo-size: 80px;
    }
    .brand-text {
        font-size: 1.15rem;
    }
    .footer-logo img {
        width: 80px;
        height: 80px;
    }
    .footer-logo span {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    :root {
        --logo-size: 64px;
    }
    .brand-text {
        font-size: 1.05rem;
    }
    .footer-logo img {
        width: 64px;
        height: 64px;
    }
    .footer-logo span {
        font-size: 1.25rem;
    }
}
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 130px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: var(--font-weight-bold);
    line-height: var(--leading-snug);
    margin-bottom: 0.6em;
    color: var(--gray-900);
    letter-spacing: var(--tracking-tight);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--leading-tight);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: var(--font-weight-bold);
    line-height: var(--leading-snug);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    font-weight: var(--font-weight-semibold);
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: var(--font-weight-semibold);
}

p {
    margin-bottom: 1.1rem;
    color: var(--gray-600);
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    font-weight: var(--font-weight-regular);
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
    border-radius: 0 0 var(--radius-md) 0;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

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

a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

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

img {
    loading: lazy;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: var(--gray-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 600; }

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    color: var(--action);
    margin-bottom: 0.75rem;
    position: relative;
}

.section-title {
    margin-bottom: 1.25rem;
    position: relative;
    font-weight: var(--font-weight-extrabold);
    letter-spacing: var(--tracking-tight);
}

.section-title .highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: var(--leading-relaxed);
    font-weight: var(--font-weight-regular);
}

.section-title {
    margin-bottom: 1rem;
    position: relative;
}

.section-title .highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .container { padding: 0 2rem; }
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-lg);
    color: var(--white);
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
    color: var(--white);
    text-decoration: none;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: var(--white);
    text-decoration: none;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-gradient {
    background: var(--gradient-main);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-glow);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-lg);
    color: var(--white);
    text-decoration: none;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-base);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-glow);
}

.tech-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-card .icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.tech-card .icon-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: inherit;
    opacity: 0.15;
    filter: blur(10px);
    z-index: -1;
}

.tech-card h4 {
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
}

.tech-card p {
    font-size: var(--text-base);
    margin-bottom: 0;
    color: var(--gray-500);
    flex: 1;
    line-height: var(--leading-relaxed);
    font-weight: var(--font-weight-regular);
}

.tech-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    background: var(--gradient-main);
    color: var(--white);
}

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

.bg-primary-custom { background-color: var(--primary); color: var(--white); }
.bg-secondary-custom { background-color: var(--secondary); color: var(--white); }
.bg-accent-custom { background-color: var(--accent); color: var(--white); }
.bg-action-custom { background-color: var(--action); color: var(--white); }

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary-custom { color: var(--primary); }
.text-secondary-custom { color: var(--secondary); }
.text-accent-custom { color: var(--accent); }
.text-action-custom { color: var(--action); }

.border-gradient {
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.border-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: var(--gradient-main);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.glow {
    box-shadow: var(--shadow-glow);
}

.glow-lg {
    box-shadow: var(--shadow-glow-lg);
}

.accordion-custom .accordion-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg) !important;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-base);
}

.accordion-custom .accordion-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.accordion-custom .accordion-button {
    background: transparent;
    color: var(--gray-900);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
}

.accordion-custom .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: var(--gradient-card);
    box-shadow: none;
}

.accordion-custom .accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent);
}

.accordion-custom .accordion-body {
    padding: 0 1.5rem 1.25rem;
    color: var(--gray-600);
}

.form-control-custom {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: all var(--transition-fast);
    color: var(--gray-900);
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(80, 153, 252, 0.1);
}

.form-control-custom::placeholder {
    color: var(--gray-400);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-lg);
}

.breadcrumb-nav {
    padding: 1rem 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: var(--gray-400);
}

.breadcrumb-item a {
    color: var(--gray-600);
}

.breadcrumb-item.active {
    color: var(--primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--dark);
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg canvas {
    width: 100%;
    height: 100%;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(20, 5, 157, 0.4) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(223, 5, 252, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 60% 80%, rgba(58, 15, 214, 0.3) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    color: var(--white);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    margin-bottom: 2.5rem;
}

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

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: var(--gradient-hero);
    border-radius: 2.5rem;
    padding: 12px;
    box-shadow: var(--shadow-glow-lg), inset 0 0 0 2px rgba(255,255,255,0.1);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform var(--transition-slow);
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--dark-light);
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: var(--dark);
    border-radius: 0 0 16px 16px;
    z-index: 1;
}

.phone-content {
    padding: 2rem 1rem 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.phone-chat-bubble {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 85%;
}

.phone-chat-bubble.me {
    align-self: flex-end;
    background: rgba(58, 15, 214, 0.3);
    border-color: rgba(223, 5, 252, 0.3);
}

.phone-chat-bubble .chat-time {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.25rem;
}

.phone-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--white);
    font-weight: 700;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 1rem;
    color: var(--white);
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    left: -20%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    right: -15%;
    animation-delay: 2s;
}

.floating-card.card-3 {
    top: 50%;
    left: -25%;
    animation-delay: 4s;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-extrabold);
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    font-weight: var(--font-weight-semibold);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--accent);
    opacity: 0.2;
    line-height: 1;
}

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

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 0.15rem;
    font-size: var(--text-lg);
}

.testimonial-role {
    font-size: var(--text-sm);
    color: var(--gray-500);
    font-weight: var(--font-weight-regular);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.testimonial-rating {
    color: #ffc107;
    font-size: var(--text-sm);
    margin-bottom: 1rem;
    display: flex;
    gap: 0.2rem;
}

.testimonials-swiper {
    position: relative;
    padding: 1rem 0 3rem;
}

.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    color: var(--primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonials-swiper .swiper-button-prev {
    left: 8px;
}

.testimonials-swiper .swiper-button-next {
    right: 8px;
}

.testimonials-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
    font-size: 0.9rem;
    font-weight: 700;
}

.testimonials-swiper .swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 1.5rem;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--gray-300);
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

@media (max-width: 991px) {
    .testimonials-swiper .swiper-button-prev {
        left: 4px;
    }
    .testimonials-swiper .swiper-button-next {
        right: 4px;
    }
    .testimonials-swiper .swiper-button-prev,
    .testimonials-swiper .swiper-button-next {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .testimonials-swiper .swiper-button-prev,
    .testimonials-swiper .swiper-button-next {
        display: none;
    }
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-main);
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 0 0 4px rgba(20, 5, 157, 0.2);
}

.timeline-content h4 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
}

.timeline-content p {
    color: var(--gray-500);
    margin-bottom: 0;
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.timeline-content p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.feature-icon-wrapper {
    width: 96px;
    height: 96px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.75rem;
    position: relative;
    transition: all var(--transition-base);
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 12px 30px rgba(20, 5, 157, 0.25);
}

.tech-card:hover .feature-icon-wrapper {
    transform: translateY(-8px) scale(1.08);
    box-shadow: var(--shadow-glow-lg);
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: inherit;
    opacity: 0.3;
    filter: blur(16px);
    z-index: -1;
}

.screenshot-slider {
    position: relative;
    padding: 2rem 0;
}

.screenshot-slider .swiper-slide {
    transition: all var(--transition-base);
    opacity: 0.5;
    transform: scale(0.95);
}

.screenshot-slider .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.screenshot-slide {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.screenshot-slide img {
    width: 100%;
    border-radius: var(--radius-xl);
}

.download-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-main);
}

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

.download-card .store-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    background: var(--gradient-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    border: 1px solid var(--gray-200);
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-base);
}

.contact-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--gradient-card);
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

.blog-card-title {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.85rem;
    color: var(--gray-900);
    line-height: var(--leading-snug);
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-text {
    font-size: var(--text-base);
    color: var(--gray-500);
    line-height: var(--leading-relaxed);
    margin-bottom: 1.25rem;
    flex: 1;
    font-weight: var(--font-weight-regular);
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
    font-size: var(--text-sm);
    color: var(--gray-400);
    font-weight: var(--font-weight-medium);
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--primary);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.particles-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer-wave {
    color: var(--dark);
    margin-bottom: -2px;
}

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

.footer-main {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gradient-main);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.footer-title {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: var(--gradient-main);
    border-radius: 2px;
}

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

.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: var(--font-weight-regular);
}

.footer-links a::before {
    content: '›';
    color: var(--accent);
    font-weight: 700;
    transition: transform var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
    text-decoration: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.55);
    line-height: var(--leading-relaxed);
    font-weight: var(--font-weight-regular);
}

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--white);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.625rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 0.875rem;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.newsletter-form button {
    padding: 0.625rem;
    border: none;
    border-radius: var(--radius-md);
    background: var(--gradient-main);
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.copyright a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.copyright a:hover {
    color: var(--white);
}

.footer-meta {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.text-white-50 { color: rgba(255,255,255,0.5) !important; }

.bg-gray-50 { background-color: var(--gray-50); }
.bg-dark-custom { background-color: var(--dark); color: var(--white); }

.download-cta {
    background: var(--gradient-hero);
}

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

.btn-outline-dark:hover {
    background: var(--gray-900);
    color: var(--white);
    transform: translateY(-3px);
    text-decoration: none;
}

.cta-light-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.cta-light-section .glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cta-light-section .section-title {
    color: var(--gray-900);
}

.cta-light-section .section-title .highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-light-section .section-subtitle {
    color: var(--gray-600);
}

.cta-light-section .btn-primary {
    background: var(--gradient-main);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-glow);
}

.cta-light-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-lg);
    color: var(--white);
}

.cta-light-section .btn-outline-dark {
    background: transparent;
    color: var(--gray-900);
    border: 2px solid var(--gray-900);
}

.cta-light-section .btn-outline-dark:hover {
    background: var(--gray-900);
    color: var(--white);
    transform: translateY(-3px);
    text-decoration: none;
}

.text-dark {
    color: var(--gray-900) !important;
}

@media (max-width: 767px) {
    .cta-light-section .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-light-section .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

.site-header {
    padding-top: 0;
    z-index: 1050;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: rgba(10, 10, 26, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.navbar {
    min-height: 120px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

@media (max-width: 991px) {
    body {
        padding-top: 110px;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 90px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--dark);
        border-radius: var(--radius-lg);
        padding: 1rem;
        margin-top: 1rem;
        border: 1px solid rgba(255,255,255,0.1);
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .phone-mockup {
        width: 220px;
        height: 440px;
        margin-top: 3rem;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 3rem 0;
    }

    .hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }

    .hero-buttons {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: auto;
        min-width: 140px;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Modern Utilities */
.text-balance { text-wrap: balance; }

.gradient-text-main {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-border {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: var(--gradient-main);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.shadow-inner-glow {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), inset 0 -1px 0 rgba(0,0,0,0.06);
}

/* Modern Section Styles */
.section-gradient {
    background: var(--gradient-card);
    position: relative;
}

.section-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(20, 5, 157, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(223, 5, 252, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.section-dark .section-title,
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--white);
}

.section-dark p {
    color: rgba(255,255,255,0.6);
}

.section-dark .section-label {
    color: var(--accent);
}

.section-dark .section-label::before,
.section-dark .section-label::after {
    background: var(--accent);
}

/* Modern Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-main);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Modern Selection */
::selection {
    background: rgba(20, 5, 157, 0.2);
    color: var(--primary);
}

/* Modern Focus Styles */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* Modern Responsive */
@media (max-width: 991px) {
    .section {
        padding: 4.5rem 0;
    }

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

    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }

    .navbar-collapse {
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: var(--radius-xl);
        padding: 1.25rem;
        margin-top: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow-glow-lg);
    }

    .navbar-nav {
        gap: 0.25rem;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: var(--radius-md);
        transition: all 0.2s ease;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .btn-nav-download {
        width: 100%;
        margin-top: 0.75rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
        margin-top: 3rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .testimonials-swiper .swiper-button-prev,
    .testimonials-swiper .swiper-button-next {
        display: none;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 3.5rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
        max-width: 100%;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        min-width: auto;
        max-width: 100%;
    }

    .hero-visual {
        margin-top: 2.5rem;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
        margin-top: 2rem;
    }

    .phone-notch {
        width: 100px;
        height: 20px;
    }

    .phone-content {
        padding: 1.5rem 0.75rem 0.75rem;
    }

    .phone-chat-bubble {
        font-size: 0.7rem;
        padding: 0.6rem;
    }

    .floating-card {
        font-size: 0.75rem;
        padding: 0.75rem;
        max-width: 160px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .tech-card, .glass-card, .contact-card, .download-card {
        padding: 1.75rem;
    }

    .feature-icon-wrapper {
        width: 72px;
        height: 72px;
        font-size: 1.75rem;
    }

    .btn-lg {
        padding: 0.9rem 1.75rem;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 1.75rem;
    }

    .testimonial-avatar {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-body {
        padding: 1.25rem;
    }

    .blog-card-title {
        font-size: 1.05rem;
    }

    .download-card .store-icon {
        width: 72px;
        height: 72px;
        font-size: 2rem;
    }

    .qr-placeholder {
        width: 140px !important;
        height: 140px !important;
    }

    .map-placeholder {
        height: 160px !important;
    }

    .form-control-custom {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }

    .footer-main {
        padding: 3.5rem 0 2.5rem;
    }

    .footer-logo img {
        width: 64px;
        height: 64px;
    }

    .footer-logo span {
        font-size: 1.25rem;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-text {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .back-to-top {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 2.5rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 5rem 0 2rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-label {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .phone-mockup {
        width: 170px;
        height: 340px;
    }

    .phone-notch {
        width: 80px;
        height: 16px;
        border-radius: 0 0 12px 12px;
    }

    .phone-content {
        padding: 1.25rem 0.6rem 0.6rem;
        gap: 0.5rem;
    }

    .phone-chat-bubble {
        font-size: 0.65rem;
        padding: 0.5rem;
    }

    .floating-card {
        font-size: 0.7rem;
        padding: 0.6rem;
        max-width: 140px;
    }

    .tech-card, .glass-card, .contact-card, .download-card {
        padding: 1.5rem;
    }

    .feature-icon-wrapper {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .testimonial-name {
        font-size: 0.95rem;
    }

    .blog-card-image {
        height: 160px;
    }

    .blog-card-body {
        padding: 1rem;
    }

    .blog-card-title {
        font-size: 1rem;
    }

    .blog-card-text {
        font-size: 0.9rem;
    }

    .download-card {
        padding: 2rem 1.5rem;
    }

    .download-card .store-icon {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
    }

    .qr-placeholder {
        width: 120px !important;
        height: 120px !important;
    }

    .map-placeholder {
        height: 140px !important;
    }

    .form-control-custom {
        padding: 0.75rem 0.875rem;
        font-size: 0.95rem;
    }

    .footer-logo img {
        width: 56px;
        height: 56px;
    }

    .footer-logo span {
        font-size: 1.1rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .phone-mockup {
        width: 150px;
        height: 300px;
    }

    .phone-notch {
        width: 70px;
        height: 14px;
    }

    .floating-card {
        font-size: 0.65rem;
        padding: 0.5rem;
        max-width: 120px;
    }

    .btn {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 5rem 0 2rem;
    }

    .hero-visual {
        margin-top: 1.5rem;
    }

    .phone-mockup {
        width: 160px;
        height: 320px;
        margin-top: 1rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .phone-mockup {
        width: 300px;
        height: 600px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1440px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }

    html {
        font-size: 18px;
    }
}

@media (hover: hover) and (pointer: fine) {
    .btn:hover {
        transform: translateY(-3px);
    }

    .tech-card:hover {
        transform: translateY(-10px);
    }
}

@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px;
    }

    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .form-control-custom {
        min-height: 48px;
    }

    .back-to-top {
        min-width: 48px;
        min-height: 48px;
    }
}

@media print {
    .site-header, .footer-wave, .cookie-banner, .back-to-top, .particles-container {
        display: none !important;
    }

    body {
        padding-top: 0;
        background: white;
        color: black;
    }

    .section {
        padding: 2rem 0;
    }

    a {
        color: black;
        text-decoration: underline;
    }
}
