/* 
   Trust-Certs Landing Page Styles
   Modern, Premium, Persuasive Design
*/

/* ========================
   CSS Variables
   ======================== */
:root {
    /* Primary Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --primary-alpha: rgba(99, 102, 241, 0.1);

    /* Secondary Colors */
    --secondary: #0ea5e9;
    --secondary-dark: #0284c7;

    /* Accent Colors */
    --accent-1: #8b5cf6;
    --accent-2: #ec4899;
    --accent-3: #f59e0b;
    --accent-4: #10b981;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-hero: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
    --gradient-dark: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);

    /* Neutrals */
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --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 40px rgba(99, 102, 241, 0.3);

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ========================
   Base Styles
   ======================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.2;
}

p {
    color: var(--gray-600);
}

a {
    text-decoration: none;
    transition: var(--transition-normal);
}

.container {
    max-width: 1200px;
}

/* ========================
   Navbar
   ======================== */
.navbar {
    padding: 1rem 0;
    transition: var(--transition-normal);
    background: transparent;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover {
    color: var(--white);
}

.btn-nav {
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
}

.btn-outline-light.btn-nav {
    border-width: 2px;
}

.btn-outline-light.btn-nav:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-primary-glow {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
    color: var(--white);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================
   Hero Section
   ======================== */
.hero-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding-top: 60px;
    /* Reducido de 80px */
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ... (shapes styles unchanged) ... */

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    /* Reducido de 4rem */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    /* Reducido */
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.8rem;
    /* Reducido */
    font-weight: 500;
    margin-bottom: 1rem;
    /* Reducido */
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 2.8rem;
    /* Reducido de 3.5rem */
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    /* Reducido */
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    /* Reducido de 1.25rem */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    /* Reducido */
    max-width: 580px;
}

.hero-highlight {
    background: rgba(15, 23, 42, 0.7);
    /* Más oscuro para mejor contraste */
    border-left: 4px solid #38bdf8;
    padding: 0.8rem 1.2rem;
    /* Más compacto */
    border-radius: 0 8px 8px 0;
    margin-bottom: 2rem;
    max-width: 580px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-left-width: 4px;
}

.hero-highlight i {
    color: #38bdf8;
    font-size: 1.5rem;
    /* Ajustado */
    flex-shrink: 0;
}

.hero-highlight span {
    color: #f0f9ff;
    font-size: 1rem;
    /* Ajustado */
    line-height: 1.4;
}

.hero-highlight strong {
    color: #e0f2fe;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2rem;
    /* Reducido */
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    /* Más compacto */
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    transition: var(--transition-normal);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
    color: var(--white);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    /* Más compacto */
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    /* Reducido */
}

.stat-item {
    text-align: left;
    /* Alineado a la izquierda para ahorrar espacio vertical si es necesario */
}

.stat-number {
    display: block;
    font-size: 2rem;
    /* Reducido de 2.5rem */
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.certificate-mockup {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
    overflow: hidden;
    animation: slideInRight 1s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mockup-header {
    background: linear-gradient(90deg, var(--gray-200), var(--gray-100));
    padding: 0.75rem 1rem;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-400);
}

.mockup-dots span:first-child {
    background: #ef4444;
}

.mockup-dots span:nth-child(2) {
    background: #f59e0b;
}

.mockup-dots span:last-child {
    background: #22c55e;
}

.mockup-content {
    padding: 2rem;
}

.certificate-preview {
    background: linear-gradient(145deg, #fafafa, #f5f5f5);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
}

.cert-header {
    margin-bottom: 1.5rem;
}

.cert-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.cert-header h5 {
    color: var(--gray-800);
    font-size: 1.25rem;
}

.cert-body {
    margin-bottom: 1.5rem;
}

.cert-intro {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.cert-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.cert-course {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.cert-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.cert-details {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.cert-details span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.cert-details i {
    color: var(--primary);
    margin-right: 0.25rem;
}

.cert-qr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--gray-300);
}

.qr-placeholder {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-placeholder i {
    font-size: 2rem;
    color: var(--white);
}

.cert-qr span {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: bounce 3s infinite ease-in-out;
}

.floating-element i {
    font-size: 1.5rem;
}

.fe-1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.fe-1 i {
    color: #10b981;
}

.fe-2 {
    bottom: 20%;
    left: 0;
    animation-delay: 0.5s;
}

.fe-2 i {
    color: #6366f1;
}

.fe-3 {
    top: 50%;
    right: -20px;
    animation-delay: 1s;
}

.fe-3 i {
    color: #f59e0b;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* ========================
   Trusted Section
   ======================== */
.trusted-section {
    padding: 3rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.trusted-text {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    transition: var(--transition-normal);
}

.logo-item:hover {
    color: var(--primary);
}

.logo-item i {
    font-size: 2rem;
}

.logo-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* ========================
   Section Headers
   ======================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.light {
    color: var(--white);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-alpha);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================
   Features Section
   ======================== */
.features-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-100);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-card.feature-large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 2.5rem;
}

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-wrap i {
    font-size: 1.5rem;
    color: var(--white);
}

.gradient-1 {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.gradient-2 {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.gradient-3 {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.gradient-4 {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.gradient-5 {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
}

.gradient-6 {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.gradient-7 {
    background: linear-gradient(135deg, #22c55e, #84cc16);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.feature-list i {
    color: var(--primary);
    margin-right: 0.75rem;
}

/* ========================
   How It Works Section
   ======================== */
.how-section {
    padding: 6rem 0;
    background: var(--gradient-dark);
}

.how-section .section-header {
    margin-bottom: 4rem;
}

.how-section .section-badge {
    background: rgba(99, 102, 241, 0.2);
}

.how-section .section-title {
    color: var(--white);
}

.how-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    flex: 1;
    max-width: 320px;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.step-icon i {
    font-size: 2rem;
    color: var(--white);
}

.step-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.step-connector {
    color: var(--primary-light);
    font-size: 1.5rem;
    opacity: 0.5;
}

/* 4 Steps Container */
.steps-container-4 {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.step-card-4 {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.step-card-4:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.step-number-4 {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    margin-bottom: 0.5rem;
}

.step-card-4 .step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.step-card-4 .step-icon i {
    font-size: 1.5rem;
}

.step-card-4 h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.step-card-4 p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ========================
   Verification Section
   ======================== */
.verification-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.verification-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
}

.qr-demo-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
    text-align: center;
    position: relative;
    z-index: 1;
}

.qr-demo-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-glow 2s infinite;
}

.qr-demo-icon i {
    font-size: 3.5rem;
    color: white;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
    }
}

.qr-demo-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #10b981;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.qr-demo-status i {
    font-size: 1.3rem;
}

.hash-display {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
}

.hash-display small {
    display: block;
    color: var(--gray-500);
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.hash-display code {
    color: var(--primary);
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
}

.verification-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
}

.verification-badge i {
    color: var(--primary);
}

.vb-1 {
    top: 10%;
    left: 5%;
    animation: float 4s infinite ease-in-out;
}

.vb-2 {
    bottom: 15%;
    right: 5%;
    animation: float 4s infinite ease-in-out;
    animation-delay: 1s;
}

.verification-content {
    padding-left: 2rem;
}

.verification-content .section-title {
    margin-bottom: 2rem;
}

.verification-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.verification-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.15);
}

.vf-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vf-icon i {
    font-size: 1.3rem;
    color: white;
}

.vf-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.vf-text p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

.verification-cta {
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .verification-content {
        padding-left: 0;
        margin-top: 2rem;
    }

    .verification-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .steps-container-4 {
        flex-direction: column;
        align-items: center;
    }

    .step-card-4 {
        max-width: 100%;
        width: 100%;
    }

    .step-connector {
        transform: rotate(90deg);
    }
}

/* ========================
   Benefits Section
   ======================== */
.benefits-section {
    padding: 6rem 0;
    background: var(--white);
}

.benefits-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.benefit-showcase {
    position: relative;
    height: 100%;
}

.showcase-item {
    position: absolute;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s infinite ease-in-out;
}

.showcase-item i {
    font-size: 2rem;
    color: var(--primary);
}

.showcase-item strong {
    display: block;
    font-size: 1.25rem;
    color: var(--gray-800);
}

.showcase-item span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.si-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.si-2 {
    top: 40%;
    right: 10%;
    animation-delay: 1s;
}

.si-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 2s;
}

.benefits-content {
    padding-left: 3rem;
}

.benefits-content .section-badge {
    margin-bottom: 1rem;
}

.benefits-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.benefit-item:hover {
    background: var(--gray-50);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-alpha);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.25rem;
    color: var(--primary);
}

.benefit-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.benefit-text p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

/* ========================
   Pricing Section
   ======================== */
.pricing-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.pricing-highlight {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-label {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pricing-title {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.pricing-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.pricing-features {
    margin-bottom: 2rem;
    text-align: left;
}

.pf-item {
    padding: 0.75rem 0;
    color: var(--gray-600);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pf-item i {
    color: var(--primary);
    font-size: 1rem;
}

.btn-pricing {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    color: var(--white);
}

.pricing-note {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin: 0;
}

/* ========================
   Testimonials Section
   ======================== */
.testimonials-section {
    padding: 6rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-normal);
    border: 1px solid var(--gray-200);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.quote-icon {
    margin-bottom: 1rem;
}

.quote-icon i {
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.5;
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--white);
    font-size: 1.25rem;
}

.author-info strong {
    display: block;
    color: var(--gray-800);
    font-size: 0.95rem;
}

.author-info span {
    color: var(--gray-500);
    font-size: 0.8rem;
}

/* ========================
   CTA Section
   ======================== */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-hero);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--white);
    color: var(--primary-dark);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: var(--transition-normal);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary-dark);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-normal);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.trust-item i {
    font-size: 1rem;
}

/* ========================
   Footer
   ======================== */
.footer-section {
    padding: 4rem 0 2rem;
    background: var(--dark);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-brand span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-description {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--dark-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--primary-light);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-light);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin: 0;
}

/* ========================
   Animations
   ======================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================
   Responsive
   ======================== */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card.feature-large {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 100%;
    }

    .benefits-content {
        padding-left: 0;
        margin-top: 3rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.feature-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .trusted-logos {
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .navbar-collapse {
        background: var(--dark);
        padding: 1rem;
        border-radius: var(--radius-md);
        margin-top: 1rem;
    }

    .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }

    .btn-nav {
        display: block;
        text-align: center;
        margin: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }
}