/* ── Sticky Top Notification Bar ── */
.top-notify-bar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: linear-gradient(90deg, #0f172a 0%, #1e3a5f 100%);
    color: #e2e8f0;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .01em;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.top-notify-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: .55rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .9rem;
    flex-wrap: wrap;
}
.top-notify-item {
    display: flex;
    align-items: center;
    gap: .35rem;
    color: #e2e8f0;
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
}
a.top-notify-item:hover { color: #60a5fa; }
.top-notify-support {
    color: #93c5fd;
    font-weight: 600;
}
.top-notify-support:hover { color: #bfdbfe !important; }
.top-notify-sep {
    color: rgba(255,255,255,.25);
    user-select: none;
}

@media (max-width: 640px) {
    .top-notify-inner {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: .5rem 1rem;
        gap: .7rem;
    }
    .top-notify-inner::-webkit-scrollbar { display: none; }
    .top-notify-sep { flex-shrink: 0; }
}

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

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

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #fff;
    --bg-light: #f8f9fa;
    --border-color: #e1e8ed;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    /* Unified spacing system */
    --section-py: 6rem;
    --container-px: 1.5rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.header {
    background: white;
    box-shadow: var(--shadow);
    position: static;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo a {
    text-decoration: none;
    color: var(--text-color);
}

.logo span {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation: only target the TOP-LEVEL nav ul */
.main-nav > ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav .active > a {
    color: var(--primary-color);
}

/* ===== DROPDOWN DESKTOP ===== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Dropdown panel — hidden by default */
.dropdown-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-radius: 16px;
    width: 480px;
    padding: 1rem 0.75rem 0.75rem;
    border: 1px solid rgba(0,0,0,0.08);
    z-index: 2000;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    /* 2-column grid for the list items */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem;
    list-style: none;
    /* invisible bridge so gap between toggle and panel doesn't break hover */
    margin-top: 8px;
}

/* bridge the gap so hover is not lost crossing from toggle to menu */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
    background: transparent;
}

.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.9rem;
    border-radius: 10px;
    color: var(--text-color);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.dropdown-menu a::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    flex-shrink: 0;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* ── AI item in dropdown ── */
.dropdown-ai-item {
    grid-column: 1 / -1;
}
.dropdown-ai-link {
    background: linear-gradient(135deg, #130728, #1a0f40) !important;
    color: #e2e8f0 !important;
    border-radius: 12px !important;
    padding: .75rem 1rem !important;
    font-weight: 700 !important;
    gap: .5rem !important;
}
.dropdown-ai-link::before { display: none !important; }
.dropdown-ai-link svg { opacity: .85; flex-shrink: 0; }
.dropdown-ai-link:hover {
    background: linear-gradient(135deg, #1a0f40, #2d1a6e) !important;
    color: #c4b5fd !important;
}
.ai-menu-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    color: #fff;
    font-size: .6rem; font-weight: 800;
    letter-spacing: .08em; text-transform: uppercase;
    padding: .15rem .45rem; border-radius: 999px;
    margin-left: auto;
}
.dropdown-divider {
    grid-column: 1 / -1;
    height: 1px;
    background: #f1f5f9;
    margin: .35rem .25rem;
    padding: 0 !important;
}
.dropdown-divider a { display: none; }

/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: var(--section-py) 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

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

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

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

.services-section,
.blog-preview {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.service-link:hover {
    gap: 0.5rem;
}

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

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

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

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-card h3,
.blog-card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.search-form {
    display: flex;
    gap: 0.5rem;
    max-width: 600px;
    margin: 2rem auto 0;
    justify-content: center;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.search-input:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

.search-button {
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.search-clear {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border: 2px solid white;
    border-radius: 8px;
    transition: all 0.3s;
}

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

.search-results-info {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    opacity: 0.95;
}

.no-results {
    text-align: center;
    padding: 3rem 0;
    font-size: 1.125rem;
    color: var(--text-light);
}

.blog-listing,
.service-page,
.contact-page,
.blog-post {
    padding: 3rem 0;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-link {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
}

.page-link:hover,
.page-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.post-header {
    text-align: center;
    margin-bottom: 2rem;
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    color: var(--text-light);
}

.post-image {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: auto;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
}

.post-content h2,
.post-content h3 {
    margin: 2rem 0 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.post-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.service-description {
    max-width: 800px;
    margin: 0 auto;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.cta-section {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info .info-item {
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.alert {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
}

.footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #a0aec0;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.cookie-consent.show {
    display: block;
}

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

.btn-accept {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

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

/* ===== MODERN SERVICE PAGE STYLES ===== */

.service-hero {
    padding: var(--section-py) 0;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    color: var(--text-light);
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.breadcrumb-nav::-webkit-scrollbar { display: none; }
.breadcrumb-nav > * { flex-shrink: 0; }

.breadcrumb-nav a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

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

.service-badge-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.service-hero-text h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.service-hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 600px;
}

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

.btn-ghost-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-ghost-dark:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.service-icon-large {
    width: 160px;
    height: 160px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.service-features-section {
    padding: var(--section-py) 0;
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

.service-main h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
}

.features-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-modern-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: var(--bg-light);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.feature-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-modern-item span {
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.5;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
}

.step-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.5;
}

.service-image-wrap {
    margin-top: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.service-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-cta {
    border-radius: 20px;
    padding: 2rem;
    color: white;
    text-align: center;
}

.sidebar-cta h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.sidebar-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary-color);
    padding: 0.85rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

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

.sidebar-services {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
}

.sidebar-services h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.sidebar-service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s;
}

.sidebar-service-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.sidebar-service-link.active {
    font-weight: 700;
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-icon-large {
        width: 100px;
        height: 100px;
    }

    .service-hero-text h1 {
        font-size: 2rem;
    }

    .service-layout {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }

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

/* ===== MODERN HOME PAGE STYLES ===== */

/* Hero Modern */
.hero-modern {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--section-py) 0;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    bottom: -100px;
    left: -50px;
    animation-delay: 2s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f472b6, #a78bfa);
    top: 30%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-modern-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-modern-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 50%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-modern-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-modern-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

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

.btn-ghost {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-trust span {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Stats Bar */
.stats-bar {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem 3rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border-color);
}

/* Services Modern */
.services-modern {
    padding: var(--section-py) 0;
    background: var(--bg-light);
}

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

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(102,126,234,0.2);
    margin-bottom: 1rem;
}

.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-modern-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.service-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.35s;
    transform-origin: left;
}

.service-modern-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(102,126,234,0.15);
    border-color: rgba(102,126,234,0.3);
}

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

.service-modern-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-modern-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-modern-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
}

.service-modern-arrow {
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s;
}

.service-modern-card:hover .service-modern-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Why Us */
.why-us {
    padding: var(--section-py) 0;
    background: white;
}

.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-us-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
    line-height: 1.25;
}

.why-us-text > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.why-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-feature-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.why-feature strong {
    display: block;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.why-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.why-us-visual {
    position: relative;
    height: 400px;
}

.visual-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    padding: 2rem;
}

.visual-card-main {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    text-align: center;
}

.visual-icon-wrap {
    background: rgba(255,255,255,0.2);
    border-radius: 16px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.visual-card-main h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.visual-card-main p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.visual-card-float-1,
.visual-card-float-2 {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    animation: float 6s ease-in-out infinite;
}

.visual-card-float-1 {
    top: 0;
    right: 0;
    color: #10b981;
    animation-delay: 0s;
}

.visual-card-float-2 {
    bottom: 0;
    left: 0;
    color: var(--primary-color);
    animation-delay: 3s;
}

/* ===== TECHNOLOGIES RICH ===== */
.technologies-rich {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
    border-top: 1px solid var(--border-color);
}

.tech-rich-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.tech-rich-header .section-title {
    margin: 0.5rem 0 0.25rem;
}

.tech-rich-header .section-subtitle {
    margin: 0;
    max-width: 480px;
}

.tech-rich-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.tech-rich-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.25rem 1.25rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.tech-rich-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border-color: rgba(102,126,234,0.25);
}

.tech-rich-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.tech-rich-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.tech-rich-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
    white-space: nowrap;
}

.tech-rich-text span {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== BLOG MODERN ===== */
.blog-modern {
    padding: var(--section-py) 0;
    background: white;
}

.blog-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.blog-section-header .section-title {
    margin: 0.5rem 0 0.25rem;
}

.blog-section-header .section-subtitle {
    margin: 0;
}

.blog-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-modern-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    transition: all 0.35s;
    display: flex;
    flex-direction: column;
}

.blog-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.blog-modern-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-modern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-modern-card:hover .blog-modern-image img {
    transform: scale(1.05);
}

.blog-modern-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-modern-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-modern-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-modern-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-modern-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.blog-modern-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: gap 0.3s;
}

.blog-read-more:hover {
    gap: 0.7rem;
}

.blog-featured-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.blog-views {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.85rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 60%, #24243e 100%);
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin-top: 0;
    text-align: left;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    top: -150px;
    right: -100px;
}

.cta-shape-2 {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    opacity: 0.08;
    bottom: -100px;
    left: 5%;
}

.cta-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-ghost-white {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-ghost-white:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {

    :root {
        --section-py: 3.5rem;
        --container-px: 1.25rem;
    }

    /* Show hamburger */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Header stacks vertically on mobile */
    .header .container {
        padding: 0;
    }

    .header-content {
        flex-wrap: wrap;
        padding: 0.85rem var(--container-px);
    }

    /* Hide nav by default on mobile — normal block flow */
    .main-nav {
        display: none;
        width: 100%;
        background: white;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        max-height: 75vh;
        overflow-y: auto;
    }

    .main-nav.active {
        display: block;
    }

    /* Top-level nav items stacked vertically */
    .main-nav > ul {
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
        align-items: stretch;
    }

    .main-nav > ul > li > a {
        display: block;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .main-nav > ul > li:last-child > a {
        border-bottom: none;
    }

    /* Mobile dropdown: show as stacked list inside nav */
    .dropdown-menu {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        width: 100% !important;
        padding: 0 0 0.5rem 0;
        background: var(--bg-light);
        grid-template-columns: 1fr !important;
        gap: 0;
        display: none !important;
    }

    /* Show mobile dropdown when parent li is active */
    .dropdown.open .dropdown-menu {
        display: grid !important;
    }

    .dropdown-menu a {
        padding: 0.75rem 2rem;
        border-radius: 0;
        font-size: 0.92rem;
        white-space: normal;
    }

    /* Dropdown toggle arrow on mobile */
    .dropdown-toggle .arrow {
        margin-left: auto;
        transition: transform 0.3s;
    }

    .dropdown.open .dropdown-toggle .arrow {
        transform: rotate(180deg);
    }

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

    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Modern Home Responsive */
    .hero-modern-title {
        font-size: 2.2rem;
    }

    .hero-modern-subtitle {
        font-size: 1rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.75rem;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        padding: 1.5rem;
        border-bottom: 1px solid var(--border-color);
    }

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

    .services-modern-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-us-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-us-visual {
        height: 250px;
    }

    .why-us-text h2 {
        font-size: 1.8rem;
    }

    .tech-rich-grid {
        display: grid;
        grid-template-rows: repeat(4, auto);
        grid-auto-flow: column;
        grid-auto-columns: 100%;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 0.75rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .tech-rich-grid::-webkit-scrollbar {
        display: none;
    }
    .tech-rich-card {
        scroll-snap-align: start;
    }

    .tech-rich-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .blog-modern-grid {
        grid-template-columns: 1fr;
    }

    .blog-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

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

    .visual-card-float-1,
    .visual-card-float-2 {
        display: none;
    }
}

/* ============================================================
   OPENCART ESHOP — DEDICATED LANDING PAGE
   ============================================================ */

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(31,160,255,0.12), rgba(0,87,204,0.08));
    color: #1FA0FF;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(31,160,255,0.2);
}

/* ----- HERO ----- */
.oc-hero {
    background: linear-gradient(135deg, #0f0c29 0%, #1a1060 50%, #0d1a3a 100%);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.oc-hero-bg { position: absolute; inset: 0; pointer-events: none; }

.oc-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    animation: float 8s ease-in-out infinite;
}
.oc-shape-1 {
    width: 500px; height: 500px;
    background: linear-gradient(135deg, #1FA0FF, #0057cc);
    top: -180px; right: -120px;
}
.oc-shape-2 {
    width: 300px; height: 300px;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    bottom: 80px; left: -80px;
    animation-delay: 3s;
}
.oc-shape-3 {
    width: 180px; height: 180px;
    background: linear-gradient(135deg, #34d399, #1FA0FF);
    top: 40%; left: 45%;
    animation-delay: 5s;
}

.oc-hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    padding-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.oc-breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.oc-breadcrumb::-webkit-scrollbar { display: none; }
.oc-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; flex-shrink: 0; }
.oc-breadcrumb a:hover { color: #1FA0FF; }
.oc-breadcrumb span { flex-shrink: 0; }
.oc-breadcrumb span:last-child { color: rgba(255,255,255,0.8); }

.oc-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(31,160,255,0.15);
    border: 1px solid rgba(31,160,255,0.35);
    color: #60c8ff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.oc-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.oc-gradient-text {
    background: linear-gradient(135deg, #1FA0FF 0%, #60a5fa 50%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oc-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 2rem;
}

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

.btn-oc-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1FA0FF, #0057cc);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(31,160,255,0.35);
}
.btn-oc-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(31,160,255,0.5);
    color: white;
}

.btn-oc-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.07);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.9rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    backdrop-filter: blur(6px);
}
.btn-oc-outline:hover {
    background: rgba(255,255,255,0.14);
    color: white;
}

/* Hero visual card */
.oc-hero-visual { position: relative; }

.oc-hero-card {
    width: 260px;
    height: 260px;
    background: linear-gradient(135deg, rgba(31,160,255,0.25), rgba(0,87,204,0.2));
    border: 1px solid rgba(31,160,255,0.3);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    position: relative;
}

.oc-hero-icon-wrap {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #1FA0FF, #0057cc);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(31,160,255,0.5);
}

.oc-floating-badge {
    position: absolute;
    background: white;
    border-radius: 50px;
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    white-space: nowrap;
}
.oc-fb-1 { top: -14px; right: -20px; color: #059669; }
.oc-fb-1 svg { color: #059669; }
.oc-fb-2 { bottom: 40px; right: -30px; color: #d97706; }
.oc-fb-2 svg { color: #d97706; }
.oc-fb-3 { bottom: -14px; left: 10px; color: #7c3aed; }
.oc-fb-3 svg { color: #7c3aed; }

/* Stats bar */
.oc-stats-bar {
    background: rgba(0,0,0,0.25);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    backdrop-filter: blur(8px);
}
.oc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.oc-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.oc-stat strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1FA0FF;
    line-height: 1;
}
.oc-stat span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
}

/* ----- WHY OPENCART ----- */
.oc-why {
    padding: var(--section-py) 0;
    background: white;
}
.oc-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.oc-why-lead {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 2rem;
}
.oc-why-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.oc-why-bullet {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.oc-bullet-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(31,160,255,0.12), rgba(0,87,204,0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1FA0FF;
    flex-shrink: 0;
}
.oc-why-bullet strong { display: block; font-size: 0.95rem; margin-bottom: 0.25rem; }
.oc-why-bullet p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; margin: 0; }

/* Compare table */
.oc-compare-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.oc-compare-header {
    background: linear-gradient(135deg, #1FA0FF, #0057cc);
    color: white;
    padding: 1rem 1.25rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
}
.oc-compare-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 0;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.875rem;
    align-items: center;
}
.oc-compare-row:last-child { border-bottom: none; }
.oc-compare-title { background: var(--bg-light); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; color: var(--text-light); }
.oc-col-oc { text-align: center; font-weight: 600; }
.oc-col-other { text-align: center; color: var(--text-light); }
.oc-yes { color: #10b981; }
.oc-no { color: #ef4444; }

/* ----- FEATURES ----- */
.oc-features {
    padding: var(--section-py) 0;
    background: var(--bg-light);
}
.oc-section-header { margin-bottom: 3rem; }
.oc-section-header.center { text-align: center; }
.oc-section-header.center .section-subtitle { max-width: 550px; margin: 0 auto; }

.oc-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.oc-feature-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    transition: all 0.3s;
}
.oc-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    border-color: rgba(31,160,255,0.25);
}
.oc-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.oc-feature-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.6rem; }
.oc-feature-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin: 0; }

/* ----- PROCESS ----- */
.oc-process {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 100%);
}
.oc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    margin-top: 3rem;
}
/* Horizontal connector line */
.oc-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(31,160,255,0.25) 20%, rgba(31,160,255,0.4) 50%, rgba(31,160,255,0.25) 80%, transparent);
}
/* Each step as a card */
.oc-step {
    text-align: center;
    background: white;
    border: 1px solid rgba(31,160,255,0.1);
    border-radius: 16px;
    padding: 1.75rem 1.25rem 1.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: box-shadow .2s, transform .2s;
    position: relative;
}
.oc-step:hover {
    box-shadow: 0 8px 32px rgba(31,160,255,0.12);
    transform: translateY(-3px);
}
/* Step number badge top-right */
.oc-step::after {
    content: attr(data-n);
    position: absolute;
    top: -10px; right: 14px;
    font-size: 0.6rem; font-weight: 800; letter-spacing: .08em;
    color: white;
    background: linear-gradient(135deg, #1FA0FF, #0057cc);
    padding: .15rem .45rem;
    border-radius: 999px;
}
.oc-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
    box-shadow: 0 6px 20px rgba(31,160,255,0.35);
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #1FA0FF, #0057cc);
    color: white;
}
.oc-step-number.sl-step-number { color: white !important; border-color: transparent !important; }
.oc-step-body h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-dark); }
.oc-step-body p { font-size: 0.82rem; color: var(--text-light); line-height: 1.65; }

/* ----- PRICING ----- */
.oc-pricing {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
}
.oc-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
    margin-top: 3rem;
}
.oc-pricing-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
}
.oc-pricing-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}
.oc-pricing-featured {
    background: linear-gradient(135deg, #0f0c29, #1a1060, #0d1a3a);
    border-color: rgba(31,160,255,0.3);
    color: white;
    transform: scale(1.04);
}
.oc-pricing-featured:hover { transform: scale(1.04) translateY(-4px); }

.oc-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1FA0FF, #0057cc);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1.1rem;
    border-radius: 50px;
    white-space: nowrap;
}
.oc-pricing-top { margin-bottom: 1.75rem; }
.oc-plan-name {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1FA0FF;
}
.oc-pricing-featured .oc-plan-name { color: #60c8ff; }
.oc-price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin: 0.5rem 0 0.6rem;
}
.oc-price-from { font-size: 0.85rem; color: var(--text-light); }
.oc-pricing-featured .oc-price-from { color: rgba(255,255,255,0.55); }
.oc-price strong { font-size: 2.4rem; font-weight: 800; color: var(--text-color); }
.oc-pricing-featured .oc-price strong { color: white; }
.oc-plan-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }
.oc-pricing-featured .oc-plan-desc { color: rgba(255,255,255,0.6); }

.oc-plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 2rem;
}
.oc-plan-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
}
.oc-pricing-featured .oc-plan-features li { color: rgba(255,255,255,0.85); }

.oc-plan-btn {
    display: block;
    text-align: center;
    padding: 0.9rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}
.oc-plan-btn-outline {
    border: 2px solid var(--border-color);
    color: var(--text-color);
}
.oc-plan-btn-outline:hover {
    border-color: #1FA0FF;
    color: #1FA0FF;
}
.oc-plan-btn-primary {
    background: linear-gradient(135deg, #1FA0FF, #0057cc);
    color: white;
    box-shadow: 0 4px 16px rgba(31,160,255,0.4);
}
.oc-plan-btn-primary:hover {
    box-shadow: 0 8px 28px rgba(31,160,255,0.6);
    color: white;
    transform: translateY(-1px);
}
.oc-pricing-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ----- FAQ ----- */
.oc-faq {
    padding: var(--section-py) 0;
    background: white;
}
.oc-faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
}
.oc-faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color 0.2s;
}
.oc-faq-item.open { border-color: rgba(31,160,255,0.35); }
.oc-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: color 0.2s;
}
.oc-faq-q:hover { color: #1FA0FF; }
.oc-faq-item.open .oc-faq-q { color: #1FA0FF; }
.oc-faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--text-light);
}
.oc-faq-item.open .oc-faq-arrow { transform: rotate(180deg); color: #1FA0FF; }
.oc-faq-a {
    display: none;
    padding: 0 1.25rem 1.1rem;
}
.oc-faq-item.open .oc-faq-a { display: block; }
.oc-faq-a p { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; margin: 0; }

/* ----- CTA ----- */
.oc-cta {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 60%, #24243e 100%);
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}
.oc-cta-bg { position: absolute; inset: 0; pointer-events: none; }
.oc-cta-shape-1 {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1FA0FF, #0057cc);
    opacity: 0.08;
    top: -150px; right: -80px;
}
.oc-cta-shape-2 {
    position: absolute;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    opacity: 0.07;
    bottom: -100px; left: 5%;
}
.oc-cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    color: white;
}
.oc-cta-inner h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: white;
    line-height: 1.3;
}
.oc-cta-inner p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
}
.oc-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.oc-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1FA0FF, #0057cc);
    color: white;
    padding: 1rem 2.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(31,160,255,0.4);
}
.oc-cta-btn-primary:hover { box-shadow: 0 10px 36px rgba(31,160,255,0.6); transform: translateY(-2px); color: white; }
.oc-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 1rem 2.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}
.oc-cta-btn-secondary:hover { background: rgba(255,255,255,0.18); color: white; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .oc-features-grid { grid-template-columns: repeat(2, 1fr); }
    .oc-steps { grid-template-columns: repeat(2, 1fr); }
    .oc-steps::before { display: none; }
    .oc-pricing-featured { transform: scale(1); }
    .oc-pricing-featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
    .oc-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
    .oc-hero-title { font-size: 2.2rem; }
    .oc-hero-visual { display: none; }
    .oc-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .oc-why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .oc-features-grid { grid-template-columns: 1fr 1fr; }
    .oc-pricing-grid { grid-template-columns: 1fr; }
    .oc-faq-grid { grid-template-columns: 1fr; gap: 2rem; }
    .oc-cta-inner h2 { font-size: 1.8rem; }
    .oc-hero-actions { flex-direction: column; }

    /* Mobile steps: vertical timeline layout */
    .oc-steps {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: relative;
    }
    .oc-steps::before { display: none; }
    /* Vertical connecting line */
    .oc-steps::after {
        content: '';
        position: absolute;
        left: 27px; top: 56px; bottom: 28px;
        width: 2px;
        background: linear-gradient(180deg, rgba(31,160,255,0) 0%, rgba(31,160,255,0.3) 10%, rgba(31,160,255,0.3) 90%, rgba(31,160,255,0) 100%);
        pointer-events: none;
    }
    .oc-step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
        padding: 1.1rem 1.1rem 0 1.1rem;
        margin-bottom: 1rem;
        border-radius: 14px;
    }
    .oc-step:last-child { margin-bottom: 0; }
    /* Hide the badge on mobile — circle already shows number */
    .oc-step::after { display: none; }
    .oc-step-number {
        margin: 0;
        flex-shrink: 0;
        width: 48px; height: 48px;
        font-size: 0.95rem;
    }
    .oc-step-body { padding-top: 0.15rem; }
    .oc-step-body h3 { font-size: 0.9rem; }
    .oc-step-body p { font-size: 0.8rem; }
}

/* ============================================================
   BLOG — Redesigned pages
   ============================================================ */

/* ----- Blog Hero ----- */
.blog-hero {
    background: linear-gradient(135deg,#070d1f 0%,#0d1633 50%,#050b1a 100%);
    padding: var(--section-py) 0 0;
    position: relative;
    overflow: hidden;
    color: white;
}
.blog-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blog-hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}
.blog-hero-shape-1 {
    width: 520px; height: 520px;
    background: linear-gradient(135deg,#1FA0FF,#0057cc);
    top: -180px; right: -100px;
}
.blog-hero-shape-2 {
    width: 300px; height: 300px;
    background: linear-gradient(135deg,#a78bfa,#60a5fa);
    bottom: -80px; left: 5%;
}
.blog-hero-shape-3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle,#1FA0FF,transparent);
    top: 40%; left: 50%;
    opacity: 0.05;
}
.blog-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-bottom: 3rem;
}
.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(31,160,255,0.35);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #60c8ff;
    background: rgba(31,160,255,0.08);
    margin-bottom: 1.25rem;
}
.blog-hero-title {
    font-size: clamp(2.2rem,5vw,3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: white;
}
.blog-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.blog-search-wrap {
    display: flex;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    gap: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    border-radius: 12px;
    overflow: hidden;
}
.blog-search-input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    background: rgba(255,255,255,0.95);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-color);
    outline: none;
}
.blog-search-btn {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg,#1FA0FF,#0057cc);
    color: white;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: inherit;
}
.blog-search-btn:hover { opacity: 0.9; }
.blog-search-clear {
    position: absolute;
    top: 50%; right: 1rem;
    transform: translateY(-50%);
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.8rem;
}
.blog-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.blog-hero-stat {
    text-align: center;
}
.blog-hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1FA0FF;
}
.blog-hero-stat span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
}
.blog-search-result-info {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* ----- Filters ----- */
.blog-filters {
    padding: 2rem 0 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
}
.blog-filter-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.blog-filter-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.blog-filter-chip {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1.5px solid var(--border-color);
    background: white;
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.blog-filter-chip:hover,
.blog-filter-chip.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(31,160,255,0.06);
}

/* ----- Featured post ----- */
.blog-featured {
    padding: 3rem 0 0;
    background: white;
}
.blog-featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}
.blog-featured-image {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}
.blog-featured-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.blog-featured-card:hover .blog-featured-image img { transform: scale(1.04); }
.blog-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(7,13,31,0.4), transparent);
}
.blog-featured-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}
.blog-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    background: rgba(31,160,255,0.1);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    width: fit-content;
}
.blog-featured-title {
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-color);
}
.blog-featured-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.blog-featured-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.blog-featured-meta svg { flex-shrink: 0; }
.blog-featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg,#1FA0FF,#0057cc);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s;
    width: fit-content;
}
.blog-featured-btn:hover { opacity: 0.9; transform: translateX(2px); color: white; }

/* ----- Blog main section ----- */
.blog-main {
    padding: var(--section-py) 0;
    background: #f8fafc;
}
.blog-main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 1rem;
}
.blog-main-title {
    font-size: 1.4rem;
    font-weight: 800;
}
.blog-main-count {
    font-size: 0.85rem;
    color: var(--text-light);
}
.blog-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.blog-card-v2 {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.blog-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: rgba(31,160,255,0.25);
}
.blog-card-v2-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.blog-card-v2-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.blog-card-v2:hover .blog-card-v2-img img { transform: scale(1.06); }
.blog-card-v2-cat {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: white;
}
.blog-card-v2-body {
    padding: 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-v2-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    align-items: center;
}
.blog-card-v2-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.6rem;
    color: var(--text-color);
}
.blog-card-v2-excerpt {
    font-size: 0.87rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-v2-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: gap 0.2s;
}
.blog-card-v2-link:hover { gap: 0.6rem; }

/* ----- Blog CTA ----- */
.blog-cta {
    background: linear-gradient(135deg,#0f0c29 0%,#302b63 60%,#24243e 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}
.blog-cta h2 { font-size: 2rem; margin-bottom: 1rem; }
.blog-cta p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.blog-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ----- Blog Post redesign ----- */
.bp-hero {
    background: linear-gradient(135deg,#070d1f 0%,#0d1633 60%,#050b1a 100%);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
    color: white;
}
.bp-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.bp-hero-shape {
    position: absolute; border-radius: 50%; opacity: 0.07;
}
.bp-hero-shape-1 { width: 500px; height: 500px; background: radial-gradient(circle,#1FA0FF,transparent); top: -200px; right: -100px; }
.bp-hero-shape-2 { width: 300px; height: 300px; background: radial-gradient(circle,#a78bfa,transparent); bottom: -80px; left: -50px; }
.bp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}
.bp-breadcrumb::-webkit-scrollbar { display: none; }
.bp-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.bp-breadcrumb a:hover { color: white; }
.bp-breadcrumb span:last-child { color: rgba(255,255,255,0.9); }
.bp-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
    margin-bottom: 1.25rem;
}
.bp-title {
    font-size: clamp(1.8rem,4vw,2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: white;
}
.bp-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.bp-meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.bp-featured-img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    display: block;
    position: relative;
    z-index: 1;
}

/* ----- Article layout ----- */
.bp-body {
    background: white;
    padding: 4rem 0;
}
.bp-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
}
.bp-content {
    min-width: 0;
}
.bp-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 2rem 0 0.75rem;
    color: var(--text-color);
    border-left: 3px solid var(--primary-color);
    padding-left: 0.85rem;
}
.bp-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.5rem 0 0.6rem;
    color: var(--text-color);
}
.bp-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 1.25rem 0 0.5rem;
    color: var(--text-color);
}
.bp-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.1rem;
    font-size: 0.97rem;
}
.bp-content ul, .bp-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.bp-content li {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 0.35rem;
    font-size: 0.97rem;
}
.bp-content strong { color: var(--text-color); }
.bp-content a { color: var(--primary-color); text-decoration: underline; }

/* ----- Sidebar ----- */
.bp-sidebar { position: sticky; top: 100px; }
.bp-sidebar-card {
    border-radius: 14px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.bp-sidebar-card-header {
    padding: 0.85rem 1.25rem;
    font-weight: 700;
    font-size: 0.9rem;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.bp-sidebar-card-body { padding: 1.25rem; }
.bp-share-btns {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.bp-share-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
    color: white;
}
.bp-share-btn:hover { opacity: 0.88; color: white; }
.bp-share-fb { background: #1877F2; }
.bp-share-tw { background: #1DA1F2; }
.bp-share-li { background: #0A66C2; }
.bp-cta-box {
    background: linear-gradient(135deg,#1FA0FF,#0057cc);
    border-radius: 14px;
    padding: 1.5rem;
    color: white;
    text-align: center;
}
.bp-cta-box h4 { font-size: 1rem; margin-bottom: 0.5rem; color: white; }
.bp-cta-box p { font-size: 0.82rem; opacity: 0.85; margin-bottom: 1rem; }
.bp-cta-box a {
    display: block;
    padding: 0.65rem 1rem;
    background: white;
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: opacity 0.2s;
}
.bp-cta-box a:hover { opacity: 0.92; }

/* ----- Related posts ----- */
.bp-related {
    padding: 4rem 0;
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
}
.bp-related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
}
.bp-related-title {
    font-size: 1.4rem;
    font-weight: 800;
}
.bp-related-all {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}
.bp-related-all:hover { text-decoration: underline; }
.bp-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
    .blog-grid-v2 { grid-template-columns: repeat(2, 1fr); }
    .bp-related-grid { grid-template-columns: repeat(2, 1fr); }
    .bp-layout { grid-template-columns: 1fr; }
    .bp-sidebar { position: static; }
}
@media (max-width: 768px) {
    .blog-featured-card { grid-template-columns: 1fr; }
    .blog-featured-image { min-height: 220px; }
    .blog-grid-v2 { grid-template-columns: 1fr; }
    .blog-hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .bp-related-grid { grid-template-columns: 1fr; }
    .bp-related-grid .blog-card-v2:nth-child(n+3) { display: none; }
    .blog-cta h2 { font-size: 1.6rem; }
}

/* ============================================================
   CONTACT PAGE — High-tech redesign
   ============================================================ */

/* Hero */
.ct-hero {
    background: linear-gradient(135deg,#070d1f 0%,#0d1633 55%,#050b1a 100%);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
    color: white;
}
.ct-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.ct-hero-shape {
    position: absolute; border-radius: 50%; opacity: 0.08;
}
.ct-hero-shape-1 { width: 600px; height: 600px; background: radial-gradient(circle,#1FA0FF,transparent); top: -250px; right: -100px; }
.ct-hero-shape-2 { width: 320px; height: 320px; background: radial-gradient(circle,#a78bfa,transparent); bottom: -60px; left: 5%; }
.ct-hero-inner {
    position: relative; z-index: 1;
    text-align: center;
    padding-bottom: 4rem;
    max-width: 720px;
    margin: 0 auto;
}
.ct-hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(31,160,255,0.35);
    border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; color: #60c8ff;
    background: rgba(31,160,255,0.08);
    margin-bottom: 1.25rem;
}
.ct-hero-title {
    font-size: clamp(2rem,5vw,3.2rem);
    font-weight: 800; line-height: 1.15;
    margin-bottom: 1rem; color: white;
}
.ct-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 2.5rem;
}
.ct-hero-quick {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.ct-quick-chip {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    font-size: 0.85rem; color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.2s;
}
.ct-quick-chip:hover {
    background: rgba(31,160,255,0.15);
    border-color: rgba(31,160,255,0.4);
    color: white;
}

/* Main contact layout */
.ct-main {
    padding: var(--section-py) 0;
    background: #f8fafc;
}
.ct-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

/* Info column */
.ct-info { }
.ct-info-title {
    font-size: 1.5rem; font-weight: 800;
    margin-bottom: 0.5rem;
}
.ct-info-sub {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}
.ct-contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.ct-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
}
.ct-contact-card:hover {
    border-color: rgba(31,160,255,0.3);
    box-shadow: 0 4px 20px rgba(31,160,255,0.08);
    transform: translateX(3px);
}
.ct-card-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ct-card-label {
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--text-light); margin-bottom: 0.2rem;
}
.ct-card-value {
    font-size: 1rem; font-weight: 700;
    color: var(--text-color);
}
.ct-card-note {
    font-size: 0.78rem; color: var(--text-light); margin-top: 0.15rem;
}
.ct-hours {
    background: linear-gradient(135deg,#1FA0FF0d,#1FA0FF08);
    border: 1px solid rgba(31,160,255,0.2);
    border-radius: 14px;
    padding: 1.25rem;
}
.ct-hours-title {
    font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--primary-color); margin-bottom: 0.75rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.ct-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(31,160,255,0.1);
    color: var(--text-light);
}
.ct-hours-row:last-child { border-bottom: none; }
.ct-hours-row strong { color: var(--text-color); }

/* Form column */
.ct-form-card {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.ct-form-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg,#1FA0FF,#0057cc);
    color: white;
}
.ct-form-header h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.ct-form-header p { font-size: 0.82rem; opacity: 0.85; }
.ct-form-body { padding: 2rem; }
.ct-form { display: flex; flex-direction: column; gap: 1.25rem; }
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ct-field label {
    display: block;
    font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--text-color); margin-bottom: 0.4rem;
}
.ct-field input,
.ct-field select,
.ct-field textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    background: #f8fafc;
    color: var(--text-color);
    transition: all 0.2s;
    box-sizing: border-box;
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(31,160,255,0.1);
}
.ct-field textarea { resize: vertical; min-height: 120px; }
.ct-submit-btn {
    width: 100%;
    padding: 0.95rem;
    background: linear-gradient(135deg,#1FA0FF,#0057cc);
    color: white; border: none;
    border-radius: 10px;
    font-size: 1rem; font-weight: 700;
    cursor: pointer; font-family: inherit;
    transition: all 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.ct-submit-btn:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(31,160,255,0.35); }
.ct-form-note {
    font-size: 0.75rem; color: var(--text-light);
    text-align: center; margin-top: -0.25rem;
}

/* ── Math CAPTCHA ──────────────────────────────────────── */
.ct-captcha-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: linear-gradient(135deg, #f0f7ff, #e8f4ff);
    border: 1.5px solid #c3dffe;
    border-radius: 12px;
    padding: 1rem 1.15rem;
}
.ct-captcha-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: linear-gradient(135deg, #1FA0FF, #0057cc);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    margin-top: 2px;
}
.ct-captcha-body { flex: 1; }
.ct-captcha-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}
.ct-captcha-q {
    display: inline-block;
    background: #1FA0FF;
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.05rem 0.55rem;
    border-radius: 6px;
    letter-spacing: 0.04em;
    font-family: monospace;
}
.ct-captcha-body input[type="number"] {
    width: 100%;
    padding: 0.6rem 0.85rem;
    border: 1.5px solid #c3dffe;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: #1e3a5f;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -moz-appearance: textfield;
}
.ct-captcha-body input[type="number"]::-webkit-inner-spin-button,
.ct-captcha-body input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }
.ct-captcha-body input[type="number"]:focus {
    border-color: #1FA0FF;
    box-shadow: 0 0 0 3px rgba(31,160,255,0.12);
}

/* Stats strip */
.ct-stats {
    background: white;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2.5rem 0;
}
.ct-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.ct-stat-num {
    font-size: 2.2rem; font-weight: 900;
    background: linear-gradient(135deg,#1FA0FF,#0057cc);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; display: block;
}
.ct-stat-lbl { font-size: 0.82rem; color: var(--text-light); margin-top: 0.2rem; }

/* Projects section */
.ct-projects {
    padding: var(--section-py) 0;
    background: #f8fafc;
}
.ct-section-title {
    font-size: 1.6rem; font-weight: 800;
    margin-bottom: 0.4rem;
}
.ct-section-sub {
    font-size: 0.9rem; color: var(--text-light);
    margin-bottom: 2.5rem;
}
.ct-projects-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.ct-project-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.ct-project-card:hover {
    border-color: rgba(31,160,255,0.3);
    box-shadow: 0 6px 24px rgba(31,160,255,0.1);
    transform: translateY(-2px);
}
.ct-project-initial {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 900;
    color: white; margin: 0 auto 0.75rem;
}
.ct-project-name {
    font-size: 0.8rem; font-weight: 700;
    color: var(--text-color);
    word-break: break-all;
    line-height: 1.3;
}
.ct-project-cat {
    font-size: 0.68rem; color: var(--text-light);
    margin-top: 0.2rem;
}

/* Blog strip */
.ct-blog {
    padding: var(--section-py) 0;
    background: white;
    border-top: 1px solid var(--border-color);
}
.ct-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.ct-blog-all {
    font-size: 0.85rem; font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}
.ct-blog-all:hover { text-decoration: underline; }
.ct-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .ct-projects-grid { grid-template-columns: repeat(3,1fr); }
    .ct-layout { grid-template-columns: 1fr; }
    .ct-stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .ct-projects-grid { grid-template-columns: repeat(2,1fr); }
    .ct-blog-grid { grid-template-columns: 1fr; }
    .ct-blog-grid .blog-card-v2:nth-child(n+3) { display: none; }
    .ct-form-row { grid-template-columns: 1fr; }
    .ct-hero-quick { flex-direction: column; align-items: center; }
}

/* ============================================================
   HOMEPAGE v2 — Full redesign with harmony & responsiveness
   Design tokens reused: --section-py, --container-px, --shadow, --border-color
   ============================================================ */

/* ---- Hero ---- */
.hp-hero {
    background: linear-gradient(135deg,#060d1e 0%,#0d1a3a 55%,#050c1c 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
}
.hp-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hp-bg-blob {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.18;
}
.hp-bg-blob-1 { width: 700px; height: 700px; background: #1FA0FF; top: -200px; right: -150px; }
.hp-bg-blob-2 { width: 400px; height: 400px; background: #7c3aed; bottom: -100px; left: -100px; }
.hp-bg-blob-3 { width: 250px; height: 250px; background: #10b981; bottom: 20%; right: 20%; opacity: 0.1; }
.hp-hero-grid {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hp-hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(31,160,255,0.35);
    border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; color: #60c8ff;
    background: rgba(31,160,255,0.08);
    margin-bottom: 1.5rem;
}
.hp-hero-badge::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: #10b981; animation: hp-pulse 1.8s ease-in-out infinite;
}
@keyframes hp-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hp-hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    color: white;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.hp-hero-title em {
    font-style: normal;
    background: linear-gradient(90deg, #1FA0FF, #06b6d4, #10b981);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hp-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 480px;
}
.hp-hero-btns {
    display: flex; gap: 1rem; flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.hp-btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg,#1FA0FF,#0057cc);
    color: white; border-radius: 10px;
    font-weight: 700; font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(31,160,255,0.35);
}
.hp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(31,160,255,0.45); color: white; }
.hp-btn-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85); border-radius: 10px;
    font-weight: 600; font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.25s;
}
.hp-btn-ghost:hover { background: rgba(255,255,255,0.12); color: white; border-color: rgba(255,255,255,0.3); }
.hp-hero-trust {
    display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.hp-hero-trust span {
    font-size: 0.8rem; color: rgba(255,255,255,0.5);
    display: flex; align-items: center; gap: 0.35rem;
}
.hp-hero-trust span::before { content:'✓'; color:#10b981; font-weight:800; }

/* Dashboard mockup */
.hp-dashboard {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.4s;
}
.hp-dashboard:hover { transform: perspective(1000px) rotateY(-1deg) rotateX(0); }
.hp-dash-bar {
    background: rgba(255,255,255,0.06);
    padding: 0.65rem 1rem;
    display: flex; align-items: center; gap: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hp-dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.hp-dash-bar span { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-left: auto; }
.hp-dash-body { padding: 1.25rem; }
.hp-dash-kpis {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem; margin-bottom: 1.25rem;
}
.hp-dash-kpi {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 0.75rem;
}
.hp-dash-kpi-lbl { font-size: 0.65rem; color: rgba(255,255,255,0.45); margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 0.04em; }
.hp-dash-kpi-val { font-size: 1.05rem; font-weight: 800; color: white; }
.hp-dash-kpi-trend { font-size: 0.65rem; color: #10b981; margin-top: 0.15rem; }
.hp-dash-chart { margin-bottom: 1.25rem; }
.hp-dash-chart-title { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 0.04em; }
.hp-chart-bars { display: flex; gap: 6px; align-items: flex-end; height: 70px; }
.hp-chart-bar-wrap { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; }
.hp-chart-bar { width: 100%; border-radius: 4px 4px 0 0; transition: height 0.3s; }
.hp-chart-lbl { font-size: 0.6rem; color: rgba(255,255,255,0.3); }
.hp-dash-orders { }
.hp-dash-orders-title { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.04em; }
.hp-dash-order-row {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.75rem; color: rgba(255,255,255,0.7);
}
.hp-dash-order-row:last-child { border-bottom: none; }
.hp-dash-order-dot { width: 6px; height: 6px; border-radius: 50%; background: #10b981; flex-shrink: 0; }
.hp-dash-order-id { color: rgba(255,255,255,0.4); font-size: 0.68rem; margin-left: auto; }
.hp-dash-order-amt { color: #1FA0FF; font-weight: 700; }

/* ---- Client marquee ---- */
.hp-marquee {
    background: white;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.1rem 0;
    overflow: hidden;
}
.hp-marquee-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    padding: 0 2rem;
    display: inline-block;
    white-space: nowrap;
}
.hp-marquee-track {
    display: flex;
    gap: 0;
    animation: hp-scroll 28s linear infinite;
    width: max-content;
}
.hp-marquee-track:hover { animation-play-state: paused; }
@keyframes hp-scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.hp-marquee-item {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0 2.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    white-space: nowrap;
    border-right: 1px solid var(--border-color);
    transition: color 0.2s;
}
.hp-marquee-item:hover { color: var(--primary-color); }
.hp-marquee-dot { width: 7px; height: 7px; border-radius: 50%; }

/* ---- Stats ---- */
.hp-stats {
    padding: 4.5rem 0;
    background: #f8fafc;
}
.hp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.hp-stat-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}
.hp-stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}
.hp-stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.hp-stat-card:nth-child(1)::before { background: linear-gradient(90deg,#1FA0FF,#06b6d4); }
.hp-stat-card:nth-child(2)::before { background: linear-gradient(90deg,#10b981,#34d399); }
.hp-stat-card:nth-child(3)::before { background: linear-gradient(90deg,#f97316,#fb923c); }
.hp-stat-card:nth-child(4)::before { background: linear-gradient(90deg,#8b5cf6,#a78bfa); }
.hp-stat-num {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.4rem;
    display: block;
}
.hp-stat-card:nth-child(1) .hp-stat-num { background: linear-gradient(90deg,#1FA0FF,#06b6d4); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hp-stat-card:nth-child(2) .hp-stat-num { background: linear-gradient(90deg,#10b981,#34d399); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hp-stat-card:nth-child(3) .hp-stat-num { background: linear-gradient(90deg,#f97316,#fb923c); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hp-stat-card:nth-child(4) .hp-stat-num { background: linear-gradient(90deg,#8b5cf6,#a78bfa); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hp-stat-lbl { font-size: 0.85rem; color: var(--text-light); font-weight: 500; }
.hp-stat-sub { font-size: 0.72rem; color: #cbd5e1; margin-top: 0.2rem; }

/* ---- Services ---- */
.hp-services {
    padding: 5rem 0;
    background: white;
}
.hp-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.hp-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    background: rgba(31,160,255,0.08);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}
.hp-section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.hp-section-sub {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}
.hp-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.hp-svc-card {
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    border: 1.5px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
    background: white;
}
.hp-svc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
}
.hp-svc-card:hover { transform: translateY(-4px); color: inherit; }
.hp-svc-card:hover::after { opacity: 0.04; }
.hp-svc-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.hp-svc-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.1rem;
    flex-shrink: 0;
}
.hp-svc-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}
.hp-svc-desc {
    font-size: 0.83rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.25rem;
}
.hp-svc-link {
    font-size: 0.82rem;
    font-weight: 700;
    display: flex; align-items: center; gap: 0.35rem;
    transition: gap 0.2s;
}
.hp-svc-card:hover .hp-svc-link { gap: 0.6rem; }

/* Service color themes */
.hp-svc-card[data-color="green"]:hover { border-color: #10b98140; }
.hp-svc-card[data-color="green"] .hp-svc-link { color: #10b981; }
.hp-svc-card[data-color="green"] .hp-svc-icon { background: #10b98115; }
.hp-svc-card[data-color="orange"]:hover { border-color: #f9731640; }
.hp-svc-card[data-color="orange"] .hp-svc-link { color: #f97316; }
.hp-svc-card[data-color="orange"] .hp-svc-icon { background: #f9731615; }
.hp-svc-card[data-color="violet"]:hover { border-color: #8b5cf640; }
.hp-svc-card[data-color="violet"] .hp-svc-link { color: #8b5cf6; }
.hp-svc-card[data-color="violet"] .hp-svc-icon { background: #8b5cf615; }
.hp-svc-card[data-color="cyan"]:hover { border-color: #06b6d440; }
.hp-svc-card[data-color="cyan"] .hp-svc-link { color: #06b6d4; }
.hp-svc-card[data-color="cyan"] .hp-svc-icon { background: #06b6d415; }
.hp-svc-card[data-color="blue"]:hover { border-color: #3b82f640; }
.hp-svc-card[data-color="blue"] .hp-svc-link { color: #3b82f6; }
.hp-svc-card[data-color="blue"] .hp-svc-icon { background: #3b82f615; }
.hp-svc-card[data-color="indigo"]:hover { border-color: #6366f140; }
.hp-svc-card[data-color="indigo"] .hp-svc-link { color: #6366f1; }
.hp-svc-card[data-color="indigo"] .hp-svc-icon { background: #6366f115; }
.hp-svc-card[data-color="pink"]:hover { border-color: #ec489940; }
.hp-svc-card[data-color="pink"] .hp-svc-link { color: #ec4899; }
.hp-svc-card[data-color="pink"] .hp-svc-icon { background: #ec489915; }
.hp-svc-card[data-color="primary"]:hover { border-color: #1FA0FF40; }
.hp-svc-card[data-color="primary"] .hp-svc-link { color: #1FA0FF; }
.hp-svc-card[data-color="primary"] .hp-svc-icon { background: #1FA0FF15; }

/* ---- Process ---- */
.hp-process {
    padding: 5rem 0;
    background: linear-gradient(135deg,#070d1f,#0d1633 60%,#050b1a);
    color: white;
    position: relative;
    overflow: hidden;
}
.hp-process-bg-blob {
    position: absolute; border-radius: 50%;
    filter: blur(100px); opacity: 0.07; pointer-events: none;
}
.hp-process-bg-1 { width: 500px; height: 500px; background: #1FA0FF; top: -200px; right: -100px; }
.hp-process-bg-2 { width: 300px; height: 300px; background: #8b5cf6; bottom: -100px; left: 10%; }
.hp-process-header { text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }
.hp-process-header .hp-section-label { background: rgba(31,160,255,0.15); color: #60c8ff; }
.hp-process-header .hp-section-title { color: white; }
.hp-process-header .hp-section-sub { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto; }
.hp-process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}
.hp-process-steps::before {
    content: '';
    position: absolute;
    top: 2.25rem;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0.15) 80%, transparent);
}
.hp-step {
    text-align: center;
    padding: 0 0.5rem;
}
.hp-step-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 900;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
}
.hp-step:nth-child(1) .hp-step-num { background: linear-gradient(135deg,#1FA0FF,#0057cc); box-shadow: 0 6px 20px rgba(31,160,255,0.4); }
.hp-step:nth-child(2) .hp-step-num { background: linear-gradient(135deg,#10b981,#059669); box-shadow: 0 6px 20px rgba(16,185,129,0.4); }
.hp-step:nth-child(3) .hp-step-num { background: linear-gradient(135deg,#f97316,#ea580c); box-shadow: 0 6px 20px rgba(249,115,22,0.4); }
.hp-step:nth-child(4) .hp-step-num { background: linear-gradient(135deg,#8b5cf6,#6d28d9); box-shadow: 0 6px 20px rgba(139,92,246,0.4); }
.hp-step:nth-child(5) .hp-step-num { background: linear-gradient(135deg,#ec4899,#db2777); box-shadow: 0 6px 20px rgba(236,72,153,0.4); }
.hp-step-title { font-size: 0.92rem; font-weight: 700; color: white; margin-bottom: 0.4rem; }
.hp-step-body { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ---- Why Us ---- */
.hp-why {
    padding: 5rem 0;
    background: #f8fafc;
}
.hp-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.hp-why-title { font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.hp-why-lead { color: var(--text-light); line-height: 1.8; margin-bottom: 2rem; }
.hp-why-feats { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2rem; }
.hp-why-feat {
    display: flex; gap: 1rem; align-items: flex-start;
    background: white; border-radius: 14px;
    padding: 1.1rem 1.25rem;
    border: 1px solid var(--border-color);
    transition: all 0.2s;
}
.hp-why-feat:hover { border-color: rgba(31,160,255,0.3); box-shadow: 0 4px 16px rgba(31,160,255,0.07); }
.hp-why-feat-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.hp-why-feat strong { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; }
.hp-why-feat p { font-size: 0.82rem; color: var(--text-light); margin: 0; line-height: 1.5; }
.hp-why-visual {
    position: relative;
}
.hp-why-visual-main {
    background: linear-gradient(135deg,#070d1f,#0d1633);
    border-radius: 24px;
    padding: 2.5rem;
    color: white;
    box-shadow: 0 32px 80px rgba(0,0,0,0.2);
}
.hp-why-visual-main h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 1.5rem; }
.hp-why-metric { margin-bottom: 1.25rem; }
.hp-why-metric-top { display: flex; justify-content: space-between; font-size: 0.8rem; margin-bottom: 0.4rem; }
.hp-why-metric-top span:last-child { color: #10b981; font-weight: 700; }
.hp-why-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.hp-why-bar-fill { height: 100%; border-radius: 3px; }
.hp-why-float {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.82rem; font-weight: 700;
    white-space: nowrap;
}
.hp-why-float-1 { bottom: -1rem; left: -1.5rem; }
.hp-why-float-2 { top: -1rem; right: -1rem; }

/* ---- Testimonials ---- */
.hp-testimonials {
    padding: 5rem 0;
    background: white;
}
.hp-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.hp-testi-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.25s;
}
.hp-testi-card:hover { border-color: rgba(31,160,255,0.25); box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-3px); }
.hp-testi-stars { display: flex; gap: 2px; }
.hp-testi-star { color: #f59e0b; font-size: 0.9rem; }
.hp-testi-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.75;
    flex: 1;
    font-style: italic;
}
.hp-testi-text::before { content: '"'; font-size: 2rem; color: var(--primary-color); line-height: 0; vertical-align: -0.4em; margin-right: 0.1em; }
.hp-testi-author { display: flex; align-items: center; gap: 0.75rem; }
.hp-testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 800; color: white;
    flex-shrink: 0;
}
.hp-testi-name { font-weight: 700; font-size: 0.88rem; }
.hp-testi-domain { font-size: 0.75rem; color: var(--text-light); }

/* ---- Tech marquee ---- */
.hp-tech {
    padding: 4.5rem 0;
    background: #f8fafc;
    overflow: hidden;
}
.hp-tech-track {
    display: flex;
    animation: hp-scroll 22s linear infinite;
    width: max-content;
}
.hp-tech-track:hover { animation-play-state: paused; }
.hp-tech-item {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 0 2rem;
    white-space: nowrap;
}
.hp-tech-badge {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.82rem;
    color: white;
    letter-spacing: 0.02em;
}

/* ---- Blog strip ---- */
.hp-blog {
    padding: 5rem 0;
    background: white;
}
.hp-blog-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 2.5rem; gap: 1rem;
}
.hp-blog-all {
    font-size: 0.85rem; font-weight: 700;
    color: var(--primary-color); text-decoration: none;
    white-space: nowrap;
    display: flex; align-items: center; gap: 0.35rem;
}
.hp-blog-all:hover { text-decoration: underline; }
.hp-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ---- CTA ---- */
.hp-cta {
    background: linear-gradient(135deg,#0f0c29,#302b63 50%,#1a1a3e);
    padding: 5rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.hp-cta::before {
    content: ''; position: absolute;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(31,160,255,0.15), transparent);
    top: -200px; left: 50%; transform: translateX(-50%);
    pointer-events: none;
}
.hp-cta-inner { position: relative; z-index: 1; max-width: 580px; margin: 0 auto; }
.hp-cta h2 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; margin-bottom: 1rem; line-height: 1.2; }
.hp-cta p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; line-height: 1.7; font-size: 1rem; }
.hp-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hp-cta-btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg,#1FA0FF,#0057cc);
    color: white; border-radius: 10px;
    font-weight: 700; font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(31,160,255,0.4);
    transition: all 0.2s;
}
.hp-cta-btn-primary:hover { opacity: 0.9; transform: translateY(-2px); color: white; }
.hp-cta-btn-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: rgba(255,255,255,0.08);
    color: white; border-radius: 10px;
    font-weight: 600; font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.2s;
}
.hp-cta-btn-ghost:hover { background: rgba(255,255,255,0.15); color: white; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hp-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hp-dashboard { display: none; }
    .hp-services-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-process-steps { grid-template-columns: repeat(3, 1fr); }
    .hp-process-steps::before { display: none; }
    .hp-why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hp-why-float-1, .hp-why-float-2 { display: none; }
    .hp-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hp-hero { padding: 3.5rem 0 3rem; min-height: unset; }
    .hp-hero-title { font-size: 2rem; }
    .hp-hero-btns { flex-direction: column; }
    .hp-btn-primary, .hp-btn-ghost { justify-content: center; }
    .hp-stats { padding: 3rem 0; }
    .hp-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .hp-stat-num { font-size: 2.2rem; }
    .hp-services { padding: 3.5rem 0; }
    .hp-services-grid { grid-template-columns: 1fr; gap: 1rem; }
    .hp-process { padding: 3.5rem 0; }
    /* Mobile: vertical stack — number left, text right, vertical line */
    .hp-process-steps {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: relative;
    }
    .hp-process-steps::before { display: none; }
    /* Vertical connecting line */
    .hp-process-steps::after {
        content: '';
        position: absolute;
        left: 23px; top: 48px; bottom: 24px;
        width: 2px;
        background: linear-gradient(180deg,
            rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 10%,
            rgba(255,255,255,0.15) 90%, rgba(255,255,255,0) 100%);
    }
    .hp-step {
        display: flex; align-items: flex-start;
        text-align: left; gap: 1rem;
        padding: 0 0 1.75rem 0;
        position: relative; z-index: 1;
    }
    .hp-step:last-child { padding-bottom: 0; }
    .hp-step-num { margin: 0; flex-shrink: 0; }
    .hp-step-title { margin-top: 0.6rem; }
    .hp-step-body { margin-top: 0.25rem; }
    .hp-why { padding: 3.5rem 0; }
    .hp-testi-grid { grid-template-columns: 1fr; }
    .hp-testi-grid .hp-testi-card:nth-child(n+3) { display: none; }
    .hp-tech { padding: 3rem 0; }
    .hp-blog { padding: 3.5rem 0; }
    .hp-blog-grid { grid-template-columns: 1fr; }
    .hp-blog-grid .blog-card-v2:nth-child(n+3) { display: none; }
    .hp-blog-header { flex-direction: column; align-items: flex-start; }
    .hp-cta { padding: 3.5rem 0; }
    .hp-cta-btns { flex-direction: column; align-items: center; }
}
