/*
Theme Name: Systemally
Theme URI: https://systemally.com
Author: Systemally
Description: Vibrant, modern IT services website
Version: 2.0
Text Domain: systemally
*/

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --navy: #0A0F2C;
  --blue: #1A6BF0;
  --cyan: #00D4FF;
  --accent: #7B5EFF;
  --light: #F0F4FF;
  --white: #ffffff;
  --gray: #6B7A99;
  --border: rgba(255,255,255,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

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

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.4;
}

/* ── NAV ── */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,15,44,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.site-logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 8px;
}

.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
  color: white;
  box-shadow: 0 0 20px rgba(0,212,255,0.3);
}

.logo-text { color: var(--white); }
.logo-text span { color: var(--cyan); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  letter-spacing: 0.2px;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-size: 13px; font-weight: 500;
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  border: none; border-radius: 100px;
  color: white; cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(26,107,240,0.4);
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 6rem 2rem 5rem;
  overflow: hidden;
}

/* Gradient orbs */
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,107,240,0.15) 0%, transparent 70%);
  top: -200px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,94,255,0.12) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 2rem;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8; margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: #fff; border: none; border-radius: 100px; cursor: pointer;
  box-shadow: 0 8px 30px rgba(26,107,240,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(26,107,240,0.5); }

.btn-secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  padding: 14px 32px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }

/* Stats bar */
.hero-stats {
  display: flex; gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 32px; font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* ── SECTIONS ── */
.section { padding: 6rem 3rem; position: relative; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-tag {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--cyan); font-weight: 500; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 8px;
}
.section-tag::before {
  content: ''; width: 24px; height: 1px; background: var(--cyan);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; letter-spacing: -1px;
  margin-bottom: 1rem; line-height: 1.15;
}

.section-subtitle {
  font-size: 16px; color: rgba(255,255,255,0.45);
  max-width: 480px; line-height: 1.8; margin-bottom: 3rem;
}

/* ── SERVICES ── */
#services { background: rgba(255,255,255,0.02); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
}

.service-card {
  background: rgba(10,15,44,0.95);
  padding: 2rem;
  transition: background 0.3s;
  position: relative; overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,107,240,0.05), transparent);
  opacity: 0; transition: opacity 0.3s;
}

.service-card:hover { background: rgba(26,107,240,0.08); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 22px;
}

.icon-blue { background: rgba(26,107,240,0.15); }
.icon-cyan { background: rgba(0,212,255,0.12); }
.icon-purple { background: rgba(123,94,255,0.15); }
.icon-green { background: rgba(0,230,150,0.12); }

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px; font-weight: 600;
  margin-bottom: 0.75rem; letter-spacing: -0.3px;
}

.service-card p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }

.service-arrow {
  margin-top: 1.5rem; font-size: 18px;
  color: rgba(255,255,255,0.2);
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}
.service-card:hover .service-arrow { color: var(--cyan); transform: translateX(4px); }

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

.about-text p {
  font-size: 16px; color: rgba(255,255,255,0.55);
  line-height: 1.9; margin-bottom: 1.25rem;
}

.about-visual {
  position: relative;
}

.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
}

.stat-card {
  background: rgba(255,255,255,0.03);
  padding: 2rem; text-align: center;
  transition: background 0.3s;
}
.stat-card:hover { background: rgba(26,107,240,0.08); }

.stat-card .num {
  font-family: 'Syne', sans-serif;
  font-size: 40px; font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card .lbl {
  font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 6px;
}

/* ── CONTACT ── */
#contact { background: rgba(26,107,240,0.03); }

.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: start;
}

.contact-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 700; margin-bottom: 1rem;
}

.contact-info p { font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.8; }

.contact-detail {
  display: flex; align-items: center; gap: 12px;
  margin-top: 2rem; font-size: 14px; color: rgba(255,255,255,0.6);
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; padding: 13px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: var(--white); width: 100%;
  transition: border-color 0.2s, background 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(26,107,240,0.08);
}

.contact-form select option { background: var(--navy); color: var(--white); }

.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form .submit-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  padding: 14px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: #fff; border: none; border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(26,107,240,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-form .submit-btn:hover { transform: translateY(-2px); }

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(0,0,0,0.3);
}

.site-footer p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-domain { color: var(--cyan) !important; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-header { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 4rem 1.5rem 3rem; min-height: auto; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
  .section { padding: 4rem 1.5rem; }
  .about-grid, .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .site-footer { flex-direction: column; gap: 8px; text-align: center; }
}
