/* Blue Coast Web Services - Dark Theme CSS */

/* ===== CSS Variables ===== */
:root {
    /* Primary Colors */
    --cyan: #00B4D8;
    --teal: #3AB3C8;
    --navy: #03045E;
    --dark-navy: #011640;

    /* Background Colors */
    --dark-bg: #1a1a2e;
    --dark-section: #16213e;
    --dark-card: #0f3460;
    --footer-bg: #313131;
    --light-header: #FBFBFB;
    --top-bar: #D7DDE1;

    /* Text Colors */
    --text-white: #FFFFFF;
    --text-light: #C6C6C6;
    --text-gray: #7A7A7A;
    --text-dark: #54595F;

    /* Gradients */
    --gradient-primary: linear-gradient(164deg, #00B4D8 0%, #03045E 100%);
    --gradient-hover: linear-gradient(180deg, #03045E 0%, #00B4D8 100%);
    --gradient-dark: linear-gradient(180deg, #1B1B1B 0%, #2C2C2C 100%);

    /* Shadows */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

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

a:hover {
    color: var(--teal);
}

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

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
    color: var(--text-white);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--cyan);
}

.btn-secondary:hover {
    background: var(--cyan);
    color: var(--dark-navy);
}

.btn-white {
    background: var(--text-white);
    color: var(--dark-navy);
}

.btn-white:hover {
    background: var(--cyan);
    color: var(--text-white);
}

/* ===== Top Bar ===== */
.top-bar {
    background-color: var(--top-bar);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1900px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.social-icons a {
    color: #898989;
    font-size: 18px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.social-icons a:hover {
    color: #171717;
}

.social-icons svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.top-bar-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--top-bar);
    color: #898989;
    border: 1px solid #B8B8B8;
    border-radius: 6px;
    font-family: 'Noto Serif', serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.top-bar-btn:hover {
    background: #171717;
    color: var(--text-white);
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-family: 'Noto Serif', serif;
    font-weight: 700;
    font-size: 1.1em;
}

.phone-number svg {
    fill: var(--teal);
    width: 23px;
    height: 23px;
}

/* ===== Header ===== */
header {
    background-color: var(--light-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-light);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 60px;
    width: auto;
    object-fit: cover;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav a {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--dark-navy);
    padding: 10px 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: var(--cyan);
}

.nav-cta {
    background: var(--gradient-primary);
    color: var(--text-white) !important;
    padding: 12px 24px !important;
    border-radius: 8px;
    font-family: 'Inter', sans-serif !important;
    font-weight: 900 !important;
    font-size: 16px !important;
}

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

.nav-cta:hover {
    background: var(--gradient-hover);
    color: var(--text-white) !important;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-navy);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    background: var(--gradient-dark);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(0, 180, 216, 0.1) 0%, transparent 50%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 1s ease;
}

.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--cyan);
    margin-bottom: 20px;
}

.hero h1 {
    color: var(--text-white);
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--cyan);
}

.hero-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease 0.3s both;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 180, 216, 0.2));
}

/* ===== Section Styles ===== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Dark Section */
.dark-section {
    background: var(--dark-section);
}

/* Light Section */
.light-section {
    background: var(--light-header);
}

.light-section h2,
.light-section h3 {
    color: var(--dark-navy);
}

.light-section p {
    color: var(--text-dark);
}

/* Content Section Alt */
.content-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

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

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.feature-card {
    background: var(--dark-card);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 180, 216, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--cyan);
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg,
.feature-icon img {
    width: 40px;
    height: 40px;
    fill: var(--text-white);
}

.feature-card h3 {
    color: var(--text-white);
    margin-bottom: 15px;
}

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

/* ===== Services Section ===== */
.services {
    padding: 100px 0;
    background: var(--dark-section);
}

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

.service-card {
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-section) 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 180, 216, 0.1);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.service-card h3 {
    color: var(--text-white);
    margin-bottom: 15px;
}

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

.service-card a {
    color: var(--cyan);
    font-weight: 600;
}

/* ===== CTA Section ===== */
.cta {
    background: var(--gradient-primary);
    text-align: center;
    padding: 80px 20px;
}

.cta h2 {
    color: var(--text-white);
    margin-bottom: 20px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* ===== Footer ===== */
footer {
    background: var(--footer-bg);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.footer-contact svg {
    fill: var(--text-white);
    width: 26px;
    height: 26px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px dotted #757575;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 5px;
}

.social-links a {
    color: var(--text-light);
    transition: var(--transition);
}

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

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* ===== Page Header ===== */
.page-header {
    background: var(--gradient-dark);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--text-white);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Pricing Cards ===== */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(0, 180, 216, 0.1);
    transition: var(--transition);
}

.pricing-card.featured {
    border-color: var(--cyan);
    transform: scale(1.05);
}

.pricing-card:hover {
    border-color: var(--cyan);
}

.pricing-card h3 {
    color: var(--cyan);
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 20px;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

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

.pricing-features li {
    padding: 12px 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* ===== Blog Cards ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--dark-card);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 180, 216, 0.1);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyan);
}

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

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

.blog-card-content {
    padding: 25px;
}

.blog-card .date {
    color: var(--cyan);
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.blog-card h3 {
    color: var(--text-white);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

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

.blog-card a {
    color: var(--cyan);
    font-weight: 600;
}

/* ===== Features Section ===== */
.features {
    padding: 100px 0;
    background: var(--dark-bg);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-list h4 {
    color: var(--text-white);
    margin-bottom: 5px;
}

.feature-list p {
    color: var(--text-light);
    margin: 0;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 100px 0;
    background: var(--dark-section);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    border: 1px solid rgba(0, 180, 216, 0.1);
}

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--cyan);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    color: var(--text-light);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-info h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* ===== Contact Form ===== */
.contact-form {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-white);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 10px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
}

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

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .nav-container {
        padding: 15px 20px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

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

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

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

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav-container {
        padding: 15px;
    }

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

    nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--light-header);
        padding: 20px;
        transform: translateX(-100%);
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    nav.active {
        transform: translateX(0);
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

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

    .services-grid,
    .features-grid,
    .pricing-cards,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

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

    .footer-contact p {
        justify-content: center;
    }

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

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

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

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

.mb-0 {
    margin-bottom: 0;
}

.mt-4 {
    margin-top: 2rem;
}

/* ===== PREMIUM HOMEPAGE STYLES ===== */

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--cyan) 0%, #90E0EF 50%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Hero */
.hero-premium {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-section) 50%, var(--dark-navy) 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(3, 4, 94, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(58, 179, 200, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(0, 180, 216, 0.3);
    color: var(--cyan);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-premium h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-premium .hero-text {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

/* Trust Bar */
.trust-bar {
    background: var(--dark-section);
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-text {
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    fill: var(--cyan);
}

/* Section Headers Premium */
.section-header-premium {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 180, 216, 0.15);
    color: var(--cyan);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header-premium h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

.section-header-premium p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Services Premium Grid */
.services-premium {
    padding: 100px 0;
    background: var(--dark-bg);
}

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

.service-card-premium {
    background: var(--dark-section);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.service-card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 180, 216, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card-premium.featured {
    background: linear-gradient(135deg, var(--dark-section) 0%, var(--dark-card) 100%);
    border-color: rgba(0, 180, 216, 0.2);
}

.service-icon-premium {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon-premium svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.service-card-premium h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.service-card-premium p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 8px;
}

.service-features li::before {
    content: "✓";
    color: var(--cyan);
    font-weight: 700;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-weight: 600;
    font-size: 14px;
}

.service-link svg {
    fill: var(--cyan);
    transition: var(--transition);
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--dark-section);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.step-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px var(--cyan);
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), transparent);
    margin-top: 50px;
    flex-shrink: 0;
}

/* Integrations */
.integrations {
    padding: 100px 0;
    background: var(--dark-bg);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.integration-item {
    background: var(--dark-section);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.integration-item:hover {
    border-color: rgba(0, 180, 216, 0.3);
    transform: scale(1.05);
}

.integration-item img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition);
}

.integration-item:hover img {
    opacity: 1;
}

.integrations-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: var(--dark-section);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.why-us-text > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-feature {
    display: flex;
    gap: 16px;
}

.why-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 180, 216, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--cyan);
}

.why-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

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

.why-us-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    background: var(--dark-card);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 450px;
}

.visual-card img {
    border-radius: 8px;
    width: 100%;
}

/* Testimonials Premium */
.testimonials-premium {
    padding: 100px 0;
    background: var(--dark-bg);
}

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

.testimonial-card-premium {
    background: var(--dark-section);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: #FFD700;
}

.testimonial-card-premium .testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author-premium {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar-premium {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.author-info-premium h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.author-info-premium p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--dark-section);
}

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

.faq-item {
    background: var(--dark-bg);
    border-radius: 12px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item h4 {
    color: var(--cyan);
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* CTA Premium */
.cta-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-navy) 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-premium h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 20px;
}

.cta-premium p {
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 32px;
}

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

/* Additional Button Styles */
.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

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

.btn-outline:hover {
    background: var(--cyan);
    color: var(--dark-bg);
}

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

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

/* ===== PREMIUM RESPONSIVE ===== */
@media (max-width: 1024px) {
    .integrations-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .why-us-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-premium {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .trust-features {
        gap: 24px;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        max-width: 100%;
    }

    .process-connector {
        display: none;
    }

    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

/* ===== Premium Page Header ===== */
.page-header-premium {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-section) 50%, var(--dark-navy) 100%);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(3, 4, 94, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(58, 179, 200, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.page-header-premium .container {
    position: relative;
    z-index: 2;
}

.page-header-premium h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    color: var(--text-white);
}

.page-header-premium p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Premium Content Sections ===== */
.content-section-premium {
    padding: 80px 0;
    background: var(--dark-bg);
}

.content-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text-premium .section-tag {
    margin-bottom: 15px;
}

.content-text-premium h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 20px;
    color: var(--text-white);
}

.content-text-premium p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Content Features List */
.content-features {
    margin: 30px 0;
}

.content-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.content-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.content-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-white);
}

.content-feature p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Content Stats */
.content-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.content-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--cyan);
}

.content-stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Visual Card */
.content-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    background: var(--dark-section);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 180, 216, 0.2);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
}

.visual-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.visual-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: linear-gradient(135deg, var(--dark-card), var(--dark-navy));
    border-radius: 12px;
}

.visual-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--cyan);
    opacity: 0.5;
}

/* Stats Card */
.stats-card {
    background: linear-gradient(135deg, var(--dark-section), var(--dark-card));
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.stat-highlight {
    text-align: center;
    padding: 40px;
}

.stat-highlight-number {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan) 0%, #90E0EF 50%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.stat-highlight-label {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    max-width: 200px;
    margin: 0 auto;
}

/* ===== Premium Services Section ===== */
.services-premium {
    padding: 80px 0;
    background: var(--dark-section);
}

/* ===== Resources Page Styles ===== */
.resources-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.resource-card {
    background: var(--dark-section);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(0, 180, 216, 0.1);
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyan);
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.15);
}

.resource-icon-box {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.resource-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.resource-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* ===== Articles Section ===== */
.articles-section {
    padding: 80px 0;
    background: var(--dark-section);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.article-card {
    background: var(--dark-bg);
    border-radius: 16px;
    padding: 30px;
    display: block;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyan);
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.1);
}

.article-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.article-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.article-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-white);
    line-height: 1.4;
}

.article-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.article-link {
    color: var(--cyan);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.article-card:hover .article-link {
    gap: 10px;
}

/* ===== FAQ Section (Resources Page) ===== */
.faq-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.faq-section .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-section);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--cyan);
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

/* ===== Responsive - Premium Page Components ===== */
@media (max-width: 992px) {
    .content-grid-premium {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-visual {
        order: -1;
    }

    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-section .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header-premium {
        padding: 100px 0 60px;
    }

    .content-section-premium {
        padding: 60px 0;
    }

    .services-premium {
        padding: 60px 0;
    }

    .content-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .content-stat {
        min-width: 100px;
    }

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

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

    .articles-section,
    .resources-section,
    .faq-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .content-feature {
        flex-direction: column;
        text-align: center;
    }

    .content-feature-icon {
        margin: 0 auto;
    }

    .content-stats {
        gap: 20px;
    }

    .stat-highlight-number {
        font-size: 3rem;
    }
}

/* ========================================
   ULTRA PROFESSIONAL DESIGN SYSTEM
   Modern, Clean, High-Impact Styling
======================================== */

/* ===== Hero Ultra Section ===== */
.hero-ultra {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-ultra {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 180, 216, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(58, 179, 200, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 180, 216, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 216, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 0%, transparent 70%);
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(58, 179, 200, 0.1));
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(58, 179, 200, 0.15), rgba(0, 180, 216, 0.05));
    bottom: -50px;
    left: -50px;
    animation-delay: -7s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(3, 4, 94, 0.1));
    top: 40%;
    left: 20%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-content-ultra {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-ultra {
    max-width: 600px;
}

.hero-badge-ultra {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--cyan);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title-ultra {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--teal) 50%, #67d4e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-ultra {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-cta-ultra {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

/* Ultra Buttons */
.btn-ultra {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-ultra-primary {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--teal) 100%);
    color: var(--dark-bg);
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.3);
}

.btn-ultra-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.4);
}

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

.btn-ultra-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-ultra:hover .btn-icon {
    transform: translateX(4px);
}

/* Hero Social Proof */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-avatars {
    display: flex;
    align-items: center;
}

.proof-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--dark-bg);
    margin-left: -12px;
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-bg);
}

.proof-avatar:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.proof-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.proof-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.proof-stars svg {
    width: 16px;
    height: 16px;
    color: #fbbf24;
    fill: #fbbf24;
}

.stars {
    color: #fbbf24;
    letter-spacing: 2px;
}

.rating-text {
    font-weight: 600;
    color: var(--white);
}

/* Hero Visual Side */
.hero-visual-ultra {
    position: relative;
}

.hero-cards-stack,
.hero-card-stack {
    position: relative;
    height: 450px;
}

.hero-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.9), rgba(26, 26, 46, 0.95));
    border: 1px solid rgba(0, 180, 216, 0.25);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-card-1 {
    top: 0;
    right: 0;
    width: 220px;
    z-index: 3;
    border-color: rgba(0, 180, 216, 0.4);
}

.hero-card-2 {
    top: 120px;
    right: 180px;
    width: 200px;
    z-index: 2;
}

.hero-card-3 {
    top: 240px;
    right: 40px;
    width: 200px;
    z-index: 1;
}

.hero-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 180, 216, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon-ultra {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(58, 179, 200, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.card-title-ultra {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.card-value-ultra {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    color: #10b981;
    margin-left: 12px;
}

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

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Scroll Indicator */
.scroll-indicator,
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--cyan);
    border-radius: 2px;
    animation: scroll-dot 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--cyan);
    border-bottom: 2px solid var(--cyan);
    transform: rotate(45deg);
    animation: scroll-arrow 2s ease-in-out infinite;
}

@keyframes scroll-arrow {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
    50% { transform: rotate(45deg) translateY(8px); opacity: 0.5; }
}

@keyframes scroll-dot {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== Trust Bar Ultra ===== */
.trust-bar-ultra {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.trust-text,
.trust-label {
    font-size: 0.95rem;
    color: var(--text-light);
    white-space: nowrap;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-logo:hover {
    color: rgba(255, 255, 255, 0.7);
}

.trust-logo i {
    font-size: 1.5rem;
    color: var(--cyan);
    opacity: 0.6;
}

/* ===== Integrations Showcase Section ===== */
.integrations-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
}

.integrations-header {
    text-align: center;
    margin-bottom: 60px;
}

.integrations-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin: 15px 0;
}

.integrations-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.integration-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.integration-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 180, 216, 0.4);
    background: rgba(0, 180, 216, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(0, 180, 216, 0.1);
}

.integration-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.integration-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.integration-type {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

.integrations-note {
    text-align: center;
    color: var(--cyan);
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .integrations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Scroll Reveal Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered reveal for grids */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.active > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.active > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.active > *:nth-child(8) { transition-delay: 0.4s; }
.reveal-stagger.active > *:nth-child(9) { transition-delay: 0.45s; }
.reveal-stagger.active > *:nth-child(10) { transition-delay: 0.5s; }

.reveal-stagger.active > * {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Services Ultra Section ===== */
.services-ultra {
    padding: 120px 0;
    background: var(--darker-bg);
    position: relative;
}

.section-header-ultra {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-ultra {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle-ultra {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.services-grid-ultra {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-ultra {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px 32px;
    text-decoration: none;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-ultra:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 180, 216, 0.2);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.service-card-ultra:hover .service-card-glow {
    opacity: 1;
}

.service-icon-ultra {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(58, 179, 200, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.service-icon-ultra svg {
    width: 32px;
    height: 32px;
    color: var(--cyan);
}

.service-card-ultra:hover .service-icon-ultra {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.25), rgba(58, 179, 200, 0.1));
}

.service-title-ultra {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.service-desc-ultra {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features-ultra {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.service-features-ultra li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.service-features-ultra li i {
    color: var(--cyan);
    font-size: 0.9rem;
}

.service-link-ultra {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-link-ultra i {
    transition: transform 0.3s ease;
}

.service-card-ultra:hover .service-link-ultra {
    gap: 12px;
}

.service-card-ultra:hover .service-link-ultra i {
    transform: translateX(4px);
}

.service-content-ultra {
    flex-grow: 1;
}

.service-content-ultra h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 12px;
}

.service-content-ultra p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list-ultra {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list-ultra li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-list-ultra li:first-child {
    border-top: none;
}

.service-list-ultra li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--cyan);
}

.service-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all 0.3s ease;
}

.service-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--cyan);
}

.service-card-ultra:hover .service-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===== Process Ultra Section ===== */
.process-ultra {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
}

.process-grid-ultra {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-grid-ultra::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.3), rgba(0, 180, 216, 0.3), transparent);
    z-index: 0;
}

.process-step-ultra {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-number-ultra {
    width: 80px;
    height: 80px;
    background: var(--dark-bg);
    border: 2px solid rgba(0, 180, 216, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyan);
    margin: 0 auto 24px;
    transition: all 0.4s ease;
}

.process-step-ultra:hover .step-number-ultra {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(58, 179, 200, 0.1));
    border-color: var(--cyan);
    transform: scale(1.1);
}

.step-title-ultra {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.step-desc-ultra {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Why Us Ultra Section ===== */
.why-ultra {
    padding: 120px 0;
    background: var(--darker-bg);
}

.why-grid-ultra {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-content-ultra .section-title-ultra {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.why-desc-ultra {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.why-features-ultra {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-feature-ultra {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.why-feature-ultra:hover {
    border-color: rgba(0, 180, 216, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.feature-icon-ultra {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(58, 179, 200, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-ultra svg {
    width: 24px;
    height: 24px;
    stroke: var(--cyan);
}

.feature-text-ultra h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.feature-text-ultra p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.why-visual-ultra {
    position: relative;
}

.visual-wrapper {
    position: relative;
}

.visual-card-ultra {
    background: var(--dark-section);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(0, 180, 216, 0.2);
    overflow: hidden;
}

.visual-card-ultra img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.visual-stat-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.95), rgba(26, 26, 46, 0.95));
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(10px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.stat-value-ultra {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cyan);
    display: block;
}

.stat-label-ultra {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Legacy why-us-ultra support */
.why-us-ultra {
    padding: 120px 0;
    background: var(--darker-bg);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.why-us-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.why-feature:hover {
    border-color: rgba(0, 180, 216, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.why-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(58, 179, 200, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.why-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

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

.why-us-visual {
    position: relative;
}

.stats-card-ultra {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(20px);
}

.stats-card-ultra h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 32px;
    text-align: center;
}

.stats-grid-ultra {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.stat-item-ultra {
    text-align: center;
    padding: 24px;
    background: rgba(0, 180, 216, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item-ultra:hover {
    background: rgba(0, 180, 216, 0.1);
    transform: translateY(-4px);
}

.stat-number-ultra {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label-ultra {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== Testimonials Ultra Section ===== */
.testimonials-ultra {
    padding: 120px 0;
    background: var(--dark-bg);
}

.testimonials-grid-ultra {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.testimonial-card-ultra {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
}

.testimonial-card-ultra:hover {
    border-color: rgba(0, 180, 216, 0.2);
    transform: translateY(-4px);
}

.testimonial-featured {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.08), rgba(58, 179, 200, 0.03));
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.testimonial-quote-icon {
    color: var(--cyan);
    opacity: 0.3;
    margin-bottom: 20px;
    line-height: 1;
}

.testimonial-quote-icon svg {
    width: 48px;
    height: 48px;
}

.testimonial-text-ultra {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
    flex-grow: 1;
}

.testimonial-featured .testimonial-text-ultra {
    font-size: 1.3rem;
}

.testimonial-author-ultra {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar-ultra {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-bg);
}

.author-info-ultra h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.author-info-ultra span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-rating {
    margin-top: 16px;
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 2px;
}

/* ===== FAQ Ultra Section ===== */
.faq-ultra {
    padding: 120px 0;
    background: var(--darker-bg);
}

.faq-grid-ultra {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item-ultra {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px 32px;
    transition: all 0.3s ease;
}

.faq-item-ultra:hover {
    border-color: rgba(0, 180, 216, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.faq-item-ultra h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-item-ultra h4 i {
    color: var(--cyan);
    font-size: 1rem;
    margin-top: 4px;
}

.faq-item-ultra p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    padding-left: 28px;
}

/* ===== CTA Ultra Section ===== */
.cta-ultra {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg-ultra {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(3, 4, 94, 0.2));
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(58, 179, 200, 0.1) 0%, transparent 50%);
}

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

.cta-content-ultra h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content-ultra p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

/* ===== Footer Ultra ===== */
.footer-ultra {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main-ultra {
    padding: 80px 0 60px;
}

.footer-grid-ultra {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand-ultra .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand-ultra .logo span {
    color: var(--cyan);
}

.footer-brand-ultra p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

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

.footer-social-ultra a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social-ultra a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-social-ultra a:hover {
    background: rgba(0, 180, 216, 0.1);
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-2px);
}

/* Contact items in footer */
.contact-item-ultra {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-item-ultra svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    fill: var(--cyan);
}

.contact-item-ultra a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-ultra a:hover {
    color: var(--cyan);
}

.footer-column-ultra h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links-ultra {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-ultra li {
    margin-bottom: 14px;
}

.footer-links-ultra a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-ultra a:hover {
    color: var(--cyan);
    transform: translateX(4px);
}

.footer-links-ultra a i {
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links-ultra a:hover i {
    opacity: 1;
}

.footer-contact-ultra {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-ultra li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-contact-ultra li i {
    color: var(--cyan);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-bottom-ultra {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-ultra p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

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

.footer-bottom-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* ===== Ultra Responsive Styles ===== */
@media (max-width: 1200px) {
    .hero-title-ultra {
        font-size: 3rem;
    }

    .services-grid-ultra {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid-ultra {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-grid-ultra::before {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-content-ultra {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-ultra {
        max-width: 100%;
    }

    .hero-subtitle-ultra {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-ultra {
        justify-content: center;
    }

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

    .hero-visual-ultra {
        display: none;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .testimonial-featured {
        grid-row: auto;
    }

    .footer-grid-ultra {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-ultra {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title-ultra {
        font-size: 2.2rem;
    }

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

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

    .btn-ultra {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

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

    .trust-logos {
        gap: 30px;
    }

    .section-title-ultra {
        font-size: 2rem;
    }

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

    .process-grid-ultra {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-grid-ultra {
        grid-template-columns: 1fr;
    }

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

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

    .footer-grid-ultra {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-social-ultra {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title-ultra {
        font-size: 1.8rem;
    }

    .hero-badge-ultra {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .section-title-ultra {
        font-size: 1.6rem;
    }

    .service-card-ultra {
        padding: 28px 24px;
    }

    .testimonial-card-ultra {
        padding: 28px 24px;
    }

    .stats-grid-ultra {
        grid-template-columns: 1fr;
    }

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

/* =========================================================
   SPECTACULAR HERO SECTION - Stunning Visual Design
   ========================================================= */

.hero-spectacular {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

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

/* Animated gradient mesh background */
.gradient-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(236, 72, 153, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 60% 80%, rgba(14, 165, 233, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 10% 90%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, #0f0f23 0%, #1a1a3e 50%, #0d1b2a 100%);
    animation: meshShift 20s ease-in-out infinite;
}

@keyframes meshShift {
    0%, 100% { background-position: 0% 0%, 100% 0%, 50% 100%, 0% 100%, 0% 0%; }
    25% { background-position: 100% 50%, 0% 50%, 100% 50%, 50% 0%, 0% 0%; }
    50% { background-position: 50% 100%, 50% 100%, 0% 0%, 100% 50%, 0% 0%; }
    75% { background-position: 0% 50%, 100% 0%, 50% 50%, 0% 100%, 0% 0%; }
}

/* Animated orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: orbFloat 15s ease-in-out infinite;
}

.hero-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.hero-orb.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    bottom: 10%;
    left: -50px;
    animation-delay: -5s;
}

.hero-orb.orb-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #10b981, #34d399);
    top: 40%;
    right: -30px;
    animation-delay: -10s;
}

.hero-orb.orb-4 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    bottom: 20%;
    right: 30%;
    animation-delay: -7s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.05); }
}

/* Grid overlay */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Particle field */
.particle-field {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

.particle.p1 { left: 10%; top: 20%; animation-delay: 0s; }
.particle.p2 { left: 20%; top: 80%; animation-delay: -2s; }
.particle.p3 { left: 40%; top: 30%; animation-delay: -4s; }
.particle.p4 { left: 60%; top: 70%; animation-delay: -6s; }
.particle.p5 { left: 80%; top: 40%; animation-delay: -8s; }
.particle.p6 { left: 90%; top: 60%; animation-delay: -10s; }
.particle.p7 { left: 30%; top: 50%; animation-delay: -12s; }
.particle.p8 { left: 70%; top: 20%; animation-delay: -14s; }

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Aurora glow effect */
.aurora-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.1) 50%, rgba(14, 165, 233, 0.15) 100%);
    filter: blur(40px);
}

/* Hero content layout */
.hero-content-spectacular {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero text styling */
.hero-text-spectacular {
    max-width: 600px;
}

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

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

.badge-icon {
    display: flex;
    color: #fbbf24;
}

.hero-title-spectacular {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title-spectacular .title-line {
    display: block;
}

.hero-title-spectacular .title-gradient {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-spectacular .title-highlight {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-spectacular {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
}

/* CTA Buttons */
.hero-cta-spectacular {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-spectacular {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-glow {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: white;
    border: none;
}

.btn-primary-glow .btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.btn-primary-glow .btn-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f97316 100%);
    border-radius: 14px;
    z-index: 0;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.3s ease;
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.4);
}

.btn-primary-glow:hover .btn-glow {
    opacity: 0.6;
}

.btn-ghost-glow {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-ghost-glow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Proof section */
.hero-proof-spectacular {
    display: flex;
    align-items: center;
    gap: 20px;
}

.proof-avatars-spectacular {
    display: flex;
}

.proof-avatar-spec {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    border: 3px solid #0f0f23;
    margin-left: -12px;
}

.proof-avatar-spec:first-child {
    margin-left: 0;
}

.proof-avatar-spec.proof-more {
    font-size: 0.75rem;
}

.proof-text-spectacular {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.proof-stars-spectacular {
    display: flex;
    gap: 2px;
}

.proof-stars-spectacular svg {
    width: 16px;
    height: 16px;
}

.proof-text-spectacular span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero visual side */
.hero-visual-spectacular {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

/* Browser mockup */
.browser-mockup {
    background: rgba(15, 15, 35, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(124, 58, 237, 0.2);
    animation: browserFloat 6s ease-in-out infinite;
}

@keyframes browserFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.browser-header {
    background: rgba(30, 30, 60, 0.8);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27ca40; }

.browser-url {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-url svg {
    color: #10b981;
}

.browser-content {
    padding: 20px;
    min-height: 280px;
}

.mock-nav {
    height: 12px;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 6px;
    margin-bottom: 20px;
}

.mock-hero-img {
    height: 100px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4) 0%, rgba(236, 72, 153, 0.4) 100%);
    border-radius: 12px;
    margin-bottom: 20px;
}

.mock-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mock-card {
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating stat cards */
.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: cardFloat 5s ease-in-out infinite;
}

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

.float-card-2 {
    bottom: 80px;
    left: -60px;
    animation-delay: -1.5s;
}

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

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

.float-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.float-text {
    display: flex;
    flex-direction: column;
}

.float-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a2e;
}

.float-label {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Tech floating icons */
.tech-float {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: techBob 4s ease-in-out infinite;
}

.tech-float.tech-1 {
    top: -20px;
    left: 20px;
    animation-delay: 0s;
}

.tech-float.tech-2 {
    top: 50%;
    right: -30px;
    animation-delay: -1s;
}

.tech-float.tech-3 {
    bottom: 30px;
    left: -20px;
    animation-delay: -2s;
}

@keyframes techBob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Scroll indicator */
.hero-scroll-spectacular {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* =========================================================
   SPECTACULAR INTEGRATIONS SECTION
   ========================================================= */

.integrations-spectacular {
    padding: 100px 0;
    background: linear-gradient(180deg, #0d1b2a 0%, #1a1a3e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.integrations-header-spec {
    text-align: center;
    margin-bottom: 60px;
}

.integrations-header-spec h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.integrations-header-spec p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Marquee animation */
.integrations-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    min-width: 120px;
}

.integration-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-logo svg {
    width: 100%;
    height: 100%;
}

.integration-item:hover .integration-logo {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.integration-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.integrations-note-spec {
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

/* =========================================================
   COLOR VARIETY - Services with warm coral/orange accent
   ========================================================= */

.services-ultra {
    background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 30%, #1f1f35 100%);
    position: relative;
}

.services-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f97316, #ec4899, #8b5cf6, transparent);
}

/* =========================================================
   COLOR VARIETY - Process with purple accent
   ========================================================= */

.process-ultra {
    background: linear-gradient(180deg, #1a1033 0%, #1f1f40 50%, #1a1a3e 100%);
    position: relative;
}

.process-ultra::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.process-ultra .step-number-ultra {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

/* =========================================================
   COLOR VARIETY - Why Us with teal/emerald accent
   ========================================================= */

.why-ultra {
    background: linear-gradient(180deg, #0f2027 0%, #132a33 50%, #1a1a2e 100%);
    position: relative;
}

.why-ultra::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 20% 80%, rgba(16, 185, 129, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.why-ultra .feature-icon-ultra {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.why-ultra .feature-icon-ultra svg {
    stroke: #10b981;
}

/* =========================================================
   COLOR VARIETY - Testimonials with warm gradient
   ========================================================= */

.testimonials-ultra {
    background: linear-gradient(180deg, #1a1a2e 0%, #2d1f3d 50%, #1a1a2e 100%);
    position: relative;
}

.testimonials-ultra::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 40% 40% at 10% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 90% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial-card-ultra {
    background: linear-gradient(135deg, rgba(45, 31, 61, 0.6), rgba(30, 30, 50, 0.8));
    border: 1px solid rgba(236, 72, 153, 0.15);
}

.testimonial-featured {
    border: 1px solid rgba(236, 72, 153, 0.3);
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.15);
}

/* =========================================================
   COLOR VARIETY - FAQ with blue accent
   ========================================================= */

.faq-ultra {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f172a 100%);
}

.faq-item-ultra {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.faq-item-ultra:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

/* =========================================================
   COLOR VARIETY - CTA with vibrant gradient
   ========================================================= */

.cta-ultra {
    position: relative;
    overflow: hidden;
}

.cta-bg-ultra {
    position: absolute;
    inset: 0;
}

.cta-bg-ultra .cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f97316 100%);
}

.cta-bg-ultra .cta-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

/* =========================================================
   RESPONSIVE - Spectacular Hero
   ========================================================= */

@media (max-width: 1024px) {
    .hero-content-spectacular {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text-spectacular {
        max-width: 100%;
    }
    
    .hero-cta-spectacular {
        justify-content: center;
    }
    
    .hero-proof-spectacular {
        justify-content: center;
    }
    
    .hero-visual-spectacular {
        display: none;
    }
    
    .hero-title-spectacular {
        font-size: clamp(2rem, 5vw, 3rem);
    }
}

@media (max-width: 768px) {
    .hero-spectacular {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .hero-cta-spectacular {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-spectacular {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-badge-spectacular {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .hero-orb {
        opacity: 0.3;
    }
    
    .integrations-header-spec h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title-spectacular {
        font-size: 1.8rem;
    }
    
    .hero-subtitle-spectacular {
        font-size: 1rem;
    }
    
    .proof-avatars-spectacular {
        transform: scale(0.9);
    }
}

/* =========================================================
   COLORFUL SECTION LABELS
   ========================================================= */

.services-ultra .section-label {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(236, 72, 153, 0.2));
    color: #f97316;
    border-color: rgba(249, 115, 22, 0.3);
}

.process-ultra .section-label {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
    color: #a855f7;
    border-color: rgba(139, 92, 246, 0.3);
}

.why-ultra .section-label {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
}

.testimonials-ultra .section-label {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(245, 158, 11, 0.2));
    color: #ec4899;
    border-color: rgba(236, 72, 153, 0.3);
}

.faq-ultra .section-label {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
}

/* Service cards with warm glow */
.services-ultra .service-card-ultra:hover {
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.services-ultra .service-featured {
    border-color: rgba(249, 115, 22, 0.3);
}

/* Colored text gradients for variety */
.services-ultra .text-gradient {
    background: linear-gradient(135deg, #f97316, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-ultra .text-gradient {
    background: linear-gradient(135deg, #8b5cf6, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-ultra .text-gradient {
    background: linear-gradient(135deg, #10b981, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Process step numbers with purple gradient */
.process-ultra .step-number-ultra {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4rem;
    font-weight: 900;
}

/* Process step lines with purple */
.process-ultra .step-line::after {
    background: linear-gradient(180deg, #8b5cf6 0%, transparent 100%);
}

/* Testimonial quote icons with pink */
.testimonials-ultra .testimonial-quote-icon svg {
    fill: rgba(236, 72, 153, 0.3);
}

/* FAQ item hover with blue glow */
.faq-ultra .faq-item-ultra h4 {
    color: #fff;
}

/* =========================================================
   SLEEK DARK TOP BAR
   ========================================================= */

.top-bar-dark {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-dark .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
}

.top-bar-dark .top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-dark .top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icons-dark {
    display: flex;
    gap: 12px;
}

.social-icons-dark a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-icons-dark a:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.4);
    color: #a855f7;
    transform: translateY(-2px);
}

.social-icons-dark a svg {
    width: 18px;
    height: 18px;
}

.client-login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.client-login-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: white;
}

.client-login-btn svg {
    width: 16px;
    height: 16px;
}

.phone-btn-dark {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.phone-btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
    color: white;
}

.phone-btn-dark svg {
    width: 16px;
    height: 16px;
}

/* =========================================================
   POPUP MODAL STYLES
   ========================================================= */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: linear-gradient(135deg, #1a1a3e 0%, #0f0f23 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(124, 58, 237, 0.15);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

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

.modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-icon.schedule-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.modal-icon.quote-icon {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: #a855f7;
}

.modal-icon.download-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(0, 180, 216, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #8B5CF6;
}

.modal-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
}

.modal-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.modal-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

/* Form Styles */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(124, 58, 237, 0.5);
    background: rgba(124, 58, 237, 0.1);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.form-group select option {
    background: #1a1a3e;
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.modal-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.4);
}

.modal-submit svg {
    transition: transform 0.3s ease;
}

.modal-submit:hover svg {
    transform: translateX(4px);
}

/* Modal Responsive */
@media (max-width: 600px) {
    .modal-container {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
}

/* Top bar responsive */
@media (max-width: 768px) {
    .top-bar-dark .container {
        flex-direction: column;
        gap: 12px;
    }
    
    .top-bar-dark .top-bar-left,
    .top-bar-dark .top-bar-right {
        width: 100%;
        justify-content: center;
    }
    
    .client-login-btn span,
    .phone-btn-dark span:not(:first-child) {
        display: none;
    }
}

/* =========================================================
   LOGO STYLING - Header and Footer
   ========================================================= */

/* Header logo */
.header-glass .logo img {
    height: 50px;
    width: auto;
    max-width: 220px;
}

/* Footer logo */
.footer-brand-ultra img {
    height: 45px;
    width: auto;
    max-width: 200px;
    margin-bottom: 20px;
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .header-glass .logo img {
        height: 40px;
        max-width: 180px;
    }
    
    .footer-brand-ultra img {
        height: 38px;
        max-width: 160px;
    }
}

/* =========================================================
   FUN ANIMATED NAVIGATION MENU
   ========================================================= */

/* Enhanced header with gradient border */
.header-glass {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(26, 26, 62, 0.95));
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.header-glass::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7c3aed, #ec4899, #f97316, #7c3aed, transparent);
    background-size: 200% 100%;
    animation: gradientSlide 8s linear infinite;
}

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

/* Navigation styling */
.header-glass nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.header-glass nav ul li {
    position: relative;
}

.header-glass nav ul li a:not(.nav-cta) {
    display: block;
    padding: 12px 18px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    border-radius: 8px;
}

/* Animated underline effect */
.header-glass nav ul li a:not(.nav-cta)::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(90deg, #7c3aed, #ec4899);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.header-glass nav ul li a:not(.nav-cta):hover::before,
.header-glass nav ul li a:not(.nav-cta).active::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Glowing background on hover */
.header-glass nav ul li a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(236, 72, 153, 0.15));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.header-glass nav ul li a:not(.nav-cta):hover::after {
    opacity: 1;
}

.header-glass nav ul li a:not(.nav-cta):hover {
    color: white;
}

.header-glass nav ul li a:not(.nav-cta).active {
    color: white;
}

/* Fun CTA button with pulse effect */
.header-glass .nav-cta {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
}

.header-glass .nav-cta::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #7c3aed, #ec4899, #f97316, #ec4899, #7c3aed);
    background-size: 300% 300%;
    border-radius: 12px;
    z-index: -1;
    animation: ctaGlow 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-glass .nav-cta:hover::before {
    opacity: 1;
}

.header-glass .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

@keyframes ctaGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Active page indicator dot */
.header-glass nav ul li a.active::after {
    opacity: 1;
}

/* Mobile menu enhancements */
@media (max-width: 968px) {
    .header-glass nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, #0f0f23 0%, #1a1a3e 100%);
        padding: 80px 30px 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }
    
    .header-glass nav.active {
        right: 0;
    }
    
    .header-glass nav ul {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .header-glass nav ul li a:not(.nav-cta) {
        padding: 16px 20px;
        font-size: 1.1rem;
    }
    
    .header-glass nav ul li a:not(.nav-cta)::before {
        bottom: 12px;
        left: 20px;
        right: auto;
        width: 30px;
    }
    
    .header-glass .nav-cta {
        text-align: center;
        margin-top: 20px;
    }
    
    /* Animated hamburger */
    .mobile-menu-toggle {
        z-index: 1000;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        padding: 10px;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Desktop menu visible */
@media (min-width: 969px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* =========================================================
   CLEAN STICKY HEADER - Simplified Design with Better Spacing
   ========================================================= */

/* Override previous header styles with cleaner version */
.header-glass {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 25, 0.95) !important;
    backdrop-filter: blur(20px);
    padding: 16px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 180, 216, 0.2) !important;
}

/* Remove the animated gradient border */
.header-glass::after {
    display: none !important;
}

/* When scrolled - slightly darker */
.header-glass.scrolled {
    background: rgba(10, 10, 25, 0.98) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Wider nav container for better spread */
.header-glass .nav-container {
    max-width: 1600px !important;
    padding: 0 60px !important;
}

/* Fix logo visibility */
.header-glass .logo img {
    height: 55px !important;
    width: auto !important;
    max-width: 240px !important;
    filter: brightness(1.1) !important;
}

/* Increased nav spacing */
.header-glass nav ul {
    gap: 12px !important;
}

/* Clean simple nav links */
.header-glass nav ul li a:not(.nav-cta) {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
    letter-spacing: 0.3px;
}

/* Remove all the fancy effects */
.header-glass nav ul li a:not(.nav-cta)::before,
.header-glass nav ul li a:not(.nav-cta)::after {
    display: none !important;
}

/* Simple hover - just color change */
.header-glass nav ul li a:not(.nav-cta):hover {
    color: #00B4D8 !important;
    background: rgba(0, 180, 216, 0.1);
}

.header-glass nav ul li a:not(.nav-cta).active {
    color: #00B4D8 !important;
    background: rgba(0, 180, 216, 0.15);
}

/* Clean CTA button - cyan themed with more padding */
.header-glass .nav-cta {
    background: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%) !important;
    color: white !important;
    padding: 14px 28px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
    transition: all 0.3s ease;
    border: none !important;
    margin-left: 8px;
}

.header-glass .nav-cta::before {
    display: none !important;
}

.header-glass .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

/* Top bar adjustment for fixed header */
.top-bar-dark {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.header-glass {
    top: 52px !important; /* Below top bar */
}

/* Body padding to account for fixed header */
body {
    padding-top: 130px;
}

/* Responsive header adjustments */
@media (max-width: 1400px) {
    .header-glass .nav-container {
        padding: 0 40px !important;
    }
}

@media (max-width: 1200px) {
    .header-glass .nav-container {
        padding: 0 30px !important;
    }

    .header-glass nav ul {
        gap: 8px !important;
    }

    .header-glass nav ul li a:not(.nav-cta) {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
}

/* Hero section needs no top padding since body has it */
.hero-spectacular {
    padding-top: 60px !important;
    margin-top: 0 !important;
}

/* =========================================================
   HERO - CYAN/TEAL DOMINANT COLORS
   ========================================================= */

/* Override hero orbs to be more cyan/teal */
.hero-orb.orb-1 {
    background: linear-gradient(135deg, #00B4D8, #0077B6) !important;
    opacity: 0.5;
}

.hero-orb.orb-2 {
    background: linear-gradient(135deg, #00B4D8, #06b6d4) !important;
    opacity: 0.6;
}

.hero-orb.orb-3 {
    background: linear-gradient(135deg, #0ea5e9, #22d3ee) !important;
    opacity: 0.4;
}

.hero-orb.orb-4 {
    background: linear-gradient(135deg, #06b6d4, #67e8f9) !important;
    opacity: 0.5;
}

/* Override gradient mesh to be more cyan */
.gradient-mesh {
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 180, 216, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(6, 182, 212, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 60% 80%, rgba(14, 165, 233, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 10% 90%, rgba(0, 119, 182, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a1a 0%, #0d1b2a 50%, #0f172a 100%) !important;
}

/* Title gradient - cyan themed */
.hero-title-spectacular .title-gradient {
    background: linear-gradient(135deg, #00B4D8 0%, #06b6d4 50%, #22d3ee 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.hero-title-spectacular .title-highlight {
    background: linear-gradient(135deg, #0ea5e9 0%, #00B4D8 50%, #0077B6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Primary CTA button - cyan */
.btn-primary-glow {
    background: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%) !important;
}

.btn-primary-glow:hover {
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.4) !important;
}

.btn-primary-glow .btn-glow {
    background: linear-gradient(135deg, #00B4D8 0%, #06b6d4 50%, #22d3ee 100%) !important;
}

/* Aurora effect - cyan */
.aurora-glow {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 180, 216, 0.1) 50%, rgba(6, 182, 212, 0.15) 100%) !important;
}

/* Top bar phone button - cyan */
.phone-btn-dark {
    background: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%) !important;
}

.phone-btn-dark:hover {
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.4) !important;
}

@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }

    .header-glass {
        top: 48px !important;
    }

    .header-glass .logo img {
        height: 42px !important;
    }
}

/* ========================================
   SERVICE PAGES - STUNNING DESIGN SYSTEM
   Premium Service Page Styling
======================================== */

/* ===== Service Hero Section ===== */
.service-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a1a 0%, #0d1b2a 50%, #0f172a 100%);
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.service-hero-bg .hero-gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 180, 216, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 60% 80%, rgba(14, 165, 233, 0.25) 0%, transparent 50%);
    animation: meshFloat 15s ease-in-out infinite;
}

.service-hero-bg .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbPulse 6s ease-in-out infinite;
}

.service-hero-bg .hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.4) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.service-hero-bg .hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: 3s;
}

.service-hero-bg .hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -15px) rotate(2deg); }
    66% { transform: translate(-15px, 10px) rotate(-2deg); }
}

@keyframes orbPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.1); }
}

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

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Text Styles */
.service-hero-text {
    max-width: 600px;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #00B4D8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.service-badge svg {
    color: #00B4D8;
}

.service-hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: white;
    margin-bottom: 25px;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #00B4D8 0%, #06b6d4 50%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: #00B4D8;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero CTA Buttons */
.hero-cta-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.4);
}

.btn-hero-primary svg {
    transition: transform 0.3s ease;
}

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

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-ghost:hover {
    border-color: #00B4D8;
    color: #00B4D8;
    background: rgba(0, 180, 216, 0.1);
}

/* ===== Browser Showcase Visual ===== */
.service-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.browser-showcase {
    position: relative;
    width: 100%;
    max-width: 550px;
}

.browser-frame {
    background: #1a1a2e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #12121f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27ca40; }

.browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.browser-content {
    padding: 25px;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.mock-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2) 0%, rgba(6, 182, 212, 0.1) 100%);
    opacity: 0.6;
}

.mock-nav-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 30px;
    width: 70%;
}

.mock-hero-text {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.mock-headline {
    height: 24px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 70%, transparent 100%);
    border-radius: 6px;
    margin-bottom: 12px;
    width: 80%;
}

.mock-subline {
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-bottom: 20px;
    width: 60%;
}

.mock-btn {
    height: 36px;
    width: 140px;
    background: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%);
    border-radius: 8px;
}

.mock-cards {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.mock-card {
    flex: 1;
    height: 70px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(20, 20, 35, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    animation: floatElement 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.floating-element svg {
    color: #00B4D8;
}

.floating-code {
    top: 10%;
    left: -40px;
    animation-delay: 0s;
}

.floating-mobile {
    top: 50%;
    right: -50px;
    animation-delay: 1.5s;
}

.floating-speed {
    bottom: 10%;
    left: -30px;
    animation-delay: 3s;
}

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

/* ===== Difference Section ===== */
.difference-section {
    padding: 100px 0;
    background: #0d1117;
}

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

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00B4D8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-header-center h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header-center p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

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

.difference-card {
    background: rgba(20, 20, 35, 0.6);
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.difference-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 180, 216, 0.4);
    box-shadow: 0 20px 50px rgba(0, 180, 216, 0.15);
    background: rgba(20, 20, 35, 0.9);
}

.difference-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.difference-icon svg {
    color: white;
}

.difference-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.difference-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ===== Included Section ===== */
.included-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #0d1b2a 100%);
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.included-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.included-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 35px;
}

.included-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.included-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.included-check {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.included-check svg {
    color: #10B981;
}

.included-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.included-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin: 0;
}

/* Feature Showcase Visual */
.included-visual {
    display: flex;
    justify-content: center;
}

.feature-showcase {
    display: grid;
    gap: 20px;
    width: 100%;
    max-width: 450px;
}

.showcase-item {
    background: rgba(20, 20, 35, 0.8);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.showcase-item:hover {
    border-color: rgba(0, 180, 216, 0.3);
    transform: translateY(-5px);
}

.showcase-item span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 15px;
}

.showcase-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-icon svg {
    color: #00B4D8;
}

.showcase-devices {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 10px;
}

.device {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.3), rgba(0, 180, 216, 0.1));
    border-radius: 4px;
    border: 1px solid rgba(0, 180, 216, 0.4);
}

.device.desktop {
    width: 80px;
    height: 50px;
    border-radius: 6px;
}

.device.tablet {
    width: 45px;
    height: 60px;
    border-radius: 5px;
}

.device.phone {
    width: 25px;
    height: 45px;
    border-radius: 4px;
}

/* Speed Meter */
.speed-meter {
    width: 120px;
    height: 120px;
    margin: 0 auto 10px;
    background: conic-gradient(
        #10B981 0deg 352deg,
        rgba(255, 255, 255, 0.1) 352deg 360deg
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.speed-meter::before {
    content: '';
    position: absolute;
    inset: 10px;
    background: rgba(20, 20, 35, 0.95);
    border-radius: 50%;
}

.speed-score {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    font-weight: 800;
    color: #10B981;
}

/* Secure Badge */
.secure-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Process Section ===== */
.process-section {
    padding: 100px 0;
    background: #0d1117;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-step {
    position: relative;
    padding: 40px 30px;
    background: rgba(20, 20, 35, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.process-step:hover {
    border-color: rgba(0, 180, 216, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 180, 216, 0.1);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.4), rgba(0, 180, 216, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.step-content > p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-details li {
    padding: 8px 0;
    padding-left: 24px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.step-details li:last-child {
    border-bottom: none;
}

.step-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #00B4D8;
    border-radius: 50%;
}

/* ===== Service CTA Section ===== */
.service-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #0d1b2a 100%);
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.25) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.cta-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
}

.service-cta .container {
    position: relative;
    z-index: 2;
}

.cta-content-centered {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content-centered > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 35px;
}

.cta-buttons-centered {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%);
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 180, 216, 0.35);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 180, 216, 0.45);
}

.btn-cta-primary svg {
    transition: transform 0.3s ease;
}

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

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: transparent;
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    border-color: #00B4D8;
    color: #00B4D8;
    background: rgba(0, 180, 216, 0.1);
}

.cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

/* ===== Service Page Responsive ===== */
@media (max-width: 1200px) {
    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .service-hero-text {
        max-width: 100%;
    }

    .hero-stats-row {
        justify-content: center;
    }

    .hero-cta-row {
        justify-content: center;
    }

    .included-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .included-visual {
        order: -1;
    }

    .floating-element {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-stats-row {
        flex-wrap: wrap;
        gap: 25px;
    }

    .hero-stat {
        min-width: 100px;
    }

    .difference-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .difference-section,
    .included-section,
    .process-section,
    .service-cta {
        padding: 70px 0;
    }

    .browser-showcase {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .service-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .hero-cta-row {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-ghost {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons-centered {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .step-number {
        font-size: 2.5rem;
    }
}

/* ===== Dashboard Showcase (Web Management Page) ===== */
.dashboard-showcase {
    position: relative;
    width: 100%;
    max-width: 550px;
}

.dashboard-frame {
    background: #1a1a2e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #12121f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.dashboard-dots span:nth-child(1) { background: #ff5f56; }
.dashboard-dots span:nth-child(2) { background: #ffbd2e; }
.dashboard-dots span:nth-child(3) { background: #27ca40; }

.dashboard-title {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.dashboard-content {
    padding: 25px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.status-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.status-item.status-good .status-icon {
    color: #10B981;
}

.status-icon {
    margin-bottom: 10px;
}

.status-icon svg {
    width: 24px;
    height: 24px;
}

.status-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.status-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #10B981;
}

.uptime-bar {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px;
}

.uptime-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.uptime-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.uptime-fill {
    height: 100%;
    width: 99.9%;
    background: linear-gradient(90deg, #10B981 0%, #34D399 100%);
    border-radius: 4px;
}

.uptime-days {
    display: flex;
    gap: 3px;
}

.uptime-days span {
    flex: 1;
    height: 20px;
    background: #10B981;
    border-radius: 2px;
}

.uptime-days span:nth-child(7) {
    background: #F59E0B;
}

.floating-shield {
    top: 20%;
    left: -40px;
}

.floating-backup {
    bottom: 25%;
    right: -50px;
    animation-delay: 2s;
}

/* Uptime Circle Visual */
.showcase-uptime {
    padding: 25px;
}

.uptime-circle {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
}

.uptime-circle svg {
    width: 100%;
    height: 100%;
}

.uptime-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.uptime-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #10B981;
    line-height: 1;
}

.uptime-text .uptime-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ===== Automation Showcase (Automation Page) ===== */
.automation-showcase {
    position: relative;
    width: 100%;
    max-width: 550px;
}

.workflow-visual {
    background: rgba(20, 20, 35, 0.9);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 180, 216, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.workflow-node {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 200px;
    transition: all 0.3s ease;
}

.workflow-node:hover {
    border-color: rgba(0, 180, 216, 0.4);
    transform: translateX(5px);
}

.workflow-node .node-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-node span {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.trigger-node .node-icon {
    background: linear-gradient(135deg, #10B981, #059669);
}

.trigger-node .node-icon svg {
    color: white;
}

.action-node .node-icon {
    background: linear-gradient(135deg, #00B4D8, #0077B6);
}

.action-node .node-icon svg {
    color: white;
}

.success-node .node-icon {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.success-node .node-icon svg {
    color: white;
}

.workflow-connector {
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, rgba(0, 180, 216, 0.6), rgba(0, 180, 216, 0.2));
    position: relative;
}

.workflow-connector::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid rgba(0, 180, 216, 0.6);
}

.floating-zap {
    top: 15%;
    left: -50px;
}

.floating-clock {
    bottom: 20%;
    right: -60px;
    animation-delay: 2s;
}

/* Automation Circle */
.automation-stat {
    padding: 25px;
}

.automation-circle {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
}

.automation-circle svg {
    width: 100%;
    height: 100%;
}

.automation-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.automation-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #00B4D8;
    line-height: 1;
}

.automation-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Leads Visual */
.showcase-leads {
    padding: 25px;
}

.leads-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lead-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(90deg, rgba(0, 180, 216, 0.2), transparent);
    border-radius: 8px;
    border-left: 3px solid #00B4D8;
}

.lead-bar span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.lead-bar strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #10B981;
}

@media (max-width: 992px) {
    .workflow-visual {
        max-width: 100%;
    }

    .floating-zap,
    .floating-clock {
        display: none;
    }
}

/* Skip Navigation Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyan);
    color: var(--dark-bg);
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    z-index: 100000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--text-white);
    outline-offset: 2px;
}

/* Focus States for Interactive Elements */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

.mobile-menu-toggle:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}
