﻿/**
 * DOME Page Styles
 * 深色科技主题，严格按照设计稿实现
 * Responsive design for PC (≥1200px), Tablet (768-1199px), Mobile (<768px)
 * 
 * @package Milestrong
 * @since 2.0.0
 */

/* ========================================
   Hero Section - 科技感深色主题
   ======================================== */

.dome-hero {
    position: relative;
    width: 100vw;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    height: 800px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-size: 100% auto !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #0a0e1a;
    padding: 0 0 100px;
    overflow: hidden;
}

.dome-hero-overlay {
    display: none;
}

/* 科技感装饰元素 */
.dome-hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

/* 科技感线条 — 已移除动画效果 */

/* 光效元素 — 已移除 */

.dome-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px 20px;
    width: 100%;
}

.dome-hero-title {
    color: #ffffff;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(1, 127, 255, 0.5);
}

.dome-hero-subtitle {
    color: #017fff;
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 4px;
    text-shadow: 0 2px 10px rgba(1, 127, 255, 0.3);
}

/* ========================================
   Common Section Styles - 深色主题
   ======================================== */

.dome-page section {
    padding: 120px 0;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
}

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

.dome-section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 2px;
}

.dome-section-description {
    font-size: 18px;
    color: #a0aec0;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   1. Immersive Technology Redefined - 深色主题
   ======================================== */

.dome-immersive {
    background: #0a0e1a;
}

.dome-immersive-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.dome-immersive-content-description {
    font-size: 16px;
    color: #cbd5e0;
    line-height: 1.9;
}

.dome-immersive-content-description p {
    margin-bottom: 20px;
    color: #cbd5e0;
}

.dome-immersive-content-description ul,
.dome-immersive-content-description ol {
    margin: 20px 0;
    padding-left: 28px;
    color: #cbd5e0;
}

.dome-immersive-content-description li {
    margin-bottom: 12px;
    color: #cbd5e0;
}

.dome-immersive-content-description strong {
    color: #ffffff;
}

.dome-immersive-image {
    position: relative;
}

.dome-immersive-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.dome-immersive-image a:hover img {
    transform: scale(1.03);
}

/* ========================================
   2. Versatile Forms & Outstanding Features - 深色主题
   ======================================== */

.dome-versatile {
    background: #0a0e1a;
}

.dome-versatile-banner {
    margin-bottom: 80px;
    text-align: center;
}

.dome-versatile-banner img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 16px;
}

.dome-versatile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.dome-versatile-features {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dome-features-content {
    font-size: 16px;
    color: #cbd5e0;
    line-height: 1.9;
}

.dome-features-content p {
    margin-bottom: 20px;
    color: #cbd5e0;
}

.dome-features-content ul,
.dome-features-content ol {
    margin: 20px 0;
    padding-left: 28px;
    color: #cbd5e0;
}

.dome-features-content li {
    margin-bottom: 16px;
    color: #cbd5e0;
    line-height: 1.8;
}

.dome-features-content strong {
    color: #ffffff;
    font-weight: 600;
}

.dome-features-content h3,
.dome-features-content h4 {
    color: #ffffff;
    margin-top: 24px;
    margin-bottom: 12px;
}

/* 保留旧的特性卡片样式以防万一 */
.dome-feature-item {
    padding: 28px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(1, 127, 255, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.dome-feature-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(1, 127, 255, 0.4);
    box-shadow: 0 8px 30px rgba(1, 127, 255, 0.2);
}

.dome-feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.dome-feature-description {
    font-size: 15px;
    color: #cbd5e0;
    line-height: 1.8;
}

.dome-feature-description p {
    margin-bottom: 12px;
    color: #cbd5e0;
}

.dome-feature-description ul,
.dome-feature-description ol {
    margin: 12px 0;
    padding-left: 24px;
    color: #cbd5e0;
}

.dome-feature-description li {
    margin-bottom: 8px;
    color: #cbd5e0;
}

.dome-versatile-scene img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.dome-scene-lightbox:hover img {
    transform: scale(1.03);
}

/* ========================================
   3-7. Application Scenario Blocks - 深色主题
   ======================================== */

.dome-scenario {
    background: #0a0e1a;
    padding: 100px 0;
}

/* 顶部：标题、副标题、描述区域 */
.dome-scenario-header {
    margin-bottom: 60px;
    text-align: center;
}

.dome-scenario-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 1px;
}

.dome-scenario-subtitle {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 32px;
    color: #ffffff;
    line-height: 1.4;
}

.dome-scenario-description {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 0;
}

/* 底部：左右分栏区域 */
.dome-scenario-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.dome-scenario-text {
    text-align: left;
}

.dome-scenario-content-text {
    font-size: 16px;
    color: #cbd5e0;
    line-height: 1.9;
}

.dome-scenario-content-text p {
    margin-bottom: 20px;
    color: #cbd5e0;
}

.dome-scenario-content-text ul,
.dome-scenario-content-text ol {
    margin: 20px 0;
    padding-left: 28px;
    color: #cbd5e0;
}

.dome-scenario-content-text li {
    margin-bottom: 16px;
    color: #cbd5e0;
    line-height: 1.8;
}

.dome-scenario-content-text strong {
    color: #ffffff;
    font-weight: 600;
}

.dome-scenario-content-text h3,
.dome-scenario-content-text h4 {
    color: #ffffff;
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 600;
}

.dome-scenario-content-text h4 {
    font-size: 20px;
    margin-top: 24px;
}

/* 保留旧的section样式以防万一 */
.dome-scenario-section {
    margin-bottom: 40px;
}

.dome-scenario-section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.dome-scenario-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dome-scenario-list-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
    line-height: 1.8;
    color: #cbd5e0;
}

.dome-scenario-list-item:last-child {
    border-bottom: none;
}

.dome-scenario-list-item strong {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.dome-scenario-list-item p {
    margin-bottom: 10px;
    color: #cbd5e0;
}

.dome-scenario-list-item ul,
.dome-scenario-list-item ol {
    margin: 10px 0;
    padding-left: 24px;
    color: #cbd5e0;
}

.dome-scenario-list-item li {
    margin-bottom: 6px;
    color: #cbd5e0;
}

.dome-scenario-image {
    position: relative;
}

.dome-scenario-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.dome-scenario:hover .dome-scenario-image img {
    transform: scale(1.02);
}

/* ========================================
   Tablet (768px - 1199px)
   ======================================== */

@media (max-width: 1199px) and (min-width: 768px) {
    
    /* Hero Section */
    .dome-hero {
        height: 500px;
        padding: 0 0 80px;
    }
    
    .dome-hero-title {
        font-size: 56px;
        letter-spacing: 6px;
    }
    
    .dome-hero-subtitle {
        font-size: 26px;
        letter-spacing: 3px;
    }
    
    /* 装饰元素适当缩小 */
    .light-effect-1,
    .light-effect-2 {
        width: 250px;
        height: 250px;
    }
    
    /* Sections */
    .dome-page section {
        padding: 100px 0;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .dome-section-header {
        margin-bottom: 60px;
    }
    
    .dome-section-title {
        font-size: 40px;
    }
    
    .dome-section-description {
        font-size: 17px;
    }
    
    /* Immersive Technology - Single Column */
    .dome-immersive-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    /* Versatile Forms - Single Column */
    .dome-versatile-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .dome-versatile-banner {
        margin-bottom: 60px;
    }
    
    /* Scenario Blocks - Single Column */
    .dome-scenario-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .dome-scenario-title {
        font-size: 36px;
    }
    
    .dome-scenario-subtitle {
        font-size: 22px;
    }
    
    /* Related Cases - 2 Columns */
    .dome-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Related Products - 2 Columns */
    .dome-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .dome-products-dots {
        display: flex;
    }
    
    /* Contact Form - Single Column */
    .dome-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ========================================
   Mobile (<768px)
   ======================================== */

@media (max-width: 767px) {
    
    /* Hero Section */
    .dome-hero {
        height: 400px;
        padding: 0 0 60px;
    }
    
    .dome-hero-title {
        font-size: 40px;
        letter-spacing: 4px;
        margin-bottom: 16px;
    }
    
    .dome-hero-subtitle {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    /* 隐藏装饰元素，专注核心内容 */
    .tech-line,
    .light-effect {
        display: none;
    }
    
    /* Sections */
    .dome-page section {
        padding: 80px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .dome-section-header {
        margin-bottom: 50px;
    }
    
    .dome-section-title {
        font-size: 32px;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    
    .dome-section-description {
        font-size: 16px;
    }
    
    /* Immersive Technology */
    .dome-immersive-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dome-immersive-content-description {
        font-size: 15px;
    }
    
    /* Versatile Forms */
    .dome-versatile-banner {
        margin-bottom: 50px;
    }
    
    .dome-versatile-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dome-feature-item {
        padding: 24px;
    }
    
    .dome-feature-title {
        font-size: 18px;
    }
    
    .dome-feature-description {
        font-size: 14px;
    }
    
    /* Scenario Blocks */
    .dome-scenario-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dome-scenario-title {
        font-size: 28px;
    }
    
    .dome-scenario-subtitle {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .dome-scenario-description {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .dome-scenario-section {
        margin-bottom: 32px;
    }
    
    .dome-scenario-section-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .dome-scenario-list-item {
        padding: 16px 0;
        font-size: 14px;
    }
    
    .dome-scenario-list-item strong {
        font-size: 16px;
        margin-bottom: 8px;
    }
}

/* ========================================
   Extra Small Mobile (<480px)
   ======================================== */

@media (max-width: 480px) {
    
    .dome-hero {
        height: 350px;
    }
    
    .dome-hero-title {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .dome-hero-subtitle {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .dome-section-title {
        font-size: 28px;
    }
    
    .dome-page section {
        padding: 60px 0;
    }
    
    .dome-scenario-title {
        font-size: 24px;
    }
    
    .dome-scenario-subtitle {
        font-size: 18px;
    }
}


/* ========================================
   8. Related Cases Section
   ======================================== */

.dome-related-cases {
    padding: 100px 0;
    background: #0a0e1a;
}

.dome-cases-banner {
    margin: 60px 0;
    text-align: center;
}

.dome-cases-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.dome-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.dome-case-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dome-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(1, 127, 255, 0.2);
}

.dome-case-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.dome-case-image {
    position: relative;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
}

.dome-case-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.dome-case-card:hover .dome-case-image img {
    transform: scale(1.05);
}

.dome-case-content {
    padding: 30px;
}

.dome-case-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.dome-case-excerpt {
    font-size: 15px;
    color: #cbd5e0;
    line-height: 1.6;
}

/* ========================================
   9. Related Products Section
   ======================================== */

.dome-related-products {
    padding: 100px 0;
    background: #0a0e1a;
}

.dome-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.dome-product-card {
    display: flex;
    flex-direction: column;
    background: #151a28;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.dome-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.dome-product-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    padding: 60px 50px 0;
    background: #151a28;
}

.dome-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.dome-product-card:hover .dome-product-image img {
    transform: scale(1.04);
}

.dome-product-content {
    padding: 60px 51px 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    position: relative;
}

.dome-product-tag {
    display: block;
    width: 100%;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.dome-product-desc {
    font-size: 13px;
    color: #fff;
    margin: 4px;
    line-height: 1.6;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.dome-product-arrow {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 13px;
    height: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dome-product-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


.dome-products-prev:hover,
.dome-products-next:hover {
    background: rgba(1, 127, 255, 0.4);
}

.dome-products-prev {
    left: -60px;
}

.dome-products-next {
    right: -60px;
}

.dome-products-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dome-products-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dome-products-dots .dot.active {
    background: #017fff;
}

/* ========================================
   10. Contact Us Section
   ======================================== */

.dome-contact {
    padding: 100px 0;
    background: #0a0e1a;
    background-size: cover;
    background-position: center;
}

.dome-contact-form {
    max-width: 900px;
    margin: 60px auto 0;
}

/* 表单网格布局 - 左右两列 */
.dome-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

/* 左列和右列 */
.dome-form-column-left,
.dome-form-column-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: 100%;
}

/* Message字段占据剩余空间 */
.dome-form-col-message {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dome-form-col-message textarea {
    flex: 1;
    min-height: 180px;
}

.dome-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.dome-form-col {
    display: flex;
    flex-direction: column;
}

/* 输入框样式 - 深色背景，大圆角 */
.dome-form-col input,
.dome-form-col textarea {
    width: 100%;
    padding: 16px 24px;
    background: #1b1a22;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    color: #ffffff;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
    transition: all 0.3s ease;
}

.dome-form-col input:focus,
.dome-form-col textarea:focus {
    background: #252430;
    box-shadow: 0 0 0 2px rgba(1, 127, 255, 0.2);
}

.dome-form-col input::placeholder,
.dome-form-col textarea::placeholder {
    color: #6b7280;
}

/* Message文本域 - 圆角矩形 */
.dome-form-col textarea {
    border-radius: 20px;
    min-height: 140px;
    resize: vertical;
    padding: 16px 24px;
}

/* 验证码字段 - 嵌入式半圆形设计 */
.dome-captcha-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.dome-captcha-wrapper input {
    flex: 1;
    padding-right: 140px;
}

.dome-captcha-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 120px;
    background: #ffffff;
    border-radius: 0 50px 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    border-left: 1px solid #2d2c36;
    overflow: hidden;
}

.dome-captcha-image:hover {
    background: #f5f5f5;
}

.dome-captcha-image img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 4px;
}

.dome-captcha-refresh {
    display: none;
}

/* 提交按钮容器间距（样式由 contact-form-unified.css 统一控制） */
.dome-form-submit {
    text-align: center;
    margin-top: 30px;
}

/* 提交按钮箭头图标 */
.dome-submit-arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 30px;
    transform: rotate(-45deg);
}

.dome-submit-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: translate(-30%, -40%) rotate(45deg);
}

.dome-submit-arrow::after {
    content: '';
    position: absolute;
    top: 54%;
    left: 0;
    width: 28px;
    height: 2px;
    background-color: #ffffff;
    transform: translateY(50%);
}

/* 隐私声明 - 小字灰色 */
.dome-form-privacy {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* 表单消息提示 */
.dome-form-message {
    text-align: center;
    margin-top: 24px;
    padding: 16px;
    border-radius: 8px;
    font-size: 15px;
    display: none;
}

.dome-form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.dome-form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}


/* Mobile Responsive Styles for New Blocks */
@media (max-width: 767px) {
    
    /* Related Cases - Single Column */
    .dome-cases-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .dome-case-content {
        padding: 24px;
    }
    
    .dome-case-title {
        font-size: 18px;
    }
    
    .dome-case-excerpt {
        font-size: 14px;
    }
    
    /* Related Products - Single Column */
    .dome-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dome-product-content {
        padding: 40px 30px 40px;
    }
    
    .dome-product-image {
        padding: 30px 25px 0;
    }
    
    .dome-product-desc {
        font-size: 12px;
    }
    
    .dome-product-tag {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .dome-products-prev,
    .dome-products-next {
        display: none;
    }
    
    .dome-products-dots {
        display: flex;
        margin-top: 32px;
    }
    
    /* Contact Form - Single Column */
    .dome-contact-form {
        padding: 0 20px;
    }
    
    .dome-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .dome-form-column-left,
    .dome-form-column-right {
        gap: 16px;
    }
    
    .dome-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .dome-form-col input,
    .dome-form-col textarea {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .dome-form-col-message textarea {
        min-height: 120px;
    }
    
    .dome-captcha-wrapper input {
        padding-right: 110px;
    }
    
    .dome-captcha-image {
        width: 100px;
    }
    
    .dome-submit-button {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .dome-submit-arrow {
        right: 25px;
    }
    .dome-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .dome-form-col input,
    .dome-form-col textarea {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .dome-captcha-wrapper {
        flex-wrap: wrap;
    }
    
    .dome-captcha-wrapper input {
        width: 100%;
        margin-bottom: 12px;
    }
    
    .dome-captcha-image {
        flex: 1;
    }
    
    .dome-submit-button {
        width: 100%;
        justify-content: center;
        padding: 14px 32px;
        font-size: 15px;
    }
    
    .dome-form-privacy {
        font-size: 13px;
        padding: 0 20px;
    }
}
