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

:root {
    --primary-blue: #00b4d8;
    --primary-dark: #0077b6;
    --vedere-red: #c8102e;
    --vedere-dark: #9a0d24;
    --bg-dark: #052F58;
    --bg-card: #073d72;
    --bg-card-hover: #0a4a88;
    --text-primary: #BFBFBF;
    --text-secondary: #a0a0b0;
    --text-muted: #6a8aaa;
    --gradient-blue: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    --gradient-vedere: linear-gradient(135deg, #c8102e 0%, #9a0d24 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.section {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-block;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.vedere-tag {
    background: rgba(200, 16, 46, 0.1);
    color: var(--vedere-red);
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 47, 88, 0.97);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 20px;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-btn {
    background: var(--gradient-blue);
    color: var(--text-primary);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(0, 180, 216, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 30% 70%, rgba(0, 119, 182, 0.1) 0%, transparent 50%);
}

.hero-content {
    max-width: 600px;
    z-index: 1;
    margin-left: 5%;
}

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

.hero h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--text-primary);
}

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

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

.btn-secondary:hover {
    border-color: var(--primary-blue);
    background: rgba(0, 180, 216, 0.1);
}

.btn-vedere {
    background: var(--gradient-vedere);
    color: var(--text-primary);
}

.btn-vedere:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(200, 16, 46, 0.4);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.hero-visual {
    z-index: 1;
    margin-right: 5%;
}

.hero-logo {
    max-width: 400px;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

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

.about-section {
    background: var(--bg-card);
}

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

.about-card {
    background: var(--bg-dark);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

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

.about-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.about-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.about-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 16px;
}

.market-section {
    position: relative;
}

.threats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.threat-card {
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.threat-ai {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.02) 100%);
    border-color: rgba(255, 107, 53, 0.2);
}

.threat-quantum {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(138, 43, 226, 0.02) 100%);
    border-color: rgba(138, 43, 226, 0.2);
}

.threat-timeline {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.threat-ai .threat-timeline {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
}

.threat-quantum .threat-timeline {
    background: rgba(138, 43, 226, 0.2);
    color: #8a2be2;
}

.threat-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.threat-card > p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 30px;
}

.threat-stat {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.threat-ai .stat-number {
    color: #ff6b35;
}

.threat-quantum .stat-number {
    color: #8a2be2;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.market-stat-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.market-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.market-stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.solution-section {
    background: var(--bg-card);
}

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

.solution-item {
    background: var(--bg-dark);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.solution-item:hover {
    border-color: rgba(0, 180, 216, 0.3);
}

.solution-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    margin-bottom: 16px;
}

.solution-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.solution-item p {
    color: var(--text-secondary);
    font-size: 16px;
}

.vedere-section {
    position: relative;
    overflow: hidden;
}

.vedere-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(200, 16, 46, 0.15) 0%, transparent 50%);
}

.vedere-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.vedere-info {
    flex: 1;
    max-width: 600px;
}

.vedere-info h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.vedere-highlight {
    color: var(--vedere-red);
}

.vedere-tagline {
    font-size: 20px;
    color: var(--vedere-red);
    font-weight: 600;
    margin-bottom: 24px;
}

.vedere-desc {
    color: var(--text-secondary);
    font-size: 17px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.vedere-features {
    list-style: none;
    margin-bottom: 40px;
}

.vedere-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
}

.vedere-features svg {
    width: 22px;
    height: 22px;
    color: var(--vedere-red);
    flex-shrink: 0;
}

.vedere-visual {
    flex-shrink: 0;
}

.vedere-logo-img {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(200, 16, 46, 0.3));
}

.cta-section {
    background: var(--bg-card);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.cta-contact svg {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.cta-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.cta-contact a:hover {
    color: var(--primary-blue);
}

.footer {
    background: var(--bg-card);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

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

.footer-brand span {
    font-size: 20px;
    font-weight: 700;
}

.footer-brand p {
    width: 100%;
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 8px;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-email {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-email svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

.vedere-page .navbar-dark {
    background: rgba(5, 47, 88, 0.95);
}

.vedere-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
    position: relative;
    overflow: hidden;
}

.vedere-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(200, 16, 46, 0.2) 0%, transparent 60%);
}

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

.vedere-hero-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 32px;
}

.vedere-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.vedere-hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.vedere-overview {
    background: var(--bg-card);
}

.overview-statement {
    margin-bottom: 60px;
}

.overview-statement blockquote {
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    font-style: italic;
    color: var(--text-primary);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.overview-statement blockquote::before,
.overview-statement blockquote::after {
    content: '"';
    font-size: 60px;
    color: var(--vedere-red);
    position: absolute;
    opacity: 0.3;
}

.overview-statement blockquote::before {
    left: 0;
    top: -10px;
}

.overview-statement blockquote::after {
    right: 0;
    bottom: -40px;
}

.overview-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.overview-feature {
    background: var(--bg-dark);
    padding: 36px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.overview-feature:hover {
    border-color: rgba(200, 16, 46, 0.3);
    transform: translateY(-4px);
}

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

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

.feature-icon-vault { background: linear-gradient(135deg, #c8102e 0%, #9a0d24 100%); }
.feature-icon-comm { background: linear-gradient(135deg, #0077b6 0%, #005f92 100%); }
.feature-icon-auth { background: linear-gradient(135deg, #8a2be2 0%, #6a1bb2 100%); }
.feature-icon-monitor { background: linear-gradient(135deg, #ff6b35 0%, #cc5529 100%); }

.overview-feature h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.overview-feature p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.vedere-need {
    position: relative;
}

.need-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.need-problem,
.need-solution {
    padding: 40px;
    border-radius: 16px;
}

.need-problem {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.need-solution {
    background: rgba(0, 180, 216, 0.05);
    border: 1px solid rgba(0, 180, 216, 0.2);
}

.need-problem h3,
.need-solution h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.need-problem h3 {
    color: #ff6b35;
}

.need-solution h3 {
    color: var(--primary-blue);
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problem-item {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.problem-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.problem-type {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 6px;
}

.problem-examples {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 10px;
}

.problem-gap {
    color: var(--text-secondary);
    font-size: 15px;
}

.advantage-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
}

.advantage-item svg {
    width: 22px;
    height: 22px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.vedere-tech {
    background: var(--bg-card);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tech-card {
    background: var(--bg-dark);
    padding: 32px 24px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.tech-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.tech-classical {
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.tech-pqc {
    background: rgba(200, 16, 46, 0.1);
    color: var(--vedere-red);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.tech-plus {
    color: var(--text-muted);
    font-weight: 600;
}

.tech-single {
    background: rgba(138, 43, 226, 0.1);
    color: #8a2be2;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.tech-desc {
    color: var(--text-secondary);
    font-size: 13px;
}

.vedere-screenshots {
    position: relative;
    display: none;
}

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

.screenshot-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.screenshot-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.05) 0%, rgba(0, 119, 182, 0.05) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.screenshot-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
}

.screenshot-placeholder span {
    color: var(--text-muted);
    font-size: 14px;
}

.screenshot-caption {
    padding: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 15px;
}

.vedere-cta {
    background: var(--bg-card);
}

.vedere-cta-content {
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.1) 0%, rgba(200, 16, 46, 0.02) 100%);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(200, 16, 46, 0.2);
}

.footer-dark {
    background: var(--bg-dark);
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 48px;
    }
    
    .hero-logo {
        max-width: 300px;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid .about-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        padding: 24px;
        flex-direction: column;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .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 {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }
    
    .hero-content {
        margin-left: 0;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        margin-right: 0;
        margin-top: 40px;
    }
    
    .hero-logo {
        max-width: 250px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .about-grid,
    .threats-container,
    .solution-grid,
    .market-stats,
    .overview-features,
    .need-comparison,
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid .about-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .vedere-content {
        flex-direction: column;
        text-align: center;
    }
    
    .vedere-features li {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .vedere-hero h1 {
        font-size: 32px;
    }
    
    .overview-statement blockquote {
        font-size: 20px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .vedere-cta-content {
        padding: 40px 24px;
    }
}
