/* AI 模型後訓練服務 Landing Page */
:root {
    --amt-primary: #7a4cff;
    --amt-secondary: #b06aff;
    --amt-accent: #00f5d4;
    --amt-neon: #c724ff;
    --amt-dark: #080b14;
    --amt-dark-2: #10152a;
    --amt-dark-3: #181f38;
    --amt-glow: rgba(122, 76, 255, 0.45);
    --amt-glow-accent: rgba(0, 245, 212, 0.3);
    --amt-text: #e8e8f0;
    --amt-text-muted: #8a8ab0;
    --amt-border: rgba(122, 76, 255, 0.2);
    --amt-transition: 0.3s ease;
}

/* =========================================
   Banner
   ========================================= */
.amt-banner-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 8% 4rem;
    background: linear-gradient(135deg, var(--amt-dark) 0%, var(--amt-dark-2) 60%, #120a2e 100%);
    overflow: hidden;
    gap: 2rem;
}

.amt-banner-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(122, 76, 255, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(0, 245, 212, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.amt-banner-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.amt-banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    flex: 1;
}

.amt-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(122, 76, 255, 0.15);
    border: 1px solid rgba(122, 76, 255, 0.4);
    color: var(--amt-secondary);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.amt-banner-badge i {
    color: var(--amt-accent);
}

.amt-banner-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: transparent;
    background: linear-gradient(120deg, var(--amt-accent) 0%, #ffffff 40%, var(--amt-primary) 80%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    animation: amtShimmer 5s ease-in-out infinite alternate;
    line-height: 1.15;
    margin-bottom: 1rem;
}

@keyframes amtShimmer {
    from { background-position: 0% 50%; }
    to   { background-position: 100% 50%; }
}

.amt-banner-subtitle {
    font-size: 1.15rem;
    color: #aaaacc;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(16px);
    animation: amtFadeUp 0.7s 0.4s ease-out forwards;
}

@keyframes amtFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.amt-banner-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: amtFadeUp 0.7s 0.7s ease-out forwards;
}

.amt-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--amt-primary), var(--amt-neon));
    color: #fff;
    padding: 0.85rem 1.8rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform var(--amt-transition), box-shadow var(--amt-transition);
    box-shadow: 0 4px 20px var(--amt-glow);
}

.amt-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--amt-glow);
    color: #fff;
    text-decoration: none;
}

.amt-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--amt-secondary);
    border: 1.5px solid rgba(122, 76, 255, 0.5);
    padding: 0.85rem 1.8rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--amt-transition);
    backdrop-filter: blur(8px);
}

.amt-btn-outline:hover {
    background: rgba(122, 76, 255, 0.12);
    border-color: var(--amt-primary);
    color: #fff;
    text-decoration: none;
}

/* Neural Net visual */
.amt-banner-visual {
    position: relative;
    z-index: 2;
    flex: 0 0 380px;
    height: 380px;
    display: none;
}

@media (min-width: 1024px) {
    .amt-banner-visual { display: block; }
}

.amt-neural-net {
    width: 100%;
    height: 100%;
}

/* =========================================
   共用裝飾
   ========================================= */
.amt-tech-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.amt-deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(122, 76, 255, 0.15);
    animation: amtPulseCircle 6s ease-in-out infinite;
}

.amt-deco-circle.c1 {
    width: 350px; height: 350px;
    top: -80px; right: -80px;
    animation-delay: 0s;
}

.amt-deco-circle.c2 {
    width: 220px; height: 220px;
    bottom: 40px; left: -60px;
    animation-delay: 2s;
    border-color: rgba(0, 245, 212, 0.1);
}

@keyframes amtPulseCircle {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 1; }
}

.amt-deco-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(122, 76, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(122, 76, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.amt-deco-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(122, 76, 255, 0.25) 1px, transparent 1px);
    background-size: 24px 24px;
}

.amt-deco-lines {
    position: absolute;
    top: 0; right: 0;
    width: 40%; height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(122, 76, 255, 0.03) 20px,
        rgba(122, 76, 255, 0.03) 21px
    );
}

.amt-deco-pulse {
    position: absolute;
    width: 200px; height: 200px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122, 76, 255, 0.08) 0%, transparent 70%);
    animation: amtPulse 4s ease-in-out infinite;
}

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

.amt-deco-circuit {
    position: absolute;
    bottom: 0; right: 0;
    width: 280px; height: 280px;
    background:
        linear-gradient(var(--amt-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--amt-border) 1px, transparent 1px);
    background-size: 30px 30px;
    border-radius: 4px;
    opacity: 0.4;
}

/* =========================================
   共用 Section Header
   ========================================= */
.amt-section-header {
    margin-bottom: 2.5rem;
}

.amt-section-header.centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.amt-header-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(122, 76, 255, 0.2), rgba(0, 245, 212, 0.1));
    border: 1px solid rgba(122, 76, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--amt-accent);
    margin-bottom: 1rem;
}

.amt-section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
}

.amt-section-subtitle {
    color: var(--amt-text-muted);
    font-size: 1rem;
    margin: 0;
}

/* =========================================
   介紹區塊
   ========================================= */
.amt-intro-section {
    position: relative;
    padding: 6rem 0;
    background: var(--amt-dark-2);
}

.amt-intro-inner {
    position: relative;
    z-index: 1;
}

.amt-intro-body {
    max-width: 820px;
}

.amt-intro-description {
    color: var(--amt-text-muted);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.2rem;
}

.amt-intro-subtitle {
    color: var(--amt-text);
    font-size: 1rem;
    line-height: 1.8;
    border-left: 3px solid var(--amt-primary);
    padding-left: 1.2rem;
}

.amt-intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.amt-stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(122, 76, 255, 0.06);
    border: 1px solid var(--amt-border);
    border-radius: 12px;
    transition: all var(--amt-transition);
}

.amt-stat-item:hover {
    background: rgba(122, 76, 255, 0.12);
    border-color: rgba(122, 76, 255, 0.4);
    transform: translateY(-4px);
}

.amt-stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--amt-accent);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.amt-stat-number span {
    color: var(--amt-primary);
    font-size: 1.2rem;
}

.amt-stat-label {
    font-size: 0.8rem;
    color: var(--amt-text-muted);
    letter-spacing: 0.03em;
}

/* =========================================
   定位區塊
   ========================================= */
.amt-mission-section {
    position: relative;
    padding: 5rem 0;
    background: var(--amt-dark);
    overflow: hidden;
}

.amt-mission-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.amt-mission-lead {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--amt-accent);
    margin-bottom: 1.2rem;
}

.amt-mission-detail {
    color: var(--amt-text-muted);
    font-size: 1rem;
    line-height: 1.85;
}

/* =========================================
   四大服務
   ========================================= */
.amt-services-section {
    padding: 6rem 0;
    background: var(--amt-dark-2);
    position: relative;
}

.amt-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-top: 1rem;
}

.amt-service-card {
    position: relative;
    background: rgba(122, 76, 255, 0.05);
    border: 1px solid var(--amt-border);
    border-radius: 16px;
    padding: 2rem;
    overflow: hidden;
    transition: all 0.4s ease;
}

.amt-service-card:hover {
    background: rgba(122, 76, 255, 0.10);
    border-color: rgba(122, 76, 255, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(122, 76, 255, 0.18);
}

.amt-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.amt-card-icon {
    width: 48px; height: 48px;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(122, 76, 255, 0.25), rgba(0, 245, 212, 0.1));
    border: 1px solid rgba(122, 76, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--amt-accent);
    transition: all var(--amt-transition);
}

.amt-service-card:hover .amt-card-icon {
    background: linear-gradient(135deg, rgba(122, 76, 255, 0.4), rgba(0, 245, 212, 0.2));
    box-shadow: 0 0 16px var(--amt-glow-accent);
}

.amt-card-titles h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem;
}

.amt-card-subtitle {
    font-size: 0.75rem;
    color: var(--amt-text-muted);
    letter-spacing: 0.04em;
}

.amt-card-description {
    color: var(--amt-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.amt-card-deliverables h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--amt-secondary);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.amt-card-deliverables ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
}

.amt-card-deliverables li {
    font-size: 0.85rem;
    color: var(--amt-text-muted);
    padding: 0.25rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    line-height: 1.5;
}

.amt-card-deliverables li i {
    color: var(--amt-primary);
    font-size: 0.7rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.amt-card-target {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 245, 212, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 245, 212, 0.12);
}

.amt-card-target i {
    color: var(--amt-accent);
    font-size: 0.85rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.amt-card-target span {
    font-size: 0.82rem;
    color: rgba(0, 245, 212, 0.8);
    line-height: 1.5;
}

.amt-card-deco {
    position: absolute;
    bottom: 0; right: 0;
    width: 100px; height: 100px;
    border-radius: 50% 0 0 0;
    background: radial-gradient(circle at bottom right, rgba(122, 76, 255, 0.08), transparent 70%);
    pointer-events: none;
}

/* =========================================
   流程
   ========================================= */
.amt-process-section {
    position: relative;
    padding: 6rem 0;
    background: var(--amt-dark);
    overflow: hidden;
}

.amt-process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.amt-process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    padding-bottom: 2rem;
}

.amt-process-step:last-child {
    padding-bottom: 0;
}

.amt-step-connector {
    position: absolute;
    left: 23px;
    top: 48px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(to bottom, var(--amt-primary), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.amt-step-connector.visible {
    opacity: 0.4;
}

.amt-step-node {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amt-primary), var(--amt-neon));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--amt-glow);
    z-index: 1;
}

.amt-step-number {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
}

.amt-step-content {
    flex: 1;
    background: rgba(122, 76, 255, 0.05);
    border: 1px solid var(--amt-border);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    transition: all var(--amt-transition);
}

.amt-process-step:hover .amt-step-content {
    background: rgba(122, 76, 255, 0.10);
    border-color: rgba(122, 76, 255, 0.4);
}

.amt-step-icon {
    color: var(--amt-accent);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.amt-step-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.4rem;
}

.amt-step-content p {
    font-size: 0.88rem;
    color: var(--amt-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   應用場景
   ========================================= */
.amt-usecases-section {
    padding: 6rem 0;
    background: var(--amt-dark-2);
    position: relative;
}

.amt-usecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.amt-usecase-card {
    background: rgba(122, 76, 255, 0.04);
    border: 1px solid var(--amt-border);
    border-radius: 14px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.amt-usecase-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--amt-primary), var(--amt-accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.amt-usecase-card:hover {
    background: rgba(122, 76, 255, 0.10);
    border-color: rgba(122, 76, 255, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(122, 76, 255, 0.15);
}

.amt-usecase-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(122, 76, 255, 0.2), rgba(0, 245, 212, 0.1));
    border: 1px solid rgba(122, 76, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--amt-accent);
    margin: 0 auto 1rem;
    transition: all var(--amt-transition);
}

.amt-usecase-card:hover .amt-usecase-icon {
    box-shadow: 0 0 20px var(--amt-glow-accent);
}

.amt-usecase-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
}

.amt-usecase-card p {
    font-size: 0.86rem;
    color: var(--amt-text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.amt-usecase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
}

.amt-tag {
    font-size: 0.72rem;
    color: var(--amt-secondary);
    background: rgba(122, 76, 255, 0.12);
    border: 1px solid rgba(122, 76, 255, 0.25);
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
}

/* =========================================
   技術能力
   ========================================= */
.amt-capabilities-section {
    position: relative;
    padding: 6rem 0;
    background: var(--amt-dark);
    overflow: hidden;
}

.amt-capabilities-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.amt-capabilities-lead {
    font-size: 1.1rem;
    color: var(--amt-text);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.amt-capabilities-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

@media (max-width: 640px) {
    .amt-capabilities-list ul {
        grid-template-columns: 1fr;
    }
}

.amt-capabilities-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--amt-text-muted);
    padding: 0.7rem 1rem;
    background: rgba(122, 76, 255, 0.04);
    border: 1px solid var(--amt-border);
    border-radius: 8px;
    transition: all var(--amt-transition);
}

.amt-capabilities-list li:hover {
    background: rgba(122, 76, 255, 0.10);
    border-color: rgba(122, 76, 255, 0.35);
    color: var(--amt-text);
}

.amt-capabilities-list li i {
    color: var(--amt-accent);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.amt-capabilities-footer {
    font-size: 0.95rem;
    color: var(--amt-secondary);
    border-left: 3px solid var(--amt-primary);
    padding-left: 1rem;
    line-height: 1.7;
}

/* =========================================
   優勢
   ========================================= */
.amt-advantages-section {
    position: relative;
    padding: 6rem 0;
    background: var(--amt-dark-2);
    overflow: hidden;
}

.amt-advantages-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.amt-advantages-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.amt-advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: rgba(122, 76, 255, 0.05);
    border: 1px solid var(--amt-border);
    border-radius: 10px;
    transition: all var(--amt-transition);
}

.amt-advantage-item:hover {
    background: rgba(122, 76, 255, 0.10);
    border-color: rgba(122, 76, 255, 0.4);
    transform: translateX(6px);
}

.amt-advantage-num {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--amt-primary);
    flex-shrink: 0;
    opacity: 0.7;
    min-width: 2rem;
}

.amt-advantage-item p {
    color: var(--amt-text);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.amt-advantages-footer {
    font-size: 1rem;
    color: var(--amt-accent);
    font-weight: 600;
    text-align: center;
    padding: 1.2rem 2rem;
    background: rgba(0, 245, 212, 0.05);
    border: 1px solid rgba(0, 245, 212, 0.15);
    border-radius: 10px;
}

/* =========================================
   表單區塊
   ========================================= */
.amt-form-section {
    position: relative;
    padding: 6rem 0;
    background: var(--amt-dark);
    overflow: hidden;
}

.amt-form-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.amt-form-description {
    color: var(--amt-text-muted);
    font-size: 0.95rem;
    margin-top: 0.4rem;
}

.amt-form-step-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(122, 76, 255, 0.06);
    border: 1px solid rgba(122, 76, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.amt-step-badge {
    width: 40px; height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amt-primary), var(--amt-neon));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 0 16px var(--amt-glow);
}

.amt-step-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.3rem;
}

.amt-step-text p {
    font-size: 0.88rem;
    color: var(--amt-text-muted);
    margin: 0;
    line-height: 1.6;
}

.amt-form-footer {
    margin-top: 2rem;
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(122, 76, 255, 0.05);
    border-radius: 8px;
    border: 1px solid var(--amt-border);
}

.amt-form-footer p {
    color: var(--amt-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* =========================================
   RWD
   ========================================= */
@media (max-width: 768px) {
    .amt-banner-section {
        padding: 7rem 5% 4rem;
        flex-direction: column;
        align-items: flex-start;
    }

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

    .amt-services-grid {
        grid-template-columns: 1fr;
    }

    .amt-usecases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .amt-intro-stats {
        grid-template-columns: 1fr 1fr;
    }

    .amt-banner-cta {
        flex-direction: column;
    }

    .amt-btn-primary,
    .amt-btn-outline {
        width: 100%;
        justify-content: center;
    }
}
