:root {
    --primary: #0197B2;
    --accent: #2BF5D8;
    --navy: #002A40;
    --bg-light: #F4F8F9;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text: #ffffff;
    --muted: #888888;
    --card: rgba(255, 255, 255, 0.05);
    --accent-bg: rgba(1, 151, 178, 0.15);
}

[data-theme="light"] {
    --bg-dark: #f8f9fa;
    --bg-darker: #ffffff;
    --text: #1a1a1a;
    --muted: #666666;
    --card: rgba(0, 0, 0, 0.03);
    --accent-bg: rgba(1, 151, 178, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    background: var(--bg-darker);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page {
    position: relative;
}

/* Background effects */
.bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    border-radius: 50%;
}

[data-theme="light"] .orb {
    opacity: 0.15;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: var(--primary);
    bottom: -150px;
    left: -100px;
    animation: float 12s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 18s ease-in-out infinite;
}

/* Floating Bubbles */
.bubble {
    position: absolute;
    background: linear-gradient(135deg, rgba(1, 151, 178, 0.3), rgba(1, 151, 178, 0.1));
    border-radius: 50%;
    opacity: 0.8;
    animation: bubbleFloat linear infinite;
    filter: blur(20px) brightness(1.5);
    box-shadow: 0 0 30px rgba(1, 151, 178, 0.4), inset 0 0 60px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(1, 151, 178, 0.2);
}

.bubble-1 {
    width: 60px;
    height: 60px;
    left: 10%;
    animation-duration: 20s;
    animation-delay: 0s;
}

.bubble-2 {
    width: 80px;
    height: 80px;
    left: 25%;
    animation-duration: 25s;
    animation-delay: 2s;
}

.bubble-3 {
    width: 50px;
    height: 50px;
    left: 45%;
    animation-duration: 18s;
    animation-delay: 4s;
}

.bubble-4 {
    width: 70px;
    height: 70px;
    left: 60%;
    animation-duration: 22s;
    animation-delay: 1s;
}

.bubble-5 {
    width: 90px;
    height: 90px;
    left: 75%;
    animation-duration: 28s;
    animation-delay: 3s;
}

.bubble-6 {
    width: 55px;
    height: 55px;
    left: 15%;
    animation-duration: 19s;
    animation-delay: 6s;
}

.bubble-7 {
    width: 75px;
    height: 75px;
    left: 50%;
    animation-duration: 24s;
    animation-delay: 8s;
}

.bubble-8 {
    width: 65px;
    height: 65px;
    left: 85%;
    animation-duration: 21s;
    animation-delay: 5s;
}

@keyframes bubbleFloat {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(0) scale(0.8);
    }

    10% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
        transform: translateX(30px) scale(1);
    }

    90% {
        opacity: 0.5;
    }

    100% {
        bottom: 100vh;
        opacity: 0;
        transform: translateX(0) scale(0.8);
    }
}

[data-theme="light"] .bubble {
    background: linear-gradient(135deg, rgba(1, 151, 178, 0.2), rgba(1, 151, 178, 0.05));
    opacity: 0.6;
    filter: blur(15px) brightness(1.3);
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }

    25% {
        transform: translate(-20px, 30px) scale(1.1);
        opacity: 0.5;
    }

    50% {
        transform: translate(20px, -30px) scale(0.95);
        opacity: 0.35;
    }

    75% {
        transform: translate(-10px, 20px) scale(1.05);
        opacity: 0.45;
    }
}

/* Header */
.header {
    display: flex;
    align-items: center;
    /* justify-content: space-between; Removed to allow grouping */
    gap: 24px;
    /* Space between Theme Toggle and Nav Links */
    padding: 12px 24px;
    position: sticky;
    top: 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100;
    animation: slideDown 0.8s ease-out;
}

[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
    /* Pushes everything else to the right */
}

.logo-img {
    /* width: 62px; */
    height: 62px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Show light logo in dark mode, dark logo in light mode */
[data-theme="dark"] .logo-dark {
    display: none;
}

[data-theme="light"] .logo-light {
    display: none;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: var(--text);
    text-decoration: none;
}

.logo .dot {
    color: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.theme-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.theme-toggle .material-symbols-outlined {
    font-size: 24px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

[data-theme="light"] .theme-toggle {
    border-color: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
}

.btn-login {
    background: var(--primary);
    padding: 8px 20px;
    border-radius: 8px;
}

.btn-login::after {
    display: none;
}

.btn-login:hover {
    background: #0F766E;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    position: relative;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--text);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.active {
    display: block;
    opacity: 1;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Hero section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    min-height: 90vh;
    position: relative;
    z-index: 10;
}

.content {
    width: 100%;
    max-width: 700px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(1, 151, 178, 0.2), rgba(1, 151, 178, 0.1));
    border: 1px solid rgba(1, 151, 178, 0.4);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.badge-icon {
    font-size: 18px;
    animation: pulse 2s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
}

.badge-text {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

.badge-icon .material-symbols-outlined {
    font-size: 18px;
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 18;
    color: var(--primary);
}

h1 {
    margin: 0 0 16px 0;
    font-size: clamp(32px, 7vw, 56px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out 0.2s both;
}

h1 .location,
.hero-title .location {
    color: var(--primary);
    display: block;
    font-size: 1em;
    margin-top: 4px;
}

.subtitle {
    margin: 0 0 32px 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out 0.4s both;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA */
.cta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta .material-symbols-outlined {
    font-size: 20px;
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 20;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(1, 151, 178, 0.3);
}

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

.secondary {
    background: transparent;
    border: 2px solid rgba(1, 151, 178, 0.5);
    color: var(--text);
}

.secondary:hover {
    border-color: var(--primary);
    background: rgba(1, 151, 178, 0.1);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Title */
.section-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
}

.section-title.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Services Section */
.services {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.service-card {
    display: block;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    color: inherit;
    text-decoration: none;
}

.service-card.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(1).animate-in {
    animation-delay: 0.1s;
}

.service-card:nth-child(2).animate-in {
    animation-delay: 0.2s;
}

.service-card:nth-child(3).animate-in {
    animation-delay: 0.3s;
}

.service-card:nth-child(4).animate-in {
    animation-delay: 0.4s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), rgba(1, 151, 178, 0.5));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(1, 151, 178, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 16px;
    animation: bounce 2s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.service-icon .material-symbols-outlined {
    font-size: 48px;
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 48;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-badge {
    display: inline-block;
    background: rgba(219, 76, 76, 0.2);
    border: 1px solid rgba(219, 76, 76, 0.4);
    color: red;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: pulse 2s ease-in-out infinite;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .features-section {
    background: rgba(0, 0, 0, 0.02);
}

.features-list {
    display: grid;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.feature-item.animate-in {
    animation: slideInLeft 0.6s ease-out forwards;
}

.feature-item:nth-child(1).animate-in {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2).animate-in {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3).animate-in {
    animation-delay: 0.3s;
}

.feature-item:nth-child(4).animate-in {
    animation-delay: 0.4s;
}

.feature-item:hover {
    transform: translateX(8px) !important;
    border-color: rgba(1, 151, 178, 0.3);
}

.feature-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.5;
    font-variant-numeric: tabular-nums;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    opacity: 0;
    transform: translateY(30px);
}

.about-text.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Footer */
.footer {
    padding: 60px 24px 32px;
    text-align: center;
    color: var(--muted);
    position: relative;
    z-index: 10;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(0, 0, 0, 0.01);
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 180px;
}

.footer-text {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.footer-label {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-link {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.footer-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.footer-copyright {
    font-size: 12px;
    color: var(--muted);
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.heart-icon {
    font-size: 12px;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 12;
    color: var(--primary);
    vertical-align: middle;
}

/* Policy Pages */
body.policy-page {
    background: var(--bg-darker);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    position: relative;
    padding-bottom: 56px;
}

body.policy-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(13, 148, 136, 0.25), transparent 55%),
        radial-gradient(circle at 85% 80%, rgba(13, 148, 136, 0.2), transparent 60%);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.policy-header,
.policy-container,
.policy-footer {
    position: relative;
    z-index: 1;
}

.policy-header {
    max-width: 960px;
    margin: 0 auto;
    padding: 32px 24px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.policy-logo img {
    width: 140px;
    height: auto;
    object-fit: contain;
}

.policy-back {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.policy-back:hover {
    text-decoration: underline;
}

.policy-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.policy-container section {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px 32px;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="light"] .policy-container section {
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}

.policy-container section:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(13, 148, 136, 0.18);
}

.policy-container h1 {
    font-size: clamp(32px, 6vw, 44px);
    margin-bottom: 8px;
}

.policy-updated {
    color: var(--muted);
    font-size: 14px;
    margin: 0 0 16px;
}

.policy-container h2 {
    font-size: clamp(22px, 3vw, 28px);
    margin-top: 24px;
}

.policy-container p,
.policy-container li {
    color: var(--muted);
    line-height: 1.8;
    font-size: 16px;
}

.policy-list {
    padding-left: 20px;
    margin: 0;
    list-style: disc;
    display: grid;
    gap: 12px;
}

.policy-list li::marker {
    color: var(--primary);
}

.policy-footer {
    max-width: 960px;
    margin: 48px auto 32px;
    padding: 24px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .policy-footer {
    border-top-color: rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
    .policy-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 24px 20px 8px;
    }

    .policy-container {
        padding: 20px;
    }

    .policy-container section {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .policy-container {
        padding: 16px;
    }

    .policy-container section {
        padding: 20px;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .header {
        padding: 16px 20px;

    }

    .theme-toggle {
        width: 40px;
        height: 40px;
        padding: 8px;
        margin-left: auto;
        order: 2;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        max-width: 85vw;
        background: var(--bg-darker);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 100;
        align-items: flex-start;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 18px;
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        padding-left: 8px;
        color: var(--primary);
    }

    .nav-link::after {
        display: none;
    }

    .btn-login {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
        margin-top: 16px;
        font-size: 16px;
    }

    .logo {
        font-size: 20px;
    }

    .logo-img {
        /* width: 40px; */
        height: 60px;
    }

    .hero {
        padding: 60px 20px;
        min-height: 80vh;
    }

    .content {
        max-width: 100%;
    }

    .cta-row {
        flex-direction: column;
        align-items: center;
    }

    .cta {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 32px 20px;
    }

    .features-section {
        padding: 60px 0;
    }

    .features-list {
        gap: 24px;
    }

    .feature-item {
        padding: 24px;
        gap: 16px;
    }

    .feature-number {
        font-size: 24px;
    }

    .feature-content h3 {
        font-size: 18px;
    }

    .feature-content p {
        font-size: 14px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-text {
        font-size: 16px;
    }

    .footer {
        padding: 40px 20px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .orb-1 {
        width: 300px;
        height: 300px;
    }

    .orb-2 {
        width: 250px;
        height: 250px;
    }

    .orb-3 {
        width: 200px;
        height: 200px;
    }

    .bubble-1,
    .bubble-6 {
        width: 40px;
        height: 40px;
    }

    .bubble-2,
    .bubble-4,
    .bubble-7 {
        width: 50px;
        height: 50px;
    }

    .bubble-3 {
        width: 35px;
        height: 35px;
    }

    .bubble-5 {
        width: 55px;
        height: 55px;
    }

    .bubble-8 {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 2px 2px;
        margin-left: -30px;
    }

    .nav-links {
        gap: 10px;
    }

    .theme-toggle {
        width: 32px;
        height: 32px;
    }
}

/* ===== DENTALJI SPECIFIC COMPONENTS ===== */

/* Hero Stats Grid */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 48px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-card {
    background: linear-gradient(135deg, rgba(1, 151, 178, 0.08), rgba(43, 245, 216, 0.05));
    border: 1px solid rgba(1, 151, 178, 0.2);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    text-align: left;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(1, 151, 178, 0.4);
    background: linear-gradient(135deg, rgba(1, 151, 178, 0.12), rgba(43, 245, 216, 0.08));
    box-shadow: 0 8px 24px rgba(1, 151, 178, 0.15);
}

.stat-card .material-symbols-outlined {
    font-size: 40px;
    color: var(--primary);
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 40;
    flex-shrink: 0;
}

.stat-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.stat-content p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.4;
    margin: 0;
}

/* Compact Hero Referral */
.hero-referral {
    background: linear-gradient(135deg, rgba(1, 151, 178, 0.12), rgba(43, 245, 216, 0.08));
    border: 2px solid rgba(1, 151, 178, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-referral:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(1, 151, 178, 0.2);
}

.referral-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.referral-content .material-symbols-outlined {
    font-size: 36px;
    color: var(--primary);
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 36;
}

.referral-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.referral-text strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.referral-text span {
    font-size: 13px;
    color: var(--muted);
}

.referral-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.referral-btn:hover {
    background: #017a94;
    transform: translateX(2px);
}

.referral-btn .material-symbols-outlined {
    font-size: 18px;
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 18;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    position: relative;
    z-index: 10;
    text-align: center;
}

.trust-badge-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(1, 151, 178, 0.1);
    border: 1px solid rgba(1, 151, 178, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 48px;
}

.trust-badge-main .material-symbols-outlined {
    font-size: 24px;
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 24;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.testimonial-card:nth-child(1).animate-in {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2).animate-in {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3).animate-in {
    animation-delay: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(1, 151, 178, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 13px;
    color: var(--muted);
}

.testimonial-text {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-top: 16px;
}

.testimonial-rating .material-symbols-outlined {
    color: #FFA500;
    font-size: 18px;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 18;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1).animate-in {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2).animate-in {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3).animate-in {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4).animate-in {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5).animate-in {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6).animate-in {
    animation-delay: 0.6s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(1, 151, 178, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.feature-card .material-symbols-outlined {
    font-size: 56px;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 56;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Why Dentalji Section */
.why-dentalji {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .why-dentalji {
    background: rgba(0, 0, 0, 0.01);
}

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

.why-point {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.why-point.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.why-point:nth-child(1).animate-in {
    animation-delay: 0.1s;
}

.why-point:nth-child(2).animate-in {
    animation-delay: 0.2s;
}

.why-point:nth-child(3).animate-in {
    animation-delay: 0.3s;
}

.why-point:nth-child(4).animate-in {
    animation-delay: 0.4s;
}

.why-point:nth-child(5).animate-in {
    animation-delay: 0.5s;
}

.why-point:nth-child(6).animate-in {
    animation-delay: 0.6s;
}

.why-point:hover {
    transform: translateY(-8px);
    border-color: rgba(1, 151, 178, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 24px rgba(1, 151, 178, 0.15);
}

.why-point .material-symbols-outlined {
    color: var(--primary);
    font-size: 48px;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    align-self: flex-start;
}

.why-point-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.why-point-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Dedicated Share & Earn Section */
.share-earn-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, rgba(1, 151, 178, 0.05), rgba(43, 245, 216, 0.03));
}

[data-theme="light"] .share-earn-section {
    background: #E7FBFF;
}

.share-earn-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.share-earn-section h2 {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.share-earn-section .subtitle {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.share-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.share-step {
    text-align: center;
}

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

.share-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.share-step p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.pricing-card:nth-child(1).animate-in {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2).animate-in {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3).animate-in {
    animation-delay: 0.3s;
}

.pricing-card.popular {
    border-color: var(--primary);
    background: rgba(1, 151, 178, 0.08);
    transform: scale(1.05);
}

.pricing-card.popular .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(1, 151, 178, 0.4);
}

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

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.pricing-price span {
    font-size: 18px;
    color: var(--muted);
    font-weight: 400;
}

.pricing-description {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li .material-symbols-outlined {
    color: var(--primary);
    font-size: 20px;
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 20;
    flex-shrink: 0;
}

.pricing-cta {
    display: block;
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pricing-cta:hover {
    background: #017a94;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 151, 178, 0.4);
}

/* Trust Metrics */
.trust-metrics {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-top: 64px;
    padding: 48px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.trust-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.metric-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.metric-label {
    font-size: 14px;
    color: var(--muted);
    text-align: center;
}

/* Security Section */
.security-section {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.security-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 32px 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    flex-wrap: wrap;
}

.security-point {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
}

.security-point .material-symbols-outlined {
    color: var(--primary);
    font-size: 28px;
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 28;
}

.security-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}


/* Mobile App Section */
.mobile-app-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, rgba(1, 151, 178, 0.03), rgba(43, 245, 216, 0.02));
}

[data-theme="light"] .mobile-app-section {
    background: rgba(1, 151, 178, 0.02);
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
    margin: -32px auto 48px;
    max-width: 600px;
}

.mobile-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.mobile-feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-feature:hover {
    transform: translateY(-8px);
    border-color: rgba(1, 151, 178, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 24px rgba(1, 151, 178, 0.15);
}

.mobile-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(1, 151, 178, 0.15), rgba(43, 245, 216, 0.1));
    border: 2px solid rgba(1, 151, 178, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.mobile-feature:hover .mobile-feature-icon {
    background: linear-gradient(135deg, rgba(1, 151, 178, 0.25), rgba(43, 245, 216, 0.15));
    transform: scale(1.1);
}

.mobile-feature-icon .material-symbols-outlined {
    font-size: 40px;
    color: var(--primary);
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 40;
}

.mobile-feature h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.mobile-feature p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.app-download {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 48px 32px;
}

.download-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 32px;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(1, 151, 178, 0.2);
}

.app-badge .material-symbols-outlined {
    font-size: 36px;
    color: var(--primary);
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 36;
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.badge-small {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-large {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}


/* FAQ Section */
.faq-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(1, 151, 178, 0.3);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 28px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question .material-symbols-outlined {
    font-size: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question .material-symbols-outlined {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 28px 24px 28px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    padding: 120px 0;
    position: relative;
    z-index: 10;
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(36px, 8vw, 56px);
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.2;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: white;
    padding: 20px 48px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-bottom: 32px;
}

.final-cta-btn:hover {
    background: #017a94;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(1, 151, 178, 0.4);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

.trust-badge .material-symbols-outlined {
    color: var(--primary);
    font-size: 20px;
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 20;
}

/* Responsive adjustments for new components */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 32px;
    }

    .stat-card {
        padding: 20px;
        gap: 12px;
    }

    .stat-card .material-symbols-outlined {
        font-size: 32px;
    }

    .stat-content h3 {
        font-size: 16px;
    }

    .stat-content p {
        font-size: 13px;
    }

    .hero-referral {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 16px;
    }

    .referral-content {
        gap: 12px;
    }

    .referral-content .material-symbols-outlined {
        font-size: 28px;
    }

    .referral-text strong {
        font-size: 16px;
    }

    .referral-text span {
        font-size: 12px;
    }

    .referral-btn {
        width: 100%;
        justify-content: center;
    }

    .why-dentalji {
        padding: 60px 0;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .why-point {
        padding: 24px;
    }

    .why-point .material-symbols-outlined {
        font-size: 40px;
    }

    .why-point-content h3 {
        font-size: 18px;
    }

    .why-point-content p {
        font-size: 14px;
    }

    .share-earn-section {
        padding: 60px 0;
    }

    .pricing-section {
        padding: 60px 0;
    }

    .security-section {
        padding: 60px 0;
    }

    .security-banner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 16px;
        background: transparent;
        border: none;
    }

    .security-divider {
        display: none;
    }

    .security-point {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 20px 12px;
        gap: 12px;
        transition: transform 0.3s ease;
    }

    .security-point:hover {
        background: rgba(255, 255, 255, 0.06);
        transform: translateY(-2px);
    }

    .security-point span:last-child {
        font-size: 13px;
        line-height: 1.4;
    }

    .security-point .material-symbols-outlined {
        font-size: 32px;
        margin-bottom: 4px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .mobile-app-section {
        padding: 60px 0;
    }

    .section-subtitle {
        font-size: 16px;
        margin: -24px auto 32px;
    }

    .mobile-features {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 48px;
    }

    .mobile-feature {
        padding: 28px;
    }

    .mobile-feature-icon {
        width: 70px;
        height: 70px;
    }

    .mobile-feature-icon .material-symbols-outlined {
        font-size: 36px;
    }

    .mobile-feature h3 {
        font-size: 18px;
    }

    .mobile-feature p {
        font-size: 14px;
    }

    .app-download {
        padding: 36px 24px;
    }

    .download-text {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .app-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .app-badge {
        width: 100%;
        max-width: 280px;
    }

    .why-content,
    .mobile-app-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-mockup {
        min-height: 300px;
    }

    .share-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px;
    }

    .faq-answer-content {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }

    .final-cta {
        padding: 80px 0;
    }

    .final-cta-btn {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
        max-width: 320px;
    }

    .trust-badges {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 10px;
        margin-top: 24px;
    }

    .stat-card {
        padding: 16px;
        gap: 10px;
    }

    .stat-card .material-symbols-outlined {
        font-size: 28px;
    }

    .stat-content h3 {
        font-size: 15px;
    }

    .stat-content p {
        font-size: 12px;
    }

    .hero-referral {
        padding: 16px;
        gap: 12px;
        margin-top: 24px;
    }

    .referral-content .material-symbols-outlined {
        font-size: 24px;
    }

    .referral-text strong {
        font-size: 15px;
    }

    .referral-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .cta {
        padding: 14px 24px;
        font-size: 15px;
    }

    .cta .material-symbols-outlined {
        font-size: 18px;
    }

    .why-content {
        gap: 12px;
        margin-top: 24px;
    }

    .why-point {
        padding: 20px;
        gap: 12px;
    }

    .why-point .material-symbols-outlined {
        font-size: 36px;
    }

    .why-point-content h3 {
        font-size: 17px;
    }

    .why-point-content p {
        font-size: 13px;
    }

    .share-steps {
        gap: 20px;
    }

    .share-step h3 {
        font-size: 16px;
    }

    .share-step p {
        font-size: 13px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .security-item h3 {
        font-size: 16px;
    }

    .security-item p {
        font-size: 13px;
    }

    .security-banner {
        padding: 24px 20px;
        gap: 16px;
    }

    .security-point {
        font-size: 14px;
    }

    .security-point .material-symbols-outlined {
        font-size: 24px;
    }

    .mobile-features {
        gap: 12px;
        margin-bottom: 32px;
    }

    .mobile-feature {
        padding: 24px;
    }

    .mobile-feature-icon {
        width: 60px;
        height: 60px;
    }

    .mobile-feature-icon .material-symbols-outlined {
        font-size: 32px;
    }

    .mobile-feature h3 {
        font-size: 17px;
    }

    .mobile-feature p {
        font-size: 13px;
    }

    .app-download {
        padding: 28px 20px;
    }

    .download-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .app-badge {
        padding: 10px 20px;
        min-width: 180px;
    }

    .app-badge .material-symbols-outlined {
        font-size: 32px;
    }

    .badge-small {
        font-size: 10px;
    }

    .badge-large {
        font-size: 16px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .mobile-screenshots {
        flex-direction: column;
    }

    .screenshot-placeholder {
        width: 180px;
        height: 360px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }
}

/* Feature Card Link Styling */
.feature-card {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}