/* ── Fonts ── */
@font-face { font-family: 'Copperplate'; src: url('copperplategothic_bold.ttf'); }

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    padding: 0;
    background-color: #0b1125;
    color: #fdf9f2;
    font-family: 'DM Sans', sans-serif;
}

body::-webkit-scrollbar { display: none; }

/* ════════════════════════════════
    HEADER
════════════════════════════════ */
.headermain {
    height: 70px;
    background-color: #0b1125;
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 3px solid #C9A24D;
}
.headerlayout {
    display: flex;
    align-items: center;
    height: 70px;
}
.left-header { flex: 1; }
.left-header img { height: 70px; margin-left: 15px; }
.right-header {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 15px;
}
.right-header img { height: 70px; }
.middle-header {
    flex: 3;
    display: flex;
    justify-content: center;
    white-space: nowrap;
}
.header-button-container { margin: 0 20px; }
.header-button-container a {
    background-color: #0b1125;
    color: #e6d3a3;
    font-family: 'Copperplate';
    font-size: 30px;
    text-decoration: none;
    position: relative;
}
.header-button-container a::after {
    content: '';
    background-color: #fff;
    height: 3px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transition: transform 250ms ease;
}
.header-button-container a:hover::after { transform: scaleX(1); }
.header-button-container a:hover { cursor: pointer; }

@media (max-width: 666px) {
    .header-button-container { margin: 0 4px; }
    .left-header img { height: 45px; margin-left: 8px; }
    .right-header img { height: 45px; }
    .right-header { margin-right: 0; }
    .middle-header { flex: 1; }
    .header-button-container a { font-size: 17px; }
}

/* ════════════════════════════════
    SHARED UTILITIES
════════════════════════════════ */
.label-sm {
    font-family: 'Copperplate';
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c8962a;
    display: block;
    margin-bottom: 14px;
}

/* ════════════════════════════════
    HERO v2
════════════════════════════════ */
.hero-v2 {
    position: relative;
    min-height: calc(100vh - 73px);
    background: #0b1125;
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid #C9A24D;
    overflow: hidden;
}

.hero-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(201, 162, 77, 0.1) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.hero-v2__deco {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.045;
    pointer-events: none;
}

.hero-v2__code-icon {
    width: 640px;
    height: 380px;
    color: #f0c45a;
}

.hero-v2__inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 64px 40px 52px;
}

.hero-v2__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-v2__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(240, 196, 90, 0.85);
}

.hero-v2__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf82;
    box-shadow: 0 0 10px rgba(76, 175, 130, 0.7);
    animation: pulse-dot 2.2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.8); }
}

.hero-v2__index {
    font-family: 'Copperplate';
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(253, 249, 242, 0.18);
}

.hero-v2__title-block {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.hero-v2__title {
    display: flex;
    flex-direction: column;
    margin: 0;
    line-height: 0.92;
    gap: 4px;
}

.hero-v2__title-em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(3.2rem, 8.5vw, 7.5rem);
    color: rgba(253, 249, 242, 0.88);
    display: block;
}

.hero-v2__title-strong {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-weight: 900;
    font-size: clamp(3.2rem, 8.5vw, 7.5rem);
    background: linear-gradient(135deg, #f0c45a 0%, #C9A24D 50%, #f0c45a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-v2__title-plain {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(1.8rem, 4.5vw, 4rem);
    color: rgba(253, 249, 242, 0.35);
    display: block;
}

.hero-v2__footer-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: end;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 162, 77, 0.18);
}

.hero-v2__desc {
    font-size: 0.95rem;
    color: rgba(253, 249, 242, 0.48);
    line-height: 1.85;
    margin: 0;
}

.hero-v2__stats {
    display: flex;
    gap: 36px;
}

.hero-v2__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.hero-v2__stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #f0c45a;
    line-height: 1;
}

.hero-v2__stat-label {
    font-size: 0.66rem;
    color: rgba(253, 249, 242, 0.32);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.hero-v2__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #C9A24D, #f0c45a);
    border-radius: 999px;
    color: #0b1125;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 28px rgba(201, 162, 77, 0.28);
}

.hero-v2__cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.hero-v2__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(201, 162, 77, 0.42);
}

.hero-v2__cta:hover svg {
    transform: translateX(5px);
}

/* Marquee */
.hero-v2__marquee-wrap {
    border-top: 1px solid rgba(201, 162, 77, 0.12);
    overflow: hidden;
    padding: 15px 0;
    background: rgba(201, 162, 77, 0.025);
}

.hero-v2__marquee {
    display: flex;
    overflow: hidden;
}

.hero-v2__marquee-track {
    display: flex;
    align-items: center;
    gap: 28px;
    animation: marquee 32s linear infinite;
    white-space: nowrap;
}

.hero-v2__marquee-track span {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(253, 249, 242, 0.22);
}

.hero-v2__marquee-track span:nth-child(even) {
    color: rgba(201, 162, 77, 0.28);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
    .hero-v2__footer-row {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: flex-start;
    }
    .hero-v2__stats { justify-content: flex-start; }
    .hero-v2__code-icon { width: 320px; height: 200px; }
}

@media (max-width: 480px) {
    .hero-v2__inner { padding: 40px 20px 36px; }
    .hero-v2__title-block { padding: 28px 0; }
    .hero-v2__stats { gap: 22px; }
    .hero-v2__stat-num { font-size: 1.6rem; }
}

/* ════════════════════════════════
    PRICING v2
════════════════════════════════ */
.pricing-v2 {
    padding: 100px 40px;
    border-bottom: 3px solid #C9A24D;
}

.pricing-v2__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-v2__header {
    margin-bottom: 64px;
}

.pricing-v2__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fdf9f2;
    margin: 0 0 14px;
    line-height: 1.1;
}

.pricing-v2__title em {
    font-style: italic;
    background: linear-gradient(135deg, #f0c45a, #c8962a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-v2__sub {
    font-size: 0.9rem;
    color: rgba(253, 249, 242, 0.38);
    margin: 0;
}

.pricing-v2__list {
    border-top: 1px solid rgba(201, 162, 77, 0.2);
}

.pricing-v2__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 36px 0;
    border-bottom: 1px solid rgba(201, 162, 77, 0.08);
    position: relative;
    transition: padding-left 0.35s ease;
}

.pricing-v2__row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, #f0c45a, #c8962a);
    opacity: 0;
    transition: opacity 0.35s;
    border-radius: 0 2px 2px 0;
}

.pricing-v2__row:hover { padding-left: 20px; }
.pricing-v2__row:hover::before { opacity: 1; }

.pricing-v2__row--featured {
    background: rgba(201, 162, 77, 0.05);
    border-radius: 14px;
    padding-left: 24px;
    padding-right: 24px;
    border: 1px solid rgba(201, 162, 77, 0.18);
    border-bottom: 1px solid rgba(201, 162, 77, 0.18);
    margin: 8px -24px;
}

.pricing-v2__row--featured::before { display: none; }
.pricing-v2__row--featured:hover { padding-left: 24px; }

.pricing-v2__row-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.pricing-v2__row-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: rgba(201, 162, 77, 0.16);
    line-height: 1;
    min-width: 60px;
    transition: color 0.35s;
}

.pricing-v2__row:hover .pricing-v2__row-num {
    color: rgba(201, 162, 77, 0.38);
}

.pricing-v2__row-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #fdf9f2;
    margin: 0 0 6px;
}

.pricing-v2__row-sub {
    font-size: 0.82rem;
    color: rgba(253, 249, 242, 0.32);
    margin: 0;
}

.pricing-v2__row-price {
    text-align: right;
    flex-shrink: 0;
}

.pricing-v2__amount {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #f0c45a;
    display: block;
    line-height: 1;
}

.pricing-v2__currency {
    font-size: 0.7rem;
    color: rgba(253, 249, 242, 0.28);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pricing-v2__note {
    margin-top: 48px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    background: rgba(201, 162, 77, 0.04);
    border: 1px solid rgba(201, 162, 77, 0.14);
    border-radius: 12px;
}

.pricing-v2__note svg {
    width: 18px;
    height: 18px;
    color: #f0c45a;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-v2__note p {
    font-size: 0.85rem;
    color: rgba(253, 249, 242, 0.42);
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .pricing-v2 { padding: 72px 24px; }
    .pricing-v2__row { flex-direction: column; align-items: flex-start; gap: 16px; }
    .pricing-v2__row-price { text-align: left; }
    .pricing-v2__row--featured { margin: 8px -8px; }
}

@media (max-width: 480px) {
    .pricing-v2 { padding: 56px 16px; }
    .pricing-v2__row-num { font-size: 1.9rem; min-width: 44px; }
}

/* ════════════════════════════════
    CAPABILITIES v2 (Bento)
════════════════════════════════ */
.cap-v2 {
    padding: 100px 40px;
    border-bottom: 3px solid #C9A24D;
}

.cap-v2__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.cap-v2__header {
    margin-bottom: 56px;
}

.cap-v2__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fdf9f2;
    margin: 0;
    line-height: 1.1;
}

.cap-v2__title em {
    font-style: italic;
    background: linear-gradient(135deg, #f0c45a, #c8962a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cap-v2__bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cap-v2__card {
    background: #162040;
    border: 1px solid rgba(201, 162, 77, 0.12);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s, transform 0.35s;
}

.cap-v2__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.05) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
    border-radius: inherit;
}

.cap-v2__card:hover {
    border-color: rgba(201, 162, 77, 0.35);
    transform: translateY(-5px);
}

.cap-v2__card:hover::after { opacity: 1; }

.cap-v2__card--wide {
    grid-column: span 2;
}

.cap-v2__card--accent {
    background: linear-gradient(145deg, #162040 0%, #1b2d56 100%);
    border-color: rgba(201, 162, 77, 0.22);
}

.cap-v2__card-num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(201, 162, 77, 0.11);
    line-height: 1;
    display: block;
    margin-bottom: 20px;
    transition: color 0.35s;
}

.cap-v2__card:hover .cap-v2__card-num {
    color: rgba(201, 162, 77, 0.24);
}

.cap-v2__card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #fdf9f2;
    margin: 0 0 12px;
}

.cap-v2__card-desc {
    font-size: 0.86rem;
    color: rgba(253, 249, 242, 0.42);
    line-height: 1.75;
    margin: 0 0 24px;
}

.cap-v2__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cap-v2__tags span {
    font-size: 0.72rem;
    padding: 4px 12px;
    background: rgba(201, 162, 77, 0.08);
    border: 1px solid rgba(201, 162, 77, 0.2);
    border-radius: 999px;
    color: #f0c45a;
    letter-spacing: 0.04em;
}

@media (max-width: 900px) {
    .cap-v2__bento { grid-template-columns: repeat(2, 1fr); }
    .cap-v2__card--wide { grid-column: span 2; }
}

@media (max-width: 560px) {
    .cap-v2__bento { grid-template-columns: 1fr; }
    .cap-v2__card--wide { grid-column: span 1; }
    .cap-v2 { padding: 56px 16px; }
}

/* ════════════════════════════════
    PROCESS v2
════════════════════════════════ */
.process-v2 {
    padding: 100px 40px;
    border-bottom: 3px solid #C9A24D;
}

.process-v2__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.process-v2__header {
    margin-bottom: 72px;
}

.process-v2__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fdf9f2;
    margin: 0;
    line-height: 1.1;
}

.process-v2__title em {
    font-style: italic;
    background: linear-gradient(135deg, #f0c45a, #c8962a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-v2__timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.process-v2__line {
    position: absolute;
    top: 27px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201, 162, 77, 0.4) 15%,
        rgba(201, 162, 77, 0.4) 85%,
        transparent 100%);
    pointer-events: none;
}

.process-v2__step {
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-v2__step-num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 77, 0.35);
    background: #0b1125;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #f0c45a;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.process-v2__step:hover .process-v2__step-num {
    background: rgba(201, 162, 77, 0.1);
    border-color: rgba(201, 162, 77, 0.65);
    box-shadow: 0 0 20px rgba(201, 162, 77, 0.15);
}

.process-v2__step-card {
    background: #162040;
    border: 1px solid rgba(201, 162, 77, 0.1);
    border-radius: 16px;
    padding: 28px 20px;
    width: 100%;
    transition: border-color 0.3s, transform 0.3s;
}

.process-v2__step:hover .process-v2__step-card {
    border-color: rgba(201, 162, 77, 0.3);
    transform: translateY(-5px);
}

.process-v2__step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #fdf9f2;
    margin: 0 0 10px;
}

.process-v2__step-desc {
    font-size: 0.82rem;
    color: rgba(253, 249, 242, 0.42);
    line-height: 1.7;
    margin: 0 0 18px;
}

.process-v2__step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.process-v2__step-list li {
    font-size: 0.75rem;
    color: rgba(201, 162, 77, 0.6);
    text-align: center;
    letter-spacing: 0.04em;
}

@media (max-width: 900px) {
    .process-v2__timeline { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .process-v2__line { display: none; }
}

@media (max-width: 560px) {
    .process-v2__timeline { grid-template-columns: 1fr; }
    .process-v2 { padding: 56px 16px; }
}

/* ════════════════════════════════
    FAQ v2
════════════════════════════════ */
.faq-v2 {
    padding: 100px 40px;
    border-bottom: 3px solid #C9A24D;
}

.faq-v2__inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-v2__header {
    margin-bottom: 56px;
}

.faq-v2__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #fdf9f2;
    margin: 0;
    line-height: 1.2;
}

.faq-v2__title em {
    font-style: italic;
    background: linear-gradient(135deg, #f0c45a, #c8962a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-v2__list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(201, 162, 77, 0.15);
}

.faq-v2__item {
    border-bottom: 1px solid rgba(201, 162, 77, 0.1);
    transition: border-color 0.3s;
}

.faq-v2__item.open {
    border-bottom-color: rgba(201, 162, 77, 0.28);
}

.faq-v2__q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 0;
    background: transparent;
    border: none;
    color: #fdf9f2;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-v2__q:hover { color: #f0c45a; }

.faq-v2__q-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: rgba(201, 162, 77, 0.18);
    line-height: 1;
    min-width: 48px;
    transition: color 0.3s;
}

.faq-v2__item.open .faq-v2__q-num {
    color: rgba(201, 162, 77, 0.48);
}

.faq-v2__q-text {
    flex: 1;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    line-height: 1.45;
}

.faq-v2__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: #c8962a;
    transition: transform 0.35s;
}

.faq-v2__item.open .faq-v2__icon {
    transform: rotate(45deg);
}

.faq-v2__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    font-size: 0.9rem;
    color: rgba(253, 249, 242, 0.48);
    line-height: 1.8;
    padding: 0 0 0 68px;
}

.faq-v2__item.open .faq-v2__a {
    max-height: 220px;
    padding: 0 0 28px 68px;
}

@media (max-width: 480px) {
    .faq-v2 { padding: 56px 16px; }
    .faq-v2__q-num { font-size: 1.4rem; min-width: 36px; }
    .faq-v2__q-text { font-size: 0.95rem; }
    .faq-v2__a { padding: 0 0 0 56px; }
    .faq-v2__item.open .faq-v2__a { padding: 0 0 24px 56px; }
}

/* ════════════════════════════════
    CTA / CONTACT FORM
════════════════════════════════ */
.cta-section {
    padding: 80px 40px;
    text-align: center;
}
.cta-box {
    max-width: 680px;
    margin: 0 auto;
    background: #162040;
    border: 1px solid rgba(200, 150, 42, 0.25);
    border-radius: 28px;
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(200, 150, 42, 0.7), #f0c45a, rgba(200, 150, 42, 0.7), transparent);
}
.cta-box__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: #fdf9f2;
    margin: 0 0 16px;
}
.cta-box__title span {
    background: linear-gradient(135deg, #f0c45a, #c8962a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-box__sub {
    font-size: 0.92rem;
    color: rgba(253, 249, 242, 0.5);
    margin: 0 0 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    text-align: left;
}
.contact-form__row {
    display: flex;
    gap: 16px;
}
.contact-form__field {
    flex: 1;
}
.contact-form__field input,
.contact-form__field textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 150, 42, 0.25);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fdf9f2;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    resize: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: rgba(253, 249, 242, 0.3);
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
    border-color: rgba(200, 150, 42, 0.6);
    box-shadow: 0 0 0 3px rgba(200, 150, 42, 0.08);
}

.select-wrapper {
    position: relative;
    width: 100%;
}
.select-wrapper select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 150, 42, 0.25);
    border-radius: 12px;
    padding: 14px 40px 14px 18px;
    color: #fdf9f2;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    width: 100%;
    cursor: pointer;
    appearance: none;
    transition: border-color 0.25s;
}
.select-wrapper select option {
    background: #162040;
    color: #fdf9f2;
    padding: 10px;
}

.select-wrapper select:focus {
    border-color: rgba(200, 150, 42, 0.6);
    box-shadow: 0 0 0 3px rgba(200, 150, 42, 0.08);
}
.select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #c8962a;
    pointer-events: none;
}

.btn-primary {
    padding: 14px 36px;
    background: #C9A24D;
    border: none;
    border-radius: 999px;
    color: #0b1125;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover {
    background: #f0c45a;
    transform: scale(1.04);
}

.contact-form__status {
    text-align: center;
    font-size: 0.88rem;
    margin: 0;
    min-height: 20px;
}
.contact-form__status.success { color: #4caf82; }
.contact-form__status.error { color: #e05555; }

.contact-form__divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0 20px;
    color: rgba(253, 249, 242, 0.2);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.contact-form__divider::before,
.contact-form__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 150, 42, 0.2), transparent);
}

.contact-form__direct-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(253, 249, 242, 0.45);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.25s;
}
.contact-form__direct-email:hover { color: #fdf9f2; }
.contact-form__direct-email svg {
    width: 16px;
    height: 16px;
    color: #c8962a;
}

@media (max-width: 480px) {
    .contact-form__row { flex-direction: column; }
    .cta-box { padding: 40px 28px; }
}

/* ════════════════════════════════
    FOOTER
════════════════════════════════ */
.footer {
    background: #0a1020;
    border-top: 1px solid rgba(200, 150, 42, 0.15);
}
.footer__topline {
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%, rgba(200, 150, 42, 0.0) 10%,
        rgba(200, 150, 42, 0.7) 35%, #f0c45a 50%,
        rgba(200, 150, 42, 0.7) 65%, rgba(200, 150, 42, 0.0) 90%,
        transparent 100%);
}
.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 40px 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}
.footer__logo {
    height: 36px;
    margin-bottom: 18px;
}
.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(242, 237, 226, 0.5);
    margin-bottom: 24px;
}
.footer__socials {
    display: flex;
    gap: 12px;
}
.footer__social {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(200, 150, 42, 0.25);
    background: rgba(200, 150, 42, 0.06);
    color: rgba(200, 150, 42, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s;
}
.footer__social:hover {
    background: rgba(200, 150, 42, 0.18);
    border-color: rgba(200, 150, 42, 0.6);
    color: #f0c45a;
    transform: translateY(-3px);
}
.footer__social svg {
    width: 16px;
    height: 16px;
}
.footer__col-title {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #c8962a;
    margin-bottom: 20px;
}
.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer__nav a {
    font-size: 0.9rem;
    color: rgba(242, 237, 226, 0.55);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}
.footer__nav a:hover {
    color: #fdf9f2;
    padding-left: 6px;
}
.footer__contact {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer__contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer__contact svg {
    width: 15px;
    height: 15px;
    color: #c8962a;
    opacity: 0.8;
}
.footer__contact a {
    font-size: 0.88rem;
    color: rgba(242, 237, 226, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.footer__contact a:hover {
    color: #fdf9f2;
}
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.footer__bottom p {
    font-size: 0.78rem;
    color: rgba(242, 237, 226, 0.28);
}

@media (max-width: 768px) {
    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        padding: 48px 24px 36px;
    }
    .footer__brand {
        grid-column: 1 / -1;
    }
}
@media (max-width: 480px) {
    .footer__inner {
        grid-template-columns: 1fr;
    }
}

/* ════════════════════════════════
    RESPONSIVE (general padding)
════════════════════════════════ */
@media (max-width: 768px) {
    .pricing-v2,
    .cap-v2,
    .process-v2,
    .faq-v2,
    .cta-section {
        padding: 72px 24px;
    }
}

@media (max-width: 480px) {
    .pricing-v2,
    .cap-v2,
    .process-v2,
    .faq-v2,
    .cta-section {
        padding: 56px 16px;
    }
}
