:root {
    --primary-bg: #FF5722;
    --primary-hover: #E64A19;
    --secondary-bg: #FF7043;
    --accent: #FFAB91;
    --white: #FFFFFF;
    --text: #111111;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-lighter: rgba(255, 255, 255, 0.7);
    --glass: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow: rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --elastic: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 50%, var(--accent) 100%);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
}

.page-container {
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
    width: 100%;
    box-sizing: border-box;
}

.floating-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.floating-text {
    position: absolute;
    font-size: clamp(120px, 20vw, 350px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    user-select: none;
    animation: float-drift 20s ease-in-out infinite;
}

.text-1 {
    top: 15%;
    left: 8%;
    transform: rotate(-5deg);
    animation-delay: -5s;
}

.text-2 {
    bottom: 20%;
    right: 10%;
    transform: rotate(3deg);
    animation-delay: -10s;
}

@keyframes float-drift {

    0%,
    100% {
        transform: translate(0, 0) rotate(-5deg);
    }

    33% {
        transform: translate(20px, -15px) rotate(-3deg);
    }

    66% {
        transform: translate(-15px, 10px) rotate(-7deg);
    }
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 12px 28px;
    display: flex;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    max-width: calc(100vw - 40px);
    box-sizing: border-box;
}

.floating-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.floating-nav .nav-link,
.floating-nav .logo-text {
    color: var(--text);
}

.floating-nav .logo-sub {
    color: rgba(0, 0, 0, 0.6);
}

.floating-nav.scrolled .primary-nav-btn {
    background: var(--primary-bg);
    color: white;
}



.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    margin-right: clamp(20px, 5vw, 48px);
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('images/mlogo.png') center/contain no-repeat;
    border-radius: 12px;
}

.floating-nav .logo-icon::before {
    filter: brightness(0);
}

.footer-logo .logo-icon::before {
    filter: brightness(0) invert(1);
}

.footer-logo .logo-text {
    color: white;
}

.footer-logo .logo-sub {
    color: rgba(255, 255, 255, 0.8);
}

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

.logo-sub {
    font-size: 10px;
    color: rgba(0, 0, 0, 0.6);
    margin-top: -2px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: clamp(20px, 4vw, 40px);
    margin-right: clamp(20px, 4vw, 40px);
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

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

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

.nav-buttons {
    display: flex;
    gap: 12px;
}

.nav-btn {
    border: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

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

.primary-nav-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: white;
    border: none;
    color: var(--primary-bg);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-bg), var(--secondary-bg));
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.5s var(--elastic);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--glass);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
    margin-bottom: 48px;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 28px;
    font-weight: 700;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    transform: scale(1.05);
}

.mobile-login-btn {
    background: var(--primary-bg);
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-login-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    padding: 120px 0 80px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 80px);
    align-items: center;
    width: 100%;
}

.site-builder-text {
    position: relative;
}

.hero-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 32px;
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.site-builder-text h1 {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 900;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.highlight-word {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    padding: 4px 12px;
    border-radius: 8px;
    display: inline-block;
}

.site-builder-text p {
    font-size: clamp(16px, 2vw, 20px);
    max-width: 500px;
    margin-bottom: 40px;
    color: var(--text-light);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-large {
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: white;
}

.btn-primary svg {
    margin-right: 8px;
    transition: var(--transition);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.preview-window {
    width: 100%;
    max-width: 600px;
    position: relative;
    animation: fadeInRight 1s ease-out 0.6s both, float 8s ease-in-out infinite 3s;
    margin-left: auto;
}

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

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

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

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

@keyframes float {

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

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

.browser-frame {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.browser-frame:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.browser-header {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #dee2e6;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f57;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #28ca42;
}

.browser-frame:hover .dot {
    transform: none;
}

.browser-address {
    flex: 1;
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e9ecef;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.browser-content {
    height: 450px;
    background: white;
    overflow: hidden;
}

.dashboard-modern {
    display: flex;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 8px;
    overflow: hidden;
}

.dashboard-sidebar {
    width: 200px;
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    border-right: none;
    padding: 20px 0;
    color: white;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    margin-bottom: 24px;
}

.sidebar-logo {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 14px;
}

.sidebar-header span {
    font-weight: 700;
    color: white;
    font-size: 16px;
}

.sidebar-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
    font-weight: 500;
    margin: 2px 8px;
    border-radius: 8px;
}

.sidebar-nav .nav-item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateX(2px);
}

.sidebar-nav .nav-item.active {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

.dashboard-main {
    flex: 1;
    padding: 32px;
    overflow-y: auto;
    background: white;
}

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

.dashboard-header-modern h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-bg), var(--secondary-bg));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-header-modern p {
    color: #64748b;
    font-size: 16px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.modern-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 28px;
    border: 2px solid #f1f5f9;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-bg), var(--secondary-bg));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.modern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.15);
    border-color: var(--primary-bg);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.modern-card:hover .card-icon {
    transform: scale(1.05);
}

.card-edit .card-icon {
    background: linear-gradient(135deg, var(--primary-bg), var(--secondary-bg));
    color: white;
}

.card-support .card-icon {
    background: linear-gradient(135deg, var(--secondary-bg), var(--accent));
    color: white;
}

.modern-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.modern-card p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 16px;
}

.card-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 8px;
    padding: 6px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.card-status-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-hover-highlight:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-bg);
    transform: translateX(2px);
    cursor: pointer;
}

.card-hover-highlight:hover svg {
    color: var(--primary-bg);
}

.card-meta {
    padding-left: 14px;
    margin-top: -4px;
    margin-bottom: 4px;
}

.status-time {
    font-size: 10px;
    color: #94a3b8;
    font-style: italic;
}

.card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--primary-bg);
    font-weight: 600;
    padding: 6px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.online {
    background: #10b981;
}

@keyframes pulse-dot {

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

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.status-count {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 16px;
    font-weight: 600;
}

.features-section {
    padding: 120px 0;
    position: relative;
    z-index: 10;
}

.features-title {
    text-align: center;
    margin-bottom: 80px;
}

.features-title h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-title p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--glass);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.feature-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon::after {
    display: none;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.8;
    }
}

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

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

.faq-section {
    padding: 120px 0;
    position: relative;
    z-index: 10;
}

.faq-title {
    text-align: center;
    margin-bottom: 80px;
}

.faq-title h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-title p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.faq-item {
    margin-bottom: 24px;
    transition: var(--transition);
}

.faq-question {
    background: var(--glass);
    backdrop-filter: blur(20px);
    padding: 24px 32px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--glass-border);
    color: white;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    border-radius: 0 0 16px 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    margin-top: -8px;
    border: 1px solid transparent;
    border-top: none;
}

.faq-answer-inner {
    padding: 0 32px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.faq-item.active .faq-question {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px 16px 0 0;
    border-color: rgba(255, 255, 255, 0.3);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 28px 0 32px;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.3);
}

.footer {
    padding: 100px 0 50px;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
}

.footer-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
    text-align: center;
}

.footer-info {
    max-width: 380px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.footer-description {
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.mediase-link {
    display: inline-flex;
    align-items: center;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    padding: 12px 24px;
    background: var(--glass);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.mediase-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.mediase-link svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.mediase-link:hover svg {
    transform: translateX(6px);
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.footer-col ul li {
    margin-bottom: 16px;
}

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    padding: 4px 0;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: white;
    transform: translateX(4px);
}

.copyright {
    margin-top: 80px;
    text-align: center;
    color: var(--text-lighter);
    font-size: 14px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.instagram-section {
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

.instagram-container {
    text-align: center;
}

.instagram-container h2 {
    display: none;
}

.instagram-embed-wrapper {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    background: white;
}

.instagram-embed {
    width: 100%;
    height: auto;
    min-height: 600px;
    border: none;
    aspect-ratio: 328/584;
}

.instagram-footer {
    margin-top: 32px;
}

.instagram-embed-mobile {
    width: 100%;
    height: auto;
    min-height: 480px;
    border: none;
    border-radius: 16px;
    background: white;
    aspect-ratio: 328/584;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .instagram-footer {
        max-width: 100%;
    }
}

.portfolio-slider {
    margin-top: 40px;
    margin-bottom: 60px;
}

.slider-browser-frame {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    max-width: 100%;
}

.slider-browser-frame:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.slider-content {
    position: relative;
    background: white;
}

.slider-track {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: #f5f5f5;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px 0;
    background: white;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-bg);
    transform: scale(1.3);
}

.slider-dot:hover {
    background: var(--primary-hover);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: white;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

@media (max-width: 768px) {
    .slider-track {
        padding-bottom: 60%;
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .slider-track {
        padding-bottom: 65%;
    }
    
    .footer-logo .logo-icon {
        width: 50px;
        height: 50px;
        margin-right: 14px;
    }
    
    .footer-logo .logo-text {
        font-size: 22px;
    }
    
    .footer-logo .logo-sub {
        font-size: 12px !important;
        margin-top: 2px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--primary-bg), var(--secondary-bg));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.annotation-svg {
    position: absolute;
    pointer-events: none;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.annotation-svg.visible {
    opacity: 1;
}

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .site-builder-text {
        text-align: center;
    }

    .preview-window {
        margin: 0 auto;
        max-width: 90%;
    }

    .dashboard-cards {
        grid-template-columns: 1fr;
    }

    .footer-links {
        gap: 60px;
    }

    .footer-container {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        padding: 10px 20px;
        width: calc(100% - 24px);
        justify-content: space-between;
        left: 12px;
        transform: none;
        border-radius: 40px;
    }

    .nav-links,
    .nav-buttons {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-section {
        padding: 100px 0 48px;
    }

    .hero-subtitle {
        margin-top: 20px;
    }

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

    .faq-section {
        padding: 80px 0;
    }

    .footer {
        padding: 80px 0 40px;
    }

    .content-grid {
        gap: 40px;
    }

    .preview-window {
        max-width: 100%;
        margin: 0;
    }

    .browser-content {
        height: 250px;
    }

    .dashboard-header-modern {
        margin-bottom: 20px;
    }

    .dashboard-cards {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        max-width: none;
    }

    .dashboard-modern {
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100%;
        padding: 12px 0;
    }

    .sidebar-nav {
        display: flex;
        overflow-x: auto;
        padding: 0 16px;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .sidebar-nav .nav-item {
        white-space: nowrap;
        padding: 8px 12px;
        border-radius: 6px;
        border-right: none;
        font-size: 12px;
    }

    .sidebar-nav .nav-item.active {
        border-right: none;
        border-bottom: 2px solid var(--secondary-bg);
    }

    .dashboard-main {
        padding: 20px 16px;
    }

    .dashboard-header-modern h2 {
        font-size: 20px;
    }

    .dashboard-header-modern p {
        font-size: 13px;
    }

    .dashboard-cards {
        gap: 16px;
        max-width: none;
        grid-template-columns: 1fr;
    }

    .modern-card {
        padding: 20px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }

    .modern-card h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .modern-card p {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-info {
        max-width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .footer-col {
        text-align: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
        box-sizing: border-box;
    }

    .floating-nav {
        padding: 4px 6px;
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
        left: 16px;
        box-sizing: border-box;
        border-radius: 20px;
        top: 12px;
    }

    .logo-icon {
        width: 20px;
        height: 20px;
        margin-right: 4px;
    }

    .logo-text {
        font-size: 11px;
    }

    .logo-sub {
        font-size: 6px;
    }

    .menu-toggle {
        width: 24px;
        height: 24px;
        border-radius: 12px;
    }

    .menu-toggle svg {
        width: 12px;
        height: 12px;
    }

    .hero-section {
        padding: 84px 0 32px;
        box-sizing: border-box;
    }

    .hero-subtitle {
        margin-top: 24px;
    }

    .features-section {
        padding: 64px 0;
        box-sizing: border-box;
    }

    .faq-section {
        padding: 64px 0;
        box-sizing: border-box;
    }

    .footer {
        padding: 64px 0 32px;
        box-sizing: border-box;
    }

    .site-builder-text h1 {
        font-size: clamp(28px, 8vw, 42px);
    }

    .site-builder-text p {
        font-size: 14px;
    }

    .btn-large {
        padding: 12px 18px;
        font-size: 13px;
        white-space: nowrap;
    }

    .btn-large svg {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }

    .preview-window {
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .browser-content {
        height: 220px;
    }

    .dashboard-header-modern {
        margin-bottom: 16px;
    }

    .dashboard-header-modern h2 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .dashboard-header-modern p {
        font-size: 11px;
    }

    .dashboard-cards {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .modern-card {
        padding: 12px;
        min-width: 0;
        word-wrap: break-word;
        box-sizing: border-box;
    }

    .card-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 8px;
    }

    .card-icon svg {
        width: 14px;
        height: 14px;
    }

    .modern-card h3 {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .modern-card p {
        font-size: 9px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .card-status {
        font-size: 8px;
        padding: 3px 4px;
        margin-bottom: 4px;
    }

    .card-status svg {
        width: 10px;
        height: 10px;
    }

    .card-meta {
        margin-bottom: 3px;
        padding-left: 8px;
    }

    .status-time {
        font-size: 7px;
    }

    .card-action {
        font-size: 8px;
        padding: 3px 4px;
    }

    .card-action svg {
        width: 10px;
        height: 10px;
    }

    .dashboard-sidebar {
        padding: 8px 0;
    }

    .sidebar-header {
        padding: 0 12px;
        margin-bottom: 16px;
    }

    .sidebar-nav {
        padding: 0 12px;
    }

    .dashboard-main {
        padding: 16px 12px;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

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

    .feature-card {
        padding: 24px;
        box-sizing: border-box;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 15px;
        box-sizing: border-box;
    }

    .faq-answer-inner {
        padding: 0 20px;
        font-size: 14px;
        box-sizing: border-box;
    }
}