/* ─── ATESS Ukraine — Main Stylesheet ─── */

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

:root {
    --green:        #00c896;
    --green-dark:   #009e76;
    --green-light:  #00e0a8;
    --black:        #0a0e14;
    --dark:         #111820;
    --dark2:        #161e28;
    --dark3:        #1e2a38;
    --gray:         #8a9bb0;
    --gray-light:   #c8d6e5;
    --white:        #ffffff;
    --border:       rgba(255,255,255,0.08);
    --radius-sm:    6px;
    --radius-md:    12px;
    --radius-lg:    16px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* ─── LAYOUT ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }
.section-bg-dark2 { background: var(--dark2); }
.section-bg-black { background: var(--black); }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { line-height: 1.15; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}
.section-header p { font-size: 17px; color: var(--gray); max-width: 560px; margin: 0 auto; }

/* ─── SECTION TAG ─── */
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,200,150,0.1);
    border: 1px solid rgba(0,200,150,0.25);
    color: var(--green);
    font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    padding: 6px 14px; border-radius: 20px; margin-bottom: 18px;
}
.section-tag::before {
    content: ''; width: 6px; height: 6px;
    background: var(--green); border-radius: 50%;
}

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--green); color: var(--black);
    font-weight: 700; font-size: 14px; letter-spacing: .5px;
    padding: 14px 28px; border-radius: var(--radius-sm);
    border: none; transition: all .25s;
}
.btn-primary:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,200,150,0.35);
    color: var(--black);
}
.btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--white);
    font-weight: 600; font-size: 14px;
    padding: 13px 27px; border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.25);
    transition: all .25s;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-arrow { width: 16px; height: 16px; display: flex; align-items: center; }
.btn-arrow svg { width: 16px; height: 16px; transition: transform .25s; }
.btn-primary:hover .btn-arrow svg,
.btn-outline:hover .btn-arrow svg { transform: translateX(4px); }
/* Arrow icon used inline in templates */
.arrow-icon { width: 16px; height: 16px; flex-shrink: 0; transition: transform .25s; }
.btn-primary:hover .arrow-icon,
.btn-outline:hover .arrow-icon { transform: translateX(4px); }

/* ─────────────────────────────
   HEADER
───────────────────────────── */
#header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0; height: 72px;
    display: flex; align-items: center;
    transition: all .3s;
}
#header.scrolled {
    background: rgba(10,14,20,0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    height: 64px;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between; width: 100%;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
    width: 40px; height: 40px; background: var(--green);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; color: var(--black); }
.logo-text { font-size: 20px; font-weight: 800; letter-spacing: -.5px; line-height: 1.2; }
.logo-text span { color: var(--green); }
.logo-sub { font-size: 10px; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; }

/* Nav */
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
    font-size: 14px; font-weight: 500; color: var(--gray-light);
    padding: 8px 14px; border-radius: var(--radius-sm); transition: all .2s;
    position: relative;
}
.header-nav a:hover,
.header-nav a.current-menu-item { color: var(--white); background: rgba(255,255,255,0.06); }
/* WordPress adds .current-menu-item dot */
.header-nav a.current-menu-item::after {
    content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; background: var(--green); border-radius: 50%;
}
.header-nav ul { display: flex; gap: 4px; list-style: none; }
.header-nav ul li { position: relative; }
.header-nav ul li a { display: block; }

/* Mobile burger */
.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; padding: 6px; cursor: pointer;
}
.mobile-menu-btn span {
    width: 24px; height: 2px; background: var(--white);
    border-radius: 2px; transition: all .3s; display: block;
}
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav Overlay */
#mobile-nav {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: rgba(10,14,20,0.97); backdrop-filter: blur(20px);
    flex-direction: column; padding: 96px 32px 40px; gap: 4px;
    overflow-y: auto;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
    font-size: 22px; font-weight: 600; padding: 16px 0;
    border-bottom: 1px solid var(--border); display: block;
}
#mobile-nav ul { display: flex; flex-direction: column; gap: 4px; width: 100%; }
#mobile-nav ul li a { font-size: 22px; font-weight: 600; padding: 16px 0; border-bottom: 1px solid var(--border); display: block; }
.mobile-nav-cta { margin-top: 24px; }

/* ─────────────────────────────
   HERO
───────────────────────────── */
#hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #080c12 0%, #0d1520 40%, #0a1a14 100%);
}
.hero-grid {
    position: absolute; inset: 0; opacity: .06;
    background-image:
        linear-gradient(rgba(0,200,150,1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,200,150,1) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero-glow {
    position: absolute; top: -200px; right: -100px;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,200,150,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.hero-glow2 {
    position: absolute; bottom: -150px; left: -150px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,100,200,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding-top: 80px; max-width: 700px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,200,150,0.08); border: 1px solid rgba(0,200,150,0.2);
    padding: 8px 16px; border-radius: 30px; margin-bottom: 28px;
    font-size: 13px; font-weight: 500; color: var(--green);
}
.hero-badge-dot {
    width: 8px; height: 8px; background: var(--green);
    border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }

.hero h1 {
    font-size: clamp(40px, 5.5vw, 74px);
    font-weight: 800; line-height: 1.08; letter-spacing: -2px; margin-bottom: 24px;
}
.hero h1 .highlight { color: var(--green); display: block; }
.hero-sub { font-size: 18px; color: var(--gray); max-width: 540px; margin-bottom: 40px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stat-num { font-size: 36px; font-weight: 800; letter-spacing: -1px; }
.hero-stat-num span { color: var(--green); }
.hero-stat-label { font-size: 13px; color: var(--gray); margin-top: 2px; }

/* Hero Device Card */
.hero-visual {
    position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    width: 44%; height: 80vh; display: flex; align-items: center; justify-content: center;
    border-left: 1px solid rgba(0,200,150,0.1);
    background: linear-gradient(135deg, rgba(0,200,150,0.03), rgba(0,50,200,0.02));
}
.hero-device-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg); padding: 24px; width: 360px;
    backdrop-filter: blur(10px); position: relative;
}
.device-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.device-title { font-size: 12px; font-weight: 600; color: var(--gray); letter-spacing: 1.5px; text-transform: uppercase; }
.device-status { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--green); font-weight: 600; }
.device-status::before { content:''; width:6px; height:6px; background:var(--green); border-radius:50%; animation: pulse 2s infinite; }
.power-display {
    text-align: center; padding: 24px 0; margin-bottom: 20px;
    border: 1px solid rgba(0,200,150,0.15); border-radius: var(--radius-md);
    background: rgba(0,200,150,0.04);
}
.power-value { font-size: 48px; font-weight: 800; color: var(--green); letter-spacing: -2px; }
.power-unit { font-size: 13px; color: var(--gray); margin-top: 4px; }
.device-metrics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.metric-item {
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    border-radius: 10px; padding: 12px 10px; text-align: center;
}
.metric-val { font-size: 18px; font-weight: 700; }
.metric-lbl { font-size: 10px; color: var(--gray); margin-top: 2px; letter-spacing: .5px; text-transform: uppercase; }
.device-bar { height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.device-bar-fill {
    height: 100%; width: 0; border-radius: 3px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    animation: bar-fill 1.5s ease .5s forwards;
}
@keyframes bar-fill { to { width: 72%; } }
.device-bar-labels { display: flex; justify-content: space-between; margin-top: 8px; font-size: 11px; color: var(--gray); }

/* Floating badges */
.floating-badge {
    position: absolute;
    background: rgba(0,200,150,0.12); border: 1px solid rgba(0,200,150,0.25);
    border-radius: 10px; padding: 10px 14px; backdrop-filter: blur(10px); white-space: nowrap;
}
.floating-badge .fb-val { font-size: 17px; font-weight: 700; color: var(--green); }
.floating-badge .fb-lbl { font-size: 11px; color: var(--gray); }
.fb1 { top: 15%; left: -30px; animation: float 4s ease-in-out infinite; }
.fb2 { bottom: 20%; right: 20px; animation: float 4s ease-in-out infinite 1.5s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ─────────────────────────────
   TRUST BAR
───────────────────────────── */
.trust-bar {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}
.trust-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--gray); font-size: 14px; font-weight: 500; }
.trust-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: rgba(0,200,150,0.1); border: 1px solid rgba(0,200,150,0.2);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 17px; height: 17px; stroke: var(--green); fill: none; stroke-width: 2; }

/* ─────────────────────────────
   ABOUT
───────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { font-size: clamp(28px, 3vw, 44px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 24px; }
.about-text h2 em { font-style: normal; color: var(--green); }
.about-text p { color: var(--gray); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.about-features { margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; }
.about-feature-icon {
    width: 36px; height: 36px; flex-shrink: 0; margin-top: 2px;
    background: rgba(0,200,150,0.1); border: 1px solid rgba(0,200,150,0.2);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.about-feature-icon svg { width: 16px; height: 16px; stroke: var(--green); fill: none; stroke-width: 2.5; }
.about-feature h4 { font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.about-feature p { font-size: 13px; color: var(--gray); margin: 0; }
.stats-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
    background: var(--border); border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border);
}
.stat-card { background: var(--dark3); padding: 32px 28px; }
.stat-card .num { font-size: 38px; font-weight: 800; color: var(--green); letter-spacing: -2px; margin-bottom: 6px; }
.stat-card .num sup { font-size: 18px; vertical-align: super; }
.stat-card .lbl { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ─────────────────────────────
   PRODUCTS
───────────────────────────── */
.products-tabs { display: flex; gap: 4px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap; }
.tab-btn {
    padding: 10px 22px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 500;
    border: 1px solid var(--border); background: transparent; color: var(--gray);
    cursor: pointer; transition: all .2s;
}
.tab-btn.active,
.tab-btn:hover { background: rgba(0,200,150,0.1); border-color: rgba(0,200,150,0.3); color: var(--green); }
.tab-btn.active { font-weight: 600; }

.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.product-card {
    background: var(--dark2); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden; transition: all .3s;
}
.product-card:hover {
    border-color: rgba(0,200,150,0.3); transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.product-img {
    height: 220px; background: linear-gradient(135deg, var(--dark3), var(--dark2));
    display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder { font-size: 64px; opacity: .35; transition: all .3s; }
.product-card:hover .product-img-placeholder { transform: scale(1.1); opacity: .5; }
.product-img-glow {
    position: absolute; inset: 0;
    background: radial-gradient(circle at center, rgba(0,200,150,0.08), transparent 70%);
    opacity: 0; transition: opacity .3s;
}
.product-card:hover .product-img-glow { opacity: 1; }
.product-badge {
    position: absolute; top: 14px; left: 14px;
    background: rgba(0,200,150,0.15); border: 1px solid rgba(0,200,150,0.25);
    color: var(--green); font-size: 10px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
}
.product-body { padding: 24px; }
.product-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.product-body p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 18px; }
.product-specs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.product-specs span {
    font-size: 11px; color: var(--gray);
    background: rgba(255,255,255,0.04); padding: 4px 10px; border-radius: 4px;
}
.product-link { font-size: 13px; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 6px; transition: gap .2s; }
.product-link svg { width: 14px; height: 14px; transition: transform .2s; }
.product-card:hover .product-link { gap: 10px; }
.product-card:hover .product-link svg { transform: translateX(4px); }

.products-more { text-align: center; margin-top: 48px; }

/* ─────────────────────────────
   SOLUTIONS
───────────────────────────── */
.solutions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.solution-card {
    background: var(--dark3); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px; transition: all .3s; position: relative; overflow: hidden;
}
.solution-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--green), transparent); opacity: 0; transition: opacity .3s;
}
.solution-card:hover { border-color: rgba(0,200,150,0.2); transform: translateY(-2px); }
.solution-card:hover::before { opacity: 1; }
.solution-icon {
    width: 52px; height: 52px; background: rgba(0,200,150,0.1);
    border: 1px solid rgba(0,200,150,0.2); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.solution-icon svg { width: 24px; height: 24px; stroke: var(--green); fill: none; stroke-width: 2; }
.solution-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.solution-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }
.solution-link { font-size: 13px; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 8px; }
.solution-link svg { width: 14px; height: 14px; transition: transform .2s; }
.solution-card:hover .solution-link svg { transform: translateX(4px); }

/* ─────────────────────────────
   WHY US
───────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-card {
    background: var(--dark2); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px 28px; text-align: center; transition: all .3s;
}
.why-card:hover { border-color: rgba(0,200,150,0.25); background: var(--dark3); }
.why-icon {
    width: 60px; height: 60px; margin: 0 auto 20px;
    background: rgba(0,200,150,0.08); border: 1px solid rgba(0,200,150,0.15);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 28px; height: 28px; stroke: var(--green); fill: none; stroke-width: 1.8; }
.why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ─────────────────────────────
   CASES
───────────────────────────── */
.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.case-card {
    background: var(--dark3); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden; transition: all .3s;
}
.case-card:hover { transform: translateY(-4px); border-color: rgba(0,200,150,0.2); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.case-img {
    height: 200px; background: linear-gradient(135deg, #0d2a20, #1a3030);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.case-img img { width: 100%; height: 100%; object-fit: cover; }
.case-img .emoji-placeholder { font-size: 48px; }
.case-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%);
}
.case-badge {
    position: absolute; top: 14px; right: 14px;
    background: var(--green); color: var(--black);
    font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 4px;
}
.case-body { padding: 24px; }
.case-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.case-body p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.case-meta { display: flex; gap: 16px; font-size: 12px; color: var(--gray); flex-wrap: wrap; }
.case-meta span { display: flex; align-items: center; gap: 4px; }

.cases-more { text-align: center; margin-top: 48px; }

/* ─────────────────────────────
   NEWS
───────────────────────────── */
.news-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; }
.news-main {
    background: var(--dark2); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden; transition: border-color .3s;
}
.news-main:hover { border-color: rgba(0,200,150,0.2); }
.news-main-img {
    height: 260px; background: linear-gradient(135deg, #0d1e30, #102030);
    overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.news-main-img img { width: 100%; height: 100%; object-fit: cover; }
.news-main-img .emoji-placeholder { font-size: 72px; }
.news-main-body { padding: 28px; }
.news-date { font-size: 12px; color: var(--green); font-weight: 600; margin-bottom: 12px; letter-spacing: .5px; text-transform: uppercase; }
.news-main-body h3 { font-size: 22px; font-weight: 700; line-height: 1.4; margin-bottom: 12px; }
.news-main-body p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.news-list { display: flex; flex-direction: column; gap: 14px; }
.news-item {
    background: var(--dark2); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 18px; display: flex; gap: 16px;
    align-items: flex-start; transition: border-color .3s;
}
.news-item:hover { border-color: rgba(0,200,150,0.2); }
.news-item-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(0,200,150,0.08); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 22px;
    overflow: hidden;
}
.news-item-icon img { width: 100%; height: 100%; object-fit: cover; }
.news-item-text .news-date { display: block; margin-bottom: 5px; }
.news-item-text h4 { font-size: 14px; font-weight: 600; line-height: 1.4; }

/* ─────────────────────────────
   CONTACT
───────────────────────────── */
#contact {
    background: linear-gradient(135deg, #080e16 0%, #0a1a14 100%);
    padding: 100px 0; position: relative; overflow: hidden;
}
.contact-bg-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,200,150,0.06), transparent 70%);
    pointer-events: none;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 2; }
.contact-text h2 { font-size: clamp(28px, 3vw, 44px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 20px; }
.contact-text h2 em { font-style: normal; color: var(--green); }
.contact-text p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 36px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.ci-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(0,200,150,0.1); border: 1px solid rgba(0,200,150,0.2);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.ci-icon svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 2; }
.ci-label { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.ci-value { font-size: 15px; font-weight: 600; }

.contact-form {
    background: var(--dark2); border: 1px solid var(--border);
    border-radius: 20px; padding: 40px;
}
.form-title { font-size: 20px; font-weight: 700; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block; font-size: 12px; font-weight: 600; color: var(--gray);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.form-control {
    width: 100%; background: rgba(255,255,255,0.04);
    border: 1px solid var(--border); border-radius: 8px;
    padding: 12px 16px; color: var(--white); font-size: 14px; font-family: inherit;
    transition: border-color .2s; outline: none;
}
.form-control:focus { border-color: var(--green); }
.form-control::placeholder { color: rgba(255,255,255,0.2); }
select.form-control {
    appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9bb0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
    padding-right: 36px;
}
textarea.form-control { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; margin-top: 4px; justify-content: center; }

/* ── CF7 global ── */
/* Прибираємо зайві <p> та <br> що CF7 додає автоматично */
.wpcf7-form p { margin: 0; }
.wpcf7-form br { display: none; }
.wpcf7-form-control-wrap { display: block; }

/* Textarea: обмежуємо висоту незалежно від rows="" */
.wpcf7-form textarea.form-control { min-height: 120px; max-height: 200px; height: 120px; }

/* Кнопка: повернути inline-flex без зайвих відступів */
.wpcf7-form button.btn-primary {
    display: inline-flex; align-items: center;
    margin-top: 4px;
}
.wpcf7-form .btn-arrow { display: inline-flex; align-items: center; }

/* Валідація */
.wpcf7-not-valid { border-color: #e74c3c !important; }
.wpcf7-not-valid-tip { font-size: 11px; color: #e74c3c; margin-top: 4px; display: block; }
.wpcf7-response-output {
    margin-top: 16px; padding: 12px 16px;
    border-radius: 8px; font-size: 13px; border: none !important;
}
.wpcf7-mail-sent-ok {
    background: rgba(0,200,150,0.1);
    border: 1px solid rgba(0,200,150,0.3) !important;
    color: #00c896;
}
.wpcf7-mail-sent-ng,
.wpcf7-spam-blocked {
    background: rgba(231,76,60,0.1);
    border: 1px solid rgba(231,76,60,0.3) !important;
    color: #e74c3c;
}
.wpcf7-validation-errors {
    background: rgba(243,156,18,0.1);
    border: 1px solid rgba(243,156,18,0.3) !important;
    color: #f39c12;
}

/* ─────────────────────────────
   FOOTER
───────────────────────────── */
.site-footer {
    background: var(--dark); border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
    width: 36px; height: 36px; border: 1px solid var(--border);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    transition: all .2s;
}
.social-link:hover { border-color: var(--green); background: rgba(0,200,150,0.1); }
.social-link svg { width: 16px; height: 16px; stroke: var(--gray); fill: none; stroke-width: 2; transition: stroke .2s; }
.social-link:hover svg { stroke: var(--green); }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--gray); transition: color .2s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom {
    border-top: 1px solid var(--border); padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--gray); }
.footer-copy a { color: var(--green); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--gray); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
/* WP nav in footer */
.footer-links ul { display: flex; gap: 20px; list-style: none; }
.footer-links ul li a { font-size: 12px; color: var(--gray); transition: color .2s; }
.footer-links ul li a:hover { color: var(--white); }

/* ─────────────────────────────
   REVEAL ANIMATION
───────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ─────────────────────────────
   PAGE CONTENT
───────────────────────────── */
.page-content .page-title {
    font-size: clamp(28px, 3vw, 48px); font-weight: 800; letter-spacing: -1.5px;
    margin-bottom: 32px;
}
.entry-content { font-size: 16px; color: var(--gray); line-height: 1.8; max-width: 700px; }
.entry-content h2, .entry-content h3 { color: var(--white); margin: 32px 0 16px; }
.entry-content a { color: var(--green); }
.entry-content a:hover { text-decoration: underline; }

/* ─────────────────────────────
   RESPONSIVE
───────────────────────────── */
@media (max-width: 1100px) {
    .products-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .cases-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hero-visual { display: none; }
}
@media (max-width: 900px) {
    .news-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .solutions-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .header-nav, .header-cta { display: none; }
    .mobile-menu-btn { display: flex; }
    .products-grid { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 28px; }
    .section { padding: 64px 0; }
    .container { padding: 0 20px; }
}
@media (max-width: 560px) {
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .trust-inner { gap: 20px; }
}
