:root {
--bg: #f7f8fb;
--bg-2: #eef2f8;
--bg-3: #ffffff;
--surface: #ffffff;
--line: rgba(15, 23, 42, 0.08);
--line-strong: rgba(15, 23, 42, 0.14);
--text: #0f172a;
--text-2: #1e293b;
--muted: #64748b;
--muted-2: #94a3b8;
--accent-green: #059669;
--accent-yellow: #d97706;
--accent-blue: #2563eb;
--accent-navy: #0b2545;
--accent-gradient: linear-gradient(135deg, #059669 0%, #2563eb 55%, #d97706 100%);
--radius: 14px;
--radius-lg: 24px;
--maxw: 1280px;
--ease: cubic-bezier(.2, .7, .2, 1);
--shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
--shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
--shadow-lg: 0 20px 40px -20px rgba(15, 23, 42, 0.18), 0 8px 20px -10px rgba(15, 23, 42, 0.08);
--shadow-xl: 0 30px 60px -20px rgba(15, 23, 42, 0.22), 0 12px 30px -15px rgba(15, 23, 42, 0.1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.55;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
font-family: 'Space Grotesk', 'Inter', sans-serif;
font-weight: 600;
letter-spacing: -0.02em;
line-height: 1.35;
color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
width: 100%;
max-width: var(--maxw);
margin: 0 auto;
padding: 0 clamp(20px, 4vw, 48px);
} .nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 60;
display: grid;
grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
align-items: center;
min-height: 104px;
padding: 26px clamp(20px, 4vw, 48px) 13px;
transition: background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease), min-height .35s var(--ease), padding .35s var(--ease);
border-bottom: 1px solid transparent;
}
.nav.scrolled {
background: rgba(255, 255, 255, .85);
backdrop-filter: blur(18px) saturate(140%);
-webkit-backdrop-filter: blur(18px) saturate(140%);
border-bottom-color: var(--line);
box-shadow: var(--shadow-sm);
min-height: 82px;
padding-top: 13px;
}
.nav .logo {
position: absolute;
left: clamp(34px, 4vw, 64px);
top: 50%;
transform: translateY(-50%);
display: flex;
align-items: center;
z-index: 2;
}
.nav .logo-img {
height: 84px;
width: auto;
display: block;
flex-shrink: 0;
transition: height .35s var(--ease);
}
.nav.scrolled .logo-img {
height: 48px;
}
@media (max-width: 640px) {
.nav { padding-top: 22px; padding-bottom: 14px; min-height: 80px; }
.nav.scrolled { padding-top: 14px; min-height: 68px; }
.nav .logo-img { height: 56px; }
.nav.scrolled .logo-img { height: 36px; }
}
.nav-links { grid-column: 2; display: flex; gap: 36px; list-style: none; }
.nav-links a {
font-size: 13px;
font-weight: 500;
letter-spacing: .08em;
text-transform: uppercase;
color: var(--muted);
position: relative;
padding: 6px 0;
transition: color .25s var(--ease);
}
.nav-links a::after {
content: '';
position: absolute;
left: 0; right: 0; bottom: 0;
height: 2px;
background: var(--accent-gradient);
transform: scaleX(0);
transform-origin: left;
transition: transform .35s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
grid-column: 3;
justify-self: end;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 18px;
border-radius: 999px;
background: var(--accent-navy);
color: #fff;
border: 1px solid var(--accent-navy);
font-size: 13px;
font-weight: 500;
letter-spacing: .04em;
transition: all .25s var(--ease);
box-shadow: var(--shadow-sm);
}
.nav-cta:hover {
background: #081a35;
transform: translateY(-1px);
box-shadow: var(--shadow-md);
}
.menu-btn {
grid-column: 3;
justify-self: end;
display: none;
background: none;
border: 0;
color: var(--text);
cursor: pointer;
padding: 8px;
} .hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
padding: 120px clamp(20px, 4vw, 48px) 80px;
overflow: hidden;
isolation: isolate;
}
.hero-bg {
position: absolute;
inset: 0;
z-index: -2;
background:
radial-gradient(ellipse at 20% 20%, rgba(5, 150, 105, .1), transparent 55%),
radial-gradient(ellipse at 80% 10%, rgba(37, 99, 235, .1), transparent 55%),
radial-gradient(ellipse at 60% 90%, rgba(217, 119, 6, .08), transparent 55%),
linear-gradient(180deg, #ffffff 0%, #f1f5f9 70%, #ffffff 100%);
}
.hero-grid {
position: absolute;
inset: 0;
z-index: -1;
opacity: .5;
background-image:
linear-gradient(rgba(15, 23, 42, .05) 1px, transparent 1px),
linear-gradient(90deg, rgba(15, 23, 42, .05) 1px, transparent 1px);
background-size: 64px 64px;
mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 75%);
-webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 75%);
}
.hero-inner {
width: 100%;
max-width: var(--maxw);
margin: 0 auto;
display: grid;
grid-template-columns: 1.15fr 1fr;
gap: 72px;
align-items: center;
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 8px 14px;
border-radius: 999px;
background: rgba(5, 150, 105, .08);
border: 1px solid rgba(5, 150, 105, .2);
font-size: 12px;
font-weight: 600;
letter-spacing: .12em;
text-transform: uppercase;
color: var(--accent-green);
margin-bottom: 28px;
}
.eyebrow .dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--accent-green);
box-shadow: 0 0 10px rgba(5, 150, 105, .6);
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: .4; }
}
.hero h1 {
font-size: clamp(40px, 4.4vw, 64px);
line-height: 1.2;
margin-bottom: 24px;
color: var(--text);
}
.hero h1 .grad {
background: var(--accent-gradient);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
}
.hero p.lead {
font-size: clamp(16px, 1.2vw, 19px);
color: var(--muted);
max-width: 540px;
margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 15px 26px;
border-radius: 999px;
font-size: 14px;
font-weight: 600;
letter-spacing: .02em;
transition: all .3s var(--ease);
cursor: pointer;
border: 0;
}
.btn-primary {
background: var(--accent-navy);
color: #fff;
box-shadow: var(--shadow-md);
}
.btn-primary:hover {
transform: translateY(-2px);
background: #081a35;
box-shadow: var(--shadow-lg);
}
.btn-ghost {
background: #ffffff;
color: var(--text);
border: 1px solid var(--line-strong);
box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
background: #f8fafc;
border-color: var(--text-2);
transform: translateY(-1px);
}
.btn svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); } .hero-visual {
position: relative;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
gap: 18px;
aspect-ratio: 1 / 1;
}
.tile {
position: relative;
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-xl), 0 0 0 1px var(--line) inset;
transition: transform .45s var(--ease), box-shadow .45s var(--ease);
cursor: pointer;
text-decoration: none;
color: inherit;
aspect-ratio: 1 / 1;
}
.tile:focus-visible {
outline: 2px solid var(--accent-green, #34d399);
outline-offset: 4px;
}
.tile::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(160deg, rgba(0, 0, 0, 0) 40%, rgba(11, 37, 69, .7) 100%);
}
.tile .tile-label {
position: absolute;
left: 20px;
bottom: 18px;
z-index: 2;
display: flex;
align-items: center;
gap: 10px;
font-size: 13px;
font-weight: 600;
letter-spacing: .1em;
text-transform: uppercase;
color: #fff;
}
.tile .tile-label .ico {
width: 22px;
height: 22px;
display: grid;
place-items: center;
}
.tile-hydro { background: linear-gradient(135deg, #0e7490, #0891b2); transform-origin: top left; }
.tile-wind  { background: linear-gradient(135deg, #1e40af, #3b82f6); transform-origin: top right; }
.tile-solar { background: linear-gradient(135deg, #b45309, #f59e0b); transform-origin: bottom left; }
.tile-badge {
position: relative;
aspect-ratio: 1 / 1;
display: flex;
flex-direction: column;
justify-content: space-between;
background: #ffffff;
border: 1px solid var(--line);
border-radius: var(--radius-lg);
padding: 22px;
box-shadow: var(--shadow-xl);
transform-origin: bottom right;
transition: transform .45s var(--ease), box-shadow .45s var(--ease);
overflow: hidden;
}
.tile-badge::before {
content: '';
position: absolute;
top: -40%;
right: -30%;
width: 75%;
height: 75%;
background: radial-gradient(closest-side, rgba(37, 99, 235, 0.14), transparent 70%);
pointer-events: none;
}
.tile-badge::after {
content: '';
position: absolute;
bottom: -45%;
left: -25%;
width: 70%;
height: 70%;
background: radial-gradient(closest-side, rgba(5, 150, 105, 0.10), transparent 70%);
pointer-events: none;
}
.badge-top {
position: relative;
display: flex;
align-items: center;
justify-content: flex-end;
gap: 8px;
z-index: 1;
}
.badge-chip {
font-family: 'Space Grotesk', system-ui, sans-serif;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.06em;
color: var(--text-2);
padding: 5px 10px;
border: 1px solid var(--line);
border-radius: 999px;
background: #f8fafc;
white-space: nowrap;
}
.badge-trend {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 11px;
font-weight: 700;
color: var(--accent-green);
background: rgba(5, 150, 105, 0.10);
padding: 5px 9px;
border-radius: 999px;
letter-spacing: 0.04em;
white-space: nowrap;
}
.badge-trend svg { width: 11px; height: 11px; }
.badge-stat { position: relative; z-index: 1; }
.tile-badge .big {
font-family: 'Space Grotesk';
font-size: clamp(34px, 4.2vw, 52px);
font-weight: 700;
letter-spacing: -0.03em;
line-height: 1;
background: var(--accent-gradient);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-flex;
align-items: baseline;
gap: 4px;
}
.tile-badge .big .unit {
font-size: 0.4em;
font-weight: 600;
-webkit-text-fill-color: var(--muted-2);
color: var(--muted-2);
background: none;
letter-spacing: 0;
}
.tile-badge .lbl {
font-size: 11.5px;
color: var(--muted);
letter-spacing: 0.08em;
text-transform: uppercase;
margin-top: 8px;
line-height: 1.4;
font-weight: 600;
}
.badge-bars {
position: relative;
z-index: 1;
display: flex;
align-items: flex-end;
gap: 5px;
height: 38px;
}
.badge-bars span {
flex: 1;
height: var(--h, 30%);
background: linear-gradient(180deg, #2563eb 0%, #059669 100%);
border-radius: 3px 3px 0 0;
opacity: 0.72;
transform-origin: bottom;
animation: badgeBarGrow 0.9s var(--ease) both;
}
.badge-bars span:nth-child(1) { animation-delay: 0.10s; }
.badge-bars span:nth-child(2) { animation-delay: 0.18s; }
.badge-bars span:nth-child(3) { animation-delay: 0.26s; }
.badge-bars span:nth-child(4) { animation-delay: 0.34s; }
.badge-bars span:nth-child(5) { animation-delay: 0.42s; }
.badge-bars span:nth-child(6) { animation-delay: 0.50s; opacity: 0.84; }
.badge-bars span:nth-child(7) { animation-delay: 0.58s; opacity: 0.92; }
.badge-bars span:nth-child(8) { animation-delay: 0.66s; opacity: 1; }
@keyframes badgeBarGrow {
from { transform: scaleY(0); opacity: 0; }
to { transform: scaleY(1); }
}
.tile:hover,
.tile:focus-visible,
.tile-badge:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-2xl, 0 30px 60px -20px rgba(11,37,69,.35)), 0 0 0 1px var(--line) inset;
}
.tile svg.deco {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
opacity: .3;
color: #fff;
} .deco-hydro { opacity: .55; }
.deco-hydro .hydro-wave,
.deco-hydro .hydro-streak,
.deco-hydro .hydro-splash { will-change: transform, opacity; }
.deco-wind .wind-rotor {
transform-box: view-box;
transform-origin: 50px 50px;
animation: merge-wind-spin 5s linear infinite;
will-change: transform;
}
.tile-wind:hover .wind-rotor { animation-duration: 1.4s; }
@keyframes merge-wind-spin { to { transform: rotate(360deg); } }
.deco-solar { opacity: .35; }
.deco-solar .sun-rays {
transform-box: view-box;
transform-origin: 50px 50px;
animation: merge-solar-spin 18s linear infinite;
will-change: transform;
}
.deco-solar .sun-core {
transform-box: view-box;
transform-origin: 50px 50px;
animation: merge-solar-pulse 2.6s ease-in-out infinite;
will-change: transform, filter;
}
@keyframes merge-solar-spin { to { transform: rotate(360deg); } }
@keyframes merge-solar-pulse {
0%, 100% { transform: scale(1);    filter: drop-shadow(0 0 2px rgba(255,255,255,.55)); }
50%      { transform: scale(1.12); filter: drop-shadow(0 0 14px rgba(255,255,255,.95)); }
}
@media (prefers-reduced-motion: reduce) {
.deco-wind .wind-rotor,
.deco-solar .sun-rays,
.deco-solar .sun-core { animation: none !important; }
}
.scroll-hint {
position: absolute;
left: 50%;
bottom: 32px;
transform: translateX(-50%);
font-size: 11px;
letter-spacing: .3em;
text-transform: uppercase;
color: var(--muted);
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.scroll-hint::after {
content: '';
width: 1px;
height: 40px;
background: linear-gradient(180deg, var(--muted), transparent);
} section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head--row {
max-width: 100%;
display: flex;
justify-content: space-between;
align-items: flex-end;
gap: 32px;
flex-wrap: wrap;
}
.section-head--row .section-head-text { max-width: 720px; }
.section-head-cta { flex-shrink: 0; }
@media (max-width: 720px) {
.section-head--row { align-items: flex-start; }
.section-head-cta { align-self: flex-start; }
}
.section-head .kicker {
display: inline-block;
font-size: 12px;
font-weight: 700;
letter-spacing: .24em;
text-transform: uppercase;
color: var(--accent-green);
margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(32px, 4vw, 56px); line-height: 1.25; margin-bottom: 20px; color: var(--text); }
.section-head p { font-size: clamp(15px, 1.1vw, 17px); color: var(--muted); } .pillars { background: linear-gradient(180deg, var(--bg) 0%, #ffffff 100%); }
.pillars-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.pillar {
position: relative;
overflow: hidden;
border-radius: var(--radius-lg);
padding: 40px 32px 32px;
min-height: 420px;
border: 1px solid var(--line);
background: var(--surface);
display: flex;
flex-direction: column;
justify-content: space-between;
transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
box-shadow: var(--shadow-sm);
color: inherit;
text-decoration: none;
}
a.pillar { cursor: pointer; }
a.pillar:hover { text-decoration: none; color: inherit; }
a.pillar:focus-visible {
outline: 2px solid var(--accent-blue);
outline-offset: 4px;
}
.pillar::before {
content: '';
position: absolute;
inset: 0;
z-index: 0;
background: radial-gradient(ellipse at 100% 0%, var(--c1, rgba(5, 150, 105, .12)), transparent 60%);
opacity: 0;
transition: opacity .4s var(--ease);
}
.pillar:hover {
transform: translateY(-6px);
border-color: var(--line-strong);
box-shadow: var(--shadow-lg);
}
.pillar:hover::before { opacity: 1; }
.pillar > * { position: relative; z-index: 1; }
.pillar .icn {
width: 56px;
height: 56px;
border-radius: 16px;
display: grid;
place-items: center;
background: var(--bg-2);
border: 1px solid var(--line);
margin-bottom: 24px;
color: var(--accent-navy);
}
.pillar h3 { font-size: 28px; margin-bottom: 12px; color: var(--text); }
.pillar p { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.pillar .pillar-meta {
display: flex;
justify-content: space-between;
align-items: flex-end;
border-top: 1px solid var(--line);
padding-top: 20px;
}
.pillar .pillar-meta .num {
font-family: 'Space Grotesk';
font-size: 32px;
font-weight: 700;
letter-spacing: -0.02em;
color: var(--text);
}
.pillar .pillar-meta .lbl {
font-size: 12px;
color: var(--muted);
letter-spacing: .1em;
text-transform: uppercase;
}
.pillar .arrow {
width: 42px;
height: 42px;
border-radius: 50%;
display: grid;
place-items: center;
background: var(--bg-2);
border: 1px solid var(--line);
color: var(--text);
transition: all .3s var(--ease);
}
.pillar:hover .arrow {
background: var(--accent-navy);
color: #fff;
border-color: var(--accent-navy);
transform: rotate(-45deg);
}
.pillar-hes { --c1: rgba(37, 99, 235, .14); }
.pillar-res { --c1: rgba(5, 150, 105, .14); }
.pillar-ges { --c1: rgba(217, 119, 6, .14); } .pillar-static { cursor: default; }
.pillar-static:hover {
transform: none;
border-color: var(--line);
box-shadow: var(--shadow-sm);
}
.pillar-static:hover::before { opacity: 0; }
.pillar-static .pillar-meta { justify-content: flex-start; } .projects-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.project {
position: relative;
aspect-ratio: 4 / 5;
border-radius: var(--radius-lg);
overflow: hidden;
border: 1px solid var(--line);
transition: transform .5s var(--ease), box-shadow .5s var(--ease);
box-shadow: var(--shadow-sm);
}
.project:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}
.project-img {
position: absolute;
inset: 0;
transition: transform .9s var(--ease);
}
.project:hover .project-img { transform: scale(1.08); }
.project-img::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(11, 37, 69, 0) 40%, rgba(11, 37, 69, .92) 100%);
z-index: 2;
pointer-events: none;
}
.project-img > img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
} .project-fallback {
position: absolute;
inset: 0;
z-index: 0;
background: linear-gradient(135deg, #1e3a8a 0%, #0891b2 55%, #065f46 100%);
}
.project.tag-hes .project-fallback { background: linear-gradient(135deg, #155e75 0%, #0891b2 60%, #0e7490 100%); }
.project.tag-res .project-fallback { background: linear-gradient(135deg, #065f46 0%, #10b981 55%, #047857 100%); }
.project.tag-ges .project-fallback { background: linear-gradient(135deg, #7c2d12 0%, #d97706 55%, #b45309 100%); }
.project.no-img .project-fallback { z-index: 1; }
.project.no-img .project-fallback::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(11, 37, 69, 0) 42%, rgba(11, 37, 69, .75) 100%);
}
.p-hydro-1 { background: linear-gradient(135deg, #155e75 0%, #0891b2 60%, #0e7490 100%); }
.p-hydro-2 { background: linear-gradient(135deg, #065f46 0%, #10b981 50%, #047857 100%); }
.p-wind    { background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%); }
.project-body {
position: absolute;
z-index: 3;
left: 28px; right: 28px;
bottom: 28px;
color: #fff;
}
.project-tag {
display: inline-block;
padding: 5px 12px;
border-radius: 999px;
background: rgba(255, 255, 255, .18);
backdrop-filter: blur(8px);
font-size: 11px;
font-weight: 600;
letter-spacing: .12em;
text-transform: uppercase;
margin-bottom: 14px;
color: #fff;
}
.project h3 { font-size: 28px; margin-bottom: 8px; color: #fff; }
.project .p-meta { color: rgba(255, 255, 255, .8); font-size: 13px; }
.project .p-open {
position: absolute;
top: 24px; right: 24px;
z-index: 4;
width: 44px; height: 44px;
border-radius: 50%;
background: rgba(255, 255, 255, .18);
backdrop-filter: blur(8px);
display: grid;
place-items: center;
color: #fff;
transition: all .3s var(--ease);
}
.project:hover .p-open {
background: #fff;
color: var(--accent-navy);
} .project-status {
position: absolute;
top: 18px;
left: 18px;
z-index: 4;
display: inline-flex;
align-items: center;
gap: 7px;
padding: 6px 12px;
border-radius: 999px;
font-size: 10.5px;
font-weight: 700;
letter-spacing: .08em;
text-transform: uppercase;
background: rgba(255, 255, 255, .95);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
box-shadow: 0 2px 8px rgba(15, 23, 42, .08);
}
.project-status.status-operating { color: var(--accent-green); }
.project-status.status-ongoing   { color: var(--accent-yellow); }
.project-status::before {
content: '';
width: 7px; height: 7px;
border-radius: 50%;
background: currentColor;
flex-shrink: 0;
}
.project-status.status-operating::before {
animation: ap-pulse 1.8s ease-in-out infinite;
} .projects-marquee-wrap {
margin-top: clamp(32px, 5vw, 56px);
padding-top: clamp(24px, 3vw, 40px);
border-top: 1px solid var(--line);
}
.projects-marquee-head {
display: flex;
flex-wrap: wrap;
align-items: baseline;
gap: 12px 24px;
margin-bottom: clamp(18px, 2.5vw, 28px);
}
.projects-marquee-head .kicker {
position: relative;
margin-bottom: 0;
font-size: clamp(13px, 1.05vw, 15px);
font-weight: 800;
letter-spacing: 0.2em;
padding-right: clamp(16px, 2.2vw, 24px);
margin-right: clamp(10px, 1.8vw, 20px);
}
.projects-marquee-head .kicker::after {
content: '';
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 1px;
height: 2.1em;
background: var(--line-strong);
border-radius: 1px;
}
.projects-marquee-desc {
margin: 0;
flex: 1;
min-width: 200px;
max-width: 620px;
color: var(--muted);
font-size: clamp(16px, 1.25vw, 19px);
line-height: 1.65;
}
.projects-marquee {
overflow: hidden;
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
width: 100vw;
max-width: 100vw;
padding-left: max(16px, env(safe-area-inset-left));
padding-right: max(16px, env(safe-area-inset-right));
-webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.projects-marquee-track {
display: flex;
flex-direction: row;
align-items: stretch;
gap: 20px;
width: max-content;
animation: merge-projects-marquee var(--marquee-duration, 60s) linear infinite;
will-change: transform;
}
.projects-marquee[data-marquee-pause]:hover .projects-marquee-track,
.projects-marquee[data-marquee-pause]:focus-within .projects-marquee-track {
animation-play-state: paused;
}
@keyframes merge-projects-marquee {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
.project.project--marquee {
flex: 0 0 auto;
width: min(280px, 78vw);
aspect-ratio: 4 / 5;
cursor: pointer;
}
.project.project--marquee .project-body {
left: 20px;
right: 20px;
bottom: 22px;
}
.project.project--marquee h3 {
font-size: clamp(20px, 2.2vw, 24px);
}
.project.project--marquee .p-meta {
font-size: 12px;
}
.project.project--marquee .p-open {
top: 18px;
right: 18px;
width: 40px;
height: 40px;
}
.project.project--marquee .project-status {
top: 14px;
left: 14px;
padding: 5px 10px;
font-size: 9.5px;
}
@media (prefers-reduced-motion: reduce) {
.projects-marquee-track {
animation: none;
flex-wrap: wrap;
width: 100%;
max-width: 100%;
justify-content: center;
row-gap: 20px;
}
.project.project--marquee {
width: min(100%, 320px);
}
}
.p-deco {
position: absolute;
inset: 0;
z-index: 0;
opacity: .25;
mix-blend-mode: screen;
color: #fff;
} .map-section {
background: linear-gradient(180deg, #ffffff 0%, var(--bg-2) 100%);
position: relative;
overflow: hidden;
}
.map-section::before {
content: '';
position: absolute;
inset: 0;
background:
radial-gradient(ellipse at 15% 30%, rgba(5, 150, 105, .06), transparent 55%),
radial-gradient(ellipse at 85% 70%, rgba(37, 99, 235, .06), transparent 55%);
pointer-events: none;
}
.map-head {
display: flex;
justify-content: space-between;
align-items: flex-end;
gap: 48px;
flex-wrap: wrap;
margin-bottom: 48px;
position: relative;
}
.map-head h2 {
font-size: clamp(32px, 4vw, 56px);
line-height: 1.25;
margin-top: 16px;
}
.map-legend {
display: flex;
gap: 24px;
flex-wrap: wrap;
align-items: center;
}
.lg-item {
display: flex;
align-items: center;
gap: 10px;
font-size: 12px;
font-weight: 700;
letter-spacing: .1em;
text-transform: uppercase;
color: var(--text-2);
}
.lg-dot {
width: 10px;
height: 10px;
border-radius: 50%;
display: block;
}
.lg-dot.lg-hes { background: #2563eb; box-shadow: 0 0 10px rgba(37, 99, 235, .5); }
.lg-dot.lg-res { background: #059669; box-shadow: 0 0 10px rgba(5, 150, 105, .5); }
.lg-dot.lg-ges { background: #d97706; box-shadow: 0 0 10px rgba(217, 119, 6, .5); }
.lg-dot.lg-hq  { background: #0b2545; box-shadow: 0 0 10px rgba(11, 37, 69, .4); }
.lg-badge {
width: 28px;
height: 28px;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
color: #fff;
flex-shrink: 0;
border: 1px solid rgba(255, 255, 255, .65);
transition: transform .25s ease, box-shadow .25s ease;
}
.lg-badge svg {
width: 15px;
height: 15px;
display: block;
}
.lg-item:hover .lg-badge { transform: translateY(-1px) scale(1.05); }
.lg-badge.lg-hes { background: #2563eb; box-shadow: 0 6px 16px rgba(37, 99, 235, .35); }
.lg-badge.lg-res { background: #059669; box-shadow: 0 6px 16px rgba(5, 150, 105, .35); }
.lg-badge.lg-ges { background: #d97706; box-shadow: 0 6px 16px rgba(217, 119, 6, .35); }
.lg-badge.lg-hq  { background: #0b2545; box-shadow: 0 6px 16px rgba(11, 37, 69, .35); }
.map-frame {
position: relative;
border-radius: var(--radius-lg);
background:
radial-gradient(ellipse at 50% 50%, rgba(37, 99, 235, .04), transparent 70%),
var(--surface);
border: 1px solid var(--line);
padding: clamp(16px, 3vw, 32px);
overflow: hidden;
box-shadow: var(--shadow-md);
}
.turkey-map {
width: 100%;
height: auto;
display: block;
overflow: visible;
} .turkey-map rect[fill="url(#dots-pattern)"] { opacity: 0; }
.turkey-map defs pattern circle { fill: rgba(15, 23, 42, 0.08) !important; } .provinces path {
fill: rgba(15, 23, 42, 0.035);
stroke: rgba(15, 23, 42, 0.22);
stroke-width: 0.5;
stroke-linejoin: round;
transition: fill .25s var(--ease), stroke .25s var(--ease), filter .25s var(--ease);
cursor: default;
}
.provinces path:hover {
fill: rgba(15, 23, 42, 0.08);
stroke: rgba(15, 23, 42, 0.5);
} .provinces path.active-hes {
fill: rgba(37, 99, 235, 0.22);
stroke: rgba(37, 99, 235, 0.85);
stroke-width: 0.8;
filter: drop-shadow(0 0 6px rgba(37, 99, 235, 0.35));
}
.provinces path.active-res {
fill: rgba(5, 150, 105, 0.22);
stroke: rgba(5, 150, 105, 0.85);
stroke-width: 0.8;
filter: drop-shadow(0 0 6px rgba(5, 150, 105, 0.35));
}
.provinces path.active-ges {
fill: rgba(217, 119, 6, 0.22);
stroke: rgba(217, 119, 6, 0.85);
stroke-width: 0.8;
filter: drop-shadow(0 0 6px rgba(217, 119, 6, 0.35));
}
.provinces path.active-hq {
fill: rgba(11, 37, 69, 0.22);
stroke: rgba(11, 37, 69, 0.9);
stroke-width: 0.9;
filter: drop-shadow(0 0 8px rgba(11, 37, 69, 0.35));
}
.provinces path.active-hes:hover,
.provinces path.active-res:hover,
.provinces path.active-ges:hover,
.provinces path.active-hq:hover {
fill-opacity: 0.4;
}
.marker { cursor: pointer; pointer-events: none; }
.marker .dot, .marker .ping { pointer-events: auto; }
.marker .dot {
fill: var(--c);
filter: drop-shadow(0 0 5px var(--c));
transition: transform .3s var(--ease);
transform-origin: center;
transform-box: fill-box;
}
.marker:hover .dot { transform: scale(1.4); }
.marker .ping {
fill: var(--c);
opacity: .5;
transform-origin: center;
transform-box: fill-box;
animation: pingScale 2.4s ease-out infinite;
}
.marker .ping-2 { animation-delay: 1.2s; }
@keyframes pingScale {
0%   { transform: scale(1);   opacity: .5; }
80%  { opacity: 0; }
100% { transform: scale(7);   opacity: 0; }
}
.marker-label {
font-size: 10px;
fill: var(--text-2);
font-family: 'Inter', sans-serif;
font-weight: 700;
letter-spacing: .1em;
text-transform: uppercase;
pointer-events: none;
transition: fill .25s var(--ease);
paint-order: stroke fill;
stroke: #ffffff;
stroke-width: 3;
stroke-linejoin: round;
stroke-linecap: round;
}
.marker:hover .marker-label { fill: var(--c); }
.marker-hes { --c: #2563eb; }
.marker-res { --c: #059669; }
.marker-ges { --c: #d97706; }
.marker-hq  { --c: #0b2545; } .marker[data-id="TR05"] { --c: #2563eb; }
.marker[data-id="TR05"] .ping { fill: #facc15; }
.map-stats {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 32px;
margin-top: 40px;
padding-top: 32px;
border-top: 1px solid var(--line);
}
.ms-item { text-align: left; }
.ms-num {
font-family: 'Space Grotesk';
font-size: clamp(28px, 3vw, 44px);
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1;
background: var(--accent-gradient);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.ms-lbl {
font-size: 12px;
color: var(--muted);
letter-spacing: .1em;
text-transform: uppercase;
margin-top: 10px;
font-weight: 600;
}
@media (max-width: 1024px) {
.map-head { flex-direction: column; align-items: flex-start; gap: 24px; }
.map-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
.marker-label { font-size: 13px; }
}
@media (max-width: 640px) {
.marker-label { display: none; }
} .ongoing { background: linear-gradient(180deg, var(--bg-2) 0%, #ffffff 100%); }
.ongoing-wrap {
display: grid;
grid-template-columns: 1fr 1.4fr;
gap: 48px;
align-items: stretch;
}
.ongoing-left {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.ongoing-list {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
border-top: 1px solid var(--line-strong);
margin: 32px 0;
}
.ongoing-list li {
list-style: none;
padding: 18px 4px;
border-bottom: 1px solid var(--line);
display: flex;
justify-content: space-between;
align-items: center;
font-size: 14px;
font-weight: 500;
letter-spacing: .02em;
color: var(--text-2);
transition: color .25s var(--ease), transform .25s var(--ease);
} .ongoing-list li:nth-child(odd)  { padding-right: 18px; }
.ongoing-list li:nth-child(even) {
padding-left: 22px;
border-left: 1px solid var(--line);
}
.ongoing-list li:hover {
color: var(--accent-green);
transform: translateX(8px);
}
.ongoing-list li span.type {
font-size: 11px;
color: var(--muted);
letter-spacing: .1em;
text-transform: uppercase;
font-weight: 600;
}
.ongoing-right {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(3, 1fr);
gap: 12px;
}
.ongoing-tile {
border-radius: var(--radius);
overflow: hidden;
position: relative;
border: 1px solid var(--line);
min-height: 168px;
box-shadow: var(--shadow-sm);
transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.ongoing-tile:hover {
transform: translateY(-3px);
box-shadow: 0 14px 32px -16px rgba(0,0,0,.45);
}
.ongoing-tile:nth-child(1) {
grid-row: span 2;
background: linear-gradient(135deg, #1e40af, #3b82f6);
}
.ongoing-tile:nth-child(2) { background: linear-gradient(135deg, #065f46, #10b981); }
.ongoing-tile:nth-child(3) { background: linear-gradient(135deg, #0e7490, #06b6d4); }
.ongoing-tile:nth-child(4) {
grid-column: span 2;
background: linear-gradient(135deg, #92400e, #f59e0b);
}
.ongoing-tile::before {
content: '';
position: absolute;
inset: 0;
background:
radial-gradient(circle at 85% 18%, rgba(255,255,255,.18), transparent 42%),
linear-gradient(160deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, .55));
pointer-events: none;
}
.ongoing-tile::after {
content: '';
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
background-size: 28px 28px;
mix-blend-mode: overlay;
opacity: .35;
pointer-events: none;
} .ongoing-tile .tile-label {
position: absolute;
left: 20px; right: 20px; bottom: 16px;
z-index: 2;
font-size: 12px;
font-weight: 700;
letter-spacing: .12em;
text-transform: uppercase;
color: #fff;
text-shadow: 0 1px 8px rgba(0,0,0,.35);
}
.ongoing-tile:nth-child(1) .tile-label,
.ongoing-tile:nth-child(4) .tile-label { font-size: 13.5px; left: 24px; bottom: 18px; } .ongoing-tile .tile-list {
position: absolute;
top: 20px; left: 20px;
z-index: 2;
list-style: none;
margin: 0; padding: 0;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 0;
max-width: calc(100% - 100px); }
.ongoing-tile .tile-list li {
position: relative;
padding-left: 12px;
font-size: 11.5px;
font-weight: 600;
letter-spacing: .02em;
color: rgba(255,255,255,.88);
text-shadow: 0 1px 4px rgba(0,0,0,.35);
white-space: nowrap;
}
.ongoing-tile .tile-list li:not(:last-child) {
padding-bottom: 5px;
margin-bottom: 5px;
border-bottom: 1px solid rgba(255,255,255,.4);
}
.ongoing-tile .tile-list li::before {
content: '';
position: absolute;
left: 0; top: 6px;
width: 5px; height: 5px;
border-radius: 50%;
background: rgba(255,255,255,.65);
box-shadow: 0 0 6px rgba(255,255,255,.4);
}
.ongoing-tile:nth-child(1) .tile-list,
.ongoing-tile:nth-child(4) .tile-list { top: 24px; left: 24px; gap: 6px; max-width: calc(100% - 140px); }
.ongoing-tile:nth-child(1) .tile-list li,
.ongoing-tile:nth-child(4) .tile-list li { font-size: 13px; padding-left: 14px; }
.ongoing-tile:nth-child(1) .tile-list li::before,
.ongoing-tile:nth-child(4) .tile-list li::before { width: 6px; height: 6px; top: 7px; }
.ongoing-tile .tile-icon {
position: absolute;
top: clamp(12px, 1.4vw, 20px);
right: clamp(12px, 1.4vw, 20px);
width: clamp(48px, 6vw, 78px);
height: clamp(48px, 6vw, 78px);
color: rgba(255, 255, 255, .92);
filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .3));
transition: transform .5s var(--ease), color .3s var(--ease);
z-index: 1;
}
.ongoing-tile:nth-child(1) .tile-icon {
width: clamp(72px, 9vw, 120px);
height: clamp(72px, 9vw, 120px);
top: clamp(16px, 1.8vw, 26px);
right: clamp(16px, 1.8vw, 26px);
}
.ongoing-tile:nth-child(4) .tile-icon {
width: clamp(60px, 7vw, 96px);
height: clamp(60px, 7vw, 96px);
top: clamp(14px, 1.6vw, 22px);
right: clamp(16px, 1.9vw, 28px);
}
.ongoing-tile:hover .tile-icon {
transform: rotate(6deg) scale(1.06);
color: #fff;
} .res-icon .res-rotor {
transform-box: view-box;
transform-origin: 32px 22px;
animation: merge-wind-spin 5.5s linear infinite;
will-change: transform;
}
.ongoing-tile:hover .res-icon .res-rotor { animation-duration: 1.6s; }
.hes-icon { animation: merge-hes-breathe 3.4s ease-in-out infinite; }
@keyframes merge-hes-breathe {
0%, 100% { filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .3)); }
50%      { filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .3))
drop-shadow(0 0 14px rgba(255, 255, 255, .55)); }
}
.hes-icon .hes-highlight {
transform-box: view-box;
transform-origin: 25px 22px;
animation: merge-hes-shine 3.4s ease-in-out infinite;
}
@keyframes merge-hes-shine {
0%, 100% { opacity: 0.55; }
50%      { opacity: 1; }
}
.ongoing-tile:hover .hes-icon { animation-duration: 2s; }
.ongoing-tile:hover .hes-icon .hes-highlight { animation-duration: 2s; } .ges-icon .ges-rays {
transform-box: view-box;
transform-origin: 32px 32px;
animation: merge-solar-spin 18s linear infinite;
will-change: transform;
}
.ges-icon .ges-core {
transform-box: view-box;
transform-origin: 32px 32px;
animation: merge-solar-pulse 2.6s ease-in-out infinite;
will-change: transform, filter;
}
@media (prefers-reduced-motion: reduce) {
.res-icon .res-rotor,
.hes-icon,
.ges-icon .ges-rays,
.ges-icon .ges-core { animation: none !important; }
} .stats {
background: #ffffff;
padding: clamp(100px, 12vw, 160px) 0;
}
.stats-grid {
display: grid;
grid-template-columns: 1.2fr repeat(3, 1fr);
gap: 48px;
align-items: flex-start;
}
.stats-head h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 20px; }
.stats-head p { color: var(--muted); font-size: 15px; }
.stat { border-top: 2px solid var(--line-strong); padding-top: 28px; }
.stat:nth-child(2) { border-top-color: var(--accent-blue); }
.stat:nth-child(3) { border-top-color: var(--accent-green); }
.stat:nth-child(4) { border-top-color: var(--accent-yellow); }
.stat .val {
font-family: 'Space Grotesk';
font-weight: 700;
font-size: clamp(56px, 7vw, 96px);
letter-spacing: -0.04em;
line-height: 1;
color: var(--text);
}
.stat .val .plus {
font-size: .55em;
color: var(--muted);
font-weight: 500;
margin-left: 2px;
}
.stat h4 {
font-size: 16px;
margin: 16px 0 10px;
font-family: 'Space Grotesk';
color: var(--text);
}
.stat p { font-size: 13px; color: var(--muted); line-height: 1.6; } .cta-band { padding: 0 0 clamp(80px, 10vw, 140px); background: #ffffff; }
.cta-inner {
max-width: var(--maxw);
margin: 0 auto;
padding: 0 clamp(20px, 4vw, 48px);
}
.cta-card {
position: relative;
overflow: hidden;
border-radius: var(--radius-lg);
padding: clamp(40px, 5vw, 72px);
background:
radial-gradient(ellipse at 0% 0%, rgba(5, 150, 105, .18), transparent 55%),
radial-gradient(ellipse at 100% 100%, rgba(217, 119, 6, .14), transparent 55%),
linear-gradient(135deg, #0b2545, #1e3a8a);
border: 1px solid var(--accent-navy);
display: grid;
grid-template-columns: 1.4fr auto;
gap: 40px;
align-items: center;
color: #fff;
box-shadow: var(--shadow-lg);
}
.cta-card h2 { font-size: clamp(26px, 2.6vw, 40px); margin-bottom: 12px; color: #fff; }
.cta-card p { color: rgba(255, 255, 255, .75); max-width: 560px; }
.cta-card .btn-primary {
background: #ffffff;
color: var(--accent-navy);
}
.cta-card .btn-primary:hover {
background: #f1f5f9;
box-shadow: 0 20px 40px -15px rgba(255, 255, 255, .4);
}
.cta-card .btn-ghost {
background: rgba(255, 255, 255, .1);
color: #fff;
border-color: rgba(255, 255, 255, .25);
}
.cta-card .btn-ghost:hover {
background: rgba(255, 255, 255, .18);
border-color: rgba(255, 255, 255, .4);
} footer {
background: #0b2545;
color: rgba(255, 255, 255, .85);
border-top: 1px solid var(--accent-navy);
padding: 80px 0 32px;
}
footer h1, footer h2, footer h3, footer h4, footer h5 { color: #fff; }
.footer-grid {
display: grid;
grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
gap: 48px;
}
.footer-brand .logo {
display: flex;
align-items: center;
gap: 12px;
}
.footer-brand .logo-mark {
width: 46px;
height: 46px;
flex-shrink: 0;
}
.footer-brand .logo-text {
font-family: 'Space Grotesk', sans-serif;
font-weight: 700;
font-size: 28px;
letter-spacing: -0.02em;
white-space: nowrap;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text small {
display: block;
color: rgba(255, 255, 255, .55);
font-size: 11px;
letter-spacing: .32em;
font-weight: 500;
margin-top: -2px;
}
.footer-brand p {
color: rgba(255, 255, 255, .65);
font-size: 14px;
max-width: 320px;
margin-top: 20px;
}
.footer h5 {
font-size: 12px;
letter-spacing: .2em;
text-transform: uppercase;
color: rgba(255, 255, 255, .6);
font-weight: 600;
margin-bottom: 20px;
font-family: 'Inter';
}
.footer ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
}
.footer ul a {
font-size: 14px;
color: rgba(255, 255, 255, .85);
transition: color .25s var(--ease);
}
.footer ul a:hover { color: #6ee7b7; }
.contact-line {
display: flex;
gap: 12px;
margin-bottom: 14px;
font-size: 14px;
color: rgba(255, 255, 255, .85);
}
a.contact-line {
text-decoration: none;
color: rgba(255, 255, 255, .85);
transition: color .25s var(--ease);
}
a.contact-line:hover,
a.contact-line:focus-visible { color: #6ee7b7; }
.contact-line svg {
flex-shrink: 0;
width: 18px;
height: 18px;
color: #6ee7b7;
margin-top: 2px;
}
.foot-bottom {
margin-top: 56px;
padding-top: 24px;
border-top: 1px solid rgba(255, 255, 255, .1);
display: flex;
justify-content: space-between;
align-items: center;
font-size: 13px;
color: rgba(255, 255, 255, .55);
}
.socials { display: flex; gap: 12px; }
.socials a {
width: 36px;
height: 36px;
border-radius: 50%;
display: grid;
place-items: center;
border: 1px solid rgba(255, 255, 255, .15);
color: rgba(255, 255, 255, .7);
transition: all .25s var(--ease);
}
.socials a:hover {
color: #fff;
border-color: #fff;
transform: translateY(-2px);
} .scroll-progress {
position: fixed;
top: 0; left: 0;
height: 3px;
width: 0%;
background: var(--accent-gradient);
z-index: 200;
pointer-events: none;
box-shadow: 0 0 10px rgba(37, 99, 235, .35);
transition: width .08s linear;
} .reveal {
--reveal-y: 28px;
--reveal-x: 0px;
--reveal-scale: 1;
--reveal-blur: 0px;
--reveal-delay: 0ms;
opacity: 0;
transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
filter: blur(var(--reveal-blur));
transition:
opacity .85s cubic-bezier(.2, .7, .15, 1) var(--reveal-delay),
transform .9s cubic-bezier(.2, .7, .15, 1) var(--reveal-delay),
filter .6s cubic-bezier(.2, .7, .15, 1) var(--reveal-delay);
will-change: opacity, transform;
}
.reveal.in {
opacity: 1;
transform: translate3d(0, 0, 0) scale(1);
filter: blur(0);
} .reveal[data-reveal="up"]    { --reveal-y: 36px; }
.reveal[data-reveal="down"]  { --reveal-y: -28px; }
.reveal[data-reveal="left"]  { --reveal-x: -42px; --reveal-y: 0; }
.reveal[data-reveal="right"] { --reveal-x:  42px; --reveal-y: 0; }
.reveal[data-reveal="scale"] { --reveal-scale: .92; --reveal-y: 20px; }
.reveal[data-reveal="blur"]  { --reveal-blur: 10px; --reveal-y: 16px; } [data-stagger] { --stagger-step: 80ms; }
[data-stagger] > .reveal { --reveal-delay: calc(var(--i, 0) * var(--stagger-step)); }
[data-stagger="fast"]  { --stagger-step: 55ms; }
[data-stagger="slow"]  { --stagger-step: 130ms; } @media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
.reveal {
transform: none;
filter: none;
transition: opacity .3s linear var(--reveal-delay);
}
.scroll-progress { display: none; }
} .project { cursor: pointer; }
.project:focus-visible { outline: 2px solid var(--accent-blue); outline-offset: 3px; }
.project-modal {
position: fixed;
inset: 0;
z-index: 100;
display: none;
align-items: flex-start;
justify-content: center;
padding: clamp(16px, 4vw, 48px);
overflow-y: auto;
}
.project-modal.open { display: flex; animation: pm-fade .25s var(--ease); }
@keyframes pm-fade { from { opacity: 0; } to { opacity: 1; } }
.pm-backdrop {
position: fixed;
inset: 0;
background: rgba(15, 23, 42, 0.55);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
cursor: pointer;
}
.pm-card {
position: relative;
width: 100%;
max-width: 1120px;
margin: auto;
background: #ffffff;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-xl);
border: 1px solid var(--line);
overflow: hidden;
animation: pm-pop .35s var(--ease);
}
@keyframes pm-pop {
from { opacity: 0; transform: translateY(20px) scale(.98); }
to   { opacity: 1; transform: translateY(0) scale(1); }
}
.pm-close {
position: absolute;
top: 20px; right: 20px;
z-index: 3;
width: 40px; height: 40px;
border-radius: 50%;
background: #ffffff;
border: 1px solid var(--line-strong);
color: var(--text);
cursor: pointer;
display: grid;
place-items: center;
transition: all .25s var(--ease);
box-shadow: var(--shadow-sm);
}
.pm-close:hover {
background: var(--accent-navy);
color: #fff;
border-color: var(--accent-navy);
transform: rotate(90deg);
}
.pm-head {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
gap: clamp(20px, 4vw, 48px);
align-items: start;
padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px) clamp(24px, 3vw, 36px);
padding-right: clamp(72px, 8vw, 96px); border-bottom: 1px solid var(--line);
background: linear-gradient(180deg, var(--bg-2) 0%, #ffffff 100%);
}
.pm-head-info { min-width: 0; }
.pm-head-specs { min-width: 0; align-self: center; }
.pm-head-specs.is-empty { display: none; }
@media (max-width: 820px) {
.pm-head {
grid-template-columns: 1fr;
padding-right: clamp(60px, 14vw, 72px);
}
.pm-head-specs { align-self: stretch; }
}
.pm-tag {
display: inline-block;
padding: 5px 12px;
border-radius: 999px;
background: rgba(37, 99, 235, 0.1);
color: var(--accent-blue);
font-size: 11px;
font-weight: 700;
letter-spacing: .12em;
text-transform: uppercase;
margin-bottom: 14px;
}
.pm-head h3 {
font-family: 'Space Grotesk', sans-serif;
font-size: clamp(26px, 3vw, 40px);
font-weight: 700;
letter-spacing: -0.02em;
color: var(--text);
margin-bottom: 8px;
}
.pm-meta {
color: var(--muted);
font-size: 14px;
font-weight: 500;
}
.pm-autoplay {
display: inline-flex;
align-items: center;
gap: 8px;
margin-top: 18px;
padding: 10px 16px;
border: 1px solid rgba(37, 99, 235, .22);
border-radius: 999px;
background: rgba(37, 99, 235, .1);
color: var(--accent-blue);
font-size: 12px;
font-weight: 800;
letter-spacing: .1em;
text-transform: uppercase;
cursor: pointer;
transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.pm-autoplay[hidden] { display: none; }
.pm-autoplay:hover,
.pm-autoplay:focus-visible {
background: var(--accent-blue);
border-color: var(--accent-blue);
color: #ffffff;
transform: translateY(-1px);
box-shadow: 0 10px 24px rgba(37, 99, 235, .22);
outline: none;
}
.pm-autoplay-icon {
display: grid;
place-items: center;
width: 22px;
height: 22px;
border-radius: 50%;
background: var(--accent-blue);
color: #ffffff;
}
.pm-autoplay:hover .pm-autoplay-icon,
.pm-autoplay:focus-visible .pm-autoplay-icon {
background: #ffffff;
color: var(--accent-blue);
}
.pm-autoplay-icon svg {
color: currentColor;
margin-left: 2px;
}
.pm-body {
padding: clamp(24px, 4vw, 40px) clamp(24px, 4vw, 48px) clamp(32px, 5vw, 48px);
} .pm-specs {
display: grid;
grid-template-columns: 1fr;
gap: 0;
margin: 0;
background: #ffffff;
border: 1px solid var(--line);
border-radius: var(--radius);
overflow: hidden;
box-shadow: var(--shadow-sm);
}
.pm-spec-row {
display: grid;
grid-template-columns: minmax(110px, 42%) 1fr;
gap: 12px;
padding: 9px 14px;
border-top: 1px solid var(--line);
align-items: baseline;
}
.pm-spec-row:first-child { border-top: 0; }
.pm-spec-row:nth-child(even) { background: var(--bg); }
.pm-spec-row dt {
margin: 0;
font-size: 10px;
font-weight: 700;
letter-spacing: .12em;
text-transform: uppercase;
color: var(--muted);
line-height: 1.3;
}
.pm-spec-row dd {
margin: 0;
font-size: 13px;
font-weight: 600;
color: var(--text);
line-height: 1.35;
word-break: break-word;
}
@media (max-width: 640px) {
.pm-spec-row {
grid-template-columns: 1fr;
gap: 2px;
padding: 8px 12px;
}
}
.pm-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
gap: 20px;
}
.pm-item {
background: var(--bg);
border: 1px solid var(--line);
border-radius: var(--radius);
overflow: hidden;
transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.pm-item:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-md);
border-color: var(--line-strong);
}
.pm-img-wrap {
position: relative;
width: 100%;
aspect-ratio: 4 / 3;
background: var(--bg-2);
overflow: hidden;
cursor: zoom-in;
}
.pm-img-wrap:focus-visible {
outline: 2px solid var(--accent-blue);
outline-offset: 2px;
}
.pm-img-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform .6s var(--ease);
}
.pm-item:hover .pm-img-wrap img { transform: scale(1.04); }
.pm-zoom {
position: absolute;
top: 10px;
right: 10px;
width: 38px;
height: 38px;
border-radius: 50%;
background: rgba(15, 23, 42, .78);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
color: #fff;
display: grid;
place-items: center;
opacity: 0;
transform: scale(.85) translateY(-4px);
transition: all .3s var(--ease);
pointer-events: none;
z-index: 2;
box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}
.pm-item:hover .pm-zoom,
.pm-img-wrap:focus-visible .pm-zoom {
opacity: 1;
transform: scale(1) translateY(0);
}
.pm-img-wrap:hover .pm-zoom {
background: var(--accent-blue);
}
.pm-item.pm-broken .pm-img-wrap::before {
content: 'Görsel yüklenemedi';
position: absolute;
inset: 0;
display: grid;
place-items: center;
font-size: 12px;
color: var(--muted);
letter-spacing: .08em;
text-transform: uppercase;
}
.pm-item figcaption {
padding: 14px 18px 16px;
font-size: 14px;
font-weight: 600;
color: var(--text);
border-top: 1px solid var(--line);
background: #ffffff;
} .pm-video-wrap {
position: relative;
width: 100%;
aspect-ratio: 4 / 3;
background: #0b1220;
overflow: hidden;
cursor: pointer;
outline: none;
}
.pm-video-wrap:focus-visible {
outline: 2px solid var(--accent-blue);
outline-offset: 2px;
}
.pm-video-poster {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform .6s var(--ease), filter .3s var(--ease);
}
.pm-item--video:hover .pm-video-poster { transform: scale(1.04); filter: brightness(.78); }
.pm-video-poster--placeholder {
background:
radial-gradient(120% 70% at 30% 30%, rgba(96,165,250,.25), transparent 60%),
linear-gradient(135deg, #1e293b 0%, #0b1220 100%);
}
.pm-video-badge {
position: absolute;
top: 10px;
left: 10px;
display: inline-flex;
align-items: center;
gap: 6px;
padding: 4px 9px;
border-radius: 999px;
background: rgba(15, 23, 42, .82);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
color: #fff;
font-size: 11px;
font-weight: 700;
letter-spacing: .08em;
text-transform: uppercase;
z-index: 2;
pointer-events: none;
}
.pm-video-badge svg { color: var(--accent-blue, #60a5fa); }
.pm-video-play {
position: absolute;
top: 50%;
left: 50%;
width: 64px;
height: 64px;
margin: -32px 0 0 -32px;
border-radius: 50%;
background: rgba(255, 255, 255, .92);
color: #0b1220;
display: grid;
place-items: center;
z-index: 2;
box-shadow: 0 12px 32px rgba(0, 0, 0, .35);
transition: transform .3s var(--ease), background .25s var(--ease);
pointer-events: none;
}
.pm-video-play svg { margin-left: 3px; }
.pm-item--video:hover .pm-video-play,
.pm-video-wrap:focus-visible .pm-video-play {
transform: scale(1.08);
background: #ffffff;
} .ap-card-video {
position: absolute;
top: 12px;
left: 12px;
display: inline-flex;
align-items: center;
gap: 5px;
padding: 4px 9px;
border-radius: 999px;
background: rgba(15, 23, 42, .85);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
color: #fff;
font-size: 10px;
font-weight: 700;
letter-spacing: .08em;
text-transform: uppercase;
z-index: 3;
pointer-events: none;
}
.ap-card-video svg { color: var(--accent-blue, #60a5fa); }
.pm-empty {
display: flex;
flex-direction: column;
align-items: center;
gap: 14px;
padding: 48px 24px;
text-align: center;
color: var(--muted);
background: var(--bg);
border: 1px dashed var(--line-strong);
border-radius: var(--radius);
}
.pm-empty svg { color: var(--muted-2); }
.pm-empty p { color: var(--text-2); font-weight: 600; font-size: 16px; }
.pm-empty small {
max-width: 460px;
font-size: 13px;
line-height: 1.6;
color: var(--muted);
}
.pm-empty code {
font-family: ui-monospace, 'SF Mono', Menlo, monospace;
font-size: 12px;
background: var(--bg-2);
border: 1px solid var(--line);
padding: 2px 6px;
border-radius: 4px;
color: var(--text);
}
@media (max-width: 640px) {
.pm-grid { grid-template-columns: 1fr; }
}  .nav.nav-open .nav-links {
display: flex;
flex-direction: column;
gap: 0;
position: fixed;
inset: 0;
top: 68px;
background: var(--surface);
padding: 24px 0 40px;
border-top: 1px solid var(--line);
z-index: 999;
overflow-y: auto;
}
.nav.nav-open .nav-links li { border-bottom: 1px solid var(--line); }
.nav.nav-open .nav-links a {
display: block;
padding: 16px 28px;
font-size: 17px;
font-weight: 500;
}
.nav.nav-open .nav-links a::after { display: none; }
@media (max-width: 1024px) {
.nav-links, .nav-cta { display: none; }
.menu-btn { display: inline-flex; }
.hero-inner { grid-template-columns: 1fr; gap: 48px; }
.hero-visual { max-width: 560px; }
.pillars-grid { grid-template-columns: 1fr; }
.projects-grid { grid-template-columns: 1fr 1fr; }
.ongoing-wrap { grid-template-columns: 1fr; }
.stats-grid { grid-template-columns: 1fr 1fr; }
.footer-grid { grid-template-columns: 1fr 1fr; }
.cta-card { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
.projects-grid { grid-template-columns: 1fr; }
.ongoing-list { grid-template-columns: 1fr; }
.ongoing-right {
grid-template-columns: 1fr 1fr;
grid-template-rows: auto;
}
.ongoing-tile:nth-child(1) { grid-row: span 1; }
.ongoing-tile:nth-child(4) { grid-column: span 2; }
.stats-grid { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr; }
.foot-bottom { flex-direction: column; gap: 16px; }
.hero-visual { gap: 12px; }
.tile-badge { padding: 16px; }
.tile-badge .big { font-size: 28px; }
.tile-badge .lbl { font-size: 10px; margin-top: 6px; }
} .ap-hero {
padding: clamp(110px, 15vh, 170px) 0 56px;
background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
border-bottom: 1px solid var(--line);
position: relative;
overflow: hidden;
}
.ap-hero::before {
content: '';
position: absolute;
inset: 0;
background:
radial-gradient(600px 300px at 12% 20%, rgba(37, 99, 235, 0.07), transparent 60%),
radial-gradient(500px 280px at 88% 80%, rgba(5, 150, 105, 0.06), transparent 60%),
radial-gradient(380px 220px at 60% 0%, rgba(217, 119, 6, 0.05), transparent 60%);
pointer-events: none;
}
.ap-hero .container { position: relative; }
.ap-kicker-row {
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 22px;
}
.ap-back {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 16px;
border-radius: 999px;
border: 1px solid var(--line);
background: var(--surface);
font-size: 13px;
font-weight: 500;
color: var(--text-2);
text-decoration: none;
transition: all .25s var(--ease);
box-shadow: var(--shadow-sm);
}
.ap-back:hover {
border-color: var(--line-strong);
transform: translateX(-2px);
box-shadow: var(--shadow-md);
}
.ap-back svg { flex-shrink: 0; }
.ap-hero h1 {
font-size: clamp(36px, 5vw, 64px);
margin: 0 0 18px;
letter-spacing: -0.02em;
line-height: 1.05;
}
.ap-hero p {
color: var(--muted);
font-size: 17px;
max-width: 620px;
line-height: 1.6;
margin: 0;
} .ap-tabs {
position: sticky;
top: 64px;
z-index: 20;
background: rgba(247, 248, 251, 0.82);
backdrop-filter: blur(16px) saturate(140%);
-webkit-backdrop-filter: blur(16px) saturate(140%);
border-bottom: 1px solid var(--line);
}
.ap-tabs-inner {
display: flex;
align-items: center;
gap: 6px;
padding: 14px 0;
max-width: 100%;
overflow-x: auto;
scrollbar-width: none;
}
.ap-tabs-inner::-webkit-scrollbar { display: none; }
.ap-tab {
position: relative;
padding: 10px 18px;
border: 0;
background: transparent;
font-family: inherit;
font-size: 13.5px;
font-weight: 600;
letter-spacing: .01em;
color: var(--muted);
cursor: pointer;
border-radius: 10px;
transition: all .25s var(--ease);
display: inline-flex;
align-items: center;
gap: 10px;
white-space: nowrap;
flex-shrink: 0;
}
.ap-tab:hover {
color: var(--text);
background: var(--bg-2);
}
.ap-tab.active {
color: var(--text);
background: var(--surface);
box-shadow: var(--shadow-sm);
}
.ap-tab .ap-count {
display: inline-block;
min-width: 22px;
padding: 2px 8px;
border-radius: 999px;
background: var(--bg-2);
font-size: 11px;
font-weight: 700;
color: var(--muted);
text-align: center;
transition: all .25s var(--ease);
}
.ap-tab.active .ap-count {
background: var(--accent-navy);
color: #fff;
}
.ap-tab:focus-visible {
outline: 2px solid var(--accent-blue);
outline-offset: 2px;
}
.ap-tab-sep {
flex-shrink: 0;
width: 1px;
height: 22px;
background: var(--line);
margin: 0 6px;
}
.ap-tab-tag .ap-count {
background: rgba(15, 23, 42, .04);
}
.ap-tab.tag-hes.active { color: #1e40af; }
.ap-tab.tag-res.active { color: #047857; }
.ap-tab.tag-ges.active { color: #b45309; }
.ap-tab.tag-hes.active .ap-count { background: #1e40af; color: #fff; }
.ap-tab.tag-res.active .ap-count { background: #047857; color: #fff; }
.ap-tab.tag-ges.active .ap-count { background: #b45309; color: #fff; } .ap-section { padding: 42px 0 100px; }
.ap-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 22px;
}
.ap-card {
position: relative;
aspect-ratio: 4 / 5;
border-radius: var(--radius-lg);
overflow: hidden;
border: 1px solid var(--line);
background: var(--surface);
cursor: pointer;
transition: transform .5s var(--ease), box-shadow .5s var(--ease);
box-shadow: var(--shadow-sm);
opacity: 0;
transform: translateY(14px);
animation: ap-in .55s var(--ease) forwards;
}
@keyframes ap-in {
to { opacity: 1; transform: translateY(0); }
}
.ap-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}
.ap-card:focus-visible {
outline: 2px solid var(--accent-blue);
outline-offset: 3px;
} .ap-card-img {
position: absolute;
inset: 0;
z-index: 1;
overflow: hidden;
}
.ap-card-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform .9s var(--ease);
}
.ap-card:hover .ap-card-img img { transform: scale(1.08); }
.ap-card-img::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(11, 37, 69, 0) 42%, rgba(11, 37, 69, .94) 100%);
} .ap-card-fallback {
position: absolute;
inset: 0;
z-index: 0;
background: linear-gradient(135deg, #1e3a8a 0%, #0891b2 55%, #065f46 100%);
}
.ap-card.tag-hes .ap-card-fallback { background: linear-gradient(135deg, #155e75 0%, #0891b2 60%, #0e7490 100%); }
.ap-card.tag-res .ap-card-fallback { background: linear-gradient(135deg, #065f46 0%, #10b981 55%, #047857 100%); }
.ap-card.tag-ges .ap-card-fallback { background: linear-gradient(135deg, #7c2d12 0%, #d97706 55%, #b45309 100%); }
.ap-card.no-img .ap-card-fallback { z-index: 1; }
.ap-card.no-img .ap-card-fallback::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(11, 37, 69, 0) 42%, rgba(11, 37, 69, .75) 100%);
} .ap-card-status {
position: absolute;
top: 18px;
left: 18px;
z-index: 3;
display: inline-flex;
align-items: center;
gap: 7px;
padding: 6px 12px;
border-radius: 999px;
font-size: 10.5px;
font-weight: 700;
letter-spacing: .08em;
text-transform: uppercase;
background: rgba(255, 255, 255, .95);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
box-shadow: 0 2px 8px rgba(15, 23, 42, .08);
}
.ap-card-status.status-operating { color: var(--accent-green); }
.ap-card-status.status-ongoing   { color: var(--accent-yellow); }
.ap-card-status::before {
content: '';
width: 7px; height: 7px;
border-radius: 50%;
background: currentColor;
flex-shrink: 0;
}
.ap-card-status.status-operating::before {
animation: ap-pulse 1.8s ease-in-out infinite;
}
@keyframes ap-pulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, .55); }
70%      { box-shadow: 0 0 0 6px rgba(5, 150, 105, 0); }
}
.ap-card-open {
position: absolute;
top: 14px;
right: 14px;
z-index: 3;
width: 38px;
height: 38px;
border-radius: 50%;
background: rgba(255, 255, 255, .22);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
display: grid;
place-items: center;
color: #fff;
transition: all .35s var(--ease);
}
.ap-card:hover .ap-card-open {
background: #fff;
color: var(--accent-navy);
transform: rotate(-45deg);
}
.ap-card-body {
position: absolute;
left: 22px;
right: 22px;
bottom: 22px;
z-index: 2;
color: #fff;
}
.ap-card-tag {
display: inline-block;
padding: 4px 11px;
border-radius: 999px;
background: rgba(255, 255, 255, .2);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
font-size: 10px;
font-weight: 600;
letter-spacing: .12em;
text-transform: uppercase;
margin-bottom: 10px;
color: #fff;
}
.ap-card h3 {
font-size: 22px;
margin: 0 0 6px;
color: #fff;
line-height: 1.2;
letter-spacing: -0.01em;
}
.ap-card .ap-meta {
color: rgba(255, 255, 255, .88);
font-size: 13px;
margin: 0;
}
.ap-empty {
grid-column: 1 / -1;
text-align: center;
padding: 80px 20px;
color: var(--muted);
border: 1px dashed var(--line-strong);
border-radius: var(--radius-lg);
background: var(--surface);
} @media (max-width: 900px) {
.ap-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
.ap-tabs { top: 60px; }
.ap-hero { padding-top: 96px; padding-bottom: 40px; }
}
@media (max-width: 600px) {
.ap-grid { grid-template-columns: 1fr; }
.ap-tabs-inner { padding: 10px 0; }
.ap-tab { padding: 9px 14px; font-size: 13px; }
.ap-card { aspect-ratio: 5 / 4; }
} .pm-lightbox {
position: fixed;
inset: 0;
z-index: 300;
display: none;
align-items: center;
justify-content: center;
padding: 24px;
}
.pm-lightbox.open {
display: flex;
animation: pl-fade .28s var(--ease);
}
.pl-backdrop {
position: absolute;
inset: 0;
background: rgba(4, 10, 22, .94);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
cursor: zoom-out;
}
.pl-close {
position: fixed;
top: 24px;
right: 24px;
width: 46px;
height: 46px;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, .14);
background: rgba(255, 255, 255, .08);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
color: #fff;
display: grid;
place-items: center;
cursor: pointer;
z-index: 3;
transition: background .25s var(--ease), transform .4s var(--ease), border-color .25s var(--ease);
}
.pl-close:hover {
background: rgba(255, 255, 255, .18);
border-color: rgba(255, 255, 255, .3);
transform: rotate(90deg);
}
.pl-close:focus-visible {
outline: 2px solid var(--accent-blue);
outline-offset: 3px;
}
.pl-nav {
position: fixed;
top: 50%;
transform: translateY(-50%);
width: 48px;
height: 48px;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, .14);
background: rgba(255, 255, 255, .08);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
color: #fff;
display: grid;
place-items: center;
cursor: pointer;
z-index: 3;
transition: background .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
}
.pl-nav:hover {
background: rgba(255, 255, 255, .18);
border-color: rgba(255, 255, 255, .3);
}
.pl-nav:focus-visible {
outline: 2px solid var(--accent-blue);
outline-offset: 3px;
}
.pl-nav:active { transform: translateY(-50%) scale(.96); }
.pl-prev { left: max(16px, env(safe-area-inset-left, 0px)); }
.pl-next { right: max(16px, env(safe-area-inset-right, 0px)); }
.pl-nav[hidden] { display: none !important; }
.pl-frame {
position: relative;
z-index: 2;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
max-width: 94vw;
max-height: 92vh;
animation: pl-pop .42s cubic-bezier(.2, .7, .15, 1);
}
.pl-stage {
position: relative;
display: flex;
align-items: center;
justify-content: center;
max-width: 94vw;
max-height: 80vh;
}
.pl-img,
.pl-video {
display: block;
max-width: 94vw;
max-height: 80vh;
width: auto;
height: auto;
border-radius: 12px;
box-shadow: 0 30px 80px rgba(0, 0, 0, .55), 0 10px 30px rgba(0, 0, 0, .4);
object-fit: contain;
background: #0b1220;
}
.pl-video {
outline: none;
background: #000;
} .pm-lightbox.pl-mode-image .pl-video,
.pm-lightbox:not(.pl-mode-video):not(.pl-mode-image) .pl-video { display: none; }
.pm-lightbox.pl-mode-video .pl-img,
.pm-lightbox:not(.pl-mode-image):not(.pl-mode-video) .pl-img { display: none; }
.pm-lightbox.pl-mode-video .pl-video {
width: min(94vw, 1280px);
height: auto;
aspect-ratio: 16 / 9;
max-height: 80vh;
}
.pl-caption {
color: rgba(255, 255, 255, .9);
font-size: 14px;
font-weight: 500;
letter-spacing: .02em;
text-align: center;
padding: 6px 14px;
border-radius: 999px;
background: rgba(255, 255, 255, .06);
border: 1px solid rgba(255, 255, 255, .08);
}
.pl-counter {
color: rgba(255, 255, 255, .55);
font-size: 12px;
font-weight: 600;
letter-spacing: .12em;
font-variant-numeric: tabular-nums;
}
.pl-counter:empty { display: none; }
@keyframes pl-fade {
from { opacity: 0; }
to   { opacity: 1; }
}
@keyframes pl-pop {
from { opacity: 0; transform: scale(.94); }
to   { opacity: 1; transform: scale(1); }
}
@media (max-width: 600px) {
.pl-close { top: 14px; right: 14px; width: 42px; height: 42px; }
.pl-img,
.pl-video { max-height: 74vh; border-radius: 8px; }
.pm-lightbox.pl-mode-video .pl-video { width: 94vw; max-height: 60vh; }
.pl-nav { width: 42px; height: 42px; }
.pl-prev { left: 10px; }
.pl-next { right: 10px; }
}
@media (prefers-reduced-motion: reduce) {
.pm-lightbox.open,
.pl-frame { animation: none; }
.pl-close:hover { transform: none; }
.pl-nav:active { transform: translateY(-50%); }
} .about-eyebrow {
display: inline-block;
font-size: 12px;
font-weight: 700;
letter-spacing: .24em;
text-transform: uppercase;
color: var(--accent-green);
margin-bottom: 16px;
}
.about-intro { padding: clamp(72px, 9vw, 120px) 0; background: var(--bg); }
.about-intro-grid {
display: grid;
grid-template-columns: 1.25fr 1fr;
gap: clamp(40px, 6vw, 80px);
align-items: start;
}
.about-intro-text h2 {
font-size: clamp(28px, 3.4vw, 44px);
margin-bottom: 24px;
line-height: 1.15;
}
.about-intro-text .lead-md {
font-size: clamp(16px, 1.15vw, 18px);
color: var(--text-2);
line-height: 1.65;
margin-bottom: 22px;
}
.about-intro-text p {
color: var(--muted);
font-size: 15.5px;
line-height: 1.7;
margin-bottom: 18px;
}
.about-intro-text p strong { color: var(--text); font-weight: 600; }
.about-intro-media {
position: sticky;
top: 96px;
display: flex;
flex-direction: column;
gap: 18px;
}
.about-media-card {
position: relative;
border-radius: var(--radius-lg);
overflow: hidden;
border: 1px solid var(--line);
box-shadow: var(--shadow-lg);
aspect-ratio: 4 / 5;
background: var(--bg-2);
}
.about-media-card img {
width: 100%;
height: 100%;
object-fit: contain;
padding: 18px;
background: #f2f4f6;
}
.about-media-card::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(11, 37, 69, 0) 50%, rgba(11, 37, 69, .6) 100%);
}
.about-media-tag {
position: absolute;
left: 18px;
bottom: 18px;
z-index: 2;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 14px;
border-radius: 999px;
background: rgba(255, 255, 255, .96);
backdrop-filter: blur(8px);
font-size: 12px;
font-weight: 600;
color: var(--text);
letter-spacing: .04em;
box-shadow: var(--shadow-sm);
}
.about-media-tag .dot {
width: 7px; height: 7px;
border-radius: 50%;
background: var(--accent-green);
animation: ap-pulse 1.8s ease-in-out infinite;
}
.about-media-meta {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.about-media-meta > div {
padding: 18px 20px;
border: 1px solid var(--line);
border-radius: var(--radius);
background: var(--surface);
box-shadow: var(--shadow-sm);
}
.about-media-meta .num {
font-family: 'Space Grotesk', sans-serif;
font-weight: 700;
font-size: 22px;
letter-spacing: -0.02em;
color: var(--text);
margin-bottom: 4px;
}
.about-media-meta .lbl {
font-size: 11px;
letter-spacing: .14em;
text-transform: uppercase;
color: var(--muted);
}
.about-stats {
padding: clamp(56px, 7vw, 96px) 0;
background: linear-gradient(180deg, var(--bg) 0%, #ffffff 100%);
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
}
.about-stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: clamp(20px, 2.5vw, 32px);
}
.about-stat { border-top: 2px solid var(--line-strong); padding-top: 24px; }
.about-stat .val {
font-family: 'Space Grotesk', sans-serif;
font-weight: 700;
font-size: clamp(36px, 4vw, 52px);
letter-spacing: -0.02em;
line-height: 1;
margin-bottom: 14px;
color: var(--text);
display: flex;
align-items: baseline;
gap: 6px;
}
.about-stat .val .suffix {
font-size: .42em;
font-weight: 600;
color: var(--muted);
letter-spacing: 0;
}
.about-stat h4 {
font-size: 15px;
font-weight: 600;
margin-bottom: 8px;
color: var(--text);
}
.about-stat p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.about-timeline { padding: clamp(80px, 10vw, 140px) 0; background: var(--bg); }
.about-tl-list {
list-style: none;
padding: 0;
margin: 0;
position: relative;
}
.about-tl-list::before {
content: '';
position: absolute;
left: 90px;
top: 12px;
bottom: 12px;
width: 2px;
background: linear-gradient(180deg, var(--accent-green) 0%, var(--accent-blue) 50%, var(--accent-yellow) 100%);
border-radius: 2px;
opacity: .25;
}
.about-tl-item {
display: grid;
grid-template-columns: 110px 1fr;
gap: 28px;
padding: 22px 0;
position: relative;
}
.about-tl-item + .about-tl-item { border-top: 1px solid var(--line); }
.about-tl-year {
font-family: 'Space Grotesk', sans-serif;
font-weight: 700;
font-size: 28px;
letter-spacing: -0.02em;
color: var(--text);
position: relative;
padding-right: 32px;
}
.about-tl-year::after {
content: '';
position: absolute;
top: 14px;
right: 12px;
width: 12px;
height: 12px;
border-radius: 50%;
background: var(--surface);
border: 2px solid var(--accent-navy);
box-shadow: 0 0 0 4px var(--bg);
}
.about-tl-body h3 {
font-size: 20px;
margin-bottom: 8px;
color: var(--text);
}
.about-tl-body p {
color: var(--muted);
font-size: 15px;
line-height: 1.65;
max-width: 720px;
}
.about-tl-body p strong { color: var(--text-2); font-weight: 600; } .about-companies { padding: clamp(80px, 10vw, 140px) 0; background: var(--bg); }
.about-companies .section-head { margin-bottom: 56px; }
.about-companies-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 22px;
}
.company-card {
position: relative;
display: flex;
flex-direction: column;
padding: 32px 28px 28px;
border: 1px solid var(--line);
border-radius: var(--radius-lg);
background: var(--surface);
box-shadow: var(--shadow-sm);
transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.company-card:hover {
transform: translateY(-6px);
border-color: var(--line-strong);
box-shadow: var(--shadow-lg);
}
.company-card-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-bottom: 22px;
}
.company-mono {
width: 56px;
height: 56px;
border-radius: 16px;
display: grid;
place-items: center;
font-family: 'Space Grotesk', system-ui, sans-serif;
font-weight: 700;
font-size: 26px;
color: #fff;
letter-spacing: -.02em;
background: linear-gradient(135deg, #059669 0%, #047857 100%);
box-shadow: 0 6px 16px rgba(5, 150, 105, .18);
}
.company-card[data-company="durucasu"] .company-mono {
background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
box-shadow: 0 6px 16px rgba(37, 99, 235, .18);
}
.company-card[data-company="gemer"] .company-mono {
background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
box-shadow: 0 6px 16px rgba(217, 119, 6, .18);
}
.company-tag {
font-size: 11px;
font-weight: 700;
letter-spacing: .12em;
text-transform: uppercase;
color: var(--muted);
padding: 6px 10px;
border: 1px solid var(--line);
border-radius: 999px;
background: var(--bg-2);
white-space: nowrap;
}
.company-card h3 {
font-size: 22px;
margin-bottom: 4px;
color: var(--text);
}
.company-sub {
color: var(--muted-2);
font-size: 13px;
font-style: italic;
margin-bottom: 14px;
}
.company-card > p:not(.company-sub) {
color: var(--muted);
font-size: 15px;
line-height: 1.65;
margin-bottom: 22px;
flex: 1;
}
.company-meta {
list-style: none;
margin: 0;
padding: 16px 0 0;
border-top: 1px dashed var(--line);
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}
.company-meta li { display: flex; flex-direction: column; gap: 2px; }
.company-meta li span {
font-size: 11px;
font-weight: 700;
letter-spacing: .14em;
text-transform: uppercase;
color: var(--muted);
}
.company-meta li strong {
font-size: 15px;
color: var(--text);
font-weight: 600;
}
@media (max-width: 960px) {
.about-companies-grid { grid-template-columns: 1fr; }
}
.about-values { padding: clamp(80px, 10vw, 140px) 0; background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%); }
.about-values-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 22px;
}
.about-value {
padding: 36px 28px;
border: 1px solid var(--line);
border-radius: var(--radius-lg);
background: var(--surface);
box-shadow: var(--shadow-sm);
transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.about-value:hover {
transform: translateY(-6px);
border-color: var(--line-strong);
box-shadow: var(--shadow-lg);
}
.about-value .icn {
width: 56px;
height: 56px;
border-radius: 16px;
display: grid;
place-items: center;
background: var(--bg-2);
border: 1px solid var(--line);
margin-bottom: 22px;
}
.about-value h3 {
font-size: 22px;
margin-bottom: 10px;
color: var(--text);
}
.about-value p {
color: var(--muted);
font-size: 15px;
line-height: 1.65;
}
@media (max-width: 960px) {
.about-intro-grid { grid-template-columns: 1fr; }
.about-intro-media { position: static; }
.about-stats-grid { grid-template-columns: repeat(2, 1fr); }
.about-values-grid { grid-template-columns: 1fr; }
.about-tl-list::before { left: 70px; }
.about-tl-item { grid-template-columns: 88px 1fr; gap: 20px; }
.about-tl-year { font-size: 22px; padding-right: 20px; }
.about-tl-year::after { right: 4px; top: 11px; }
}
@media (max-width: 600px) {
.about-stats-grid { grid-template-columns: 1fr; }
.about-tl-list::before { display: none; }
.about-tl-item { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
.about-tl-year { padding-right: 0; font-size: 18px; color: var(--accent-green); }
.about-tl-year::after { display: none; }
} .contact-hero {
position: relative;
padding: clamp(112px, 15vh, 170px) 0 clamp(70px, 9vw, 120px);
overflow: hidden;
isolation: isolate;
background:
radial-gradient(620px 340px at 18% 20%, rgba(5, 150, 105, .11), transparent 62%),
radial-gradient(560px 320px at 88% 10%, rgba(37, 99, 235, .1), transparent 62%),
linear-gradient(180deg, #ffffff 0%, var(--bg-2) 78%, var(--bg) 100%);
border-bottom: 1px solid var(--line);
}
.contact-hero .hero-grid {
opacity: .42;
z-index: -1;
}
.contact-hero .kicker,
.contact-form-head .kicker,
.contact-map-card .kicker {
color: var(--accent-green);
font-size: 12px;
font-weight: 700;
letter-spacing: .24em;
text-transform: uppercase;
}
.contact-hero-grid {
display: grid;
grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
gap: clamp(44px, 7vw, 86px);
align-items: center;
}
.contact-hero-copy h1 {
max-width: 760px;
font-size: clamp(40px, 5.4vw, 76px);
line-height: 1.04;
margin-bottom: 24px;
}
.contact-hero-copy .lead {
max-width: 620px;
color: var(--muted);
font-size: clamp(16px, 1.2vw, 19px);
line-height: 1.65;
margin-bottom: 34px;
}
.contact-quick {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.contact-quick a {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 11px 16px;
border-radius: 999px;
background: rgba(255, 255, 255, .82);
border: 1px solid var(--line);
box-shadow: var(--shadow-sm);
color: var(--text-2);
font-size: 13px;
font-weight: 600;
transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.contact-quick a:hover {
transform: translateY(-2px);
border-color: var(--line-strong);
box-shadow: var(--shadow-md);
}
.cq-icon,
.ci-icon {
width: 34px;
height: 34px;
border-radius: 50%;
display: grid;
place-items: center;
flex-shrink: 0;
background: rgba(5, 150, 105, .09);
color: var(--accent-green);
}
.contact-orbit {
position: relative;
min-height: 430px;
border-radius: 36px;
background:
linear-gradient(135deg, rgba(11, 37, 69, .96), rgba(15, 61, 96, .92)),
var(--accent-navy);
box-shadow: var(--shadow-xl);
border: 1px solid rgba(255, 255, 255, .18);
overflow: hidden;
}
.contact-orbit::before {
content: '';
position: absolute;
inset: -20%;
background:
radial-gradient(circle at 24% 22%, rgba(5, 150, 105, .34), transparent 24%),
radial-gradient(circle at 78% 30%, rgba(37, 99, 235, .35), transparent 24%),
radial-gradient(circle at 56% 82%, rgba(217, 119, 6, .34), transparent 24%);
filter: blur(8px);
}
.orbit-ring {
position: absolute;
inset: 54px;
border: 1px dashed rgba(255, 255, 255, .28);
border-radius: 50%;
}
.orbit-card {
position: absolute;
left: 50%;
top: 50%;
width: min(72%, 320px);
transform: translate(-50%, -50%);
padding: 28px;
border-radius: 26px;
background: rgba(255, 255, 255, .12);
border: 1px solid rgba(255, 255, 255, .22);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
color: #fff;
z-index: 2;
}
.orbit-card span {
display: block;
margin-bottom: 12px;
color: rgba(255, 255, 255, .72);
font-size: 12px;
font-weight: 700;
letter-spacing: .18em;
text-transform: uppercase;
}
.orbit-card strong {
display: block;
font-family: 'Space Grotesk', sans-serif;
font-size: clamp(24px, 2.4vw, 34px);
line-height: 1.12;
letter-spacing: -0.02em;
}
.orbit-chip {
position: absolute;
z-index: 3;
width: 76px;
height: 76px;
border-radius: 24px;
display: grid;
place-items: center;
font-family: 'Space Grotesk', sans-serif;
font-size: 18px;
font-weight: 700;
color: #fff;
box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
}
.chip-hes { left: 13%; top: 18%; background: linear-gradient(135deg, #2563eb, #06b6d4); }
.chip-res { right: 12%; top: 26%; background: linear-gradient(135deg, #059669, #34d399); }
.chip-ges { left: 50%; bottom: 12%; transform: translateX(-50%); background: linear-gradient(135deg, #d97706, #f59e0b); }
.contact-section {
padding: clamp(76px, 10vw, 132px) 0;
background: var(--bg);
}
.contact-layout {
display: grid;
grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
gap: clamp(28px, 5vw, 64px);
align-items: start;
}
.contact-info-panel {
position: sticky;
top: 104px;
padding: clamp(28px, 3vw, 38px);
border: 1px solid var(--line);
border-radius: var(--radius-lg);
background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
box-shadow: var(--shadow-md);
}
.contact-info-panel h2 {
font-size: clamp(28px, 3vw, 42px);
margin-bottom: 16px;
}
.contact-info-panel > p {
color: var(--muted);
line-height: 1.7;
margin-bottom: 28px;
}
.contact-info-list {
display: grid;
gap: 14px;
}
.contact-info-item {
display: flex;
gap: 14px;
padding: 16px;
border-radius: 18px;
background: var(--surface);
border: 1px solid var(--line);
}
.contact-info-item strong {
display: block;
margin-bottom: 4px;
color: var(--text);
font-size: 14px;
}
.contact-info-item span {
color: var(--muted);
font-size: 13.5px;
line-height: 1.55;
}
.contact-info-item a { color: var(--accent-blue); }
.contact-form-card {
padding: clamp(28px, 4vw, 48px);
border: 1px solid var(--line);
border-radius: 32px;
background: var(--surface);
box-shadow: var(--shadow-lg);
}
.contact-form-head {
margin-bottom: 26px;
}
.contact-form-head h2 {
font-size: clamp(30px, 3.6vw, 46px);
margin: 10px 0 10px;
}
.contact-form-head p {
color: var(--muted);
}
.contact-alert {
margin-bottom: 22px;
padding: 14px 16px;
border-radius: 14px;
font-size: 14px;
font-weight: 600;
}
.contact-alert-success {
color: #047857;
background: rgba(5, 150, 105, .1);
border: 1px solid rgba(5, 150, 105, .22);
}
.contact-alert-error {
color: #b45309;
background: rgba(217, 119, 6, .1);
border: 1px solid rgba(217, 119, 6, .24);
}
.contact-form {
display: grid;
gap: 18px;
}
.form-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 18px;
}
.contact-form label {
display: grid;
gap: 8px;
}
.contact-form label span {
color: var(--text-2);
font-size: 13px;
font-weight: 700;
letter-spacing: .03em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
width: 100%;
min-height: 52px;
border: 1px solid var(--line-strong);
border-radius: 15px;
background: #f8fafc;
color: var(--text);
font: inherit;
padding: 13px 15px;
transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.contact-form textarea {
min-height: 154px;
resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
outline: none;
border-color: rgba(37, 99, 235, .42);
background: #fff;
box-shadow: 0 0 0 4px rgba(37, 99, 235, .08);
}
.contact-form .btn {
justify-self: start;
margin-top: 4px;
}
.hp-field {
position: absolute;
left: -9999px;
width: 1px;
height: 1px;
overflow: hidden;
}
.contact-map-band {
padding: 0 0 clamp(80px, 10vw, 132px);
background: var(--bg);
}
.contact-map-card {
display: grid;
grid-template-columns: 1fr auto;
gap: 28px;
align-items: center;
padding: clamp(28px, 4vw, 46px);
border-radius: 30px;
background:
radial-gradient(460px 220px at 88% 20%, rgba(37, 99, 235, .16), transparent 62%),
linear-gradient(135deg, #0b2545 0%, #0f3d60 100%);
color: #fff;
box-shadow: var(--shadow-xl);
overflow: hidden;
}
.contact-map-card h2 {
color: #fff;
font-size: clamp(28px, 3.4vw, 46px);
margin: 12px 0;
}
.contact-map-card p {
max-width: 690px;
color: rgba(255, 255, 255, .72);
line-height: 1.7;
}
.contact-map-card .btn-ghost {
background: rgba(255, 255, 255, .1);
color: #fff;
border-color: rgba(255, 255, 255, .18);
box-shadow: none;
}
.contact-map-card .btn-ghost:hover {
background: rgba(255, 255, 255, .18);
border-color: rgba(255, 255, 255, .32);
}
@media (max-width: 980px) {
.contact-hero-grid,
.contact-layout,
.contact-map-card {
grid-template-columns: 1fr;
}
.contact-orbit {
min-height: 360px;
}
.contact-info-panel {
position: static;
}
.contact-map-card .btn {
justify-self: start;
}
}
@media (max-width: 640px) {
.contact-hero {
padding-top: 96px;
}
.contact-quick,
.contact-quick a {
width: 100%;
}
.form-grid {
grid-template-columns: 1fr;
}
.contact-form-card,
.contact-info-panel,
.contact-map-card {
border-radius: 22px;
}
.orbit-chip {
width: 62px;
height: 62px;
border-radius: 19px;
font-size: 15px;
}
}  .fa-pillars {
padding: clamp(72px, 9vw, 120px) 0;
background: var(--bg);
} .fa-detail {
padding: clamp(80px, 10vw, 140px) 0;
}
.fa-detail--hes { background: var(--bg); }
.fa-detail--res { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.fa-detail--ges { background: var(--bg); }
.fa-detail-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(48px, 6vw, 96px);
align-items: center;
}
.fa-detail-grid--reverse .fa-detail-visual { order: 2; }
.fa-detail-grid--reverse .fa-detail-text   { order: 1; } .fa-detail-visual {
position: relative;
border-radius: 20px;
overflow: hidden;
min-height: 340px;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 32px;
}
.fa-vis-hes { background: linear-gradient(145deg, #1e3a5f 0%, #0f2040 100%); }
.fa-vis-res { background: linear-gradient(145deg, #0d3326 0%, #061e16 100%); }
.fa-vis-ges { background: linear-gradient(145deg, #3d2800 0%, #1f1400 100%); }
.fa-vis-deco {
position: absolute;
bottom: 0; left: 0;
width: 100%; height: 60%;
pointer-events: none;
}
.fa-vis-wind {
width: 120px; height: 160px;
display: block;
margin: 0 auto 8px;
}
.fa-vis-sun {
width: 160px; height: 160px;
display: block;
margin: 0 auto 8px;
}
.fa-vis-label {
display: flex;
align-items: center;
gap: 10px;
font-family: var(--font-head);
font-size: 15px;
font-weight: 600;
color: rgba(255,255,255,.85);
letter-spacing: .04em;
position: relative;
z-index: 1;
}
.fa-vis-stat-row {
display: flex;
gap: 24px;
flex-wrap: wrap;
position: relative;
z-index: 1;
}
.fa-vis-stat {
display: flex;
flex-direction: column;
gap: 2px;
}
.fa-vis-stat .num {
font-family: var(--font-head);
font-size: 26px;
font-weight: 700;
color: #fff;
line-height: 1;
}
.fa-vis-stat .lbl {
font-size: 11px;
color: rgba(255,255,255,.55);
letter-spacing: .06em;
text-transform: uppercase;
} .fa-detail-text h2 {
font-size: clamp(26px, 3.5vw, 38px);
font-family: var(--font-head);
margin-bottom: 20px;
line-height: 1.2;
color: var(--text);
}
.fa-detail-text .lead-md {
font-size: 17px;
line-height: 1.7;
color: var(--muted);
margin-bottom: 16px;
}
.fa-detail-text p {
font-size: 15px;
color: var(--muted);
line-height: 1.7;
margin-bottom: 28px;
}
.fa-detail-text p strong { color: var(--text); font-weight: 600; } .fa-service-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 12px;
}
.fa-service-list li {
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
color: var(--muted);
font-weight: 500;
}
.fa-service-list li svg { flex-shrink: 0; } .fa-stats { background: var(--bg-2); } @media (max-width: 900px) {
.fa-detail-grid,
.fa-detail-grid--reverse { grid-template-columns: 1fr; }
.fa-detail-grid--reverse .fa-detail-visual { order: 0; }
.fa-detail-grid--reverse .fa-detail-text   { order: 0; }
.fa-detail-visual { min-height: 260px; }
} .vm-section {
padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 80px);
background: var(--bg);
}
.vm-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 28px;
}
.vm-card {
background: #ffffff;
border: 1px solid rgba(15, 23, 42, .06);
border-radius: 24px;
padding: clamp(28px, 3.5vw, 44px);
box-shadow: 0 4px 24px rgba(15, 23, 42, .04);
position: relative;
overflow: hidden;
}
.vm-card::before {
content: "";
position: absolute;
inset: 0 0 auto 0;
height: 4px;
background: linear-gradient(90deg, #059669 0%, #34d399 100%);
}
.vm-card-mission::before {
background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
}
.vm-head {
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 20px;
}
.vm-icn {
width: 56px;
height: 56px;
border-radius: 16px;
background: rgba(5, 150, 105, .10);
display: grid;
place-items: center;
flex-shrink: 0;
}
.vm-eyebrow {
font-size: 12px;
font-weight: 700;
letter-spacing: .24em;
text-transform: uppercase;
color: #059669;
}
.vm-card h2 {
font-size: clamp(22px, 2.4vw, 30px);
line-height: 1.25;
color: var(--text);
margin-bottom: 18px;
letter-spacing: -.01em;
}
.vm-lead {
font-size: clamp(15px, 1.05vw, 17px);
color: var(--muted);
line-height: 1.75;
margin-bottom: 28px;
}
.vm-points {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 16px;
}
.vm-points li {
display: grid;
grid-template-columns: 14px 1fr;
gap: 14px;
align-items: start;
font-size: 15px;
color: var(--text-2);
line-height: 1.65;
}
.vm-points strong {
color: var(--text);
display: inline;
margin-right: 4px;
}
.vm-dot {
width: 10px;
height: 10px;
border-radius: 50%;
margin-top: 8px;
display: inline-block;
}
@media (max-width: 900px) {
.vm-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
.fa-vis-stat .num { font-size: 20px; }
}