:root {
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --primary: #0d2137;
    --primary-light: #163456;
    --secondary: #0891b2;
    --secondary-light: #06b6d4;
    --accent: #22d3ee;
    --dark: #0a1628;
    --text-special: #1e6194;
    --text-special-light: #f1f9ff;
    --text-dark: #1e293b;
    --text-body: #475569;
    --text-muted: #64748b;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition-fast: 0.15s ease;
    --transition: 0.2s ease;
    --transition-slow: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-body);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

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

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 34px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.text-success {
    color: var(--success);
}

.text-danger {
    color: var(--danger);
}

.text-muted {
    color: var(--text-muted);
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background: #0e7490;
    transform: translateY(-1px);
}

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

.btn-success:hover {
    background: #059669;
}

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

.btn-white:hover {
    background: var(--gray-50);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    color: var(--text-dark);
    background: transparent;
}

.btn-ghost:hover {
    background: var(--gray-100);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

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

.btn-outline-dark:hover {
    border-color: var(--primary);
    background: var(--gray-50);
}

.btn-sm {
    padding: 8px 14px;
    font-size: 13px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-block {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: rgba(13, 33, 55, 0.1);
    color: var(--primary);
}

.badge-secondary {
    background: rgba(8, 145, 178, 0.1);
    color: var(--secondary);
}

.badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.gap-1 {
    gap: 8px;
}

.gap-2 {
    gap: 16px;
}

.gap-3 {
    gap: 24px;
}

.m-0 {
    margin: 0 !important;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.p-2 {
    padding: 16px;
}

.p-3 {
    padding: 24px;
}

.w-100 {
    width: 100%;
}

.bg-white {
    background: var(--white);
}

.bg-gray {
    background: var(--gray-50);
}

.rounded {
    border-radius: var(--radius);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

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

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

.site-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
}

.site-header-wrapper.scrolled {
    box-shadow: var(--shadow-lg);
}

.site-header-wrapper.scrolled .promo-line {
    display: none;
}

.site-header-wrapper.scrolled .breadcrumb-section {
    display: none;
}

.promo-line {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 10px 0;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    font-size: 13px;
}

.promo-content i {
    font-size: 14px;
    color: var(--accent);
}

.promo-content span {
    color: rgba(255, 255, 255, 0.9);
}

.promo-content strong {
    color: var(--white);
    font-weight: 700;
}

.promo-btn {
    background: var(--white);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    transition: all var(--transition);
}

.promo-btn:hover {
    background: var(--accent);
    transform: translateX(2px);
}

.promo-btn i {
    font-size: 10px;
    color: var(--primary);
}

.info-line {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 10px 0;
}

.info-line-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-line-left,
.info-line-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-body);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: var(--radius);
    font-size: 13px;
    transition: all var(--transition);
    white-space: nowrap;
}

.info-item:hover {
    color: var(--secondary);
    background: var(--gray-50);
}

.info-item i {
    font-size: 13px;
    color: var(--text-muted);
}

.info-item:hover i {
    color: var(--secondary);
}

.info-item.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-weight: 500;
}

.info-item.highlight i {
    color: var(--white);
}

.info-item.highlight:hover {
    background: #0e7490;
}

header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    color: var(--white);
    font-size: 18px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.3px;
}

.logo-text span {
    color: var(--secondary);
}

nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

nav>a,
nav .nav-item>a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

nav>a:hover,
nav .nav-item:hover>a {
    color: var(--secondary);
    background: var(--gray-50);
}

nav .nav-item {
    position: relative;
}

nav .nav-item>a i {
    font-size: 10px;
    transition: transform var(--transition);
}

nav .nav-item:hover>a i {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding: 24px;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
    z-index: 1000;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

.mega-menu-header {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.mega-menu-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.mega-menu-header p {
    font-size: 13px;
    color: var(--text-muted);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition);
}

.mega-menu-item:hover {
    background: var(--gray-50);
}

.mega-menu-icon {
    width: 42px;
    height: 42px;
    background: var(--gray-50);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.mega-menu-icon i {
    font-size: 18px;
    color: var(--secondary);
}

.mega-menu-item:hover .mega-menu-icon {
    padding: 6px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.mega-menu-item:hover .mega-menu-icon i {
    color: var(--white);
}

.mega-menu-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.mega-menu-content p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(10px);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--text-body);
    text-decoration: none;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--secondary);
}

.dropdown-menu a i {
    font-size: 14px;
    color: var(--secondary);
    width: 18px;
    text-align: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
}

.notification-wrapper {
    position: relative;
}

.notification-btn {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    color: var(--text-body);
    font-size: 18px;
    transition: all var(--transition);
}

.notification-btn:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.notification-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 380px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition);
    z-index: 1000;
    overflow: hidden;
}

.notification-wrapper:hover .notification-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-100);
    background: var(--gray-50);
}

.notification-header h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.notification-header a {
    font-size: 12px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.notification-list {
    max-height: 350px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    gap: 14px;
    padding: 14px 20px;
    text-decoration: none;
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background: var(--gray-50);
}

.notification-item.unread {
    background: rgba(8, 145, 178, 0.04);
}

.notification-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-message {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.5;
    margin: 0 0 6px 0;
}

.notification-message strong {
    color: var(--text-dark);
    font-weight: 600;
}

.notification-time {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.notification-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--gray-100);
    background: var(--gray-50);
    text-align: center;
}

.notification-footer a {
    font-size: 13px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-section {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 4px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.breadcrumb a {
    color: var(--text-body);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}

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

.breadcrumb-separator {
    color: var(--gray-300);
    font-size: 10px;
}

.breadcrumb-current {
    color: var(--text-dark);
    font-weight: 600;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

.mobile-nav-overlay.active {
    display: block;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: right var(--transition-slow);
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
}

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

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
}

.mobile-nav-links {
    padding: 16px 0;
}

.mobile-nav-links>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    color: #1f2937;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-nav-links>a:hover {
    background: #f9fafb;
    color: #0891b2;
}

.mobile-nav-links>a i {
    font-size: 12px;
    color: #9ca3af;
    transition: transform var(--transition-slow);
}

.mobile-nav-dropdown {
    display: none;
    background: #f9fafb;
}

.mobile-nav-dropdown.active {
    display: block;
}

.mobile-nav-dropdown a {
    display: block;
    padding: 12px 20px 12px 40px;
    font-size: 14px;
    color: #4b5563;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-nav-dropdown a:hover {
    background: #f3f4f6;
    color: #0891b2;
}

.mobile-nav-actions {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav-actions .btn {
    width: 100%;
    justify-content: center;
}

.main-content {
    padding-top: 170px;
}

.main-content.no-breadcrumb {
    padding-top: 130px;
}

.hero-slider {
    position: relative;
    height: 580px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

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

.slide-1 .slide-bg {
    background: linear-gradient(135deg, var(--primary) 0%, #192e3e 78%, var(--primary) 100%);
}

.slide-1 .slide-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(8, 145, 178, 0.25) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 40%);
}

.slide-2 .slide-bg {
    background: linear-gradient(135deg, var(--primary) 0%, #192e3e 78%, var(--primary) 100%);
}

.slide-2 .slide-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(34, 211, 238, 0.2) 0%, transparent 45%), radial-gradient(circle at 30% 70%, rgba(8, 145, 178, 0.15) 0%, transparent 40%);
}

.slide-3 .slide-bg {
    background: linear-gradient(135deg, var(--primary) 0%, #192e3e 78%, var(--primary) 100%);
}

.slide-3 .slide-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 40%, rgba(6, 182, 212, 0.2) 0%, transparent 50%), radial-gradient(circle at 40% 60%, rgba(34, 211, 238, 0.12) 0%, transparent 35%);
}

.slide-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.slide-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.slide-inner {
    max-width: 540px;
    flex-shrink: 0;
}

.slide-visual {
    position: relative;
    width: 480px;
    height: 420px;
    flex-shrink: 0;
}

.slide-visual-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 240px;
    height: 320px;
    background: linear-gradient(145deg, #1a3a5c 0%, #0d2137 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-visual-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 145, 178, 0.3) 0%, transparent 50%), repeating-linear-gradient( 0deg, transparent, transparent 8px, rgba(34, 211, 238, 0.1) 8px, rgba(34, 211, 238, 0.1) 9px);
}

.server-rack {
    position: absolute;
    inset: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.server-unit {
    background: linear-gradient(90deg, #0a1929 0%, #163456 50%, #0a1929 100%);
    height: 28px;
    border-radius: 4px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.server-unit::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--success);
    animation: blink 2s infinite;
}

.server-unit::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--secondary);
    animation: blink 2s infinite 0.5s;
}

.server-unit:nth-child(odd)::before {
    animation-delay: 0.3s;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.server-lights {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 4px;
}

.server-lights span {
    width: 4px;
    height: 12px;
    background: rgba(34, 211, 238, 0.6);
    border-radius: 2px;
}

.float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 4s ease-in-out infinite;
}

.float-card-1 {
    bottom: 60px;
    left: -10px;
    animation-delay: 0s;
}

.float-card-2 {
    top: 40px;
    right: 60px;
    animation-delay: 1s;
}

.float-card-3 {
    bottom: 140px;
    right: 20px;
    animation-delay: 2s;
}

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

.float-card-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.float-card-icon.blue {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
}

.float-card-icon.green {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: var(--white);
}

.float-card-icon.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: var(--white);
}

.float-card-content {
    line-height: 1.2;
}

.float-card-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
}

.float-card-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.dashboard-preview {
    position: absolute;
    top: 20px;
    right: 0;
    width: 280px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.dashboard-header {
    background: var(--gray-50);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--gray-200);
}

.dashboard-dots {
    display: flex;
    gap: 5px;
}

.dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dashboard-dots span:nth-child(1) {
    background: #ef4444;
}

.dashboard-dots span:nth-child(2) {
    background: #f59e0b;
}

.dashboard-dots span:nth-child(3) {
    background: #10b981;
}

.dashboard-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 8px;
}

.dashboard-body {
    padding: 14px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.dashboard-stat {
    background: var(--gray-50);
    padding: 10px;
    border-radius: var(--radius);
}

.dashboard-stat-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.dashboard-stat-label {
    font-size: 9px;
    color: var(--text-muted);
}

.dashboard-chart {
    height: 50px;
    background: linear-gradient(180deg, rgba(8, 145, 178, 0.1) 0%, transparent 100%);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.dashboard-chart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 30'%3E%3Cpath d='M0,25 Q25,20 50,22 T100,15 T150,20 T200,10 L200,30 L0,30 Z' fill='%230891b2' fill-opacity='0.3'/%3E%3Cpath d='M0,28 Q25,24 50,26 T100,20 T150,24 T200,15 L200,30 L0,30 Z' fill='%230891b2' fill-opacity='0.5'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.tech-badges {
    position: absolute;
    bottom: 0;
    right: 40px;
    display: flex;
    gap: 8px;
}

.tech-badge {
    background: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
}

.tech-badge img {
    width: 18px;
    height: 18px;
}

.tech-badge i {
    font-size: 16px;
}

.tech-badge .fa-wordpress {
    color: #21759b;
}

.tech-badge .fa-cpanel {
    color: #ff6c2c;
}

.tech-badge .mysql-icon {
    color: #00758f;
    font-weight: 800;
    font-size: 9px;
}

.float-card-icon.orange {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: var(--white);
}

.float-card-icon.red {
    background: linear-gradient(135deg, #dc2626 0%, #f87171 100%);
    color: var(--white);
}

.hosting-theme {
    background: linear-gradient(145deg, #1e3a5f 0%, #0d2137 100%);
}

.browser-mockup {
    position: absolute;
    inset: 15px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.browser-bar {
    background: var(--gray-100);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--gray-200);
}

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

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots .red {
    background: #ef4444;
}

.browser-dots .yellow {
    background: #f59e0b;
}

.browser-dots .green {
    background: #10b981;
}

.browser-url {
    flex: 1;
    background: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.browser-url i {
    color: var(--success);
    font-size: 10px;
}

.browser-content {
    padding: 12px;
    background: var(--gray-50);
    height: calc(100% - 42px);
}

.website-header-mock {
    height: 20px;
    background: var(--white);
    border-radius: 4px;
    margin-bottom: 10px;
}

.website-hero-mock {
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 6px;
    margin-bottom: 10px;
}

.website-cards-mock {
    display: flex;
    gap: 8px;
}

.mock-card {
    flex: 1;
    height: 50px;
    background: var(--white);
    border-radius: 4px;
    border: 1px solid var(--gray-200);
}

.dedicated-theme {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
}

.datacenter-rack {
    position: absolute;
    inset: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rack-unit.large {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    height: 80px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.rack-front {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.rack-vents {
    flex: 1;
    height: 60%;
    background: repeating-linear-gradient( 90deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 3px, transparent 3px, transparent 6px);
    border-radius: 4px;
}

.rack-lights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 15px;
}

.rack-lights .light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: blink 2s infinite;
}

.rack-lights .light.green {
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.rack-lights .light.blue {
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
    animation-delay: 0.5s;
}

.rack-unit.large:nth-child(2) .rack-lights .light {
    animation-delay: 0.3s;
}

.rack-unit.large:nth-child(3) .rack-lights .light {
    animation-delay: 0.7s;
}

@media (max-width: 1024px) {
    .slide-visual {
        display: none;
    }
    .slide-content {
        justify-content: center;
    }
    .slide-inner {
        text-align: center;
        max-width: 600px;
    }
    .slide-buttons {
        justify-content: center;
    }
    .slide-features {
        justify-content: center;
    }
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.slide-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.slide h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.slide h1 span {
    color: var(--accent);
}

.slide p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    line-height: 1.7;
}

.slide-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.slide-features {
    display: flex;
    gap: 24px;
}

.slide-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
}

.slide-feature i {
    color: var(--accent);
    font-size: 14px;
}

.slider-nav {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.slider-dot.active {
    background: var(--white);
    width: 32px;
    border-radius: 5px;
}

.page-header {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #192e3e 78%, var(--primary) 100%);
    z-index: 0;
}

.page-header-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-header-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.page-header-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    color: white;
    margin-bottom: 20px;
}

.header-badge i {
    color: var(--accent);
}

.header-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.header-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.header-feature i {
    color: var(--accent);
}

.section {
    padding: 80px 0;
}

.section-gray {
    background: var(--gray-50);
}

.section-dark {
    background: var(--dark);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-title .highlight {
    color: var(--secondary);
}

.section-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition-slow);
}

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

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition-slow);
    height: 100%;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
    transform: translateY(-4px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(8, 145, 178, 0.15);
    transition: all var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--secondary);
    color: var(--white);
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition-slow);
    position: relative;
}

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

.pricing-card.featured {
    border: 2px solid var(--secondary);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-price .amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
}

.pricing-price .currency {
    font-size: 20px;
    vertical-align: top;
}

.pricing-price .period {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
}

.pricing-features li i {
    color: var(--success);
    font-size: 12px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-slow);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    border-color: var(--secondary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.faq-item.active .faq-question h3 {
    color: var(--secondary);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-slow);
}

.faq-icon i {
    font-size: 12px;
    color: var(--text-muted);
    transition: transform var(--transition-slow);
}

.faq-item.active .faq-icon {
    background: var(--secondary);
}

.faq-item.active .faq-icon i {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

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

.faq-answer-content {
    padding: 0 24px 20px;
    border-top: 1px solid var(--gray-100);
    padding-top: 16px;
}

.faq-answer-content p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

.cta {
    padding: 70px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(8, 145, 178, 0.25) 0%, transparent 45%), radial-gradient(circle at 80% 50%, rgba(34, 211, 238, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    left: 24px;
    width: 46px;
    height: 46px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    font-size: 18px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
    z-index: 900;
}

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

.back-to-top:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.live-support {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.live-support-btn {
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: none;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(8, 145, 178, 0.4);
    transition: all var(--transition-slow);
}

.live-support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(8, 145, 178, 0.5);
}

.live-support-btn i {
    font-size: 18px;
}

.live-support-menu {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-slow);
    min-width: 220px;
}

.live-support.active .live-support-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.live-support-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: var(--text-body);
    text-decoration: none;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.live-support-menu-item:hover {
    background: var(--gray-50);
}

.live-support-menu-item .icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.live-support-menu-item .icon.whatsapp {
    background: #25d366;
    color: white;
}

.live-support-menu-item .icon.email {
    background: var(--secondary);
    color: white;
}

.live-support-menu-item .icon.ticket {
    background: #8b5cf6;
    color: white;
}

.live-support-menu-item .icon.chat {
    background: var(--primary);
    color: white;
}

.live-support-menu-item .label {
    font-size: 14px;
    font-weight: 500;
}

.live-support-menu-item .sublabel {
    font-size: 11px;
    color: var(--text-muted);
}

footer {
    background: var(--dark);
    padding: 60px 0 24px;
}

.footer-grid {
    width: 70%;
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    gap: 36px;
    margin-bottom: 40px;
}

.footer-area {
    display: flex;
    justify-content: space-between;
}

.footer-brand {
    width: 20%;
    margin-right: 40px;
}

.footer-brand .logo {
    margin-bottom: 14px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 18px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--white);
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-column ul a:hover {
    color: var(--accent);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item i {
    color: var(--secondary);
    margin-top: 2px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

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

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition);
}

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

.payment-methods {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.payment-methods i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 1024px) {
    .mobile {
        display: none;
    }
}

@media (max-width: 1024px) {
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 30px;
    }
    .mega-menu {
        min-width: 400px;
    }
    .hero-slider {
        height: 450px;
    }
    .slide h1 {
        font-size: 36px;
    }
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 30px;
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-header {
        padding: 60px 0;
    }
    .page-header-content h1 {
        font-size: 34px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .promo-content span {
        font-size: 12px;
    }
    .info-line-left .info-item span {
        display: none;
    }
    .desktop {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 26px;
    }
    .promo-line {
        display: none;
    }
    .info-line {
        display: none;
    }
    .site-header-wrapper {
        position: relative;
    }
    header nav {
        display: none;
    }
    .header-actions .notification-wrapper,
    .header-actions .btn-ghost {
        display: none;
    }
    .mobile-menu {
        display: flex !important;
    }
    .notification-dropdown {
        width: 320px;
        right: -60px;
    }
    .breadcrumb-section {
        padding: 8px 0;
    }
    .breadcrumb {
        font-size: 12px;
        gap: 8px;
    }
    .main-content {
        padding-top: 0;
    }
    .main-content.no-breadcrumb {
        padding-top: 0;
    }
    .hero-slider {
        height: 520px;
    }
    .slide-content {
        padding: 0 16px;
    }
    .slide-inner {
        max-width: 100%;
        text-align: center;
    }
    .slide h1 {
        font-size: 26px;
        line-height: 1.3;
    }
    .slide p {
        font-size: 14px;
    }
    .slide-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    .slide-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .slide-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .slide-features {
        flex-direction: column;
        gap: 8px;
    }
    .slide-feature {
        font-size: 12px;
    }
    .slider-arrows {
        display: none;
    }
    .slider-nav {
        bottom: 20px;
    }
    .page-header {
        padding: 50px 0;
    }
    .page-header-content h1 {
        font-size: 28px;
    }
    .page-header-content p {
        font-size: 15px;
    }
    .header-features {
        flex-direction: column;
        gap: 12px;
    }
    .section {
        padding: 50px 0;
    }
    .section-header {
        margin-bottom: 40px;
    }
    .section-title {
        font-size: 26px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .pricing-card.featured {
        transform: none;
    }
    .cta-content h2 {
        font-size: 28px;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .faq-question {
        padding: 16px 20px;
    }
    .faq-question h3 {
        font-size: 14px;
    }
    footer {
        padding: 40px 0 20px;
    }
    .footer-area {
        flex-direction: column;
    }
    .footer-grid {
        width: 100%;
        margin-top: 50px;
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-brand {
        width: 100%;
    }
    .footer-brand .logo {
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-contact {
        align-items: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .payment-methods {
        justify-content: center;
    }
    .back-to-top {
        bottom: 90px;
        left: 16px;
        width: 42px;
        height: 42px;
    }
    .live-support {
        bottom: 16px;
        right: 16px;
    }
    .live-support-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    .live-support-btn span {
        display: none;
    }
    .btn-lg {
        padding: 12px 24px;
        font-size: 14px;
    }
    .desktop {
        display: none;
    }
    .tablet {
        display: none;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    h1 {
        font-size: 26px;
    }
    h2 {
        font-size: 22px;
    }
    .header-content {
        height: 60px;
    }
    .logo-text {
        font-size: 18px;
    }
    .logo-icon {
        width: 34px;
        height: 34px;
    }
    .logo-icon i {
        font-size: 16px;
    }
    .section {
        padding: 40px 0;
    }
    .feature-card {
        padding: 20px;
    }
    .footer-bottom-links {
        gap: 12px;
    }
    .footer-bottom-links a {
        font-size: 11px;
    }
    .notification-dropdown {
        width: 290px;
        right: -100px;
    }
    .desktop {
        display: none;
    }
    .tablet {
        display: none;
    }
}