:root {
    --bg-black: #1A191A; 
    --text-primary: #E8E8ED; /* 极其重要的护眼调整：从纯白改为柔和的灰白色，避免在深色背景下产生刺眼和散光 */
    --text-secondary: #B5B5B5; 
    --accent-color: #E5E7EB; 
    --font-sans: 'Inter', 'Noto Sans SC', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* 首页大屏容器 */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 40px 80px;
}

/* 高级影棚质感背景 (匹配照片色调) */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 接近原图照片的高级暖灰底色 */
    background: linear-gradient(135deg, #322F30 0%, #151415 100%);
    z-index: 1;
}

/* 模拟伦勃朗特写光 (Rembrandt Lighting) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 一束微暖的聚光灯，从偏左上方打下来，照亮左侧人物面部，余光扫过右侧文字 */
    background: radial-gradient(circle at 35% 35%, rgba(220, 190, 150, 0.12) 0%, rgba(20, 18, 19, 0.6) 60%, rgba(10, 9, 10, 0.9) 100%);
    z-index: 2;
}

/* 人物写实主义：高级影棚质感融入 */
.hero-portrait {
    position: absolute;
    top: 50%;
    left: -150px; /* 锚定在 1200px 容器的左侧，横屏再宽距离也不会变 */
    transform: translateY(-50%);
    width: 900px; 
    height: 900px;
    pointer-events: none; /* 防止挡住背后的潜在点击区域 */
    background-image: url('yangke.jpg');
    background-size: cover;
    background-position: center 20%;
    z-index: 3; 
    
    /* 精确控制羽化：中心点上移保住头部，明确指定椭圆半径(45%宽, 55%高)，确保在碰触四周边缘前完全透明 */
    -webkit-mask-image: radial-gradient(45% 55% at 50% 40%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(45% 55% at 50% 40%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    
    /* 恢复真实气色：去除死气沉沉的灰度，微微提升对比度和暖调 */
    filter: contrast(1.05) saturate(1.1) brightness(1.0);
    
    /* 移除之前的冷色调混合，完全保留原图高级感 */
    mix-blend-mode: normal;
    
    /* 进场动画 */
    animation: fadeInPortrait 1.5s ease-out forwards;
    opacity: 0;
}

/* 导航栏 */
.top-nav {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    cursor: pointer;
    line-height: 1; /* 极度收紧行高，让两行字像一块实心的砖，极具视觉冲击力 */
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-name {
    font-size: 2.2rem; /* 极限放大中文字号，彻底打破“小气”感 */
    font-weight: 900; /* 使用最粗的字重，力量感拉满 */
    letter-spacing: 0.05em; 
    color: var(--text-primary);
    margin-bottom: 2px;
}

.logo-domain {
    font-size: 1.1rem; /* 字号稍微回调一点，保证字母拉开空间后依旧精致 */
    color: rgba(255, 255, 255, 0.85); 
    font-weight: 800; 
    text-transform: uppercase; 
    /* 彻底移除 letter-spacing，交由 HTML 里的 flex space-between 算法进行像素级的绝对左右对齐 */
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* 核心内容区 */
.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* 让整个文字块靠右对齐 */
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.text-content {
    max-width: 680px; 
    animation: fadeInUp 1s ease-out forwards;
}

#hero-text-dynamic {
    transition: opacity 0.3s ease; /* 动态切换时的淡入淡出动画 */
}

.subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.main-title {
    font-size: 4rem; /* 稍微缩小一点，以免在小屏笔记本上溢出 */
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    white-space: nowrap; /* 核心：强制不换行，只在 <br> 处换行 */
}

.highlight {
    color: #fff;
    /* 微微的发光效果增加层次感，但不破坏极简 */
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1); 
}

.description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* 极简社媒入口 (纯图标) */
.social-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

/* 悬浮时图标轻微上浮，保持克制高级感 */
.social-link:hover {
    transform: translateY(-3px);
}

.social-icon {
    width: 22px;
    height: 22px;
    background-color: var(--text-secondary);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    transition: background-color 0.3s ease;
}

.social-link:hover .social-icon {
    background-color: var(--text-primary);
}

/* 使用 Simple Icons 提供的高清 SVG 作为 Mask */
.icon-zhihu { mask-image: url('https://cdn.simpleicons.org/zhihu'); -webkit-mask-image: url('https://cdn.simpleicons.org/zhihu'); }
.icon-xiaohongshu { mask-image: url('https://cdn.simpleicons.org/xiaohongshu'); -webkit-mask-image: url('https://cdn.simpleicons.org/xiaohongshu'); }
.icon-tiktok { mask-image: url('https://cdn.simpleicons.org/tiktok'); -webkit-mask-image: url('https://cdn.simpleicons.org/tiktok'); }
.icon-wechat { mask-image: url('https://cdn.simpleicons.org/wechat'); -webkit-mask-image: url('https://cdn.simpleicons.org/wechat'); }
.icon-github { mask-image: url('https://cdn.simpleicons.org/github'); -webkit-mask-image: url('https://cdn.simpleicons.org/github'); }
.icon-x { mask-image: url('https://cdn.simpleicons.org/x'); -webkit-mask-image: url('https://cdn.simpleicons.org/x'); }
.icon-facebook { mask-image: url('https://cdn.simpleicons.org/facebook'); -webkit-mask-image: url('https://cdn.simpleicons.org/facebook'); }
.icon-youtube { mask-image: url('https://cdn.simpleicons.org/youtube'); -webkit-mask-image: url('https://cdn.simpleicons.org/youtube'); }
.icon-bilibili { mask-image: url('https://cdn.simpleicons.org/bilibili'); -webkit-mask-image: url('https://cdn.simpleicons.org/bilibili'); }

/* 底部滚动提示 */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 80px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: color 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--text-primary);
}

.scroll-indicator svg {
    animation: bounce 2s infinite;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

@keyframes fadeInPortrait {
    from {
        opacity: 0;
        filter: blur(8px) contrast(1.05) saturate(1.1);
        transform: translateY(-48%);
    }
    to {
        opacity: 1; /* 完全展现其气场，不再做半透明妥协 */
        filter: blur(0px) contrast(1.05) saturate(1.1);
        transform: translateY(-50%);
    }
}

/* 响应式 */
@media (max-width: 768px) {
    .hero-section {
        padding: 0; 
        justify-content: flex-start;
        height: auto; /* 移除强行撑满 100vh 的限制 */
        min-height: 0; /* 彻底移除最小高度限制，让下方的第二屏直接顶上来填补空白！ */
    }
    
    .top-nav {
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 50; /* 悬浮在最上方，防止被人物挤到奇怪的位置 */
    }
    
    .hero-content {
        flex: none; /* 罪魁祸首在这里！取消 flex: 1，不要让它强行撑开剩下的空间 */
        flex-direction: column; /* 图文垂直排列 */
        justify-content: flex-start;
        align-items: center;
        padding: 0;
        margin-top: 0;
        width: 100%;
    }
    
    .hero-portrait {
        position: relative; /* 回归文档流 */
        top: 0;
        left: 0;
        transform: none; 
        width: 100%;
        height: 55vh; /* 适当加大人物占比，让屏幕空间被合理填充 */
        background-position: center 20%; 
        margin-bottom: -6vh; /* 增加一点负边距，让下面的文字更紧凑 */
        
        -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
        mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
        
        animation: fadeInPortraitMobile 1.5s ease-out forwards;
    }

    .text-content {
        position: relative;
        z-index: 10;
        text-align: center;
        background: transparent; 
        padding: 0 20px 20px 20px;
    }
    
    .social-links {
        justify-content: center; /* 社媒图标居中 */
    }
    
    .main-title {
        font-size: 1.9rem; /* 缩小字号，确保“只做真实的业务增长”恰好能在一行放下，不再发生断字跳行 */
        line-height: 1.35;
        white-space: nowrap; /* 强制不换行，保证排版整洁 */
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .scroll-indicator {
        position: relative; /* 放弃绝对定位，跟随在内容后面 */
        bottom: auto;
        right: auto;
        transform: none; 
        margin: 20px auto 40px auto; /* 自动居中，与上方图标保持距离，底部留白 */
        width: 100%;
        justify-content: center;
    }
    
    .nav-links {
        display: flex; 
        gap: 15px;
        font-size: 0.9rem;
        margin-top: 5px; /* 稍微往下移一点，和变大的 Logo 对齐 */
    }
    
    .logo-name {
        font-size: 1.6rem; /* 手机端也要比之前更霸气 */
    }
    
    .logo-domain {
        font-size: 1rem;
    }
    
    .top-nav {
        align-items: flex-start;
        /* 在移动端可能需要稍微调整宽度防止溢出 */
        width: calc(100vw - 40px);
    }
}

/* 移动端专属进场动画：因为移除了绝对定位，无需再处理 transform 冲突 */
@keyframes fadeInPortraitMobile {
    from {
        opacity: 0;
        filter: blur(8px) contrast(1.05) saturate(1.1);
    }
    to {
        opacity: 1;
        filter: blur(0px) contrast(1.05) saturate(1.1);
    }
}

/* 第二屏：核心内容区 (骨架) */
.core-section {
    width: 100vw;
    min-height: 100vh;
    background-color: var(--bg-black);
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 20;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .core-section {
        padding: 60px 20px;
    }
    .section-title {
        font-size: 2rem;
    }
}

/* ================= 核心内容区（第二屏）样式 ================= */

/* 第二屏整体背景图设定 */
.section-with-bg {
    position: relative;
}

.section-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 900px; /* 控制纵向高度，避免拉伸太长 */
    /* 营业厅实景背景图 */
    background-image: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center 30%; 
    
    /* 初始暗淡状态，等待 JS 触发点亮 */
    opacity: 0.02; 
    transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1); 
    
    /* 上下双向羽化：解决顶部硬朗边缘（0-15% 渐显），同时底部无缝融入纯黑（50-100% 渐隐） */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 50%, transparent 100%);
    z-index: 0;
}

/* 划入视野后触发的“点亮”状态 */
.section-with-bg.is-visible::before {
    opacity: 0.28; /* 显著提高透明度，让整个背景亮起来 */
    filter: brightness(1.1); /* 微微提亮画面本身，让视觉感受更加开阔舒适 */
}

/* 确保内容在背景之上 */
.section-with-bg > * {
    position: relative;
    z-index: 1;
}

/* 数据看板包装器 */
.dashboard-wrapper {
    position: relative;
    width: 100vw;
    padding: 20px 20px 80px 20px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

/* 数据看板 */
.data-dashboard {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 80px;
    width: 100%;
    max-width: 1000px;
}

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

.data-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.data-unit {
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 5px;
    color: var(--text-secondary);
}

.data-label {
    font-size: 1rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* 实验日志时间线 */
.experiment-timeline {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-date {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    width: fit-content;
}

.timeline-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.04);
}

.timeline-card.reverse {
    /* 桌面端可以交替左右布局 */
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.timeline-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.timeline-image {
    width: 400px;
    height: 260px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.timeline-image.placeholder {
    background: #111;
    border: 1px dashed rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

/* 第二屏移动端适配 */
@media (max-width: 768px) {
    .section-with-bg::before {
        height: 600px; /* 移动端降低背景图高度，避免拉伸失真 */
    }
    
    .dashboard-wrapper {
        padding: 10px 20px;
        margin-bottom: 40px;
    }
    
    .data-dashboard {
        flex-direction: row; /* 手机端强制横向排列 */
        justify-content: space-around;
        gap: 10px;
        width: 100%;
    }
    
    .data-number {
        font-size: 2.2rem; /* 缩小数字以适应三个并排 */
    }
    
    .data-unit {
        font-size: 1rem;
    }
    
    .data-label {
        font-size: 0.75rem; /* 缩小标签 */
    }
    
    .timeline-card {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .timeline-image {
        width: 100%;
        height: 200px;
    }
}

/* ================= 第三屏：深度洞察与SOP ================= */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 60px;
}

.insight-card {
    position: relative;
    overflow: hidden;
    background: #252425; /* 稍微提亮卡片底色，减小黑白明暗差 */
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 25px 20px; 
    transition: transform 0.3s ease;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 250px; 
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center;
    opacity: 0.25; /* 适度降低亮度，让文字永远是视觉第一顺位 */
    filter: grayscale(40%); /* 增加轻微灰度，降低色彩饱和度带来的视觉疲劳 */
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
    z-index: 0;
    transition: opacity 0.5s ease, transform 0.8s ease; 
}

.insight-card > * {
    position: relative;
    z-index: 1;
}

.insight-card:hover {
    transform: translateY(-5px);
}

.insight-card:hover::before {
    opacity: 0.4; /* 悬浮时不过度曝光 */
    transform: scale(1.03); 
}

.insight-tag {
    display: inline-block;
    align-self: flex-start; /* 保证标签大小只包裹文字内容 */
    background: var(--text-primary);
    color: var(--bg-black);
    padding: 3px 10px; /* 缩小标签体积 */
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 12px; /* 和上方的简介文字拉开间距 */
}

.insight-title {
    font-size: 1.15rem; 
    font-weight: 700;
    margin-bottom: 8px; 
    line-height: 1.35;
    /* 移除文字阴影：因为阴影会让文字边缘模糊，看久了眼眶发酸 */
}

.insight-desc {
    color: var(--text-secondary);
    font-size: 0.85rem; /* 更紧凑的描述文字 */
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insight-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.insight-link span {
    transition: transform 0.2s ease;
}

.insight-card:hover .insight-link span {
    transform: translateX(5px);
}

/* ================= 第四屏：商业交付 ================= */
.services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 80px;
}

.service-card {
    position: relative;
    overflow: hidden;
    flex: 1;
    background: #252425; /* 同步提亮底色 */
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    filter: grayscale(40%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
    z-index: 0;
    transition: opacity 0.5s ease, transform 0.8s ease;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card:hover::before {
    opacity: 0.4;
    transform: scale(1.03);
}

.service-card.featured {
    border: 1px solid rgba(255,255,255,0.2);
    transform: scale(1.05);
    background: #151515;
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.service-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* 终极转化 CTA */
.cta-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    background: #000;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin: 40px 0;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    filter: grayscale(40%);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 40%, transparent 100%);
    mask-image: radial-gradient(circle at center, black 0%, black 40%, transparent 100%);
    z-index: 0;
}

.cta-banner > * {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}

/* 第三四屏移动端适配 */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
    }
    
    .service-card.featured {
        transform: scale(1);
    }
    
    .cta-banner {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}
