/* ================================================
   Print2Verifactu — Premium Design System
   ================================================ */

/* === CSS Custom Properties === */
:root {
    /* Primary Palette */
    --color-primary: #5b4cdb;
    --color-primary-light: #7c6ff0;
    --color-primary-dark: #3e2fb3;
    --color-accent: #00b894;
    --color-accent-light: #55efc4;
    --color-accent-dark: #00a87d;

    /* Neutral Palette — Light Theme */
    --color-bg: #f5f7fb;
    --color-bg-elevated: #ffffff;
    --color-bg-card: #ffffff;
    --color-bg-card-hover: #f0f2f8;
    --color-surface: #edf0f7;
    --color-surface-light: #e2e6ef;
    --color-border: rgba(0, 0, 0, 0.08);
    --color-border-hover: rgba(0, 0, 0, 0.15);

    /* Text Palette */
    --color-text: #1e293b;
    --color-text-secondary: #475569;
    --color-text-muted: #94a3b8;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #5b4cdb 0%, #7c6ff0 100%);
    --gradient-accent: linear-gradient(135deg, #00b894 0%, #5b4cdb 100%);
    --gradient-hero: linear-gradient(135deg, #eef1f8 0%, #f5f7fb 50%, #e8ecf4 100%);
    --gradient-card: linear-gradient(145deg, rgba(91, 76, 219, 0.04) 0%, rgba(0, 184, 148, 0.02) 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(91, 76, 219, 0.08) 0%, transparent 70%);

    /* Semantic */
    --color-success: #00b894;
    --color-warning: #f39c12;
    --color-danger: #e74c3c;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(91, 76, 219, 0.12);
    --shadow-glow-accent: 0 0 40px rgba(0, 184, 148, 0.1);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --container-max: 1200px;
    --navbar-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
}

body {
    font-family: var(--font-primary);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.hidden-svg {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* === Container === */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.938rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 16px rgba(108, 92, 231, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1.5px solid var(--color-border-hover);
}

.btn-outline:hover {
    border-color: var(--color-primary-light);
    color: var(--color-primary-light);
    transform: translateY(-2px);
}

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.813rem;
}

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

/* === Typography === */
h1 {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

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

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-4xl);
}

.section-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(91, 76, 219, 0.08);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-md);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a:not(.btn-nav-cta):hover {
    color: var(--color-text);
}

.nav-links a:not(.btn-nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width var(--transition-base);
    border-radius: 1px;
}

.nav-links a:not(.btn-nav-cta):hover::after {
    width: 100%;
}

.btn-nav-cta {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(108, 92, 231, 0.3);
    transition: all var(--transition-base);
}

.btn-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(91, 76, 219, 0.4);
}

.lang-switcher {
    display: flex;
    gap: 4px;
    background: var(--color-surface);
    border-radius: var(--radius-sm);
    padding: 2px;
}

.lang-btn {
    padding: 4px 10px;
    border: none;
    background: transparent;
    color: var(--color-text-muted);
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

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

.lang-btn:hover:not(.active) {
    color: var(--color-text);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

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

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    animation: float 20s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--color-primary);
    opacity: 0.15;
    right: -5%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--color-accent);
    bottom: 10%;
    left: -10%;
    animation-delay: -7s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: #f093fb;
    top: 40%;
    left: 30%;
    opacity: 0.06;
    animation-delay: -14s;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(91, 76, 219, 0.08);
    border: 1px solid rgba(91, 76, 219, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--color-primary-light);
    margin-bottom: var(--space-xl);
    animation: slideUp 0.6s ease-out;
}

.hero-text h1 {
    margin-bottom: var(--space-xl);
    animation: slideUp 0.6s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 540px;
    margin-bottom: var(--space-2xl);
    animation: slideUp 0.6s ease-out 0.2s both;
}

.hero-cta-group {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    animation: slideUp 0.6s ease-out 0.3s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    animation: slideUp 0.6s ease-out 0.4s both;
}

.hero-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    display: block;
    font-size: 0.813rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

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

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

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideUp 0.8s ease-out 0.3s both;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.813rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    animation: cardFloat 6s ease-in-out infinite;
}

.hero-float-card-1 {
    bottom: 20%;
    right: -10%;
    animation-delay: 0s;
}

.hero-float-card-2 {
    top: 15%;
    left: -5%;
    animation-delay: -3s;
}

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

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounceDown 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border-radius: 13px;
    border: 2px solid var(--color-text-muted);
    position: relative;
}

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

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

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

/* ================================================
   URGENCY BAR
   ================================================ */
.urgency-bar {
    background: linear-gradient(90deg, rgba(231, 76, 60, 0.06) 0%, rgba(243, 156, 18, 0.06) 50%, rgba(231, 76, 60, 0.06) 100%);
    border-top: 1px solid rgba(231, 76, 60, 0.15);
    border-bottom: 1px solid rgba(231, 76, 60, 0.15);
    padding: var(--space-md) 0;
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    text-align: center;
}

.urgency-content p {
    font-size: 0.938rem;
    color: var(--color-danger);
}

.urgency-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ================================================
   FEATURES SECTION
   ================================================ */
.features {
    padding: var(--space-5xl) 0;
}

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

.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

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

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(91, 76, 219, 0.06);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    color: var(--color-primary-light);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: rgba(91, 76, 219, 0.1);
    transform: scale(1.05);
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.feature-card p {
    color: var(--color-text-secondary);
    font-size: 0.938rem;
    line-height: 1.6;
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.how-it-works {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-elevated);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translateX(-50%);
    background: var(--gradient-glow);
    pointer-events: none;
}

.steps-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.step {
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
    position: relative;
}

.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
    width: 80px;
    opacity: 0.4;
}

.step-content {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    flex: 1;
    transition: all var(--transition-slow);
}

.step-content:hover {
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-md);
}

.step-icon-wrap {
    color: var(--color-primary-light);
    margin-bottom: var(--space-md);
}

.step-content h3 {
    margin-bottom: var(--space-sm);
}

.step-content p {
    color: var(--color-text-secondary);
    font-size: 0.938rem;
}

.step-connector {
    display: flex;
    justify-content: flex-start;
    padding-left: 28px;
    height: 50px;
    opacity: 0.4;
}

/* ================================================
   VERIFACTU LAW SECTION
   ================================================ */
.verifactu-section {
    padding: var(--space-5xl) 0;
}

.verifactu-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-2xl);
}

.verifactu-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.verifactu-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-slow);
}

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

.verifactu-card h3 {
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
}

.verifactu-card p {
    color: var(--color-text-secondary);
    font-size: 0.938rem;
    line-height: 1.7;
}

.deadline-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.deadline-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(108, 92, 231, 0.06);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-primary);
}

.deadline-date {
    font-weight: 700;
    color: var(--color-primary-light);
    white-space: nowrap;
    font-size: 0.938rem;
}

.deadline-text {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.requirements-list li {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    padding-left: var(--space-md);
    position: relative;
}

.requirements-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

.requirements-list li strong {
    color: var(--color-text);
}

.verifactu-penalties {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.penalty-card {
    background: linear-gradient(145deg, rgba(255, 107, 107, 0.08) 0%, rgba(253, 203, 110, 0.04) 100%);
    border: 1px solid rgba(255, 107, 107, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
}

.penalty-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.penalty-card h3 {
    color: var(--color-warning);
    margin-bottom: var(--space-xl);
}

.penalty-amounts {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.penalty-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.penalty-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-danger);
}

.penalty-desc {
    color: var(--color-text-secondary);
    font-size: 0.813rem;
}

.penalty-note {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

.penalty-note strong {
    color: var(--color-accent);
}

.exception-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.exception-card h3 {
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
}

.exception-card li {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    padding: var(--space-sm) 0;
    padding-left: var(--space-md);
    position: relative;
}

.exception-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary-light);
}

/* ================================================
   PRICING SECTION
   ================================================ */
.pricing {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-elevated);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    background: var(--gradient-glow);
    pointer-events: none;
}

.pricing-card-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-4xl);
}

.pricing-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    max-width: 480px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-slow);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(108, 92, 231, 0.5);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.375rem 1rem;
    background: var(--gradient-accent);
    color: var(--color-bg);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--color-border);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    margin-top: 8px;
}

.pricing-value {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-period {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.pricing-note {
    color: var(--color-text-muted);
    font-size: 0.813rem;
    margin-top: var(--space-sm);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.938rem;
    color: var(--color-text-secondary);
}

.pricing-trial-note {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.813rem;
    margin-top: var(--space-md);
}

/* Project Sale */
.project-sale {
    position: relative;
    z-index: 1;
    margin-top: var(--space-3xl);
}

.project-sale-content {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    background: linear-gradient(145deg, rgba(108, 92, 231, 0.08) 0%, rgba(0, 210, 160, 0.05) 100%);
    border: 1.5px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-3xl);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.project-sale-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
    background-size: 200% 100%;
    animation: shimmerBar 3s linear infinite;
}

@keyframes shimmerBar {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.project-sale-content:hover {
    border-color: rgba(108, 92, 231, 0.35);
    box-shadow: 0 8px 32px rgba(91, 76, 219, 0.1), 0 0 0 1px rgba(108, 92, 231, 0.05);
    transform: translateY(-2px);
}

.project-sale-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 92, 231, 0.08);
    border-radius: var(--radius-lg);
}

.project-sale-text {
    flex: 1;
}

.project-sale-text h3 {
    margin-bottom: var(--space-sm);
    color: var(--color-primary-light);
    font-size: 1.2rem;
}

.project-sale-text p {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.65;
}

/* Project Sale CTA Button */
#project-sale-cta {
    flex-shrink: 0;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.938rem;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(91, 76, 219, 0.35);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

#project-sale-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

#project-sale-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(91, 76, 219, 0.5);
}

#project-sale-cta:hover::before {
    left: 100%;
}

#project-sale-cta:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(91, 76, 219, 0.4);
}

/* ================================================
   REVIEWS SECTION
   ================================================ */
.reviews {
    padding: var(--space-5xl) 0;
}

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

.review-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: var(--color-warning);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.review-text {
    color: var(--color-text-secondary);
    font-size: 0.938rem;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin-bottom: var(--space-xl);
}

.review-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.review-info strong {
    display: block;
    font-size: 0.875rem;
}

.review-info span {
    font-size: 0.813rem;
    color: var(--color-text-muted);
}

/* ================================================
   BLOG SECTION
   ================================================ */
.blog {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-elevated);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-xl);
}

.blog-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-slow);
}

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

.blog-card-image {
    height: 180px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
}

.blog-category {
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-content {
    padding: var(--space-xl);
}

.blog-date {
    font-size: 0.813rem;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: var(--space-sm);
}

.blog-card-content h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    line-height: 1.4;
    transition: color var(--transition-fast);
}

.blog-card:hover h3 {
    color: var(--color-primary-light);
}

.blog-card-content p {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    color: var(--color-primary-light);
    font-size: 0.875rem;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.blog-read-more:hover {
    color: var(--color-accent);
}

/* ================================================
   DOWNLOAD SECTION
   ================================================ */
.download-section {
    padding: var(--space-5xl) 0;
}

.download-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    background: linear-gradient(145deg, rgba(108, 92, 231, 0.08) 0%, rgba(0, 210, 160, 0.04) 100%);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-4xl);
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.download-content h2 {
    margin-bottom: var(--space-lg);
}

.download-content p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
    font-size: 1.0625rem;
}

.download-buttons {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.download-meta {
    display: flex;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: 0.813rem;
}

/* Terminal Window */
.download-window {
    background: #0d1117;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
}

.window-titlebar {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: #161b22;
    border-bottom: 1px solid var(--color-border);
}

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

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

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

.window-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.window-body {
    padding: var(--space-xl);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 2;
}

.window-line {
    color: var(--color-text-secondary);
    opacity: 0;
    animation: typeIn 0.5s ease-out forwards;
}

.window-line:nth-child(1) { animation-delay: 0.5s; }
.window-line:nth-child(2) { animation-delay: 1.2s; }
.window-line:nth-child(3) { animation-delay: 1.8s; }
.window-line:nth-child(4) { animation-delay: 2.4s; }
.window-line:nth-child(5) { animation-delay: 3.0s; }

.window-line.success { color: var(--color-accent); }
.window-line.highlight { color: var(--color-primary-light); font-weight: 600; }

.window-prompt {
    margin-right: var(--space-sm);
    color: var(--color-text-muted);
}

.window-line.success .window-prompt { color: var(--color-accent); }
.window-line.highlight .window-prompt { color: var(--color-primary-light); }

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

/* ================================================
   FOOTER
   ================================================ */
.footer {
    padding: var(--space-4xl) 0 var(--space-xl);
    background: #1e293b;
    border-top: 1px solid var(--color-border);
    color: #cbd5e1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    height: 36px;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: #94a3b8;
    transition: all var(--transition-fast);
}

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

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: #f1f5f9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: #a29bfe;
}

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

.footer-bottom p {
    font-size: 0.813rem;
    color: #64748b;
}

.footer-compliance {
    font-size: 0.75rem !important;
}

/* ================================================
   TELEGRAM FLOAT
   ================================================ */
.telegram-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #0088cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
    animation: pulse-telegram 2s ease-in-out infinite;
}

.telegram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 136, 204, 0.6);
}

.telegram-tooltip {
    position: absolute;
    right: 70px;
    background: var(--color-bg-card);
    color: var(--color-text);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.813rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.telegram-float:hover .telegram-tooltip {
    opacity: 1;
    transform: translateX(-4px);
}

@keyframes pulse-telegram {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(0, 136, 204, 0.2), 0 0 0 12px rgba(0, 136, 204, 0.08); }
}

/* ================================================
   COOKIE BANNER
   ================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--color-border);
    padding: var(--space-lg) 0;
    z-index: 998;
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.cookie-content a {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ================================================
   VERIFACTU OFFICIAL LOGO IN HERO
   ================================================ */
.hero-verifactu-official {
    margin-bottom: var(--space-lg);
    animation: slideUp 0.6s ease-out;
}

.verifactu-official-logo {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* ================================================
   PRICING TOGGLE
   ================================================ */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.pricing-toggle-label {
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.pricing-toggle-btn {
    width: 52px;
    height: 28px;
    border-radius: 14px;
    background: var(--color-surface);
    border: 2px solid var(--color-border-hover);
    cursor: pointer;
    position: relative;
    transition: all var(--transition-base);
}

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

.pricing-toggle-knob {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-primary);
    top: 2px;
    left: 2px;
    transition: all var(--transition-base);
    box-shadow: 0 2px 6px rgba(108, 92, 231, 0.4);
}

.pricing-toggle-btn.active .pricing-toggle-knob {
    left: 26px;
}

.pricing-save-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(0, 210, 160, 0.15);
    color: var(--color-accent);
    border-radius: var(--radius-full);
    font-size: 0.688rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ================================================
   TWO-PLAN PRICING
   ================================================ */
.pricing-two-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card-featured {
    border-color: rgba(91, 76, 219, 0.3) !important;
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.pricing-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}

.pricing-comparison {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: var(--space-sm);
}

.pricing-was {
    font-size: 0.813rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.pricing-save-amount {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent);
}

/* Stripe Checkout Button */
.stripe-checkout-btn {
    position: relative;
    z-index: 1;
}

.pricing-stripe-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    color: var(--color-text-muted);
    font-size: 0.75rem;
}

.pricing-stripe-badge svg {
    color: var(--color-accent);
}

/* ================================================
   VERIFACTU TRUST BADGE
   ================================================ */
.verifactu-trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-3xl);
    padding: var(--space-lg) var(--space-2xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.verifactu-badge-logo {
    height: 40px;
    width: auto;
}

.verifactu-trust-badge span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --navbar-height: 64px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-3xl);
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-float-card-1 {
        right: 5%;
    }

    .hero-float-card-2 {
        left: 5%;
    }

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

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

    .download-card {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .pricing-two-plans {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

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

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

    .blog-card:nth-child(3) {
        grid-column: span 2;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

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

    #project-sale-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-bg-elevated);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-xl);
        transition: right var(--transition-slow);
        border-left: 1px solid var(--color-border);
        z-index: 1000;
    }

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

    .nav-links a {
        font-size: 1.125rem;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

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

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

    .blog-card:nth-child(3) {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .step {
        flex-direction: column;
    }

    .step-number {
        width: auto;
    }

    .step-connector {
        padding-left: 0;
        justify-content: center;
    }

    .download-card {
        padding: var(--space-2xl);
    }

    .pricing-card {
        padding: var(--space-2xl);
    }

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

    .telegram-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }

    .telegram-tooltip {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .pricing-value {
        font-size: 4rem;
    }

    .urgency-content {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* Footer Contact Email */
.footer-contact {
    margin-top: var(--space-md);
}

.footer-email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-email-link:hover {
    color: var(--color-accent);
}

.footer-email-link svg {
    flex-shrink: 0;
}

/* Inline Logos */
.inline-logo { display: inline-block; box-shadow: none !important; border-radius: 0 !important; background: transparent !important; }
.inline-logo-aeat { height: 1em; margin-right: 0.25em; transform: translateY(0.12em); }
.inline-logo-verifactu { height: 0.9em; margin: 0 0.15em; transform: translateY(0.08em); }
