@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Dela+Gothic+One&display=swap');

@font-face {
    font-family: 'Evolventa';
    src: url('../fonts/evolventa-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Manrope', sans-serif;
    background: #F8F9FA;
    color: #1A1A1A;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Декоративні SVG елементи */
.decoration-svg {
    position: absolute;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.6s ease;
}

.decoration-svg-large {
    width: 300px;
    height: 300px;
}

.decoration-svg-medium {
    width: 220px;
    height: 220px;
}

.decoration-svg-small {
    width: 150px;
    height: 150px;
}

.decoration-svg-animated {
    animation: float 20s ease-in-out infinite;
}

.decoration-svg-animated-slow {
    animation: float 30s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(5deg); }
    50% { transform: translate(-5px, -20px) rotate(-3deg); }
    75% { transform: translate(-10px, -5px) rotate(3deg); }
}

/* Header */
header {
    background: #FFFFFF;
    padding: 20px 0;
    border-bottom: 1px solid #E5E5E5;
    position: relative;
    z-index: 100;
    overflow: hidden;
}

header .decoration-svg:nth-child(1) { top: -30%; right: 10%; }
header .decoration-svg:nth-child(2) { top: -40%; left: 5%; }

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

.logo {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Evolventa', sans-serif;
    color: #1A1A1A;
}

.logo span { color: #FF6B00; }
a.logo { text-decoration: none; }

nav a {
    margin-left: 40px;
    text-decoration: none;
    color: #666666;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover { color: #FF6B00; }

.btn-primary {
    background: #FF6B00;
    color: #FFFFFF;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before { width: 400px; height: 400px; }

.btn-primary:hover {
    background: #E55F00;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #1A1A1A;
    padding: 14px 32px;
    border: 2px solid #FF6B00;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: #FF6B00;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-secondary:hover::before { width: 400px; height: 400px; }
.btn-secondary:hover { color: #FFFFFF; }

/* 404 Error Page */
.error-page {
    background: #FFFFFF;
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-page .decoration-svg { opacity: 0.05; }
.error-page .decoration-svg:nth-child(1) { top: 5%; right: 8%; }
.error-page .decoration-svg:nth-child(2) { bottom: 10%; left: 3%; }
.error-page .decoration-svg:nth-child(3) { top: 30%; right: 2%; }

.error-page-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.error-code {
    font-family: 'Dela Gothic One', cursive;
    font-size: 200px;
    font-weight: 400;
    line-height: 1;
    color: #FF6B00;
    opacity: 0.12;
    letter-spacing: -8px;
    margin-bottom: -40px;
    user-select: none;
}

.error-page h1 {
    font-family: 'Dela Gothic One', cursive;
    font-size: 48px;
    font-weight: 400;
    color: #1A1A1A;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.error-page p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 48px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.error-page .btn-primary {
    display: inline-block;
    text-decoration: none;
}

@media (max-width: 768px) {
    .error-code { font-size: 120px; letter-spacing: -4px; margin-bottom: -24px; }
    .error-page h1 { font-size: 28px; }
    .error-page p { font-size: 16px; }
    .error-page { padding: 80px 0 60px; }
}

/* Hero Section */
.hero {
    background: #FFFFFF;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero .decoration-svg:nth-child(1) { top: 5%; right: 8%; }
.hero .decoration-svg:nth-child(2) { bottom: 15%; left: 2%; }
.hero .decoration-svg:nth-child(3) { top: 35%; right: 2%; }
.hero .decoration-svg:nth-child(4) { bottom: 5%; right: 15%; }
.hero .decoration-svg:nth-child(5) { top: 20%; left: 5%; }

.hero-content { position: relative; z-index: 1; }

.hero h1 {
    font-family: 'Dela Gothic One', cursive;
    font-size: 72px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #1A1A1A;
}

.hero h1 .highlight {
    color: #FF6B00;
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 10px; left: 0; right: 0;
    height: 12px;
    background: rgba(255, 107, 0, 0.2);
    z-index: -1;
}

.hero p {
    font-size: 22px;
    color: #666666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
}

/* Hero eyebrow badge */
.hero-eyebrow {
    display: inline-block;
    background: rgba(255, 107, 0, 0.08);
    border: 1.5px solid rgba(255, 107, 0, 0.3);
    color: #FF6B00;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 8px 22px;
    border-radius: 50px;
    margin-bottom: 32px;
}

/* Clients Section */
.clients-section {
    background: #111111;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.clients-section .decoration-svg { opacity: 0.03; }
.clients-section .decoration-svg:nth-child(1) { top: 5%; right: 5%; }
.clients-section .decoration-svg:nth-child(2) { bottom: 5%; left: 3%; }

.clients-section-header h2 {
    color: #FFFFFF;
}

.clients-section-header h2::after {
    background: #FF6B00;
}

.clients-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.clients-track-outer {
    overflow: hidden;
    flex: 1;
    padding-top: 14px;
    margin-top: -14px;
}

.clients-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.client-slide {
    flex: 0 0 calc((100% - 80px) / 5);
    padding: 28px 20px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-align: center;
    transition: all 0.3s;
    background: rgba(255,255,255,0.03);
    white-space: nowrap;
}

.client-slide:hover {
    border-color: rgba(255,107,0,0.5);
    background: rgba(255,107,0,0.05);
}

.client-slide.featured {
    border-color: #FF6B00;
    background: rgba(255,107,0,0.06);
    font-size: 26px;
    position: relative;
}

.client-slide.featured::before {
    content: 'NEW';
    position: absolute;
    top: -10px;
    right: 14px;
    background: #FF6B00;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 3px 9px;
    border-radius: 50px;
}

.clients-arrow {
    width: 52px;
    height: 52px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    background: transparent;
    color: #FFFFFF;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-arrow:hover {
    border-color: #FF6B00;
    color: #FF6B00;
    background: rgba(255,107,0,0.1);
}

.clients-arrow:disabled {
    opacity: 0.3;
    cursor: default;
}

.clients-arrow:disabled:hover {
    border-color: rgba(255,255,255,0.2);
    color: #FFFFFF;
    background: transparent;
}

@media (max-width: 1024px) {
    .client-slide { flex: 0 0 calc((100% - 60px) / 4); font-size: 18px; }
    .client-slide.featured { font-size: 20px; }
}
@media (max-width: 768px) {
    .client-slide { flex: 0 0 calc((100% - 20px) / 2); font-size: 15px; padding: 20px 12px; }
    .client-slide.featured { font-size: 17px; }
}

.logo-item:hover {
    border-color: #FF6B00;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
}

/* Scenarios Section */
.scenarios {
    padding: 100px 0;
    background: #F8F9FA;
    position: relative;
    overflow: hidden;
}

.scenarios .decoration-svg:nth-child(1) { top: 8%; left: 3%; }
.scenarios .decoration-svg:nth-child(2) { bottom: 12%; right: 7%; }
.scenarios .decoration-svg:nth-child(3) { top: 45%; left: -2%; }
.scenarios .decoration-svg:nth-child(4) { bottom: 5%; left: 25%; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-family: 'Dela Gothic One', cursive;
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 4px;
    background: #FF6B00;
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: #666666;
    margin-top: 24px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.card {
    background: #FFFFFF;
    border: 2px solid #E5E5E5;
    border-radius: 24px;
    padding: 50px 40px;
    transition: all 0.3s;
    position: relative;
}

.card:hover {
    border-color: #FF6B00;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-number {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 80px;
    font-weight: 800;
    color: rgba(255, 107, 0, 0.05);
    line-height: 1;
}

.card-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, #1A1A1A, #3D3D3D);
    border-radius: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.card-icon::after {
    content: '';
    position: absolute;
    top: -3px; left: -3px; right: -3px; bottom: -3px;
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.card:hover .card-icon::after { opacity: 1; }

.card:hover .card-icon {
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    transform: scale(1.1) rotate(5deg);
}

.card-icon svg {
    width: 36px; height: 36px;
    stroke: #FFFFFF;
    fill: none;
    stroke-width: 2;
}

.card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card p {
    color: #666666;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.card-link {
    color: #FF6B00;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s;
}

.card-link:hover { gap: 15px; }
.card-link::after { content: '→'; font-size: 20px; }

/* PIM Features Section */
.pim-features-section {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.pim-features-section .decoration-svg:nth-child(1) { top: 8%; right: 5%; }
.pim-features-section .decoration-svg:nth-child(2) { bottom: 12%; left: 3%; }

.pim-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.pim-feature-block {
    background: #F8F9FA;
    border: 2px solid #E5E5E5;
    border-radius: 20px;
    padding: 36px;
    transition: border-color 0.3s;
}

.pim-feature-block:hover {
    border-color: #FF6B00;
}

.pim-feature-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #FF6B00;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E5E5;
}

.pim-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pim-feature-list li {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    padding-left: 16px;
    position: relative;
}

.pim-feature-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #FF6B00;
    font-size: 20px;
    line-height: 1;
    top: 2px;
}

.pim-feature-list li strong {
    color: #1A1A1A;
    font-weight: 600;
}

/* Cases Section — Carousel */
.cases {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.cases .decoration-svg { opacity: 0.03; }
.cases .decoration-svg:nth-child(1) { top: 12%; right: 5%; }
.cases .decoration-svg:nth-child(2) { bottom: 10%; left: 3%; }
.cases .decoration-svg:nth-child(3) { top: 5%; left: 10%; }
.cases .decoration-svg:nth-child(4) { bottom: 25%; right: 2%; }

.cases .section-header h2 {
    font-size: 48px;
}

.cases .section-header h2::after { background: #FF6B00; }
.cases .section-header p { color: #CCCCCC; }

.cases-carousel-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 12px 4px;
    margin: -12px -4px;
}

.cases-carousel {
    display: flex;
    gap: 40px;
    overflow: visible;
    position: relative;
}

.case-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    transition: all 0.3s;
    flex: 0 0 calc(50% - 20px);
    min-width: calc(50% - 20px);
}

.case-card:hover {
    border-color: #FF6B00;
    background: rgba(255, 107, 0, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.case-card.featured {
    border-color: rgba(255, 107, 0, 0.4);
    background: rgba(255, 107, 0, 0.05);
}

.case-badge {
    display: block;
    background: #FF6B00;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 22px;
    width: fit-content;
}

.case-logo {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.case-logo::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 60%; height: 3px;
    background: #FF6B00;
    border-radius: 2px;
}

.case-description {
    font-size: 16px;
    color: #AAAAAA;
    margin-bottom: 30px;
    margin-top: 16px;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat { text-align: center; }

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #FF6B00;
    margin-bottom: 4px;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
}

.case-link:hover {
    color: #FF6B00;
    border-color: #FF6B00;
    gap: 15px;
}

.case-link::after { content: '→'; font-size: 18px; }

/* Carousel controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    width: 52px; height: 52px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    background: transparent;
    color: #FFFFFF;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    border-color: #FF6B00;
    color: #FF6B00;
    background: rgba(255,107,0,0.1);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: #FF6B00;
    width: 24px;
    border-radius: 4px;
}

/* Integration Section */
.integration {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.integration .decoration-svg:nth-child(1) { top: 18%; right: 10%; }
.integration .decoration-svg:nth-child(2) { bottom: 15%; left: 5%; }
.integration .decoration-svg:nth-child(3) { top: 50%; right: 3%; }
.integration .decoration-svg:nth-child(4) { bottom: 35%; left: 15%; }

.integration-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.tag-cloud.right {
    justify-content: flex-start;
}

.tag {
    background: #F8F9FA;
    border: 2px solid #E5E5E5;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: default;
}

.tag:hover {
    border-color: #FF6B00;
    color: #FF6B00;
    background: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255,107,0,0.12);
}

.integration-center-block {
    background: linear-gradient(135deg, #1A1A1A, #2D2D2D);
    color: #FFFFFF;
    padding: 50px 40px;
    font-family: 'Manrope', sans-serif;
    font-size: 26px;
    font-weight: 800;
    border: 3px solid #FF6B00;
    border-radius: 24px;
    text-align: center;
    min-width: 200px;
    line-height: 1.3;
}

.integration-center-block .icb-brand { font-weight: 800; }
.integration-center-block .icb-pim { color: #FF6B00; }

.integration-footer-text {
    text-align: center;
    font-size: 18px;
    color: #666666;
    max-width: 800px;
    margin: 60px auto 0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.integration-cloud-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999999;
    margin-bottom: 20px;
    text-align: center;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C00 100%);
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta .decoration-svg { opacity: 0.12; }
.cta .decoration-svg:nth-child(1) { top: -15%; right: 15%; }
.cta .decoration-svg:nth-child(2) { bottom: -20%; left: 10%; }
.cta .decoration-svg:nth-child(3) { top: 30%; left: -5%; }

.cta h2 {
    font-family: 'Dela Gothic One', cursive;
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta .btn-primary {
    background: #1A1A1A;
    position: relative;
    z-index: 1;
}

.cta .btn-primary:hover {
    background: #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Footer */
footer {
    background: #111111;
    color: #FFFFFF;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    font-size: 26px;
    margin-bottom: 16px;
    display: block;
    color: #FFFFFF;
}

.footer-brand p {
    font-size: 14px;
    color: #888888;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888888;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.footer-social:hover {
    border-color: #FF6B00;
    color: #FF6B00;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #888888;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover { color: #FF6B00; }

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #888888;
}

.footer-contact-item a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover { color: #FF6B00; }

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #555555;
}

/* =============================================
   CASE STUDY PAGE
   ============================================= */

/* Back link */
.case-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 48px;
    transition: color 0.3s;
}

.case-back-link:hover { color: #FF6B00; }

/* Hero */
.case-hero {
    background: #FFFFFF;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.case-hero .decoration-svg:nth-child(1) { top: 5%; right: 5%; }
.case-hero .decoration-svg:nth-child(2) { bottom: 10%; left: 3%; }
.case-hero .decoration-svg:nth-child(3) { top: 30%; right: 2%; }

.case-hero-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.08);
    border: 1.5px solid rgba(255, 107, 0, 0.3);
    color: #FF6B00;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.case-hero-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.case-hero-title {
    font-family: 'Dela Gothic One', cursive;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.case-hero-segment {
    font-size: 16px;
    color: #FF6B00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.case-hero-about {
    font-size: 17px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 32px;
}

.case-hero-task {
    background: #F8F9FA;
    border-left: 4px solid #FF6B00;
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
}

.case-hero-task-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #FF6B00;
    margin-bottom: 8px;
}

.case-hero-task p {
    font-size: 15px;
    color: #333333;
    line-height: 1.6;
}

/* Hero stats panel */
.case-hero-stats {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.case-hero-stat {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.case-hero-stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.case-hero-stat-value {
    display: block;
    font-family: 'Dela Gothic One', cursive;
    font-size: 48px;
    font-weight: 400;
    color: #FF6B00;
    line-height: 1;
    margin-bottom: 10px;
}

.case-hero-stat-label {
    font-size: 13px;
    color: #AAAAAA;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Body section */
.case-body {
    background: #F8F9FA;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.case-body .decoration-svg:nth-child(1) { bottom: 15%; right: 3%; }
.case-body .decoration-svg:nth-child(2) { top: 20%; left: 2%; }

.case-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Case sections */
.case-section {
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid #E5E5E5;
}

.case-section:last-of-type {
    border-bottom: none;
}

.case-section-eyebrow {
    font-family: 'Dela Gothic One', cursive;
    font-size: 80px;
    font-weight: 400;
    color: rgba(255, 107, 0, 0.06);
    line-height: 1;
    margin-bottom: -20px;
}

.case-section-title {
    font-family: 'Dela Gothic One', cursive;
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    color: #1A1A1A;
    margin-bottom: 24px;
    position: relative;
}

.case-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #FF6B00;
    border-radius: 2px;
    margin-top: 16px;
}

.case-section-text:empty { display: none; }
.case-section-text {
    font-size: 17px;
    color: #555555;
    line-height: 1.75;
    margin-bottom: 24px;
}

.case-highlight-note {
    background: #FFFFFF;
    border: 2px solid #E5E5E5;
    border-radius: 16px;
    padding: 24px 28px;
    font-size: 16px;
    color: #333333;
    line-height: 1.65;
    font-style: italic;
}

/* Solution blocks */
.case-solution-block {
    margin-bottom: 36px;
}

.case-sub-title {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.case-sub-title::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FF6B00;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Features list */
.case-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.case-feature-item {
    display: flex;
    gap: 16px;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 14px;
    padding: 20px 22px;
    transition: border-color 0.3s;
}

.case-feature-item:hover {
    border-color: rgba(255, 107, 0, 0.4);
}

.case-feature-dot {
    width: 10px;
    height: 10px;
    background: #FF6B00;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.case-feature-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.case-feature-item span {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

/* Result key */
.case-result-key {
    background: rgba(255, 107, 0, 0.06);
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 16px;
    padding: 24px 28px;
    font-size: 16px;
    color: #333333;
    line-height: 1.65;
    font-weight: 500;
}

/* Status block */
.case-status-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #FFFFFF;
    border: 2px solid #E5E5E5;
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 40px;
}

.case-status-dot {
    width: 12px;
    height: 12px;
    background: #22C55E;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.case-status-block strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1A1A1A;
    margin-bottom: 6px;
}

.case-status-block p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Quote */
.case-quote {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    border-radius: 24px;
    padding: 50px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.case-quote::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,107,0,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.case-quote-icon {
    font-family: 'Dela Gothic One', cursive;
    font-size: 80px;
    color: #FF6B00;
    line-height: 0.7;
    margin-bottom: 24px;
    display: block;
}

.case-quote p {
    font-size: 20px;
    line-height: 1.65;
    color: #FFFFFF;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Sidebar */
.case-sidebar {
    position: sticky;
    top: 32px;
}

.case-sidebar-card {
    background: #FFFFFF;
    border: 2px solid #E5E5E5;
    border-radius: 20px;
    padding: 36px 32px;
}

.case-sidebar-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #FF6B00;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E5E5;
}

.case-facts-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.case-fact-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 14px 0;
    border-bottom: 1px solid #F0F0F0;
}

.case-fact-item:last-child { border-bottom: none; }

.case-fact-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #AAAAAA;
}

.case-fact-value {
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
}

/* Case CTA */
.case-cta {
    background: linear-gradient(135deg, #FF6B00 0%, #E55F00 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.case-cta .decoration-svg { opacity: 0.1; }
.case-cta .decoration-svg:nth-child(1) { top: 5%; right: 5%; }
.case-cta .decoration-svg:nth-child(2) { bottom: 5%; left: 5%; }

.case-cta-inner {
    position: relative;
    z-index: 1;
}

.case-cta h2 {
    font-family: 'Dela Gothic One', cursive;
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.case-cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
}

.case-cta .btn-primary {
    background: #FFFFFF;
    color: #FF6B00;
    font-size: 17px;
    padding: 16px 44px;
}

.case-cta .btn-primary:hover {
    background: #F0F0F0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Live / Plans sections */
.case-eyebrow-live { color: #4a90d9; margin-bottom: 8px; }
.case-eyebrow-plans { color: #28a745; margin-bottom: 8px; }
.case-live-section .case-section-title::after { background: #4a90d9; }
.case-plans-section .case-section-title::after { background: #28a745; }

/* Accent block */
.case-accent-block {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    border-radius: 24px;
    padding: 48px;
    margin-top: 40px;
    font-family: 'Dela Gothic One', cursive;
    font-size: 22px;
    color: #FFFFFF;
    line-height: 1.6;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.case-accent-block::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 2px solid rgba(255, 107, 0, 0.35);
    pointer-events: none;
}

@media (max-width: 768px) {
    .case-accent-block { padding: 32px; font-size: 17px; }
}

/* Responsive — Case */
@media (max-width: 1200px) {
    .case-hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .case-hero-stats { flex-direction: row; padding: 32px; }
    .case-hero-stat { padding-bottom: 0; border-bottom: none; padding-right: 32px; border-right: 1px solid rgba(255,255,255,0.08); }
    .case-hero-stat:last-child { padding-right: 0; border-right: none; }
    .case-layout { grid-template-columns: 1fr; }
    .case-sidebar { position: static; }
}

@media (max-width: 768px) {
    .case-hero-title { font-size: 40px; }
    .case-hero-stats { flex-direction: column; gap: 24px; }
    .case-hero-stat { padding-right: 0; border-right: none; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .case-hero-stat:last-child { padding-bottom: 0; border-bottom: none; }
    .case-section-eyebrow { font-size: 60px; }
    .case-section-title { font-size: 28px; }
    .case-quote { padding: 32px; }
    .case-quote p { font-size: 17px; }
    .case-cta h2 { font-size: 32px; }
    .case-cta p { font-size: 17px; }
}

/* Responsive */
@media (max-width: 1200px) {
    .pim-features-grid { grid-template-columns: 1fr; }
    .integration-layout { grid-template-columns: 1fr; text-align: center; }
    .tag-cloud, .tag-cloud.right { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
    .hero h1 { font-size: 60px; }
    .cards { grid-template-columns: 1fr; }
    .case-card { flex: 0 0 100%; min-width: 100%; }
    .pim-features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 40px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .pim-features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    nav { display: none; }
}

/* =============================================
   BURGER BUTTON + MOBILE NAV DRAWER
   ============================================= */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1A1A1A;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.burger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger-btn.open span:nth-child(2) { opacity: 0; width: 0; }
.burger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
    display: none;
    flex-direction: column;
    background: #FFFFFF;
    border-top: 1px solid #E5E5E5;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    text-decoration: none;
    border-bottom: 1px solid #F0F0F0;
    display: block;
    transition: color 0.2s, background 0.2s;
}
.mobile-nav a:active { color: #FF6B00; background: rgba(255,107,0,0.04); }
.mobile-nav .mobile-nav-cta { padding: 16px 24px 20px; }
.mobile-nav .mobile-nav-cta .btn-primary { width: 100%; text-align: center; font-size: 15px; }

/* =============================================
   MOBILE FIXES (≤768px)
   ============================================= */
@media (max-width: 768px) {
    /* Container */
    .container { padding: 0 20px; }

    /* Header */
    header { overflow: visible; position: relative; }
    header .decoration-svg { display: none; }
    .logo { font-size: 20px; white-space: nowrap; }
    .header-cta { display: none; }
    .burger-btn { display: flex; }

    /* Hero */
    .hero { padding: 80px 0 60px; }
    .hero-eyebrow { font-size: 10px; letter-spacing: 1px; padding: 6px 14px; }
    .hero h1 { font-size: 36px; letter-spacing: -0.5px; margin-bottom: 24px; }
    .hero p { font-size: 17px; margin-bottom: 36px; }

    /* Section headers */
    .section-header h2 { font-size: 26px; }
    .cta h2 { font-size: 30px; }
    .cta p { font-size: 17px; }

    /* Clients section — hide arrows, CSS swipe */
    .clients-section { padding: 60px 0; }
    .clients-arrow { display: none; }
    .clients-slider-wrapper { gap: 0; }
    .clients-track-outer {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .clients-track-outer::-webkit-scrollbar { display: none; }
    .clients-track { transform: none !important; transition: none !important; }
    .client-slide { flex: 0 0 44vw; scroll-snap-align: start; }
    .client-slide.featured { font-size: 15px; }

    /* Scenarios — horizontal swipe slider */
    .scenarios { padding: 60px 0; }
    .cards {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        gap: 16px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .cards::-webkit-scrollbar { display: none; }
    .card {
        flex: 0 0 80vw;
        min-width: 0;
        scroll-snap-align: start;
        padding: 32px 24px;
    }
    .card:hover { transform: none; }

    /* PIM features — horizontal swipe slider */
    .pim-features-section { padding: 60px 0; }
    .pim-features-grid {
        display: flex !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        gap: 16px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .pim-features-grid::-webkit-scrollbar { display: none; }
    .pim-feature-block {
        flex: 0 0 80vw;
        min-width: 0;
        scroll-snap-align: start;
    }

    /* Cases carousel — CSS scroll on mobile */
    .cases { padding: 60px 0; }
    .carousel-controls { display: none; }
    .cases-carousel-wrapper {
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding: 0;
        margin: 0;
    }
    .cases-carousel-wrapper::-webkit-scrollbar { display: none; }
    .cases-carousel { transform: none !important; transition: none !important; gap: 16px; }
    .case-card {
        flex: 0 0 85vw;
        min-width: 0;
        scroll-snap-align: start;
        padding: 28px 20px;
    }

    /* Integration */
    .integration { padding: 60px 0; }
    .integration-center-block { padding: 28px 20px; font-size: 20px; min-width: 0; }
    .tag { font-size: 12px; padding: 8px 14px; }
    .integration-footer-text { font-size: 16px; }

    /* Case card stats — stack vertically on mobile */
    .case-stats { grid-template-columns: 1fr; gap: 0; }
    .stat { text-align: left; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 12px; }
    .stat:last-child { border-bottom: none; }
    .stat-number { font-size: 22px; word-break: break-word; overflow-wrap: break-word; margin-bottom: 0; }
    .stat-label { text-align: left; }

    /* Case hero stat values — wrap long text */
    .case-hero-stat-value { font-size: 36px; word-break: break-word; overflow-wrap: break-word; }
}

/* =============================================
   SCROLL TO TOP BUTTON
   ============================================= */
.scroll-top-btn {
    position: fixed;
    bottom: 28px;
    right: 20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #FFFFFF;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1A1A;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
    z-index: 1000;
}
.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.scroll-top-btn:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

/* =============================================
   NEXT CASE SECTION
   ============================================= */
.next-case-section {
    background: #F8F9FA;
    padding: 32px 0;
    border-top: 2px solid #E5E5E5;
}
.next-case-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #1A1A1A;
    padding: 24px 32px;
    border: 2px solid #E5E5E5;
    border-radius: 20px;
    background: #FFFFFF;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.next-case-link:hover {
    border-color: #FF6B00;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.next-case-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #FF6B00;
    white-space: nowrap;
}
.next-case-name {
    font-size: 20px;
    font-weight: 700;
    flex: 1;
}
.next-case-segment {
    font-size: 14px;
    color: #666666;
}
.next-case-arrow {
    font-size: 22px;
    color: #FF6B00;
    transition: transform 0.3s;
}
.next-case-link:hover .next-case-arrow { transform: translateX(6px); }

@media (max-width: 768px) {
    .next-case-link { flex-wrap: wrap; padding: 20px; gap: 6px; }
    .next-case-name { font-size: 18px; flex: 1 1 100%; }
    .next-case-segment { flex: 1 1 100%; }
}

/* =============================================
   UTILITY TEXT SIZE CLASSES (for admin HTML content)
   ============================================= */
.text-xs  { font-size: 0.55em !important; line-height: 1.2; }
.text-sm  { font-size: 0.70em !important; line-height: 1.2; }
.text-base { font-size: 0.85em !important; }

/* =============================================
   CONTACT MODAL
   ============================================= */
.contact-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.contact-modal.open { display: flex; }

.contact-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.contact-modal-box {
    position: relative;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 48px;
    max-width: 620px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
    z-index: 1;
    animation: modalIn 0.25s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.contact-modal-close {
    position: absolute;
    top: 18px; right: 18px;
    background: #F0F0F0;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
}
.contact-modal-close:hover { background: #E5E5E5; color: #1A1A1A; }

.contact-modal-title {
    font-family: 'Dela Gothic One', cursive;
    font-size: 26px;
    font-weight: 400;
    text-transform: uppercase;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.contact-modal-sub {
    font-size: 15px;
    color: #666666;
    margin-bottom: 28px;
    line-height: 1.5;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.contact-field label {
    font-size: 12px;
    font-weight: 700;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-field input,
.contact-field textarea {
    padding: 12px 14px;
    border: 2px solid #E5E5E5;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Manrope', sans-serif;
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
    color: #1A1A1A;
}

.contact-field input:focus,
.contact-field textarea:focus { border-color: #FF6B00; }
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: #AAAAAA; }
.contact-field textarea { resize: vertical; min-height: 100px; }

.form-status {
    font-size: 14px;
    min-height: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}
.form-status.form-success { color: #22C55E; }
.form-status.form-error   { color: #EF4444; }

.contact-submit { width: 100%; padding: 16px; font-size: 16px; }

@media (max-width: 600px) {
    .contact-modal-box { padding: 28px 20px; border-radius: 16px; }
    .contact-form-row  { grid-template-columns: 1fr; }
    .contact-modal-title { font-size: 20px; }
}
