/* ============================================
   CINERGI INDUSTRIAL SOLUTIONS
   Premium Landing Page Styles
   ============================================ */

/* === CSS VARIABLES === */
:root {
    /* Colors */
    --color-primary: #0066FF;
    --color-primary-dark: #0052CC;
    --color-primary-light: #3385FF;
    --color-secondary: #00D9FF;
    --color-accent: #FF6B35;
    
    /* Grayscale */
    --color-black: #0A0E27;
    --color-gray-900: #1A1F36;
    --color-gray-800: #2D3748;
    --color-gray-700: #4A5568;
    --color-gray-600: #718096;
    --color-gray-500: #A0AEC0;
    --color-gray-400: #CBD5E0;
    --color-gray-300: #E2E8F0;
    --color-gray-200: #EDF2F7;
    --color-gray-100: #F7FAFC;
    --color-white: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    --gradient-secondary: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    --gradient-accent: linear-gradient(135deg, #F093FB 0%, #F5576C 100%);
    --gradient-dark: linear-gradient(180deg, #0A0E27 0%, #1A1F36 100%);
    
    /* Typography - World-Class Font Stack */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Outfit', var(--font-primary);
    --font-mono: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(0, 102, 255, 0.3);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --container-max-width: 1280px;
    --container-padding: var(--space-6);
}

/* === RESET & BASE STYLES === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-gray-900);
    letter-spacing: -0.02em;
    font-feature-settings: 'ss01' 1, 'ss02' 1;
}

h1 {
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-weight: 700;
    letter-spacing: -0.025em;
}

p {
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-base);
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-200);
    transition: all var(--transition-base);
}

.nav__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--space-4) var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__logo-subtitle {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav__list {
    display: flex;
    gap: var(--space-8);
}

.nav__link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-gray-700);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

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

.nav__link:hover::after {
    width: 100%;
}

/* Services Dropdown */
.nav__dropdown {
    position: relative;
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 12px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.nav__dropdown-menu li {
    list-style: none;
}

.nav__dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray-700);
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav__dropdown-menu a:hover {
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    color: white;
}

.nav__dropdown-menu li:first-child a {
    border-radius: 12px 12px 0 0;
}

.nav__dropdown-menu li:last-child a {
    border-radius: 0 0 12px 12px;
}

.nav__cta {
    padding: var(--space-3) var(--space-6);
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

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

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-2);
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-gray-900);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-32) var(--container-padding) var(--space-24);
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 102, 255, 0.03) 0%, 
        rgba(0, 217, 255, 0.05) 100%);
}

.hero__grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.hero__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--color-white);
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-gray-700);
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.6s ease-out;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    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(0.8); }
}

.hero__title {
    font-size: var(--text-6xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero__title-line {
    display: block;
}

.hero__title-line--gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: var(--text-xl);
    line-height: 1.7;
    color: var(--color-gray-600);
    margin-bottom: var(--space-8);
    max-width: 560px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero__actions {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.hero__stat-number {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: var(--space-2);
}

.hero__stat-label {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
}

.hero__visual {
    position: relative;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero__card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-gray-200);
    display: flex;
    gap: var(--space-4);
    align-items: center;
    transition: all var(--transition-base);
}

.hero__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.hero__card--1 {
    margin-bottom: var(--space-6);
    animation: float 6s ease-in-out infinite;
}

.hero__card--2 {
    margin-left: var(--space-12);
    animation: float 6s ease-in-out 3s infinite;
}

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

.hero__card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero__card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-white);
    stroke-width: 2;
}

.hero__card-content h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.hero__card-content p {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-gray-600);
    font-size: var(--text-sm);
    animation: fadeIn 1s ease-out 1s both;
}

.hero__scroll-indicator {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    animation: scrollIndicator 2s ease-in-out infinite;
}

@keyframes scrollIndicator {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

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

.btn--secondary {
    background: var(--color-white);
    color: var(--color-gray-900);
    border: 2px solid var(--color-gray-300);
}

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

.btn--large {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-lg);
}

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

.btn__icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* === SECTION HEADER === */
.section-header {
    margin-bottom: var(--space-12);
}

.section-header--centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header__label {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.section-header__title {
    font-size: var(--text-5xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.section-header__description {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* === ABOUT SECTION === */
.about {
    padding: var(--space-24) var(--container-padding);
    background: var(--color-white);
}

.about__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.about__text {
    margin-bottom: var(--space-12);
    max-width: 900px;
}

.about__text-large {
    font-size: var(--text-2xl);
    line-height: 1.6;
    color: var(--color-gray-800);
    margin-bottom: var(--space-6);
    font-weight: 500;
}

.about__text p {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--color-gray-600);
}

.about__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

/* === FEATURE CARD === */
.feature-card {
    padding: var(--space-8);
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

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

.feature-card__icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}

.feature-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-white);
    stroke-width: 2;
}

.feature-card__title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.feature-card__description {
    font-size: var(--text-base);
    color: var(--color-gray-600);
    line-height: 1.6;
}

/* === MISSION & VISION SECTION === */
.mission-vision {
    padding: var(--space-24) var(--container-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission-vision__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.mission-vision__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.mission-vision__card {
    background: white;
    padding: var(--space-10);
    border-radius: var(--radius-xl);
    border: 2px solid #e2e8f0;
    transition: all var(--transition-base);
}

.mission-vision__card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.1);
    transform: translateY(-4px);
}

.mission-vision__icon {
    width: 64px;
    height: 64px;
    background: #f8f9fa;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
}

.mission-vision__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-primary);
}

.mission-vision__title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    font-family: 'Space Grotesk', sans-serif;
    color: var(--color-gray-900);
}

.mission-vision__text {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--color-gray-600);
}

/* Experience Stats */
.experience-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    padding: var(--space-8) 0;
}

.experience-stats__item {
    text-align: center;
    padding: var(--space-6);
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid #e2e8f0;
}

.experience-stats__number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-2);
    font-family: 'Space Grotesk', sans-serif;
}

.experience-stats__label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.experience-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.experience-description p {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--color-gray-700);
}

@media (max-width: 768px) {
    .mission-vision__grid {
        grid-template-columns: 1fr;
    }

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

    .experience-stats__number {
        font-size: 36px;
    }
}

/* === PARTNERS SECTION === */
.partners {
    padding: var(--space-20) var(--container-padding);
    background: white;
    border-top: 1px solid #e2e8f0;
}

.partners__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.partners__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-12);
}

.partner-logo {
    aspect-ratio: 3/2;
    background: #f8f9fa;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    padding: var(--space-4);
}

.partner-logo:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.1);
    transform: translateY(-4px);
}

.partner-logo__placeholder {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gray-500);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-base);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

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

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

/* === SERVICES SECTION === */
.services {
    padding: var(--space-24) var(--container-padding);
    background: var(--color-gray-100);
}

.services__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

/* === SERVICE CARD === */
.service-card {
    position: relative;
    padding: var(--space-10);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

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

.service-card--featured {
    border: 2px solid var(--color-primary);
}

.service-card__badge {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    padding: var(--space-2) var(--space-4);
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
}

.service-card__number {
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--color-gray-300);
    margin-bottom: var(--space-4);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-gray-100), var(--color-gray-200));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
    background: var(--gradient-primary);
}

.service-card__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-gray-700);
    stroke-width: 2;
    transition: stroke var(--transition-base);
}

.service-card:hover .service-card__icon svg {
    stroke: var(--color-white);
}

.service-card__title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.service-card__description {
    font-size: var(--text-base);
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.service-card__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.service-card__features li {
    position: relative;
    padding-left: var(--space-6);
    font-size: var(--text-sm);
    color: var(--color-gray-700);
}

.service-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: var(--space-6);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-base);
}

.service-card__link:hover {
    gap: 12px;
    color: var(--color-primary-dark);
}

/* === CTA SECTION === */
.cta {
    position: relative;
    padding: var(--space-24) var(--container-padding);
    background: var(--gradient-dark);
    overflow: hidden;
}

.cta__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta__title {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--space-6);
}

.cta__description {
    font-size: var(--text-xl);
    color: var(--color-gray-400);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.cta__decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta__decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2), transparent);
}

.cta__decoration-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.cta__decoration-circle:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
}

/* === CONTACT SECTION === */
.contact {
    padding: var(--space-24) var(--container-padding);
    background: var(--color-white);
}

.contact__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-16);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.contact__detail {
    display: flex;
    gap: var(--space-4);
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    background: var(--color-gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__detail-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
    stroke-width: 2;
}

.contact__detail-content h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.contact__detail-content p {
    font-size: var(--text-base);
    color: var(--color-gray-600);
    line-height: 1.6;
}

.contact__detail-content a {
    color: var(--color-primary);
}

.contact__detail-content a:hover {
    text-decoration: underline;
}

.contact__social h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.social-links {
    display: flex;
    gap: var(--space-4);
}

.social-links__link {
    width: 44px;
    height: 44px;
    background: var(--color-gray-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-links__link:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.social-links__link svg {
    width: 20px;
    height: 20px;
    fill: var(--color-gray-700);
    transition: fill var(--transition-base);
}

.social-links__link:hover svg {
    fill: var(--color-white);
}

/* === FORM === */
.form__group {
    margin-bottom: var(--space-6);
}

.form__label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: var(--space-2);
}

.form__input {
    width: 100%;
    padding: var(--space-4);
    font-size: var(--text-base);
    font-family: var(--font-primary);
    color: var(--color-gray-900);
    background: var(--color-white);
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius);
    transition: all var(--transition-base);
}

.form__input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

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

/* === FOOTER === */
.footer {
    padding: var(--space-20) var(--container-padding) var(--space-8);
    background: var(--color-gray-900);
    color: var(--color-gray-400);
}

.footer__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.footer__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-16);
    margin-bottom: var(--space-12);
}

.footer__logo-text {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__logo-subtitle {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.footer__description {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-gray-400);
    margin-bottom: var(--space-6);
}

.footer__social {
    display: flex;
    gap: var(--space-3);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
    transition: all var(--transition-base);
}

.footer__social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.footer__title {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer__list a {
    font-size: var(--text-sm);
    color: var(--color-gray-400);
    transition: color var(--transition-base);
}

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

.footer__list--contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--color-gray-400);
    line-height: 1.6;
}

.footer__list--contact svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--color-primary);
}

.footer__bottom {
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright,
.footer__credits {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
}

.footer__credits a {
    color: var(--color-primary);
}

.footer__credits a:hover {
    text-decoration: underline;
}

/* FusionICT Badge */
.fusionict-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.fusionict-badge__text {
    font-size: 12px;
    color: var(--color-gray-500);
    font-weight: 500;
}

.fusionict-badge__logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fusionict-badge__logo svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-primary);
}

.fusionict-badge__link {
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.fusionict-badge__link:hover .fusionict-badge__name {
    background: linear-gradient(135deg, #00D9FF 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fusionict-badge__name {
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-primary) 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    :root {
        --text-6xl: 3rem;
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .hero__visual {
        order: -1;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .about__features {
        grid-template-columns: 1fr;
    }
    
    .contact__container {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: var(--space-8);
        transform: translateX(100%);
        transition: transform var(--transition-base);
    }
    
    .nav__menu.active {
        transform: translateX(0);
    }
    
    .nav__list {
        flex-direction: column;
        width: 100%;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero {
        padding: var(--space-24) var(--container-padding) var(--space-16);
    }
    
    .hero__title {
        font-size: var(--text-4xl);
    }
    
    .hero__description {
        font-size: var(--text-lg);
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__stats {
        grid-template-columns: 1fr;
    }
    
    .hero__card--2 {
        margin-left: 0;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero__title {
        font-size: var(--text-3xl);
    }
    
    .section-header__title {
        font-size: var(--text-3xl);
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* === NEWSLETTER SECTION === */
.newsletter {
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 60px 60px;
}

.newsletter__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter__content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.newsletter__icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter__icon svg {
    width: 40px !important;
    height: 40px !important;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.newsletter__text {
    flex: 1;
    min-width: 250px;
}

.newsletter__title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
    font-family: 'Space Grotesk', sans-serif;
}

.newsletter__description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.newsletter__form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    flex-wrap: wrap;
}

.newsletter__input {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter__input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

.newsletter__button {
    padding: 16px 32px;
    background: white;
    color: #0066FF;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.newsletter__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.newsletter__button-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.newsletter__privacy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 16px 0 0 0;
}

/* === EXIT INTENT POPUP === */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.exit-popup.active {
    display: flex;
}

.exit-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.exit-popup__content {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 48px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.exit-popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.exit-popup__close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.exit-popup__close svg {
    width: 20px;
    height: 20px;
    stroke: #333;
}

.exit-popup__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.exit-popup__icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2.5;
}

.exit-popup__title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    font-family: 'Space Grotesk', sans-serif;
}

.exit-popup__description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.exit-popup__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.exit-popup__input {
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.exit-popup__input:focus {
    outline: none;
    border-color: #0066FF;
}

.exit-popup__button {
    padding: 16px 32px;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exit-popup__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

.exit-popup__note {
    font-size: 13px;
    color: #999;
    margin: 16px 0 0 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* === SUCCESS MESSAGE === */
.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00C853 0%, #00E676 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 200, 83, 0.3);
    z-index: 10001;
    animation: slideInRight 0.4s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.success-message svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .newsletter {
        padding: 80px 20px;
    }

    .newsletter__title {
        font-size: 32px;
    }

    .newsletter__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .newsletter__form {
        width: 100%;
    }

    .newsletter__input {
        width: 100%;
        min-width: auto;
    }

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

    .exit-popup__content {
        padding: 32px 24px;
        margin: 20px;
    }

    .exit-popup__title {
        font-size: 24px;
    }
}

/* === ICON SIZE FIX === */
.newsletter__icon {
    width: 60px !important;
    height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    overflow: hidden !important;
}

.newsletter__icon svg {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    fill: none !important;
}

.exit-popup__icon {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
    overflow: hidden !important;
}

.exit-popup__icon svg {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    fill: none !important;
}

.exit-popup__close {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
}

.exit-popup__close svg {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    fill: none !important;
}

/* === ADDITIONAL DEFENSIVE STYLING === */
.newsletter svg,
.exit-popup svg {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.newsletter__form,
.newsletter__content {
    position: relative;
    z-index: 2;
}

.newsletter__button-icon {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0;
}

.success-message svg {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0;
}
/* === VIBRANT & ENGAGING ENHANCEMENTS === */

/* Animated floating particles background */
.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    background: rgba(0, 102, 255, 0.15);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
}

.particle:nth-child(1) { width: 80px; height: 80px; left: 10%; animation-duration: 15s; animation-delay: 0s; }
.particle:nth-child(2) { width: 120px; height: 120px; left: 25%; animation-duration: 20s; animation-delay: 2s; background: rgba(0, 217, 255, 0.1); }
.particle:nth-child(3) { width: 60px; height: 60px; left: 45%; animation-duration: 18s; animation-delay: 4s; }
.particle:nth-child(4) { width: 100px; height: 100px; left: 65%; animation-duration: 22s; animation-delay: 1s; background: rgba(0, 102, 255, 0.12); }
.particle:nth-child(5) { width: 90px; height: 90px; left: 80%; animation-duration: 16s; animation-delay: 3s; }
.particle:nth-child(6) { width: 70px; height: 70px; left: 15%; animation-duration: 19s; animation-delay: 5s; background: rgba(0, 217, 255, 0.08); }

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateY(-100vh) translateX(50px) rotate(180deg);
        opacity: 0.8;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-200vh) translateX(0) rotate(360deg);
        opacity: 0;
    }
}

/* Animated gradient backgrounds */
.hero__gradient {
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%);
    }
    33% {
        background: radial-gradient(circle at 80% 30%, rgba(0, 217, 255, 0.15) 0%, transparent 50%);
    }
    66% {
        background: radial-gradient(circle at 50% 80%, rgba(0, 102, 255, 0.12) 0%, transparent 50%);
    }
}

/* Pulsing badge dot */
.hero__badge-dot {
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.hero__badge-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

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

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

/* 3D card hover effects */
.feature-card,
.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover,
.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.25) !important;
}

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

/* Icon animations */
.feature-card__icon,
.service-card__icon {
    transition: all 0.4s ease;
    position: relative;
}

.feature-card:hover .feature-card__icon,
.service-card:hover .service-card__icon {
    transform: rotateY(360deg) scale(1.1);
}

/* Glowing effect on hover */
.feature-card__icon::after,
.service-card__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

.feature-card:hover .feature-card__icon::after,
.service-card:hover .service-card__icon::after {
    opacity: 1;
    animation: glow 1.5s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.3;
    }
}

/* Service card number animation */
.service-card__number {
    transition: all 0.4s ease;
}

.service-card:hover .service-card__number {
    transform: scale(1.3) rotate(5deg);
    color: #0066FF;
}

/* Animated underline for links */
.nav__link,
.footer__list a {
    position: relative;
}

.nav__link::after,
.footer__list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066FF 0%, #00D9FF 100%);
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.footer__list a:hover::after {
    width: 100%;
}

/* Button ripple effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Shimmer effect for featured card */
.service-card--featured {
    position: relative;
    overflow: hidden;
}

.service-card--featured::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Animated badge */
.service-card__badge {
    animation: badgeBounce 2s ease-in-out infinite;
}

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

/* Color-shifting hero title */
.hero__title-line--gradient {
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 50%, #0066FF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 3s ease-in-out infinite;
}

@keyframes gradientText {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Stats counter glow */
.hero__stat-number {
    position: relative;
    text-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
}

.hero__stat:hover .hero__stat-number {
    text-shadow: 0 0 40px rgba(0, 102, 255, 0.6);
    transform: scale(1.1);
}

/* Animated grid background */
.hero__grid {
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.05;
    }
    50% {
        opacity: 0.15;
    }
}

/* Newsletter section animation */
.newsletter {
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    }
    50% {
        background: linear-gradient(135deg, #0052CC 0%, #00C4E6 100%);
    }
}

/* Contact form input focus effects */
.form__input:focus {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.2) !important;
}

/* Scroll indicator animation */
.hero__scroll-indicator {
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* Social links hover effect */
.social-links__link {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.social-links__link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(0, 102, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.social-links__link:hover::before {
    width: 150%;
    height: 150%;
}

.social-links__link:hover {
    transform: translateY(-8px) rotate(360deg);
}

/* Section reveal animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-reveal {
    animation: fadeInUp 0.8s ease-out;
}

/* Mouse trail effect hint */
body {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%230066FF" stroke-width="2"><circle cx="12" cy="12" r="3"/></svg>'), auto;
}

a, button, input, select, textarea {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%230066FF"><circle cx="12" cy="12" r="4"/></svg>'), pointer;
}

/* Micro-interactions for buttons */
.btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:active {
    transform: scale(0.95);
}

/* CTA section decoration animation */
.cta__decoration-circle {
    animation: decorationFloat 6s ease-in-out infinite;
}

.cta__decoration-circle:nth-child(1) {
    animation-delay: 0s;
}

.cta__decoration-circle:nth-child(2) {
    animation-delay: 3s;
}

@keyframes decorationFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.6;
    }
}

/* Add sparkle effect */
@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.feature-card:hover .feature-card__icon svg,
.service-card:hover .service-card__icon svg {
    filter: drop-shadow(0 0 10px rgba(0, 102, 255, 0.5));
}

/* Newsletter form hover effect */
.newsletter__input:focus,
.newsletter__input:hover {
    transform: scale(1.02);
    border-color: white !important;
}

.newsletter__button:hover {
    transform: translateY(-4px) scale(1.05);
}

/* Add perspective to cards */
.services__grid,
.about__features {
    perspective: 1000px;
}
/* Fix hero cards - remove disappearing animation */
.hero__card {
    opacity: 1 !important;
    animation: none !important;
}

.hero__card--1 {
    animation: floatCard 6s ease-in-out infinite !important;
}

.hero__card--2 {
    animation: floatCard 6s ease-in-out 3s infinite !important;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}
/* === AI-POWERED COMPONENTS === */

/* Professional Tools Section */
.professional-tools {
    padding: 80px 20px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.professional-tools__container {
    max-width: 1200px;
    margin: 0 auto;
}

.professional-tools__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.professional-tool-card {
    background: white;
    padding: 40px 32px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.professional-tool-card:hover {
    border-color: #0066FF;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.1);
}

.professional-tool-card__icon {
    width: 64px;
    height: 64px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.professional-tool-card__icon svg {
    width: 32px;
    height: 32px;
    stroke: #0066FF;
}

.professional-tool-card__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-gray-900);
    font-family: 'Space Grotesk', sans-serif;
}

.professional-tool-card__description {
    color: var(--color-gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 15px;
}

.btn--secondary-outline {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #0066FF;
    border-radius: 8px;
    color: #0066FF;
    background: white;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn--secondary-outline:hover {
    background: #0066FF;
    color: white;
}

/* AI Chatbot Section - Keep for reference if needed */
.ai-chatbot {
    padding: 50px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.ai-chatbot__container {
    max-width: 1000px;
    margin: 0 auto;
}

.ai-chatbot__demo {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.ai-chatbot__window {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.ai-chatbot__header {
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.ai-chatbot__status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.ai-chatbot__status-dot {
    width: 8px;
    height: 8px;
    background: #00FF88;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.ai-chatbot__actions {
    display: flex;
    gap: 10px;
}

.ai-chatbot__minimize,
.ai-chatbot__close {
    width: 30px;
    height: 30px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.ai-chatbot__minimize:hover,
.ai-chatbot__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.ai-chatbot__messages {
    padding: 20px;
    min-height: 300px;
    max-height: 400px;
    overflow-y: auto;
    background: #f8f9fa;
}

.ai-message {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    animation: fadeInUp 0.4s ease;
}

.ai-message--bot {
    flex-direction: row;
}

.ai-message--user {
    flex-direction: row-reverse;
}

.ai-message__avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-message--user .ai-message__avatar {
    background: #e0e0e0;
}

.ai-message__avatar svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.ai-message__content {
    flex: 1;
}

.ai-message__content p {
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    margin: 0 0 10px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ai-message--user .ai-message__content p {
    background: #0066FF;
    color: white;
}

.ai-message__suggestions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ai-suggestion {
    padding: 8px 16px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ai-suggestion:hover {
    background: #0066FF;
    color: white;
    border-color: #0066FF;
}

.ai-chatbot__input {
    padding: 20px;
    background: white;
    display: flex;
    gap: 12px;
    border-top: 1px solid #e0e0e0;
}

.ai-chatbot__input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    font-size: 14px;
}

.ai-chatbot__input input:focus {
    outline: none;
    border-color: #0066FF;
}

.ai-chatbot__send {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.ai-chatbot__send:hover {
    transform: scale(1.1);
}

.ai-chatbot__send svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.ai-chatbot__powered {
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #999;
    background: #f8f9fa;
}

/* Floating AI Chat Button */
.ai-chat-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    border: none;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.ai-chat-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.5);
}

.ai-chat-fab__icon {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
}

.ai-chat-fab__badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #00FF88;
    color: #0066FF;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

/* Smart Quote Calculator */
.smart-quote {
    padding: 50px 20px;
    background: white;
}

.smart-quote__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.smart-quote__calculator {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.smart-quote__step {
    display: none;
}

.smart-quote__step.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.smart-quote__step h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.smart-quote__options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.smart-quote__option input {
    display: none;
}

.smart-quote__option-card {
    padding: 30px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.smart-quote__option input:checked + .smart-quote__option-card {
    border-color: #0066FF;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
}

.smart-quote__option-card svg {
    width: 48px;
    height: 48px;
    stroke: #0066FF;
    margin-bottom: 12px;
}

.smart-quote__option-card span {
    display: block;
    font-weight: 600;
    color: #333;
}

.smart-quote__slider {
    padding: 20px 0;
}

.smart-quote__slider input[type="range"] {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    outline: none;
}

.smart-quote__slider-value {
    text-align: center;
    margin-top: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #0066FF;
}

.smart-quote__checkboxes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.smart-quote__checkbox {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.smart-quote__checkbox:hover {
    border-color: #0066FF;
}

.smart-quote__checkbox input {
    margin-right: 12px;
}

.smart-quote__checkbox input:checked + span {
    color: #0066FF;
    font-weight: 600;
}

.smart-quote__result {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    border-radius: 20px;
    color: white;
    display: none;
}

.smart-quote__result.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.smart-quote__result-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.smart-quote__result-header svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.smart-quote__result-header h3 {
    font-size: 24px;
    margin: 0;
}

.smart-quote__result-amount {
    font-size: 56px;
    font-weight: 700;
    margin: 20px 0;
}

.smart-quote__result-note {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.smart-quote__navigation {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.smart-quote__navigation button {
    flex: 1;
}

.smart-quote__features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.smart-quote__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.smart-quote__feature svg {
    width: 20px;
    height: 20px;
    stroke: #0066FF;
}

/* Responsive */
@media (max-width: 768px) {
    .smart-quote__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .smart-quote__options {
        grid-template-columns: 1fr;
    }
    
    .ai-chat-fab {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
}

/* Footer Legal Links */
.footer__legal {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: white;
}

/* === AUTH NAVIGATION === */
.nav__auth {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav__auth-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__auth-link:hover {
    color: var(--color-primary);
}

.nav__auth-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav__auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 102, 255, 0.3);
}

/* User Menu */
.nav__user-menu {
    position: relative;
}

.nav__user-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 24px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav__user-toggle:hover {
    border-color: #0066FF;
}

.nav__user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-weight: 600;
    color: #333;
}

.nav__user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 16px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.nav__user-info {
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 12px;
}

.nav__user-email {
    font-size: 14px;
    color: #666;
    margin: 0 0 8px 0;
}

.nav__user-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.nav__user-badge.badge-free {
    background: #e3f2fd;
    color: #1976d2;
}

.nav__user-badge.badge-premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
}

.nav__user-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav__user-links a,
.nav__user-links button {
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav__user-links a:hover,
.nav__user-links button:hover {
    background: #f5f5f5;
}

.nav__user-links button {
    color: #d32f2f;
    margin-top: 8px;
    border-top: 1px solid #e0e0e0;
    padding-top: 16px;
}

@media (max-width: 768px) {
    .nav__auth {
        flex-direction: column;
        width: 100%;
        padding: 16px 0;
    }

    .nav__auth-btn {
        width: 100%;
        text-align: center;
    }

    .nav__user-dropdown {
        position: fixed;
        top: 80px;
        left: 20px;
        right: 20px;
        min-width: unset;
    }
}

/* === FORM VALIDATION STYLES === */

/* Error state for input fields */
input.field-error,
textarea.field-error,
select.field-error {
    border-color: #d32f2f !important;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
    animation: shake 0.3s ease;
}

/* Error message styling */
.field-error-message {
    display: block;
    color: #d32f2f;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

.field-error-message::before {
    content: "⚠ ";
    margin-right: 4px;
}

/* Shake animation for error fields */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Slide down animation for error messages */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success state for validated fields */
input.field-success,
textarea.field-success,
select.field-success {
    border-color: #4caf50 !important;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Loading state for form submission */
form.form-loading button[type="submit"] {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
}

form.form-loading button[type="submit"]::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* Rate limit warning */
.rate-limit-warning {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff9800;
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    animation: slideInUp 0.4s ease;
    max-width: 350px;
}

.rate-limit-warning::before {
    content: "⏱ ";
    font-size: 1.2rem;
    margin-right: 8px;
}

/* Honeypot field (hidden from users, but not from bots) */
input[name="website"],
input[name="url"] {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Enhanced focus states for accessibility */
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #0066FF;
    outline-offset: 2px;
}

input.field-error:focus,
textarea.field-error:focus,
select.field-error:focus {
    outline-color: #d32f2f;
}

/* === DASHBOARD STYLES === */

.dashboard {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding-top: 100px;
}

.dashboard__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Dashboard Header */
.dashboard__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
    gap: var(--space-4);
}

.dashboard__welcome {
    flex: 1;
}

.dashboard__title {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-2);
}

.dashboard__subtitle {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
}

.dashboard__actions {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

/* Stats Cards */
.dashboard__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.stat-card {
    background: white;
    padding: var(--space-6);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stat-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card__icon--blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stat-card__icon--green {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.stat-card__icon--purple {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.stat-card__icon--orange {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

.stat-card__content {
    flex: 1;
}

.stat-card__label {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    margin-bottom: var(--space-1);
}

.stat-card__value {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-2);
}

.stat-card__change {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
}

.stat-card__link {
    font-size: var(--text-sm);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.stat-card__link:hover {
    color: var(--color-primary-dark);
}

/* Dashboard Grid */
.dashboard__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-6);
}

.dashboard__card {
    background: white;
    padding: var(--space-6);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    grid-column: span 6;
}

.dashboard__card--large {
    grid-column: span 8;
}

.dashboard__card--highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.dashboard__card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
}

.dashboard__card-title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-dark);
}

.dashboard__card--highlight .dashboard__card-title {
    color: white;
}

.dashboard__card-link {
    font-size: var(--text-sm);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.dashboard__card-link:hover {
    text-decoration: underline;
}

.dashboard__card-select {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    font-size: var(--text-sm);
    cursor: pointer;
}

.dashboard__card-body {
    position: relative;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.quick-action {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-4);
    border-radius: 12px;
    background: #f8f9fa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-action:hover {
    background: #e9ecef;
    transform: translateX(4px);
}

.quick-action__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    flex-shrink: 0;
}

.quick-action__icon svg {
    width: 24px;
    height: 24px;
    stroke: #0066FF;
}

.quick-action__content h3 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-1);
}

.quick-action__content p {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
}

/* Activity List */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.activity-item {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-3);
    border-radius: 8px;
    background: #f8f9fa;
}

.activity-item__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    flex-shrink: 0;
}

.activity-item__icon svg {
    width: 20px;
    height: 20px;
    stroke: #0066FF;
}

.activity-item__content {
    flex: 1;
}

.activity-item__title {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.activity-item__time {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
}

.activity-list__empty {
    text-align: center;
    color: var(--color-gray-500);
    padding: var(--space-8) 0;
}

/* Quotes List */
.quotes-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.quote-item {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-4);
    border-radius: 8px;
    background: #f8f9fa;
    align-items: center;
}

.quote-item__icon {
    font-size: 1.5rem;
}

.quote-item__content {
    flex: 1;
}

.quote-item__title {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.quote-item__price {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.quote-item__time {
    font-size: var(--text-xs);
    color: var(--color-gray-500);
}

.quote-item__action {
    padding: 8px 16px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.quote-item__action:hover {
    background: var(--color-primary-dark);
}

.quotes-list__empty {
    text-align: center;
    color: var(--color-gray-500);
    padding: var(--space-8) 0;
}

/* Upgrade Banner */
.upgrade-banner {
    display: flex;
    gap: var(--space-6);
    align-items: flex-start;
}

.upgrade-banner__icon {
    font-size: 3rem;
}

.upgrade-banner__content {
    flex: 1;
}

.upgrade-banner__title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.upgrade-banner__text {
    font-size: var(--text-base);
    opacity: 0.9;
    margin-bottom: var(--space-4);
}

.upgrade-banner__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6) 0;
}

.upgrade-banner__features li {
    padding: 8px 0;
    font-size: var(--text-base);
    opacity: 0.95;
}

/* Responsive Dashboard */
@media (max-width: 1024px) {
    .dashboard__card--large {
        grid-column: span 12;
    }

    .dashboard__card {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    .dashboard {
        padding-top: 80px;
    }

    .dashboard__title {
        font-size: var(--text-3xl);
    }

    .dashboard__header {
        flex-direction: column;
    }

    .dashboard__actions {
        width: 100%;
    }

    .dashboard__actions .btn {
        flex: 1;
    }

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

    .upgrade-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* === SERVICE PAGES STYLES === */

/* Service Hero */
.service-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    color: white;
}

.service-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.service-hero__breadcrumb {
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
    opacity: 0.9;
}

.service-hero__breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.service-hero__breadcrumb a:hover {
    opacity: 0.8;
}

.service-hero__breadcrumb span {
    margin: 0 8px;
}

.service-hero__title {
    font-size: var(--text-5xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    font-family: 'Space Grotesk', sans-serif;
}

.service-hero__subtitle {
    font-size: var(--text-xl);
    opacity: 0.95;
}

/* Service Content */
.service-content {
    padding: var(--space-16) 0;
    background: #f8f9fa;
}

.service-content__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.service-content__grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--space-8);
}

.service-content__main {
    background: white;
    padding: var(--space-8);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Service Image */
.service-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: var(--space-8);
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.service-image__placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(0, 102, 255, 0.3);
}

/* Service Sections */
.service-section {
    margin-bottom: var(--space-8);
}

.service-section h2 {
    font-size: var(--text-3xl);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-4);
}

.service-section p {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-gray-700);
    margin-bottom: var(--space-4);
}

.service-section p:last-child {
    margin-bottom: 0;
}

/* Service Lists */
.service-list {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.service-list svg {
    flex-shrink: 0;
    color: #4caf50;
    margin-top: 2px;
}

.service-list span {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-gray-700);
}

/* Service Features */
.service-features {
    margin: var(--space-8) 0;
    padding: var(--space-6);
    background: #f8f9fa;
    border-radius: 12px;
}

.service-features h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-6);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
}

.feature-card {
    background: white;
    padding: var(--space-6);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-3);
}

.feature-card h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-2);
}

.feature-card p {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Applications Grid */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-4);
}

.application-item {
    background: #f8f9fa;
    padding: var(--space-4);
    border-radius: 8px;
}

.application-item h4 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--color-dark);
}

.application-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.application-item li {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    padding: 4px 0;
}

/* Service Benefits */
.service-benefits {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: var(--space-6);
    border-radius: 12px;
    margin: var(--space-8) 0;
}

.service-benefits h2 {
    color: white;
    margin-bottom: var(--space-4);
}

.service-benefits .service-list li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.service-benefits .service-list svg {
    color: #4caf50;
}

.service-benefits .service-list span {
    color: white;
}

/* Service CTA */
.service-cta {
    text-align: center;
    padding: var(--space-8);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    margin-top: var(--space-8);
}

.service-cta h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-3);
}

.service-cta p {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
    margin-bottom: var(--space-6);
}

.service-cta__buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.sidebar-card {
    background: white;
    padding: var(--space-6);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sidebar-card--highlight {
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    color: white;
}

.sidebar-card h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.sidebar-card--highlight h3 {
    color: white;
}

.sidebar-card p {
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.sidebar-card--highlight p {
    color: rgba(255, 255, 255, 0.95);
}

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

.sidebar-links li {
    margin-bottom: var(--space-2);
}

.sidebar-links a {
    display: block;
    padding: var(--space-3);
    border-radius: 8px;
    background: #f8f9fa;
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar-links a:hover {
    background: #e9ecef;
    transform: translateX(4px);
}

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

.sidebar-list li {
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

/* Responsive Service Pages */
@media (max-width: 1024px) {
    .service-content__grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        order: 2;
    }

    .service-content__main {
        order: 1;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 60px;
    }

    .service-hero__title {
        font-size: var(--text-4xl);
    }

    .service-hero__subtitle {
        font-size: var(--text-lg);
    }

    .service-content__main {
        padding: var(--space-6);
    }

    .service-image {
        height: 250px;
    }

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

    .service-cta__buttons {
        flex-direction: column;
    }

    .service-cta__buttons .btn {
        width: 100%;
    }

    .service-section h2 {
        font-size: var(--text-2xl);
    }
}

/* ============================================
   TOOLS PAGE - PROFESSIONAL STYLING
   ============================================ */

/* Tools Hero Section */
.tools-hero {
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tools-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 60px 60px;
    opacity: 0.5;
}

.tools-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tools-hero__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.tools-hero__title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.tools-hero__subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tools Section */
.tools-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.tools__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Tool Card */
.tool-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.tool-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Tool Card Header */
.tool-card__header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e2e8f0;
}

.tool-card__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    flex-shrink: 0;
}

.tool-card__icon svg {
    width: 36px;
    height: 36px;
    stroke: #0066FF;
}

.tool-card__title-section {
    flex: 1;
}

.tool-card__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.tool-card__description {
    font-size: 16px;
    color: var(--color-gray-600);
    margin: 0;
}

.tool-card__badge {
    padding: 8px 16px;
    background: #f8f9fa;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tool-card__badge--premium {
    background: #0066FF;
    color: white;
    border-color: #0066FF;
}

/* Tool Card Body */
.tool-card__body {
    padding: 40px 32px;
}

/* Tool Form */
.tool-form {
    margin-bottom: 32px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066FF;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-group input::placeholder {
    color: var(--color-gray-400);
}

/* Tool Result */
.tool-result {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 32px;
    margin-top: 32px;
    animation: slideIn 0.4s ease;
}

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

.result-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.result-main {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 24px;
}

.result-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.result-value {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
    margin: 0;
}

.result-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.result-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
}

.result-detail span {
    font-size: 14px;
    color: var(--color-gray-600);
    font-weight: 500;
}

.result-detail strong {
    font-size: 18px;
    color: var(--color-gray-900);
    font-weight: 700;
}

.result-info {
    margin-top: 24px;
    padding: 20px;
    background: rgba(0, 102, 255, 0.05);
    border-left: 4px solid #0066FF;
    border-radius: 8px;
}

.result-info p {
    margin: 0;
    color: var(--color-gray-700);
    font-size: 14px;
    line-height: 1.6;
}

/* Assessment Styling */
.assessment-questions {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.assessment-question {
    padding: 24px;
    background: #f8f9fa;
    border-radius: 16px;
    border-left: 4px solid #0066FF;
}

.assessment-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 16px;
}

.assessment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.assessment-options label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--color-gray-700);
}

.assessment-options label:hover {
    border-color: #0066FF;
    background: rgba(0, 102, 255, 0.02);
}

.assessment-options input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: #0066FF;
    cursor: pointer;
}

.assessment-options input[type="radio"]:checked + label,
.assessment-options label:has(input[type="radio"]:checked) {
    border-color: #0066FF;
    background: rgba(0, 102, 255, 0.08);
    color: #0066FF;
    font-weight: 600;
}

/* Security Score Display */
.security-score {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.security-score::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

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

.security-score__value {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    z-index: 1;
}

.security-score__label {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.security-score__description {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Score Rating Styles */
.score-excellent {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.score-good {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.score-fair {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.score-poor {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

/* Buttons */
.btn--full {
    width: 100%;
    justify-content: center;
}

.btn--primary {
    padding: 16px 32px;
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

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

.btn--primary:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tools-hero {
        padding: 80px 20px 60px;
    }

    .tools-hero__title {
        font-size: 36px;
    }

    .tools-hero__subtitle {
        font-size: 18px;
    }

    .tool-card__header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .tool-card__icon {
        width: 64px;
        height: 64px;
        font-size: 36px;
    }

    .tool-card__title {
        font-size: 24px;
    }

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

    .result-value {
        font-size: 42px;
    }

    .result-details {
        grid-template-columns: 1fr;
    }

    .security-score__value {
        font-size: 56px;
    }
}

/* ============================================
   PRODUCTS PAGE STYLES
   ============================================ */

/* Products Hero Section */
.products-hero {
    background: linear-gradient(135deg, #0A0E27 0%, #1A1F36 100%);
    padding: 140px var(--container-padding) 100px;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.products-hero__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.products-hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.products-hero__label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-bottom: var(--space-4);
}

.products-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--space-6);
}

.products-hero__subtitle {
    font-size: var(--text-xl);
    line-height: 1.6;
    color: var(--color-gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Filter */
.products-section {
    padding: var(--space-20) var(--container-padding);
    background: var(--color-white);
}

.products-section__container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.products-filter {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: center;
    margin-bottom: var(--space-12);
    padding-bottom: var(--space-8);
    border-bottom: 2px solid var(--color-gray-200);
}

.products-filter__btn {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gray-700);
    background: var(--color-white);
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: var(--font-primary);
}

.products-filter__btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.products-filter__btn--active {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-color: transparent;
}

.products-filter__btn--active:hover {
    transform: translateY(-2px);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-8);
}

/* Product Card */
.product-card {
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
    opacity: 1;
}

.product-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
    transform: translateY(-8px);
}

.product-card__badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    padding: var(--space-2) var(--space-4);
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    z-index: 2;
}

.product-card__image {
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--color-gray-200);
}

.product-card__image svg {
    width: 80px;
    height: 80px;
    stroke: var(--color-primary);
    opacity: 0.6;
    transition: all var(--transition-base);
}

.product-card:hover .product-card__image svg {
    opacity: 1;
    transform: scale(1.1);
}

.product-card__content {
    padding: var(--space-6);
}

.product-card__header {
    margin-bottom: var(--space-4);
}

.product-card__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.product-card__brand {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    padding: var(--space-1) var(--space-3);
    background: rgba(0, 102, 255, 0.1);
    border-radius: var(--radius-full);
}

.product-card__description {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--color-gray-600);
    margin-bottom: var(--space-4);
}

.product-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6) 0;
}

.product-card__features li {
    font-size: var(--text-sm);
    color: var(--color-gray-700);
    padding: var(--space-2) 0;
    padding-left: var(--space-6);
    position: relative;
}

.product-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%230066FF' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

.product-card__footer {
    display: flex;
    gap: var(--space-3);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-gray-200);
}

.product-card__footer .btn {
    flex: 1;
}

/* Products CTA Section */
.products-cta {
    background: var(--gradient-primary);
    padding: var(--space-20) var(--container-padding);
    position: relative;
    overflow: hidden;
}

.products-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.products-cta__container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.products-cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: var(--space-6);
}

.products-cta__text {
    font-size: var(--text-lg);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-cta__buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Variants for Products Page */
.btn--small {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

.btn--large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

/* Responsive Design - Products Page */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: var(--space-6);
    }
}

@media (max-width: 768px) {
    .products-hero {
        padding: 100px var(--container-padding) 60px;
    }

    .products-hero__title {
        font-size: 2rem;
    }

    .products-hero__subtitle {
        font-size: var(--text-base);
    }

    .products-filter {
        justify-content: flex-start;
        gap: var(--space-2);
    }

    .products-filter__btn {
        padding: var(--space-2) var(--space-4);
        font-size: var(--text-xs);
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .product-card__footer {
        flex-direction: column;
    }

    .products-cta {
        padding: var(--space-16) var(--container-padding);
    }

    .products-cta__title {
        font-size: 1.75rem;
    }

    .products-cta__text {
        font-size: var(--text-base);
    }

    .products-cta__buttons {
        flex-direction: column;
    }

    .products-cta__buttons .btn {
        width: 100%;
    }
}
