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

:root {
--bg-900: #080c16;
--bg-850: #0b1120;
--bg-800: #0e1526;
--glass: rgba(255,255,255,0.055);
--glass-strong: rgba(255,255,255,0.1);
--glass-border: rgba(255,255,255,0.14);
--copper: #ce8a4e;
--copper-light: #eab27c;
--teal: #33bfa6;
--teal-light: #6fe0c9;
--text-100: #f6f4ef;
--text-300: #c7cede;
--text-500: #8993ab;
--header-h: 92px;
--vh: 1vh;
}

html {
scroll-behavior: smooth;
overflow-x: hidden;
width: 100%;
}

body {
background: var(--bg-900);
color: var(--text-100);
font-family: 'Cairo', sans-serif;
overflow-x: hidden;
width: 100%;
position: relative;
line-height: 1.7;
}

a {
color: inherit;
text-decoration: none;
}

ul {
list-style: none;
}

img {
max-width: 100%;
display: block;
}

button {
font-family: inherit;
border: none;
background: none;
cursor: pointer;
}

::selection {
background: var(--copper);
color: var(--bg-900);
}

.ambient {
position: fixed;
inset: 0;
z-index: 0;
overflow: hidden;
pointer-events: none;
}

.blob {
position: absolute;
border-radius: 50%;
filter: blur(100px);
opacity: 0.35;
}

.blob-a {
width: 40vw;
height: 40vw;
background: radial-gradient(circle at 30% 30%, var(--copper), transparent 70%);
top: -10vw;
right: -8vw;
animation: floatA 24s ease-in-out infinite;
}

.blob-b {
width: 34vw;
height: 34vw;
background: radial-gradient(circle at 60% 40%, var(--teal), transparent 70%);
bottom: -12vw;
left: -6vw;
animation: floatB 28s ease-in-out infinite;
}

@keyframes floatA {
0%, 100% { transform: translate(0,0) scale(1); }
50% { transform: translate(-3vw, 4vw) scale(1.1); }
}

@keyframes floatB {
0%, 100% { transform: translate(0,0) scale(1); }
50% { transform: translate(4vw, -3vw) scale(1.08); }
}

.site-header {
position: fixed;
top: 0;
inset-inline: 0;
z-index: 100;
padding: 22px clamp(16px, 4vw, 48px);
display: flex;
align-items: center;
justify-content: space-between;
gap: 14px;
}
.header-scrim {
position: absolute;
top: 10px;
right: 10px;
bottom: 10px;
left: 10px;
border-radius: 26px;
background: rgba(8,12,22,0.9);
border: 1px solid rgba(255,255,255,0.08);
backdrop-filter: blur(18px) saturate(140%);
-webkit-backdrop-filter: blur(18px) saturate(140%);
box-shadow: 0 14px 40px rgba(0,0,0,0.35);
z-index: -1;
opacity: 0;
transform: scale(0.97);
transition: opacity 0.45s ease, transform 0.45s ease;
pointer-events: none;
}

.header-scrim::before {
content: '';
position: absolute;
inset: 0;
border-radius: inherit;
padding: 1px;
background: linear-gradient(100deg, rgba(206,138,78,0.45), rgba(51,191,166,0.45));
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
opacity: 0.7;
}

.site-header.is-scrolled .header-scrim {
opacity: 1;
transform: scale(1);
}

.brand {
display: flex;
align-items: center;
flex-shrink: 0;
}

.brand-logo {
height: clamp(38px, 4.6vw, 90px);
width: auto;
max-width: 190px;
object-fit: contain;
transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), filter 0.4s ease;
}

.brand:hover .brand-logo {
transform: scale(1.05);
filter: drop-shadow(0 0 16px rgba(206,138,78,0.35));
}

.nav-shell {
position: fixed;
top: 34px;
left: 50%;
transform: translateX(-50%);
}

.nav-shell ul {
position: relative;
display: flex;
gap: 4px;
}

.nav-marker {
position: absolute;
top: -12px;
right: 0;
width: 7px;
height: 7px;
background: linear-gradient(120deg, var(--copper-light), var(--teal-light));
transform: rotate(45deg) translateX(0);
transition: transform 0.5s cubic-bezier(0.65,0,0.35,1), opacity 0.3s ease;
border-radius: 2px;
box-shadow: 0 0 12px rgba(206,138,78,0.6);
}

.nav-marker::after {
content: '';
position: absolute;
top: 8px;
left: 50%;
width: 1.5px;
height: 12px;
background: linear-gradient(180deg, var(--teal-light), transparent);
transform: translateX(-50%) rotate(-45deg);
}

.nav-link {
position: relative;
display: inline-block;
padding: 9px 16px;
font-size: 14.5px;
font-weight: 600;
color: var(--text-300);
white-space: nowrap;
transition: color 0.35s ease, transform 0.35s ease, letter-spacing 0.35s ease;
text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

.nav-link:hover {
color: var(--text-100);
transform: translateY(-2px);
}

.nav-link.is-active {
color: transparent;
background: linear-gradient(100deg, var(--copper-light), var(--teal-light));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 800;
letter-spacing: 0.3px;
}

.header-cta {
display: flex;
align-items: center;
gap: 10px;
flex-shrink: 0;
padding: 8px;
border-radius: 20px;
background: var(--glass);
border: 1px solid var(--glass-border);
backdrop-filter: blur(18px);
}

.btn-call {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 18px;
border-radius: 14px;
background: linear-gradient(120deg, var(--copper), var(--teal));
color: var(--bg-900);
font-weight: 700;
font-size: 14px;
position: relative;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
direction: ltr;
}

.btn-call::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
transform: translateX(-120%);
transition: transform 0.7s ease;
}

.btn-call:hover {
transform: translateY(-2px);
box-shadow: 0 10px 28px rgba(51,191,166,0.4);
}

.btn-call:hover::before {
transform: translateX(120%);
}

.nav-toggle {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
width: 40px;
height: 40px;
border-radius: 12px;
background: var(--glass-strong);
align-items: center;
}

.nav-toggle span {
width: 17px;
height: 2px;
background: var(--text-100);
border-radius: 2px;
transition: transform 0.35s ease, opacity 0.35s ease;
}

.nav-toggle.is-open span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
display: none;
position: fixed;
top: calc(var(--header-h) + 2px);
left: 50%;
transform: translateX(-50%) translateY(-14px) scale(0.94);
width: min(88vw, 320px);
background: rgba(10,15,28,0.92);
border: 1px solid var(--glass-border);
backdrop-filter: blur(24px) saturate(150%);
-webkit-backdrop-filter: blur(24px) saturate(150%);
border-radius: 26px;
padding: 14px;
opacity: 0;
pointer-events: none;
transition: opacity 0.32s ease, transform 0.32s ease;
z-index: 99;
box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.nav-mobile.is-open {
opacity: 1;
transform: translateX(-50%) translateY(0) scale(1);
pointer-events: auto;
}

.nav-mobile ul {
display: flex;
flex-direction: column;
gap: 4px;
}

.nav-mobile .nav-link {
display: block;
text-align: center;
padding: 12px 14px;
font-size: 15px;
border-radius: 14px;
opacity: 0;
transform: translateY(8px);
text-shadow: none;
}

.nav-mobile.is-open .nav-link {
animation: mobileLinkIn 0.4s ease forwards;
}

.nav-mobile.is-open li:nth-child(1) .nav-link { animation-delay: 0.04s; }
.nav-mobile.is-open li:nth-child(2) .nav-link { animation-delay: 0.08s; }
.nav-mobile.is-open li:nth-child(3) .nav-link { animation-delay: 0.12s; }
.nav-mobile.is-open li:nth-child(4) .nav-link { animation-delay: 0.16s; }
.nav-mobile.is-open li:nth-child(5) .nav-link { animation-delay: 0.20s; }
.nav-mobile.is-open li:nth-child(6) .nav-link { animation-delay: 0.24s; }
.nav-mobile.is-open li:nth-child(7) .nav-link { animation-delay: 0.28s; }
.nav-mobile.is-open li:nth-child(8) .nav-link { animation-delay: 0.32s; }

@keyframes mobileLinkIn {
to { opacity: 1; transform: translateY(0); }
}

.nav-mobile .nav-link.is-active {
background: linear-gradient(120deg, var(--copper-light), var(--teal-light));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 800;
}

.hero {
position: relative;
min-height: 100vh;
min-height: calc(var(--vh, 1vh) * 100);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: hidden;
padding: calc(var(--header-h) + 20px) 20px 40px;
width: 100%;
gap: clamp(30px, 6vh, 60px);
background: radial-gradient(120% 90% at 20% 0%, var(--bg-850) 0%, var(--bg-900) 55%);
}

.hero-bg {
position: absolute;
inset: 0;
z-index: 0;
}
.hero-pattern {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
animation: patternZoom 14s ease-in-out infinite;
}

@keyframes patternZoom {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.06); }
}

.hero-overlay {
position: absolute;
inset: 0;
z-index: 1;
background: radial-gradient(60% 55% at 50% 42%, rgba(8,12,22,0.86) 0%, rgba(8,12,22,0.55) 55%, rgba(8,12,22,0.15) 100%);
}
.hero-content {
position: relative;
z-index: 3;
max-width: 880px;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
gap: 26px;
}

.reveal {
opacity: 0;
transform: translateY(26px);
animation: revealUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}

.r1 { animation-delay: 0.15s; }
.r2 { animation-delay: 0.4s; }
.r3 { animation-delay: 0.62s; }
.r4 { animation-delay: 0.85s; }

@keyframes revealUp {
to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
display: flex;
flex-direction: column;
gap: 12px;
font-weight: 800;
font-size: clamp(30px, 5.4vw, 58px);
line-height: 1.3;
}

.hero-content h1 span:first-child {
color: var(--text-100);
}

.accent-line {
font-size: clamp(20px, 3vw, 30px);
background: linear-gradient(100deg, var(--copper-light), var(--teal-light));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
font-weight: 700;
padding-bottom: 6px;
}

.hero-desc {
color: var(--text-300);
font-size: clamp(15px, 1.7vw, 18px);
max-width: 700px;
line-height: 1.95;
font-weight: 400;
}

.hero-actions {
display: flex;
gap: 16px;
flex-wrap: wrap;
justify-content: center;
}

.btn {
position: relative;
padding: 16px 34px;
border-radius: 100px;
font-weight: 700;
font-size: 15px;
overflow: hidden;
transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}

.btn span {
position: relative;
z-index: 2;
}

.btn-primary {
background: linear-gradient(110deg, var(--copper), var(--teal));
background-size: 200% 100%;
background-position: 0% 0%;
color: var(--bg-900);
box-shadow: 0 10px 30px rgba(206,138,78,0.3);
}

.btn-primary:hover {
transform: translateY(-4px) scale(1.03);
background-position: 100% 0%;
box-shadow: 0 16px 40px rgba(51,191,166,0.4);
}

.btn-secondary {
background: var(--glass-strong);
border: 1px solid var(--glass-border);
color: var(--text-100);
backdrop-filter: blur(10px);
}

.btn-secondary:hover {
transform: translateY(-4px) scale(1.03);
background: rgba(255,255,255,0.14);
box-shadow: 0 16px 36px rgba(0,0,0,0.3);
}

.stats-band {
position: relative;
z-index: 3;
display: flex;
gap: clamp(10px, 3vw, 26px);
justify-content: center;
width: 100%;
max-width: 720px;
}

.stats-band::before {
content: '';
position: absolute;
top: 50%;
right: 12%;
left: 12%;
height: 0;
border-top: 2px dashed rgba(255,255,255,0.22);
transform: translateY(-50%);
z-index: -1;
}

.stat-card {
width: clamp(108px, 27vw, 168px);
aspect-ratio: 176 / 152;
clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
background: linear-gradient(150deg, var(--copper-light), var(--teal-light));
padding: 2px;
transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
}

.stat-card:hover {
transform: translateY(-8px) scale(1.03);
}

.stat-inner {
width: 100%;
height: 100%;
clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
background: rgba(9,13,24,0.92);
backdrop-filter: blur(10px);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 4px;
padding: 8px 6px;
}

.stat-icon {
display: flex;
align-items: center;
justify-content: center;
color: var(--copper-light);
}

.stat-card strong {
font-family: 'Cairo', sans-serif;
font-weight: 800;
font-size: clamp(21px, 3vw, 27px);
background: linear-gradient(100deg, var(--copper-light), var(--teal-light));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
direction: ltr;
line-height: 1;
}

.stat-label {
font-size: clamp(10.5px, 1.6vw, 12.5px);
color: var(--text-500);
font-weight: 600;
text-align: center;
}

.scroll-cue {
display: none;
}

@media (min-height: 780px) {
.scroll-cue {
display: block;
position: absolute;
bottom: 26px;
left: 50%;
transform: translateX(-50%);
z-index: 3;
}
}

.mouse {
display: block;
width: 24px;
height: 38px;
border: 2px solid rgba(255,255,255,0.5);
border-radius: 14px;
position: relative;
}

.wheel {
position: absolute;
top: 6px;
left: 50%;
transform: translateX(-50%);
width: 4px;
height: 8px;
border-radius: 2px;
background: var(--copper-light);
animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
0% { opacity: 1; top: 6px; }
70% { opacity: 0; top: 18px; }
100% { opacity: 0; top: 6px; }
}

@media (max-width: 980px) {
.nav-shell { display: none; }
.nav-toggle { display: flex; }
.nav-mobile { display: block; }
.btn-call { display: none; }
.header-cta { padding: 6px; border-radius: 16px; }
.brand-logo { height: clamp(48px, 9vw, 80px); }
}

@media (max-width: 480px) {
.hero { gap: 22px; }
.hero-content { gap: 18px; }
.hero-desc { font-size: 14px; }
.stats-band { gap: 8px; }
.stat-label { font-size: 10px; }
.brand-logo { height: clamp(48px, 9vw, 70px); }

}

@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.001ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.001ms !important;
scroll-behavior: auto !important;
}
}

a:focus-visible, button:focus-visible {
outline: 2px solid var(--teal-light);
outline-offset: 3px;
}
.nav-overlay {
position: fixed;
inset: 0;
background: rgba(6,9,17,0.25);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
opacity: 0;
pointer-events: none;
transition: opacity 0.35s ease;
z-index: 98;
}

.nav-overlay.is-open {
opacity: 1;
pointer-events: auto;
}
body.no-scroll {
overflow: hidden;
}

.splash-screen {
position: fixed;
inset: 0;
z-index: 999;
background: var(--bg-900);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 26px;
transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash-screen.is-hidden {
opacity: 0;
visibility: hidden;
pointer-events: none;
}

.splash-logo {
height: clamp(70px, 12vw, 110px);
width: auto;
animation: splashPulse 1.6s ease-in-out infinite;
}

@keyframes splashPulse {
0%, 100% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.06); opacity: 0.85; }
}

.splash-loader {
display: flex;
gap: 8px;
}

.splash-loader span {
width: 8px;
height: 8px;
border-radius: 50%;
background: linear-gradient(120deg, var(--copper-light), var(--teal-light));
animation: splashDot 1s ease-in-out infinite;
}

.splash-loader span:nth-child(2) { animation-delay: 0.15s; }
.splash-loader span:nth-child(3) { animation-delay: 0.3s; }

@keyframes splashDot {
0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
40% { transform: translateY(-8px); opacity: 1; }
}
.about {
position: relative;
background: #ffffff;
padding: clamp(70px, 12vh, 130px) 20px;
overflow: hidden;
scroll-margin-top: var(--header-h);
}

.about-pattern {
position: absolute;
inset: 0;
background-image:
radial-gradient(circle at 10% 10%, rgba(206,138,78,0.10), transparent 40%),
radial-gradient(circle at 92% 90%, rgba(51,191,166,0.10), transparent 40%),
linear-gradient(rgba(11,18,32,0.035) 1px, transparent 1px),
linear-gradient(90deg, rgba(11,18,32,0.035) 1px, transparent 1px);
background-size: auto, auto, 46px 46px, 46px 46px;
pointer-events: none;
}

.about-top {
position: relative;
z-index: 1;
max-width: 1240px;
margin: 0 auto clamp(50px, 8vh, 90px);
display: grid;
grid-template-columns: 0.85fr 1.15fr;
gap: clamp(40px, 6vw, 90px);
align-items: center;
}

.about-media {
position: relative;
}

.media-frame {
position: relative;
border-radius: 26px;
overflow: hidden;
aspect-ratio: 4 / 5;
box-shadow: 0 30px 60px rgba(11,18,32,0.14);
}

.media-img {
width: 100%;
height: 100%;
object-fit: cover;
}

.media-ring {
position: absolute;
top: 22px;
right: -22px;
width: 100%;
height: 100%;
border: 2px solid rgba(206,138,78,0.35);
border-radius: 26px;
z-index: -1;
}

.media-badge {
position: absolute;
bottom: -22px;
left: -22px;
background: #ffffff;
border-radius: 18px;
padding: 16px 20px;
box-shadow: 0 20px 40px rgba(11,18,32,0.16);
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
min-width: 110px;
}

.media-badge strong {
font-size: 26px;
font-weight: 800;
background: linear-gradient(100deg, var(--copper), var(--teal));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
}

.media-badge span {
font-size: 11.5px;
color: #6b7385;
font-weight: 600;
margin-top: 2px;
}

.about-tag {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 7px 16px;
border-radius: 100px;
background: linear-gradient(100deg, rgba(206,138,78,0.12), rgba(51,191,166,0.12));
border: 1px solid rgba(11,18,32,0.08);
color: var(--copper);
font-size: 13px;
font-weight: 700;
margin-bottom: 18px;
}

.about-heading {
font-size: clamp(26px, 3.6vw, 40px);
font-weight: 800;
line-height: 1.5;
color: #0b1220;
margin-bottom: 20px;
}

.about-heading .grad {
background: linear-gradient(100deg, var(--copper), var(--teal));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
}

.about-desc {
font-size: clamp(15px, 1.5vw, 16.5px);
line-height: 2;
color: #4b5568;
max-width: 640px;
margin-bottom: 16px;
}

.about-mini-stats {
display: flex;
gap: 0;
margin: 22px 0 26px;
}

.mini-stat {
padding: 0 22px;
border-left: 1px solid rgba(11,18,32,0.1);
display: flex;
flex-direction: column;
gap: 2px;
}

.mini-stat:first-child {
padding-right: 0;
}

.mini-stat:last-child {
border-left: none;
}

.mini-stat strong {
font-size: 22px;
font-weight: 800;
color: #0b1220;
}

.mini-stat span {
font-size: 12px;
color: #8993a3;
font-weight: 600;
}

.about-quote {
position: relative;
padding: 6px 0 6px 26px;
border-right: 3px solid;
border-image: linear-gradient(180deg, var(--copper), var(--teal)) 1;
font-size: clamp(16px, 1.8vw, 18.5px);
font-weight: 700;
color: #0b1220;
margin-bottom: 30px;
max-width: 560px;
}

.quote-mark {
display: block;
font-size: 40px;
line-height: 1;
font-weight: 900;
background: linear-gradient(100deg, var(--copper), var(--teal));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
margin-bottom: 4px;
}

.about-actions {
display: flex;
gap: 14px;
flex-wrap: wrap;
}

.btn-ghost {
background: transparent;
border: 1.5px solid rgba(11,18,32,0.16);
color: #0b1220;
}

.btn-ghost:hover {
transform: translateY(-4px) scale(1.03);
border-color: var(--copper);
background: rgba(206,138,78,0.06);
}

.about-values {
position: relative;
z-index: 1;
max-width: 1240px;
margin: 0 auto clamp(60px, 9vh, 100px);
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 18px;
}

.value-card {
position: relative;
padding: 26px 20px;
border-radius: 22px;
background: #fbfaf8;
border: 1px solid rgba(11,18,32,0.07);
box-shadow: 0 10px 30px rgba(11,18,32,0.04);
transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease, border-color 0.4s ease;
overflow: hidden;
}

.value-card::after {
content: '';
position: absolute;
right: 0;
bottom: 0;
left: 0;
height: 3px;
background: linear-gradient(90deg, var(--copper), var(--teal));
transform: scaleX(0);
transform-origin: right;
transition: transform 0.5s ease;
}

.value-card:hover {
transform: translateY(-8px);
box-shadow: 0 18px 40px rgba(11,18,32,0.09);
border-color: rgba(11,18,32,0.1);
}

.value-card:hover::after {
transform: scaleX(1);
}

.value-icon {
display: flex;
align-items: center;
justify-content: center;
width: 46px;
height: 46px;
border-radius: 14px;
margin-bottom: 16px;
transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
}

.value-card:hover .value-icon {
transform: rotate(-8deg) scale(1.08);
}

.value-icon--copper {
background: linear-gradient(140deg, rgba(206,138,78,0.16), rgba(206,138,78,0.05));
color: var(--copper);
}

.value-icon--teal {
background: linear-gradient(140deg, rgba(51,191,166,0.16), rgba(51,191,166,0.05));
color: var(--teal);
}

.value-card h3 {
font-size: 16px;
font-weight: 800;
color: #0b1220;
margin-bottom: 8px;
line-height: 1.5;
}

.value-card p {
font-size: 13.5px;
line-height: 1.85;
color: #6b7385;
}

.about-timeline {
position: relative;
z-index: 1;
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}

.timeline-track {
position: absolute;
top: 7px;
right: 6%;
left: 6%;
height: 0;
border-top: 2px dashed rgba(11,18,32,0.15);
}

.timeline-item {
position: relative;
padding-top: 30px;
text-align: center;
}

.timeline-dot {
position: absolute;
top: 0;
right: 50%;
transform: translateX(50%);
width: 15px;
height: 15px;
border-radius: 50%;
background: linear-gradient(120deg, var(--copper), var(--teal));
box-shadow: 0 0 0 5px #ffffff, 0 0 0 6px rgba(11,18,32,0.08);
}

.timeline-item strong {
display: block;
font-size: 13px;
font-weight: 800;
color: var(--copper);
margin-bottom: 6px;
letter-spacing: 0.5px;
}

.timeline-item h4 {
font-size: 16px;
font-weight: 800;
color: #0b1220;
margin-bottom: 8px;
}

.timeline-item p {
font-size: 13px;
line-height: 1.8;
color: #6b7385;
}

.reveal-io {
opacity: 0;
transform: translateY(28px);
transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
transition-delay: var(--d, 0s);
}

.reveal-io.is-in {
opacity: 1;
transform: translateY(0);
}

@media (max-width: 900px) {
.about-top {
grid-template-columns: 1fr;
}
.media-frame {
max-width: 380px;
margin: 0 auto;
}
.about-values {
grid-template-columns: repeat(2, 1fr);
}
.about-timeline {
grid-template-columns: repeat(2, 1fr);
row-gap: 36px;
}
.timeline-track {
display: none;
}
}

@media (max-width: 560px) {
.about-values {
grid-template-columns: 1fr;
}
.about-timeline {
grid-template-columns: 1fr;
}
.mini-stat {
padding: 0 14px;
}
.about-quote {
padding-right: 18px;
}
}
.services {
position: relative;
background: linear-gradient(160deg, #071019 0%, #0a1d24 45%, #071019 100%);
padding: clamp(70px, 12vh, 130px) 20px;
overflow: hidden;
scroll-margin-top: var(--header-h);
}

.services-pattern {
position: absolute;
inset: 0;
background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
background-size: 26px 26px;
mask-image: radial-gradient(ellipse at 50% 20%, black 0%, transparent 70%);
opacity: 0.5;
}

.services-glow {
position: absolute;
border-radius: 50%;
filter: blur(110px);
pointer-events: none;
}

.services-glow--a {
width: 38vw;
height: 38vw;
background: radial-gradient(circle, var(--teal), transparent 70%);
top: -10vw;
left: -8vw;
opacity: 0.28;
}

.services-glow--b {
width: 32vw;
height: 32vw;
background: radial-gradient(circle, var(--copper), transparent 70%);
bottom: -10vw;
right: -6vw;
opacity: 0.22;
}

.services-head {
position: relative;
z-index: 1;
max-width: 800px;
margin: 0 auto clamp(50px, 8vh, 80px);
text-align: center;
}

.services-tag {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 7px 16px;
border-radius: 100px;
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.14);
color: var(--teal-light);
font-size: 13px;
font-weight: 700;
margin-bottom: 20px;
}

.services-heading {
font-size: clamp(26px, 3.8vw, 44px);
font-weight: 800;
line-height: 1.5;
color: var(--text-100);
margin-bottom: 20px;
}

.services-heading .grad-light {
display: block;
background: linear-gradient(100deg, var(--copper-light), var(--teal-light));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
}

.services-desc {
font-size: clamp(14.5px, 1.6vw, 16.5px);
line-height: 2;
color: var(--text-300);
}

.services-grid {
position: relative;
z-index: 1;
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 22px;
}

.service-card {
position: relative;
padding: 30px 24px 26px;
border-radius: 22px;
background: rgba(255,255,255,0.045);
border: 1px solid rgba(255,255,255,0.1);
backdrop-filter: blur(14px);
overflow: hidden;
transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.service-card::before {
content: '';
position: absolute;
right: 0;
bottom: 0;
left: 0;
height: 3px;
background: linear-gradient(90deg, var(--copper-light), var(--teal-light));
transform: scaleX(0);
transform-origin: right;
transition: transform 0.5s ease;
}

.service-card:hover {
transform: translateY(-8px);
border-color: rgba(255,255,255,0.22);
background: rgba(255,255,255,0.07);
box-shadow: 0 24px 50px rgba(0,0,0,0.35);
}

.service-card:hover::before {
transform: scaleX(1);
}

.service-ghost {
position: absolute;
top: -6px;
left: 14px;
font-size: 64px;
font-weight: 900;
color: rgba(255,255,255,0.05);
line-height: 1;
direction: ltr;
user-select: none;
}

.service-icon {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 52px;
height: 52px;
border-radius: 16px;
margin-bottom: 18px;
transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
}

.service-card:hover .service-icon {
transform: rotate(-8deg) scale(1.08);
}

.service-icon--copper {
background: linear-gradient(140deg, rgba(206,138,78,0.24), rgba(206,138,78,0.06));
color: var(--copper-light);
}

.service-icon--teal {
background: linear-gradient(140deg, rgba(51,191,166,0.24), rgba(51,191,166,0.06));
color: var(--teal-light);
}

.service-card h3 {
position: relative;
font-size: 18px;
font-weight: 800;
color: var(--text-100);
margin-bottom: 12px;
line-height: 1.5;
}

.service-card p {
position: relative;
font-size: 14px;
line-height: 1.95;
color: var(--text-300);
}

.services-cta {
position: relative;
z-index: 1;
max-width: 640px;
margin: clamp(50px, 8vh, 80px) auto 0;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
gap: 22px;
}

.services-cta p {
font-size: 16px;
color: var(--text-300);
line-height: 1.9;
}

@media (max-width: 560px) {
.services-grid {
grid-template-columns: 1fr;
}
.service-ghost {
font-size: 50px;
}
}
.blog {
position: relative;
background: #f7f5f1;
padding: clamp(70px, 12vh, 130px) 20px;
scroll-margin-top: var(--header-h);
}
 
.blog-head {
position: relative;
z-index: 1;
max-width: 760px;
margin: 0 auto clamp(50px, 8vh, 80px);
text-align: center;
}
 
.blog-tag {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 7px 16px;
border-radius: 100px;
background: linear-gradient(100deg, rgba(206,138,78,0.12), rgba(51,191,166,0.12));
border: 1px solid rgba(11,18,32,0.08);
color: var(--copper);
font-size: 13px;
font-weight: 700;
margin-bottom: 20px;
}
 
.blog-heading {
font-size: clamp(26px, 3.6vw, 42px);
font-weight: 800;
line-height: 1.5;
color: #0b1220;
margin-bottom: 18px;
}
 
.blog-heading .grad {
display: block;
background: linear-gradient(100deg, var(--copper), var(--teal));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
}
 
.blog-desc {
font-size: clamp(14.5px, 1.5vw, 16.5px);
line-height: 1.95;
color: #5b6274;
}
 
.blog-grid {
max-width: 1240px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 26px;
}
 
.blog-card {
background: #ffffff;
border-radius: 24px;
overflow: hidden;
border: 1px solid rgba(11,18,32,0.06);
box-shadow: 0 14px 34px rgba(11,18,32,0.06);
transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.45s ease;
display: flex;
flex-direction: column;
}
 
.blog-card:hover {
transform: translateY(-8px);
box-shadow: 0 26px 55px rgba(11,18,32,0.12);
}
 
.blog-card-media {
position: relative;
display: block;
aspect-ratio: 16 / 10;
overflow: hidden;
}
 
.blog-card-media img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
}
 
.blog-card:hover .blog-card-media img {
transform: scale(1.08);
}
 
.blog-card-tag {
position: absolute;
top: 14px;
right: 14px;
padding: 6px 14px;
border-radius: 100px;
background: rgba(8,12,22,0.72);
backdrop-filter: blur(8px);
color: #fff;
font-size: 12px;
font-weight: 700;
}
 
.blog-card-body {
padding: 24px 22px 26px;
display: flex;
flex-direction: column;
flex: 1;
}
 
.blog-card-meta {
display: flex;
gap: 14px;
font-size: 12px;
color: #97a0b3;
font-weight: 600;
margin-bottom: 12px;
}
 
.blog-card h3 {
font-size: 18px;
font-weight: 800;
line-height: 1.55;
margin-bottom: 12px;
}
 
.blog-card h3 a {
color: #0b1220;
transition: color 0.3s ease;
}
 
.blog-card:hover h3 a {
color: var(--copper);
}
 
.blog-card-body p {
font-size: 14px;
line-height: 1.9;
color: #6b7385;
margin-bottom: 18px;
flex: 1;
}
 
.blog-read-more {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 14px;
font-weight: 700;
color: var(--copper);
width: fit-content;
transition: gap 0.3s ease;
}
 
.blog-read-more svg {
transform: rotate(180deg);
transition: transform 0.3s ease;
}
 
.blog-read-more:hover {
gap: 12px;
}
 
.blog-read-more:hover svg {
transform: rotate(180deg) translateX(4px);
}
 
@media (max-width: 980px) {
.blog-grid {
grid-template-columns: repeat(2, 1fr);
}
}
 
@media (max-width: 640px) {
.blog-grid {
grid-template-columns: 1fr;
}
}
 
.reading-progress {
position: fixed;
top: 0;
right: 0;
left: 0;
height: 3px;
z-index: 200;
background: transparent;
}
 
.reading-progress-bar {
height: 100%;
width: 0%;
background: linear-gradient(90deg, var(--copper), var(--teal));
transition: width 0.1s linear;
}
 
.article-header {
position: fixed;
top: 0;
inset-inline: 0;
z-index: 100;
padding: 16px clamp(16px, 4vw, 48px);
display: flex;
align-items: center;
justify-content: space-between;
background: rgba(6,9,17,0.9);
backdrop-filter: blur(18px) saturate(140%);
-webkit-backdrop-filter: blur(18px) saturate(140%);
border-bottom: 1px solid rgba(255,255,255,0.08);
}
 
.back-btn {
display: flex;
align-items: center;
gap: 8px;
padding: 9px 16px 9px 18px;
border-radius: 100px;
background: rgba(255,255,255,0.07);
border: 1px solid rgba(255,255,255,0.14);
color: var(--text-100);
font-size: 13.5px;
font-weight: 700;
transition: background 0.3s ease, transform 0.3s ease;
}
 
.back-btn svg {
transform: rotate(180deg);
transition: transform 0.3s ease;
}
 
.back-btn:hover {
background: rgba(255,255,255,0.13);
transform: translateX(4px);
}
 
.article-brand .brand-logo {
height: clamp(34px, 4vw, 42px);
}
 
body.article-page {
background: #ffffff;
color: #0b1220;
}
 
.article-hero {
position: relative;
margin-top: var(--header-h);
height: clamp(320px, 50vh, 480px);
overflow: hidden;
}
 
.article-hero-media {
position: absolute;
inset: 0;
}
 
.article-hero-media img {
width: 100%;
height: 100%;
object-fit: cover;
}
 
.article-hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(6,9,17,0.35) 0%, rgba(6,9,17,0.88) 100%);
}
 
.article-hero-content {
position: absolute;
right: 0;
bottom: 0;
left: 0;
padding: 40px clamp(20px, 6vw, 80px);
max-width: 980px;
margin: 0 auto;
}
 
.article-tag {
display: inline-block;
padding: 7px 16px;
border-radius: 100px;
background: linear-gradient(120deg, var(--copper), var(--teal));
color: #080c16;
font-size: 12.5px;
font-weight: 800;
margin-bottom: 16px;
}
 
.article-hero-content h1 {
font-size: clamp(24px, 4vw, 40px);
font-weight: 800;
line-height: 1.5;
color: #ffffff;
margin-bottom: 16px;
max-width: 820px;
}
 
.article-meta {
display: flex;
gap: 18px;
flex-wrap: wrap;
font-size: 13px;
color: rgba(255,255,255,0.75);
font-weight: 600;
}

.article-body .lead {
font-size: clamp(17px, 2vw, 20px);
font-weight: 600;
line-height: 1.95;
color: #0b1220;
margin-bottom: 30px;
}
 
.article-body h2 {
font-size: clamp(20px, 2.6vw, 27px);
font-weight: 800;
color: #0b1220;
margin: 42px 0 18px;
padding-right: 16px;
border-right: 4px solid;
border-image: linear-gradient(180deg, var(--copper), var(--teal)) 1;
}
 
.article-body p {
font-size: 15.5px;
line-height: 2.05;
color: #414a5c;
margin-bottom: 20px;
}
 
.article-body ul {
margin: 0 0 22px;
display: flex;
flex-direction: column;
gap: 12px;
}
 
.article-body ul li {
position: relative;
padding-right: 30px;
font-size: 15px;
line-height: 1.9;
color: #414a5c;
}
 
.article-body ul li::before {
content: '';
position: absolute;
right: 0;
top: 7px;
width: 16px;
height: 16px;
border-radius: 5px;
background: linear-gradient(120deg, var(--copper), var(--teal));
}
 
.article-quote {
position: relative;
margin: 34px 0;
padding: 28px 30px;
border-radius: 20px;
background: linear-gradient(135deg, rgba(206,138,78,0.07), rgba(51,191,166,0.07));
border: 1px solid rgba(11,18,32,0.06);
font-size: clamp(16px, 1.9vw, 19px);
font-weight: 700;
line-height: 1.85;
color: #0b1220;
}
 
.article-cta-box {
margin-top: 46px;
padding: 34px 30px;
border-radius: 24px;
background: linear-gradient(160deg, #0e1526, #0a1d24);
text-align: center;
}
 
.article-cta-box h3 {
font-size: clamp(19px, 2.4vw, 24px);
font-weight: 800;
color: #ffffff;
margin-bottom: 10px;
}
 
.article-cta-box p {
font-size: 14.5px;
color: var(--text-300);
margin-bottom: 22px;
}
 
.article-related {
max-width: 820px;
margin: 0 auto;
padding: 0 clamp(20px, 6vw, 24px) clamp(70px, 10vh, 110px);
}
 
.article-related h3 {
font-size: 20px;
font-weight: 800;
color: #0b1220;
margin-bottom: 22px;
}
 
.related-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 18px;
}
 
.related-card {
display: flex;
align-items: center;
gap: 14px;
padding: 14px;
border-radius: 18px;
background: #f7f5f1;
border: 1px solid rgba(11,18,32,0.06);
transition: transform 0.35s ease, box-shadow 0.35s ease;
}
 
.related-card:hover {
transform: translateY(-4px);
box-shadow: 0 14px 30px rgba(11,18,32,0.08);
}
 
.related-card img {
width: 76px;
height: 76px;
border-radius: 14px;
object-fit: cover;
flex-shrink: 0;
}
 
.related-card span {
font-size: 14px;
font-weight: 700;
color: #0b1220;
line-height: 1.6;
}
 
@media (max-width: 640px) {
.related-grid {
grid-template-columns: 1fr;
}
.article-body h2 {
margin-top: 34px;
}
}
.article-main-wrap {
max-width: 900px;
margin: 0 auto;
padding: 0 clamp(18px, 5vw, 32px);
}

.article-body {
max-width: 820px;
margin: 0 auto;
padding: clamp(36px, 6vh, 60px) 0 0;
}

.article-body > *:first-child {
margin-top: 0;
}

.article-hero {
margin-top: var(--header-h);
margin-inline: clamp(0px, 2vw, 0px);
}

.article-hero-content {
padding: clamp(24px, 5vw, 48px) clamp(18px, 6vw, 32px) clamp(32px, 6vh, 48px);
}

.article-body h2:first-of-type {
margin-top: 8px;
}

.article-body .lead {
padding-bottom: 8px;
border-bottom: 1px solid rgba(11,18,32,0.08);
}

.article-cta-box {
margin-inline: 0;
}

.article-related {
max-width: 900px;
margin: 0 auto;
padding: clamp(30px, 6vh, 50px) clamp(18px, 5vw, 32px) clamp(70px, 10vh, 110px);
}

.article-related h3 {
padding-top: 28px;
border-top: 1px solid rgba(11,18,32,0.08);
}

@media (max-width: 480px) {
.article-hero-content h1 {
font-size: clamp(22px, 6vw, 28px);
}
.article-body p, .article-body ul li {
font-size: 14.5px;
}
.article-quote {
padding: 22px 20px;
}
.article-cta-box {
padding: 28px 20px;
}
}
.faq {
position: relative;
background: linear-gradient(160deg, #2c4046 0%, #24353b 100%);
padding: clamp(70px, 12vh, 130px) 20px;
overflow: hidden;
scroll-margin-top: var(--header-h);
}

.faq-pattern {
position: absolute;
inset: 0;
background-image: radial-gradient(circle at 15% 20%, rgba(206,138,78,0.12), transparent 40%), radial-gradient(circle at 85% 85%, rgba(51,191,166,0.14), transparent 40%);
pointer-events: none;
}

.faq-head {
position: relative;
z-index: 1;
max-width: 700px;
margin: 0 auto clamp(46px, 7vh, 70px);
text-align: center;
}

.faq-tag {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 7px 16px;
border-radius: 100px;
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,255,255,0.16);
color: var(--teal-light);
font-size: 13px;
font-weight: 700;
margin-bottom: 20px;
}

.faq-heading {
font-size: clamp(26px, 3.6vw, 42px);
font-weight: 800;
line-height: 1.5;
color: #ffffff;
margin-bottom: 16px;
}

.faq-heading .grad-light {
background: linear-gradient(100deg, var(--copper-light), var(--teal-light));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
}

.faq-desc {
font-size: clamp(14.5px, 1.5vw, 16.5px);
line-height: 1.95;
color: rgba(255,255,255,0.7);
}

.faq-list {
position: relative;
z-index: 1;
max-width: 780px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 14px;
}

.faq-item {
border-radius: 18px;
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.12);
overflow: hidden;
transition: background 0.35s ease, border-color 0.35s ease;
}

.faq-item.is-open {
background: rgba(255,255,255,0.1);
border-color: rgba(255,255,255,0.22);
}

.faq-question {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 20px 22px;
text-align: right;
font-family: 'Cairo', sans-serif;
font-size: 15.5px;
font-weight: 700;
color: #ffffff;
}

.faq-arrow {
flex-shrink: 0;
color: var(--teal-light);
transition: transform 0.4s cubic-bezier(0.65,0,0.35,1);
}

.faq-item.is-open .faq-arrow {
transform: rotate(180deg);
color: var(--copper-light);
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s cubic-bezier(0.65,0,0.35,1);
}

.faq-answer-inner {
padding: 0 22px 22px;
}

.faq-answer-inner p {
font-size: 14.5px;
line-height: 1.95;
color: rgba(255,255,255,0.72);
}

@media (max-width: 560px) {
.faq-question {
padding: 17px 18px;
font-size: 14.5px;
}
.faq-answer-inner {
padding: 0 18px 18px;
}
}
.why {
position: relative;
background: linear-gradient(160deg, #15242a 0%, #0f1c20 100%);
padding: clamp(70px, 12vh, 130px) 20px;
overflow: hidden;
scroll-margin-top: var(--header-h);
}

.why-pattern {
position: absolute;
inset: 0;
background-image: radial-gradient(circle at 85% 15%, rgba(206,138,78,0.1), transparent 40%), radial-gradient(circle at 10% 90%, rgba(51,191,166,0.12), transparent 40%);
pointer-events: none;
}

.why-inner {
position: relative;
z-index: 1;
max-width: 1180px;
margin: 0 auto;
display: grid;
grid-template-columns: 0.85fr 1.15fr;
gap: clamp(40px, 6vw, 80px);
align-items: center;
}

.why-tag {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 7px 16px;
border-radius: 100px;
background: rgba(255,255,255,0.07);
border: 1px solid rgba(255,255,255,0.16);
color: var(--copper-light);
font-size: 13px;
font-weight: 700;
margin-bottom: 20px;
}

.why-heading {
font-size: clamp(26px, 3.4vw, 38px);
font-weight: 800;
line-height: 1.5;
color: #ffffff;
margin-bottom: 16px;
}

.why-heading .grad-light {
display: block;
background: linear-gradient(100deg, var(--copper-light), var(--teal-light));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
}

.why-desc {
font-size: clamp(14.5px, 1.5vw, 16px);
line-height: 1.9;
color: rgba(255,255,255,0.62);
margin-bottom: 40px;
max-width: 420px;
}

.why-seal-wrap {
position: relative;
width: 220px;
height: 220px;
margin: 0 auto;
}

.why-seal {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
animation: sealSpin 32s linear infinite;
}

@keyframes sealSpin {
to { transform: rotate(360deg); }
}

.why-seal-core {
position: absolute;
inset: 42px;
border-radius: 50%;
background: linear-gradient(140deg, var(--copper), var(--teal));
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-shadow: 0 20px 45px rgba(0,0,0,0.4);
}

.why-seal-core strong {
font-size: 30px;
font-weight: 900;
color: #080c16;
line-height: 1;
}

.why-seal-core span {
font-size: 10.5px;
font-weight: 700;
color: #080c16;
letter-spacing: 0.4px;
margin-top: 4px;
}

.why-list {
display: flex;
flex-direction: column;
}

.why-row {
position: relative;
display: flex;
align-items: flex-start;
gap: 20px;
padding: 22px 6px;
border-bottom: 1px solid rgba(255,255,255,0.08);
transition: background 0.35s ease, padding-right 0.35s ease;
}

.why-row:last-child {
border-bottom: none;
}

.why-row::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
right: -20px;
width: 3px;
background: linear-gradient(180deg, var(--copper-light), var(--teal-light));
transform: scaleY(0);
transform-origin: top;
transition: transform 0.45s ease;
}

.why-row:hover {
background: rgba(255,255,255,0.04);
padding-right: 22px;
}

.why-row:hover::before {
transform: scaleY(1);
}

.why-num {
flex-shrink: 0;
font-family: 'Cairo', sans-serif;
font-size: 14px;
font-weight: 800;
width: 42px;
height: 42px;
border-radius: 13px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.14);
color: rgba(255,255,255,0.5);
direction: ltr;
transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}

.why-row:hover .why-num {
background: linear-gradient(140deg, var(--copper), var(--teal));
color: #080c16;
border-color: transparent;
transform: scale(1.06) rotate(-6deg);
}

.why-row-text h3 {
font-size: 16.5px;
font-weight: 800;
color: #ffffff;
margin-bottom: 6px;
line-height: 1.5;
}

.why-row-text p {
font-size: 14px;
line-height: 1.85;
color: rgba(255,255,255,0.6);
}

@media (max-width: 900px) {
.why-inner {
grid-template-columns: 1fr;
}
.why-desc {
max-width: 100%;
}
}

@media (max-width: 480px) {
.why-row {
gap: 14px;
padding: 18px 4px;
}
.why-num {
width: 36px;
height: 36px;
font-size: 12.5px;
}
}
.contact {
position: relative;
padding: clamp(70px, 12vh, 130px) 20px;
overflow: hidden;
scroll-margin-top: var(--header-h);
}

.contact-bg {
position: absolute;
inset: -20px;
background-image: url('images/photo_5861671469396463621_y.jpg');
background-size: cover;
background-position: center;
filter: blur(5px);
transform: scale(1.06);
z-index: 0;
}

.contact-scrim {
position: absolute;
inset: 0;
background: linear-gradient(160deg, rgba(8,12,22,0.7) 0%, rgba(10,22,26,0.7) 100%);
z-index: 1;
}

.contact-head {
position: relative;
z-index: 2;
max-width: 720px;
margin: 0 auto clamp(50px, 8vh, 80px);
text-align: center;
}

.contact-tag {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 7px 16px;
border-radius: 100px;
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,255,255,0.18);
color: var(--teal-light);
font-size: 13px;
font-weight: 700;
margin-bottom: 20px;
}

.contact-heading {
font-size: clamp(26px, 3.6vw, 42px);
font-weight: 800;
line-height: 1.5;
color: #ffffff;
margin-bottom: 16px;
}

.contact-heading .grad-light {
display: block;
background: linear-gradient(100deg, var(--copper-light), var(--teal-light));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
}

.contact-desc {
font-size: clamp(14.5px, 1.5vw, 16.5px);
line-height: 1.95;
color: rgba(255,255,255,0.68);
}

.contact-grid {
position: relative;
z-index: 2;
max-width: 1080px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 26px;
align-items: stretch;
}

.contact-card {
position: relative;
border-radius: 26px;
padding: 42px 34px;
overflow: hidden;
}

.contact-info {
background: rgba(9,14,26,0.55);
backdrop-filter: blur(22px) saturate(140%);
-webkit-backdrop-filter: blur(22px) saturate(140%);
border: 1px solid rgba(255,255,255,0.16);
color: #ffffff;
display: flex;
flex-direction: column;
}

.contact-card-glow {
position: absolute;
top: -30%;
left: -20%;
width: 60%;
height: 60%;
background: radial-gradient(circle, var(--teal), transparent 70%);
opacity: 0.3;
filter: blur(60px);
pointer-events: none;
}

.contact-info h3 {
position: relative;
font-size: 21px;
font-weight: 800;
color: #ffffff;
margin-bottom: 34px;
}

.contact-row {
position: relative;
display: flex;
align-items: center;
gap: 18px;
padding: 26px 0;
border-bottom: 1px solid rgba(255,255,255,0.12);
}

.contact-row:last-of-type {
border-bottom: none;
}

.contact-icon {
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
border-radius: 15px;
background: linear-gradient(140deg, rgba(51,191,166,0.26), rgba(51,191,166,0.08));
color: var(--teal-light);
}

.contact-row-text {
display: flex;
flex-direction: column;
gap: 5px;
}

.contact-label {
font-size: 12.5px;
font-weight: 600;
color: rgba(255,255,255,0.5);
}

.contact-value {
font-size: 17px;
font-weight: 700;
color: #ffffff;
transition: color 0.3s ease;
}

a.contact-value:hover {
color: var(--teal-light);
}

.contact-whatsapp-btn {
position: relative;
margin-top: 36px;
width: 100%;
text-align: center;
justify-content: center;
display: flex;
}
.contact-form {
display: flex;
flex-direction: column;
gap: 16px;
}
.form-group {
display: flex;
flex-direction: column;
gap: 7px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--copper);
box-shadow: 0 0 0 4px rgba(206,138,78,0.12);
}

.contact-submit {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
width: 100%;
margin-top: 4px;
}

@media (max-width: 860px) {
.contact-grid {
grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
.contact-card {
padding: 30px 24px;
}
.contact-row {
padding: 20px 0;
}
}
.contact-form-card {
background: rgba(22,30,46,0.55);
backdrop-filter: blur(22px) saturate(140%);
-webkit-backdrop-filter: blur(22px) saturate(140%);
border: 1px solid rgba(255,255,255,0.16);
box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.contact-form-card h3 {
font-size: 21px;
font-weight: 800;
color: #ffffff;
margin-bottom: 8px;
}

.contact-form-note {
font-size: 13.5px;
color: rgba(255,255,255,0.62);
margin-bottom: 26px;
line-height: 1.8;
}

.form-group label {
font-size: 13px;
font-weight: 700;
color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 12px 16px;
border-radius: 13px;
border: 1.5px solid rgba(255,255,255,0.16);
background: rgba(255,255,255,0.07);
font-family: 'Cairo', sans-serif;
font-size: 14.5px;
color: #ffffff;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
color: rgba(255,255,255,0.4);
}

.form-group select:invalid {
color: rgba(255,255,255,0.45);
}

.form-group select option {
background: #0e1526;
color: #ffffff;
}
.site-footer {
position: relative;
background: #060911;
padding: clamp(60px, 10vh, 90px) 20px 0;
overflow: hidden;
}

.footer-pattern {
position: absolute;
top: 0;
right: 0;
left: 0;
height: 2px;
background: linear-gradient(90deg, transparent, var(--copper), var(--teal), transparent);
opacity: 0.6;
}

.footer-inner {
position: relative;
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: 1.3fr 1fr 1fr 1fr;
gap: clamp(30px, 5vw, 60px);
padding-bottom: clamp(40px, 7vh, 60px);
}

.footer-logo {
height: 42px;
width: auto;
margin-bottom: 18px;
}

.footer-brand p {
font-size: 13.5px;
line-height: 1.95;
color: var(--text-500);
max-width: 300px;
}

.footer-col h4 {
position: relative;
font-size: 15px;
font-weight: 800;
color: var(--text-100);
margin-bottom: 22px;
padding-bottom: 12px;
}

.footer-col h4::after {
content: '';
position: absolute;
right: 0;
bottom: 0;
width: 34px;
height: 3px;
border-radius: 2px;
background: linear-gradient(90deg, var(--copper), var(--teal));
}

.footer-col ul {
display: flex;
flex-direction: column;
gap: 13px;
}

.footer-col ul li a {
font-size: 13.5px;
color: var(--text-500);
transition: color 0.3s ease, transform 0.3s ease;
display: inline-block;
}

.footer-col ul li a:hover {
color: var(--teal-light);
transform: translateX(-4px);
}

.footer-contact-list li {
display: flex;
align-items: center;
gap: 10px;
font-size: 13.5px;
color: var(--text-500);
}

.footer-contact-list li svg {
flex-shrink: 0;
color: var(--copper-light);
}

.footer-contact-list li a {
color: var(--text-500);
transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
color: var(--teal-light);
}

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.08);
padding: 22px 0 26px;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
text-align: center;
}

.footer-bottom p {
font-size: 12.5px;
color: var(--text-500);
}

.footer-credit a {
color: var(--copper-light);
font-weight: 700;
transition: color 0.3s ease;
}

.footer-credit a:hover {
color: var(--teal-light);
text-decoration: underline;
}

@media (max-width: 900px) {
.footer-inner {
grid-template-columns: repeat(2, 1fr);
}
.footer-brand {
grid-column: 1 / -1;
}
.footer-brand p {
max-width: 100%;
}
}

@media (max-width: 520px) {
.footer-inner {
grid-template-columns: 1fr;
text-align: center;
}
.footer-col h4::after {
right: 50%;
transform: translateX(50%);
}
.footer-brand {
display: flex;
flex-direction: column;
align-items: center;
}
.footer-contact-list li {
justify-content: center;
}
}
.gallery {
position: relative;
background: #f4ede2;
padding: clamp(70px, 12vh, 130px) 20px;
scroll-margin-top: var(--header-h);
}

.gallery-head {
position: relative;
max-width: 720px;
margin: 0 auto clamp(46px, 7vh, 70px);
text-align: center;
}

.gallery-tag {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 7px 16px;
border-radius: 100px;
background: linear-gradient(100deg, rgba(206,138,78,0.14), rgba(51,191,166,0.14));
border: 1px solid rgba(11,18,32,0.08);
color: var(--copper);
font-size: 13px;
font-weight: 700;
margin-bottom: 20px;
}

.gallery-heading {
font-size: clamp(26px, 3.6vw, 42px);
font-weight: 800;
line-height: 1.5;
color: #0b1220;
margin-bottom: 16px;
}

.gallery-heading .grad {
display: block;
background: linear-gradient(100deg, var(--copper), var(--teal));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
}

.gallery-desc {
font-size: clamp(14.5px, 1.5vw, 16.5px);
line-height: 1.9;
color: #6b6255;
}

.gallery-grid {
max-width: 1320px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
gap: 14px;
}

.gallery-item {
position: relative;
aspect-ratio: 1 / 1;
border-radius: 16px;
overflow: hidden;
background: #e9e1d3;
box-shadow: 0 8px 20px rgba(11,18,32,0.07);
transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
}

.gallery-item:hover {
transform: translateY(-5px);
box-shadow: 0 16px 32px rgba(11,18,32,0.14);
}

.gallery-item img,
.gallery-item video {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.gallery-item.gallery-video {
background: #0b1220;
}

@media (max-width: 560px) {
.gallery-grid {
grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
gap: 10px;
}
.gallery-item {
border-radius: 12px;
}
}
.floating-actions {
position: fixed;
bottom: 24px;
left: 22px;
z-index: 150;
display: flex;
flex-direction: column;
gap: 14px;
}

.float-btn {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 56px;
height: 56px;
border-radius: 50%;
color: #ffffff;
box-shadow: 0 12px 28px rgba(0,0,0,0.28);
transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}

.float-btn:hover {
transform: translateY(-4px) scale(1.06);
box-shadow: 0 18px 36px rgba(0,0,0,0.32);
}

.float-whatsapp {
background: #25d366;
}

.float-call {
background: linear-gradient(140deg, var(--copper), var(--teal));
}

.float-pulse {
position: absolute;
inset: 0;
border-radius: 50%;
background: #25d366;
opacity: 0.55;
animation: floatPulse 2.4s ease-out infinite;
z-index: -1;
}

@keyframes floatPulse {
0% { transform: scale(1); opacity: 0.55; }
100% { transform: scale(1.7); opacity: 0; }
}

@media (max-width: 560px) {
.floating-actions {
bottom: 18px;
left: 16px;
gap: 12px;
}
.float-btn {
width: 50px;
height: 50px;
}
}

@media (prefers-reduced-motion: reduce) {
.float-pulse {
animation: none;
opacity: 0;
}
}