/* =========================================================
THARPE IT SERVICES
Purple / Black Professional Website
========================================================= */

:root {
--background: #05030a;
--background-light: #0d0816;
--surface: rgba(20, 13, 33, 0.78);
--surface-solid: #151020;
--surface-hover: #20152f;

--purple: #9d4edd;
--purple-light: #c77dff;
--purple-dark: #6a21a8;

--white: #ffffff;
--text: #f3eff8;
--text-muted: #b9afc6;

--border: rgba(199, 125, 255, 0.2);
--shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
--purple-shadow: 0 0 35px rgba(157, 78, 221, 0.35);

--container: 1200px;
--header-height: 92px;
}

/* =========================================================
RESET
========================================================= */

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

html {
scroll-behavior: smooth;
scroll-padding-top: 110px;
}

body {
min-height: 100vh;
overflow-x: hidden;

font-family:
Inter,
Arial,
Helvetica,
sans-serif;

color: var(--text);
background:
radial-gradient(circle at 15% 20%, rgba(0,180,255,.18), transparent 35%),
radial-gradient(circle at 85% 15%, rgba(157,78,221,.25), transparent 40%),
radial-gradient(circle at 50% 90%, rgba(0,255,200,.10), transparent 45%),
linear-gradient(135deg,#05060d,#090814,#120a1d,#06080f);

line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
font: inherit;
}

button {
cursor: pointer;
}

section {
position: relative;
}

::selection {
color: var(--white);
background: var(--purple);
}

/* =========================================================
SITE BACKGROUND
========================================================= */

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

.background-glow {
position: absolute;
width: 700px;
height: 700px;

border-radius: 50%;
filter: blur(100px);
opacity: 0.25;

animation: driftGlow 16s ease-in-out infinite alternate;
}

.glow-one {
top: -240px;
left: -220px;
background: var(--purple);
}

.glow-two {
right: -250px;
bottom: -280px;
background: #4c1d95;
animation-delay: -7s;
}

.background-grid {
position: absolute;
inset: 0;

opacity: 0.1;

background-image:
linear-gradient(
rgba(255, 255, 255, 0.08) 1px,
transparent 1px
),
linear-gradient(
90deg,
rgba(255, 255, 255, 0.08) 1px,
transparent 1px
);

background-size: 50px 50px;

mask-image:
linear-gradient(
to bottom,
rgba(0, 0, 0, 0.8),
transparent 90%
);
}

#particles {
position: absolute;
inset: 0;
}

.particle {
position: absolute;
width: 3px;
height: 3px;

border-radius: 50%;
background: rgba(255, 255, 255, 0.75);
box-shadow: 0 0 12px rgba(199, 125, 255, 0.9);

animation: floatParticle linear infinite;
}

@keyframes driftGlow {
from {
transform: translate3d(-20px, -20px, 0) scale(1);
}

to {
transform: translate3d(80px, 70px, 0) scale(1.12);
}
}

@keyframes floatParticle {
from {
transform: translateY(110vh);
opacity: 0;
}

10% {
opacity: 0.7;
}

90% {
opacity: 0.7;
}

to {
transform: translateY(-20vh);
opacity: 0;
}
}

/* =========================================================
HEADER
========================================================= */

.site-header {
position: fixed;
top: 0;
left: 0;
z-index: 1000;

width: 100%;
min-height: var(--header-height);

display: flex;
align-items: center;
justify-content: space-between;
gap: 28px;

padding: 15px max(24px, calc((100vw - var(--container)) / 2));

background: rgba(5, 3, 10, 0.72);
border-bottom: 1px solid rgba(255, 255, 255, 0.07);

backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);

transition:
background 0.3s ease,
box-shadow 0.3s ease;
}

.site-header.scrolled {
background: rgba(5, 3, 10, 0.94);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

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

.brand-logo {
width: 58px;
height: 58px;
object-fit: contain;

border-radius: 12px;
box-shadow: 0 0 20px rgba(157, 78, 221, 0.25);
}

.brand-text {
display: flex;
flex-direction: column;
line-height: 1.2;
}

.brand-name {
font-size: 1.05rem;
font-weight: 800;
letter-spacing: 0.02em;
}

.brand-tagline {
margin-top: 4px;

color: var(--purple-light);
font-size: 0.73rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
}

.main-navigation {
display: flex;
align-items: center;
justify-content: center;
gap: 24px;
}

.nav-link {
position: relative;

color: var(--text-muted);
font-size: 0.92rem;
font-weight: 700;

transition: color 0.25s ease;
}

.nav-link::after {
content: "";

position: absolute;
left: 0;
bottom: -8px;

width: 0;
height: 2px;

background: linear-gradient(
90deg,
var(--purple),
var(--purple-light)
);

transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
width: 100%;
}

.header-call-button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 9px;

min-height: 48px;
padding: 0 20px;

color: var(--white);
background:
linear-gradient(
135deg,
var(--purple-dark),
var(--purple)
);

border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 999px;

font-size: 0.9rem;
font-weight: 800;

box-shadow: 0 0 25px rgba(157, 78, 221, 0.3);

transition:
transform 0.25s ease,
box-shadow 0.25s ease;
}

.header-call-button:hover {
transform: translateY(-2px);
box-shadow: 0 0 35px rgba(199, 125, 255, 0.5);
}

.menu-toggle {
display: none;
width: 48px;
height: 48px;

padding: 11px;

border: 1px solid var(--border);
border-radius: 12px;
background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
display: block;
width: 100%;
height: 2px;
margin: 5px 0;

background: var(--white);
border-radius: 10px;

transition:
transform 0.25s ease,
opacity 0.25s ease;
}

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

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

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

/* =========================================================
HERO
========================================================= */

.hero-section {
position: relative;

min-height: 100vh;
display: flex;
align-items: center;

padding: calc(var(--header-height) + 60px) 24px 100px;

overflow: hidden;
isolation: isolate;
}

.hero-background-image {
position: absolute;
inset: 0;
z-index: -4;

background:
radial-gradient(circle at 70% 40%, rgba(123, 44, 191, 0.35), transparent 45%),
linear-gradient(135deg, #05030a, #140522);
  
background-size: cover;
background-position: center;

transform: scale(1.04);
animation: heroZoom 22s ease-in-out infinite alternate;
}

.hero-overlay {
position: absolute;
inset: 0;
z-index: -3;

background:
linear-gradient(
90deg,
rgba(5, 3, 10, 0.98) 0%,
rgba(5, 3, 10, 0.88) 43%,
rgba(5, 3, 10, 0.4) 70%,
rgba(5, 3, 10, 0.68) 100%
),
linear-gradient(
180deg,
rgba(5, 3, 10, 0.2),
rgba(5, 3, 10, 0.88)
);
}

@keyframes heroZoom {
from {
transform: scale(1.04);
}

to {
transform: scale(1.12);
}
}

.hero-inner {
width: min(100%, var(--container));
margin: 0 auto;

display: grid;
grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
align-items: center;
gap: 70px;
}

.hero-copy {
max-width: 700px;
}

.eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;

margin-bottom: 18px;

color: var(--purple-light);
font-size: 0.82rem;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.eyebrow::before {
content: "";

width: 36px;
height: 2px;

background: linear-gradient(
90deg,
var(--purple),
var(--purple-light)
);
}

.hero-copy h1 {
max-width: 760px;

font-size: clamp(3rem, 6.2vw, 5.8rem);
line-height: 0.98;
letter-spacing: -0.055em;
}

.hero-copy h1 span {
display: block;
margin-top: 12px;

color: transparent;
background:
linear-gradient(
90deg,
var(--purple-light),
#ffffff,
var(--purple)
);

background-clip: text;
-webkit-background-clip: text;
}

.hero-description {
max-width: 680px;
margin-top: 28px;

color: #d2cadc;
font-size: clamp(1rem, 1.5vw, 1.2rem);
line-height: 1.8;
}

.hero-description strong {
color: var(--white);
}

.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 16px;

margin-top: 34px;
}

.button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 11px;

min-height: 54px;
padding: 0 28px;

border: 1px solid transparent;
border-radius: 999px;

font-weight: 800;

transition:
transform 0.25s ease,
box-shadow 0.25s ease,
background 0.25s ease,
border-color 0.25s ease;
}

.button:hover {
transform: translateY(-3px);
}

.button-primary {
color: var(--white);
background:
linear-gradient(
135deg,
var(--purple-dark),
var(--purple),
var(--purple-light)
);

box-shadow: 0 0 32px rgba(157, 78, 221, 0.38);
}

.button-primary:hover {
box-shadow: 0 0 44px rgba(199, 125, 255, 0.55);
}

.button-secondary {
color: var(--white);
background: rgba(255, 255, 255, 0.06);
border-color: rgba(255, 255, 255, 0.17);

backdrop-filter: blur(12px);
}

.button-secondary:hover {
background: rgba(157, 78, 221, 0.13);
border-color: rgba(199, 125, 255, 0.5);
}

.hero-features {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 14px;

margin-top: 44px;
}

.hero-feature {
display: flex;
align-items: center;
gap: 12px;

min-height: 82px;
padding: 14px;

background: rgba(14, 8, 24, 0.65);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 16px;

backdrop-filter: blur(12px);
}

.feature-icon {
flex: 0 0 36px;

width: 36px;
height: 36px;

display: grid;
place-items: center;

color: var(--white);
background:
linear-gradient(
135deg,
var(--purple-dark),
var(--purple)
);

border-radius: 11px;
box-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
}

.hero-feature div {
display: flex;
flex-direction: column;
}

.hero-feature strong {
font-size: 0.82rem;
}

.hero-feature span:last-child {
margin-top: 2px;
color: var(--text-muted);
font-size: 0.7rem;
line-height: 1.35;
}

.hero-visual {
position: relative;
min-height: 610px;
}

.hero-image-frame {
position: absolute;
inset: 40px 0 0 0;

overflow: hidden;

border: 1px solid rgba(199, 125, 255, 0.3);
border-radius: 34px;

box-shadow:
var(--shadow),
0 0 70px rgba(157, 78, 221, 0.24);
}

.hero-image-frame::after {
content: "";

position: absolute;
inset: 0;

background:
linear-gradient(
to top,
rgba(5, 3, 10, 0.7),
transparent 40%
);
}

.hero-person-image {
width: 100%;
height: 100%;
object-fit: cover;
object-position: 64% center;

transition: transform 0.6s ease;
}

.hero-image-frame:hover .hero-person-image {
transform: scale(1.03);
}

.hero-image-glow {
position: absolute;
right: -80px;
bottom: -80px;
z-index: 2;

width: 330px;
height: 330px;

border-radius: 50%;
background: rgba(157, 78, 221, 0.28);
filter: blur(80px);
}

.floating-status-card {
position: absolute;
z-index: 5;

display: flex;
align-items: center;
gap: 12px;

min-width: 210px;
padding: 15px 18px;

background: rgba(12, 7, 20, 0.82);
border: 1px solid rgba(199, 125, 255, 0.26);
border-radius: 16px;

backdrop-filter: blur(16px);
box-shadow: var(--shadow);

animation: cardFloat 4.5s ease-in-out infinite;
}

.status-card-one {
top: 85px;
left: -40px;
}

.status-card-two {
right: -34px;
bottom: 70px;
animation-delay: -2.2s;
}

.status-icon {
color: #65ffab;
text-shadow: 0 0 12px rgba(101, 255, 171, 0.8);
}

.floating-status-card div {
display: flex;
flex-direction: column;
}

.floating-status-card strong {
font-size: 0.84rem;
}

.floating-status-card div span {
color: var(--text-muted);
font-size: 0.72rem;
}

@keyframes cardFloat {
0%,
100% {
transform: translateY(0);
}

50% {
transform: translateY(-10px);
}
}

.scroll-indicator {
position: absolute;
left: 50%;
bottom: 25px;

display: flex;
flex-direction: column;
align-items: center;
gap: 5px;

color: var(--text-muted);
font-size: 0.72rem;
letter-spacing: 0.08em;
text-transform: uppercase;

transform: translateX(-50%);
}

.scroll-arrow {
color: var(--purple-light);
font-size: 1.3rem;

animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
0%,
100% {
transform: translateY(0);
}

50% {
transform: translateY(7px);
}
}

/* =========================================================
COMMON SECTIONS
========================================================= */

.section {
padding: 110px 24px;
}

.section-heading {
max-width: 760px;
margin: 0 auto 60px;
text-align: center;
}

.section-heading .eyebrow {
justify-content: center;
}

.section-heading h2,
.why-us-copy h2,
.about-copy h2,
.contact-copy h2 {
font-size: clamp(2.2rem, 4.5vw, 4.2rem);
line-height: 1.08;
letter-spacing: -0.04em;
}

.section-heading h2 span,
.why-us-copy h2 span,
.about-copy h2 span,
.contact-copy h2 span {
color: var(--purple-light);
}

.section-heading > p:last-child {
max-width: 680px;
margin: 20px auto 0;

color: var(--text-muted);
font-size: 1.05rem;
}

/* =========================================================
SERVICES
========================================================= */

.services-section {
background:
linear-gradient(
to bottom,
rgba(10, 6, 17, 0.88),
rgba(5, 3, 10, 0.96)
);
}

.services-grid {
width: min(100%, var(--container));
margin: 0 auto;

display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 24px;
}

.service-card {
position: relative;
overflow: hidden;

padding: 34px;

background:
linear-gradient(
145deg,
rgba(28, 17, 43, 0.92),
rgba(13, 8, 22, 0.9)
);

border: 1px solid var(--border);
border-radius: 24px;

box-shadow: var(--shadow);

transition:
transform 0.3s ease,
border-color 0.3s ease,
box-shadow 0.3s ease;
}

.service-card::before {
content: "";

position: absolute;
top: -90px;
right: -90px;

width: 180px;
height: 180px;

border-radius: 50%;
background: rgba(157, 78, 221, 0.12);
filter: blur(15px);

transition: transform 0.4s ease;
}

.service-card:hover {
transform: translateY(-8px);
border-color: rgba(199, 125, 255, 0.55);
box-shadow:
var(--shadow),
var(--purple-shadow);
}

.service-card:hover::before {
transform: scale(1.4);
}

.service-icon {
position: relative;
z-index: 2;

width: 58px;
height: 58px;

display: grid;
place-items: center;

margin-bottom: 24px;

background:
linear-gradient(
135deg,
rgba(106, 33, 168, 0.9),
rgba(157, 78, 221, 0.9)
);

border-radius: 17px;

font-size: 1.55rem;
box-shadow: 0 0 26px rgba(157, 78, 221, 0.32);
}

.service-card h3 {
position: relative;
z-index: 2;

margin-bottom: 13px;

font-size: 1.25rem;
}

.service-card p {
position: relative;
z-index: 2;

min-height: 105px;

color: var(--text-muted);
}

.service-card a {
position: relative;
z-index: 2;

display: inline-flex;
align-items: center;
gap: 8px;

margin-top: 22px;

color: var(--purple-light);
font-size: 0.88rem;
font-weight: 800;
}

/* =========================================================
WHY US
========================================================= */

.why-us-section {
background:
radial-gradient(
circle at 20% 40%,
rgba(157, 78, 221, 0.15),
transparent 35%
),
rgba(8, 5, 13, 0.94);
}

.why-us-inner {
width: min(100%, var(--container));
margin: 0 auto;

display: grid;
grid-template-columns: 0.85fr 1.15fr;
align-items: center;
gap: 70px;
}

.why-us-copy > p:not(.eyebrow) {
margin: 23px 0 32px;

color: var(--text-muted);
font-size: 1.05rem;
}

.benefits-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 20px;
}

.benefit-card {
min-height: 230px;
padding: 30px;

background: rgba(20, 12, 32, 0.76);
border: 1px solid var(--border);
border-radius: 22px;

backdrop-filter: blur(14px);

transition:
transform 0.3s ease,
background 0.3s ease;
}

.benefit-card:hover {
transform: translateY(-6px);
background: rgba(34, 18, 51, 0.88);
}

.benefit-number {
margin-bottom: 35px;

color: rgba(199, 125, 255, 0.65);
font-size: 0.78rem;
font-weight: 900;
letter-spacing: 0.12em;
}

.benefit-card h3 {
margin-bottom: 12px;
font-size: 1.25rem;
}

.benefit-card p {
color: var(--text-muted);
}

/* =========================================================
ABOUT
========================================================= */

.about-section {
background: var(--background);
}

.about-inner {
width: min(100%, var(--container));
margin: 0 auto;

display: grid;
grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
align-items: center;
gap: 80px;
}

.about-image-wrap {
position: relative;
}

.about-image {
position: relative;
z-index: 2;

width: 100%;
min-height: 570px;
object-fit: cover;
object-position: 65% center;

border: 1px solid rgba(199, 125, 255, 0.3);
border-radius: 30px;

box-shadow: var(--shadow);
}

.about-image-glow {
position: absolute;
left: -40px;
bottom: -40px;

width: 280px;
height: 280px;

border-radius: 50%;
background: rgba(157, 78, 221, 0.25);
filter: blur(65px);
}

.about-copy > p:not(.eyebrow) {
margin-top: 22px;

color: var(--text-muted);
font-size: 1.03rem;
}

.about-points {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px;

margin-top: 30px;
}

.about-point {
display: flex;
align-items: center;
gap: 10px;

padding: 13px 15px;

background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 13px;
}

.about-point span {
color: var(--purple-light);
font-weight: 900;
}

.about-point p {
color: #e4deeb;
font-size: 0.87rem;
}

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

margin-top: 34px;
}

/* =========================================================
REVIEWS
========================================================= */

.reviews-section {
background:
linear-gradient(
180deg,
rgba(12, 7, 20, 0.95),
rgba(7, 4, 12, 0.98)
);
}

.reviews-grid {
width: min(100%, var(--container));
margin: 0 auto;

display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 22px;
}

.review-card {
display: flex;
flex-direction: column;

min-height: 320px;
padding: 32px;

background: rgba(23, 14, 36, 0.78);
border: 1px solid var(--border);
border-radius: 24px;

box-shadow: var(--shadow);
}

.review-stars {
color: #f3c969;
letter-spacing: 0.12em;
}

.review-text {
flex: 1;

margin: 25px 0 30px;

color: #ddd5e6;
font-size: 1.02rem;
line-height: 1.75;
}

.review-person {
display: flex;
align-items: center;
gap: 13px;
}

.review-avatar {
width: 44px;
height: 44px;

display: grid;
place-items: center;

color: var(--white);
background:
linear-gradient(
135deg,
var(--purple-dark),
var(--purple)
);

border-radius: 50%;
font-weight: 900;
}

.review-person div:last-child {
display: flex;
flex-direction: column;
}

.review-person span {
margin-top: 2px;
color: var(--text-muted);
font-size: 0.78rem;
}

/* =========================================================
CONTACT
========================================================= */

.contact-section {
background:
radial-gradient(
circle at 85% 30%,
rgba(157, 78, 221, 0.16),
transparent 40%
),
var(--background-light);
}

.contact-inner {
width: min(100%, var(--container));
margin: 0 auto;

display: grid;
grid-template-columns: 0.9fr 1.1fr;
align-items: start;
gap: 70px;
}

.contact-copy > p:not(.eyebrow) {
margin-top: 22px;

color: var(--text-muted);
font-size: 1.03rem;
}

.contact-details {
display: grid;
gap: 14px;

margin-top: 34px;
}

.contact-detail {
display: flex;
align-items: center;
gap: 15px;

padding: 17px;

background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 16px;
}

.contact-detail-icon {
flex: 0 0 45px;

width: 45px;
height: 45px;

display: grid;
place-items: center;

background:
linear-gradient(
135deg,
var(--purple-dark),
var(--purple)
);

border-radius: 13px;
}

.contact-detail div {
display: flex;
flex-direction: column;
}

.contact-detail small {
color: var(--text-muted);
}

.contact-detail strong {
margin-top: 3px;
overflow-wrap: anywhere;
}

.contact-form {
padding: 36px;

background: rgba(20, 12, 32, 0.85);
border: 1px solid var(--border);
border-radius: 28px;

box-shadow: var(--shadow);
backdrop-filter: blur(18px);
}

.form-row {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 16px;
}

.form-field {
display: flex;
flex-direction: column;
gap: 8px;

margin-bottom: 18px;
}

.form-field label {
font-size: 0.86rem;
font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
width: 100%;

padding: 15px 16px;

color: var(--white);
background: rgba(255, 255, 255, 0.055);

border: 1px solid rgba(255, 255, 255, 0.11);
border-radius: 13px;
outline: none;

transition:
border-color 0.25s ease,
box-shadow 0.25s ease;
}

.form-field textarea {
resize: vertical;
}

.form-field select option {
color: #111111;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
color: #94899f;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
border-color: var(--purple-light);
box-shadow: 0 0 0 4px rgba(157, 78, 221, 0.15);
}

.form-submit {
width: 100%;
border: none;
}

.form-note {
margin-top: 14px;

color: var(--text-muted);
font-size: 0.75rem;
text-align: center;
}

/* =========================================================
FOOTER
========================================================= */

.site-footer {
padding: 80px 24px 24px;

background: #030205;
border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner {
width: min(100%, var(--container));
margin: 0 auto;

display: grid;
grid-template-columns: 1.5fr 0.75fr 1fr 1fr;
gap: 50px;
}

.footer-brand > p {
max-width: 420px;
margin-top: 22px;

color: var(--text-muted);
}

.footer-column {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 11px;
}

.footer-column h3 {
margin-bottom: 8px;
color: var(--purple-light);
font-size: 0.95rem;
}

.footer-column a,
.footer-column p {
color: var(--text-muted);
font-size: 0.87rem;
}

.footer-column a:hover {
color: var(--white);
}

.footer-bottom {
width: min(100%, var(--container));
margin: 55px auto 0;
padding-top: 22px;

display: flex;
align-items: center;
justify-content: space-between;
gap: 18px;

color: #8f8698;
border-top: 1px solid rgba(255, 255, 255, 0.07);

font-size: 0.8rem;
}

/* =========================================================
FLOATING CONTACT BUTTONS
========================================================= */

.floating-contact-buttons {
position: fixed;
right: 22px;
bottom: 22px;
z-index: 900;

display: flex;
flex-direction: column;
gap: 11px;
}

.floating-contact-button {
width: 52px;
height: 52px;

display: grid;
place-items: center;

color: var(--white);
border: 1px solid rgba(255, 255, 255, 0.16);
border-radius: 50%;

box-shadow: var(--shadow);

transition:
transform 0.25s ease,
box-shadow 0.25s ease;
}

.floating-contact-button:hover {
transform: translateY(-4px) scale(1.04);
}

.floating-call {
background:
linear-gradient(
135deg,
var(--purple-dark),
var(--purple)
);
}

.floating-email {
background: rgba(20, 12, 32, 0.92);
backdrop-filter: blur(14px);
}

/* =========================================================
REVEAL ANIMATIONS
========================================================= */

.reveal {
opacity: 0;
transform: translateY(32px);

transition:
opacity 0.8s ease,
transform 0.8s ease;
}

.reveal.visible {
opacity: 1;
transform: translateY(0);
}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
.main-navigation {
gap: 16px;
}

.header-call-button {
display: none;
}

.hero-inner {
grid-template-columns: 1fr 0.85fr;
gap: 40px;
}

.services-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-inner {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media (max-width: 900px) {
:root {
--header-height: 78px;
}

.site-header {
min-height: var(--header-height);
padding: 10px 20px;
}

.brand-logo {
width: 50px;
height: 50px;
}

.brand-name {
font-size: 0.93rem;
}

.brand-tagline {
font-size: 0.64rem;
}

.menu-toggle {
display: block;
}

.main-navigation {
position: absolute;
top: calc(100% + 1px);
left: 16px;
right: 16px;

display: none;
flex-direction: column;
align-items: stretch;
gap: 0;

padding: 12px;

background: rgba(8, 4, 14, 0.97);
border: 1px solid var(--border);
border-radius: 18px;

box-shadow: var(--shadow);
backdrop-filter: blur(18px);
}

.main-navigation.open {
display: flex;
}

.nav-link {
padding: 14px;
border-radius: 11px;
}

.nav-link::after {
display: none;
}

.nav-link:hover,
.nav-link.active {
background: rgba(157, 78, 221, 0.13);
}

.hero-section {
padding-top: calc(var(--header-height) + 55px);
}

.hero-inner {
grid-template-columns: 1fr;
}

.hero-copy {
max-width: 760px;
text-align: center;
}

.hero-copy .eyebrow {
justify-content: center;
}

.hero-actions {
justify-content: center;
}

.hero-features {
max-width: 750px;
margin-left: auto;
margin-right: auto;
}

.hero-visual {
min-height: 520px;
}

.hero-image-frame {
inset: 15px 8% 0;
}

.status-card-one {
left: 2%;
}

.status-card-two {
right: 2%;
}

.why-us-inner,
.about-inner,
.contact-inner {
grid-template-columns: 1fr;
}

.about-image {
min-height: 500px;
}

.reviews-grid {
grid-template-columns: 1fr;
}

.review-card {
min-height: auto;
}
}

@media (max-width: 680px) {
.section {
padding: 82px 18px;
}

.hero-section {
padding-left: 18px;
padding-right: 18px;
}

.hero-copy h1 {
font-size: clamp(2.65rem, 13vw, 4rem);
}

.hero-actions {
flex-direction: column;
}

.hero-actions .button {
width: 100%;
}

.hero-features {
grid-template-columns: 1fr;
}

.hero-visual {
min-height: 430px;
}

.hero-image-frame {
inset: 10px 0 0;
}

.floating-status-card {
display: none;
}

.services-grid,
.benefits-grid {
grid-template-columns: 1fr;
}

.service-card p {
min-height: auto;
}

.about-image {
min-height: 400px;
}

.about-points,
.form-row {
grid-template-columns: 1fr;
}

.about-actions {
flex-direction: column;
}

.about-actions .button {
width: 100%;
}

.contact-form {
padding: 24px 18px;
}

.footer-inner {
grid-template-columns: 1fr;
}

.footer-bottom {
flex-direction: column;
align-items: flex-start;
}

.floating-contact-buttons {
right: 14px;
bottom: 14px;
}

.floating-contact-button {
width: 48px;
height: 48px;
}
}

@media (max-width: 430px) {
.brand-text {
display: none;
}

.hero-description {
font-size: 0.98rem;
}

.scroll-indicator {
display: none;
}
}

/* Reduce animation for accessibility */
@media (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}

*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}

.reveal {
opacity: 1;
transform: none;
}
about-highlights {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 18px;
}

.highlight-card {
min-height: 185px;
padding: 26px;

display: flex;
flex-direction: column;
gap: 18px;

background:
linear-gradient(
145deg,
rgba(31, 18, 48, 0.92),
rgba(14, 8, 23, 0.92)
);

border: 1px solid rgba(199, 125, 255, 0.22);
border-radius: 22px;

box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);

transition:
transform 0.3s ease,
border-color 0.3s ease,
box-shadow 0.3s ease;
}

.highlight-card:hover {
transform: translateY(-7px);
border-color: rgba(199, 125, 255, 0.6);
box-shadow:
0 24px 60px rgba(0, 0, 0, 0.38),
0 0 28px rgba(157, 78, 221, 0.24);
}

.highlight-icon {
width: 52px;
height: 52px;

display: grid;
place-items: center;

font-size: 1.45rem;

background:
linear-gradient(
135deg,
#6a21a8,
#9d4edd
);

border-radius: 16px;

box-shadow: 0 0 24px rgba(157, 78, 221, 0.3);
}

.highlight-card strong {
font-size: 1.08rem;
}

.highlight-card p {
margin-top: 8px;

color: #b9afc6;
font-size: 0.9rem;
line-height: 1.6;
}

.highlight-stat {
grid-column: 1 / -1;

padding: 24px;

display: flex;
flex-direction: column;
align-items: center;
text-align: center;

background:
linear-gradient(
135deg,
rgba(106, 33, 168, 0.42),
rgba(20, 12, 32, 0.92)
);

border: 1px solid rgba(199, 125, 255, 0.35);
border-radius: 22px;
}

.highlight-stat strong {
color: #c77dff;
font-size: 1.35rem;
}

.highlight-stat span {
margin-top: 7px;
color: #d9d1e2;
}

@media (max-width: 680px) {
.about-highlights {
grid-template-columns: 1fr;
}

.highlight-stat {
grid-column: auto;
}
}
body::before{
content:"";
position:fixed;
inset:0;
pointer-events:none;
z-index:-1;
opacity:.12;

background-image:
linear-gradient(rgba(0,191,255,.08) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,191,255,.08) 1px, transparent 1px);

background-size:60px 60px;

animation:gridMove 30s linear infinite;
}

@keyframes gridMove{
from{
background-position:0 0;
}

to{
background-position:60px 60px;
}
}
* Let the tech background show through the main sections */

.services-section,
.why-us-section,
.about-section,
.reviews-section,
.contact-section {
background: rgba(6, 7, 16, 0.78);
backdrop-filter: blur(3px);
-webkit-backdrop-filter: blur(3px);
}

.services-section,
.about-section,
.contact-section {
background:
linear-gradient(
rgba(6, 7, 16, 0.82),
rgba(10, 7, 20, 0.82)
);
}

}

