@charset "UTF-8";
@import url(font-awesome.min.css);
@import url("https://fonts.googleapis.com/css?family=Scope+One|Trocchi");
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700&display=swap');

/* ─── Variables ─────────────────────────────── */
:root {
	--navy:   #0f1f38;
	--blue:   #1a6fd4;
	--sky:    #e8f1fb;
	--accent: #17c37b;
	--white:  #ffffff;
	--gray:   #6b7a90;
	--light:  #f5f7fa;
	--border: #dde3ed;
	--text:   #1a2236;

	--r: 8px;
	--max: 1100px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	color: var(--text);
	background: var(--white);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Utilities ─────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.section-label {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--blue);
	background: var(--sky);
	padding: 0.3rem 0.75rem;
	border-radius: 2rem;
	margin-bottom: 0.9rem;
}
.section-title {
	font-family: 'Syne', sans-serif;
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	font-weight: 700;
	color: var(--navy);
	line-height: 1.2;
	margin-bottom: 0.75rem;
}
.section-sub {
	color: var(--gray);
	font-size: 1rem;
	max-width: 520px;
	line-height: 1.75;
}

/* ─── NAV ───────────────────────────────────── */
#nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 999;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s, box-shadow 0.3s, background 0.25s;
}

#nav.scrolled {
	background: rgba(255, 255, 255, 0.021);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom-color: var(--border);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}
.nav-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.nav-logo-icon {
	width: 34px; height: 34px;
	background: var(--blue);
	border-radius: 8px;
	display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { color: white; width: 18px; height: 18px; }
.nav-logo-text {
	font-family: 'Syne', sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: white;
}
.nav-logo-text span { color: var(--blue); }

/* Nav color adjustments when scrolled */
#nav.scrolled .nav-logo-text { color: var(--navy); }
#nav.scrolled .nav-logo-text span { color: var(--blue); }
.nav-links {
	display: flex; align-items: center; gap: 0.25rem;
}
/* links are white over the transparent hero, switch on scroll */
.nav-links a {
	font-size: 0.875rem;
	font-weight: 500;
	color: white;
	padding: 0.45rem 0.85rem;
	border-radius: 6px;
	transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--navy); background: rgba(255,255,255,0.08); }

#nav.scrolled .nav-links a { color: var(--gray); }
#nav.scrolled .nav-links a:hover { color: var(--navy); background: var(--light); }
.nav-cta {
	background: var(--blue) !important;
	color: var(--white) !important;
	padding: 0.45rem 1.1rem !important;
	border-radius: 6px !important;
	font-weight: 500 !important;
	transition: background 0.2s !important;
}
.nav-cta:hover { background: #1460bc !important; }
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 6px;
	background: none;
	border: none;
}
.hamburger span {
	display: block; width: 22px; height: 2px;
	background: white;
	border-radius: 2px;
	transition: 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* hamburger color when nav is scrolled */
#nav.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
	display: none;
	flex-direction: column;
	background: var(--white);
	border-top: 1px solid var(--border);
	padding: 1rem 1.5rem 1.5rem;
	gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--gray);
	padding: 0.6rem 0;
	border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .m-cta {
	display: inline-block;
	margin-top: 0.5rem;
	background: var(--blue);
	color: white !important;
	text-align: center;
	padding: 0.7rem 1rem;
	border-radius: 8px;
	border: none;
}

/* ─── HERO ──────────────────────────────────── */
#hero {
	padding: 9rem 0 5rem;
	background: var(--navy);
	position: relative;
	overflow: hidden;
}
/* Subtle grid texture */
#hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
	linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
	linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
}
/* Glow blob */
#hero::after {
	content: '';
	position: absolute;
	top: -80px; right: -100px;
	width: 600px; height: 600px;
	background: radial-gradient(circle, rgba(26,111,212,0.25) 0%, transparent 70%);
	pointer-events: none;
}
.hero-inner {
	position: relative;
	z-index: 1;
	max-width: 680px;
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: rgba(23,195,123,0.15);
	border: 1px solid rgba(23,195,123,0.3);
	color: var(--accent);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	padding: 0.3rem 0.8rem;
	border-radius: 2rem;
	margin-bottom: 1.5rem;
}
.hero-badge::before {
	content: '';
	width: 6px; height: 6px;
	background: var(--accent);
	border-radius: 50%;
	animation: pulse 2s infinite;
}
@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.3; }
}
.hero-title {
	line-height: 0.5;
	margin-bottom: 0.2rem;
}

.hero-title-main {
	font-family: 'Orbitron', 'Syne', sans-serif;
	font-size: clamp(2.6rem, 6vw, 4.2rem);
	font-weight: 700;
	line-height: 0.98;
	display: block;

	color: #a2c0ca;
	letter-spacing: 0.03em;

	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-title-sub {
	font-family: 'Syne', sans-serif;
	font-size: clamp(1rem, 2.0vw, 1.6rem);
	font-weight: 600;
	margin-top: 0.08rem;

	color: #3592a4;

	letter-spacing: 0.06em;

	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-title .hl { color: var(--blue); }
.hero-desc {
	color: rgba(255,255,255,0.65);
	font-size: 1.05rem;
	max-width: 500px;
	margin-bottom: 2.25rem;
	line-height: 1.5;
}
.hero-actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.9rem;
	font-weight: 500;
	padding: 0.7rem 1.4rem;
	border-radius: var(--r);
	transition: 0.2s var(--ease);
	cursor: pointer;
	border: none;
}
.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { background: #1460bc; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,111,212,0.35); }
.btn-ghost {
	background: rgba(255,255,255,0.08);
	color: rgba(255,255,255,0.85);
	border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); }
/* Hero stats */
.hero-stats {
	display: flex;
	gap: 2.5rem;
	margin-top: 3.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255,255,255,0.1);
	flex-wrap: wrap;
}
.stat-val {
	font-family: 'Syne', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--white);
	line-height: 1;
}
.stat-val span { color: var(--accent); }
.stat-label {
	font-size: 0.78rem;
	color: rgba(255,255,255,0.45);
	margin-top: 0.25rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* ─── ABOUT ─────────────────────────────────── */
#about {
	padding: 6rem 0;
	background: var(--white);
}
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}
.about-visual {
	background: var(--light);
	border-radius: 16px;
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.about-card {
	background: var(--white);
	border-radius: 10px;
	padding: 1.25rem 1.5rem;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	border: 1px solid var(--border);
	transition: box-shadow 0.2s;
}
.about-card:hover { box-shadow: 0 4px 20px rgba(15,31,56,0.08); }
.about-card-icon {
	width: 40px; height: 40px; min-width: 40px;
	background: var(--sky);
	border-radius: 8px;
	display: flex; align-items: center; justify-content: center;
	color: var(--blue);
}
.about-card-icon svg { width: 18px; height: 18px; }
.about-card-title { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.about-card-desc { font-size: 0.82rem; color: var(--gray); margin-top: 0.15rem; }
.about-text .section-sub { margin-bottom: 1.5rem; }
.value-list { display: flex; flex-direction: column; gap: 0.6rem; }
.value-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.9rem;
	color: var(--text);
}
.value-item::before {
	content: '';
	width: 8px; height: 8px;
	background: var(--accent);
	border-radius: 50%;
	flex-shrink: 0;
}

/* ─── SERVICES ──────────────────────────────── */
#services {
	padding: 6rem 0;
	background: var(--light);
}
.section-header { margin-bottom: 3rem; }
.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
}
.service-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 1.75rem;
	transition: 0.25s var(--ease);
	position: relative;
	overflow: hidden;
}
.service-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), var(--accent));
	opacity: 0;
	transition: opacity 0.25s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(15,31,56,0.1); }
.service-card:hover::before { opacity: 1; }
.service-icon {
	width: 48px; height: 48px;
	background: var(--sky);
	border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	color: var(--blue);
	margin-bottom: 1rem;
}
.service-icon svg { width: 22px; height: 22px; }
.service-title {
	font-family: 'Syne', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 0.5rem;
}
.service-desc { font-size: 0.875rem; color: var(--gray); line-height: 1.7; }

/* ─── PLANS ─────────────────────────────────── */
#plans {
	padding: 6rem 0;
	background: var(--white);
}
.plans-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-top: 3rem;
}
.plan-card {
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
	transition: 0.25s var(--ease);
	position: relative;
}
.plan-card:hover { box-shadow: 0 10px 40px rgba(15,31,56,0.1); transform: translateY(-3px); }
.plan-card.featured {
	border-color: var(--blue);
	box-shadow: 0 8px 40px rgba(26,111,212,0.15);
}
.plan-badge {
	position: absolute;
	top: 0; right: 0;
	background: var(--blue);
	color: white;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.3rem 0.75rem;
	border-bottom-left-radius: 8px;
}
.plan-header {
	padding: 1.75rem;
	background: var(--light);
	border-bottom: 1px solid var(--border);
}
.plan-card.featured .plan-header {
	background: var(--navy);
	border-bottom-color: rgba(255,255,255,0.1);
}
.plan-name {
	font-family: 'Syne', sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 0.75rem;
}
.plan-card.featured .plan-name { color: white; }
.plan-price {
	display: flex;
	align-items: baseline;
	gap: 0.2rem;
}
.plan-currency { font-size: 1rem; color: var(--gray); font-weight: 500; }
.plan-amount {
	font-family: 'Syne', sans-serif;
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--navy);
	line-height: 1;
}
.plan-card.featured .plan-currency,
.plan-card.featured .plan-amount { color: white; }
.plan-period { font-size: 0.8rem; color: var(--gray); }
.plan-card.featured .plan-period { color: rgba(255,255,255,0.55); }
.plan-speed {
	margin-top: 0.5rem;
	font-size: 0.82rem;
	color: var(--accent);
	font-weight: 600;
	letter-spacing: 0.03em;
}
.plan-body { padding: 1.5rem 1.75rem; }
.plan-desc {
	font-size: 0.85rem;
	color: var(--gray);
	margin-bottom: 1.25rem;
	line-height: 1.7;
}
.plan-features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.plan-feature {
	display: flex; align-items: center; gap: 0.55rem;
	font-size: 0.85rem; color: var(--text);
}
.plan-feature svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }
.plan-btn {
	display: block;
	text-align: center;
	padding: 0.65rem;
	border-radius: var(--r);
	font-size: 0.875rem;
	font-weight: 600;
	transition: 0.2s;
}
.plan-btn-outline {
	border: 1.5px solid var(--blue);
	color: var(--blue);
}
.plan-btn-outline:hover { background: var(--sky); }
.plan-btn-fill { background: var(--blue); color: white; }
.plan-btn-fill:hover { background: #1460bc; }

/* ─── CONTACT ───────────────────────────────── */
#contact {
	padding: 6rem 0;
	background: var(--light);
}
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 4rem;
	align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}
.contact-item-icon {
	width: 42px; height: 42px; min-width: 42px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	color: var(--blue);
}
.contact-item-icon svg { width: 18px; height: 18px; }
.contact-item-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); }
.contact-item-value { font-size: 0.9rem; color: var(--navy); font-weight: 500; margin-top: 0.1rem; }
.contact-social {
	display: flex;
	gap: 0.6rem;
	margin-top: 0.5rem;
}
.social-btn {
	display: flex; align-items: center; gap: 0.4rem;
	background: #1877F2;
	color: white;
	font-size: 0.82rem;
	font-weight: 500;
	padding: 0.45rem 0.9rem;
	border-radius: 6px;
	transition: opacity 0.2s;
}
.social-btn:hover { opacity: 0.85; }
.social-btn svg { width: 15px; height: 15px; }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group textarea {
	border: 1.5px solid var(--border);
	border-radius: var(--r);
	padding: 0.65rem 0.9rem;
	font-size: 0.875rem;
	font-family: 'DM Sans', sans-serif;
	color: var(--text);
	background: var(--white);
	transition: border-color 0.2s, box-shadow 0.2s;
	outline: none;
	width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0b8c5; }
.form-group input:focus,
.form-group textarea:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(26,111,212,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
	background: var(--navy);
	color: white;
	border: none;
	border-radius: var(--r);
	padding: 0.75rem 1.5rem;
	font-size: 0.9rem;
	font-weight: 600;
	font-family: 'DM Sans', sans-serif;
	cursor: pointer;
	transition: 0.2s var(--ease);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
}
.form-submit:hover { background: var(--blue); transform: translateY(-1px); }
.form-submit svg { width: 16px; height: 16px; }

/* ─── FOOTER ────────────────────────────────── */
#footer {
	background: var(--navy);
	padding: 2rem 0;
}
.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.footer-brand-name {
	font-family: 'Syne', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: white;
}
.footer-brand-name span { color: var(--blue); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ─── Fade-in animation ─────────────────────── */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ────────────────────────────── */
@media (max-width: 900px) {
	.about-grid { grid-template-columns: 1fr; }
	.about-visual { order: -1; }
	.services-grid { grid-template-columns: 1fr; }
	.plans-grid { grid-template-columns: 1fr; max-width: 400px; }
	.contact-grid { grid-template-columns: 1fr; }
	.form-row { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
	.nav-links { display: none; }
	.hamburger { display: flex; }
	#hero { padding: 7rem 0 4rem; }
	.hero-stats { gap: 1.5rem; }
}
@media (max-width: 480px) {
	.hero-actions { flex-direction: column; }
	.btn { justify-content: center; }
}