:root {
  color-scheme: dark;
  --bg: #04080f;
  --bg-soft: #0b1220;
  --surface: rgba(16, 20, 38, 0.88);
  --surface-soft: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(10, 14, 28, 0.98);
  --text: #eef2ff;
  --muted: #a9b4cf;
  --muted-strong: #7b86a5;
  --accent: #33d6c3;
  --accent-soft: rgba(51, 214, 195, 0.16);
  --accent-strong: #0fa68d;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
  --radius: 28px;
  --radius-sm: 18px;
  --space-xxs: 0.55rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4.5rem;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(51, 214, 195, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(59, 136, 205, 0.08), transparent 18%),
    linear-gradient(180deg, #05070f 0%, #090d16 100%);
  color: var(--text);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  border: none;
  background: none;
}
.page {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 80px;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 20px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 12, 26, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(40, 220, 170, 0.12);
}
.brand {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7fffe1;
  font-weight: 700;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  position: absolute;
}
.nav-toggle span:nth-child(1) {
  top: 12px;
}
.nav-toggle span:nth-child(2) {
  top: 21px;
}
.nav-toggle span:nth-child(3) {
  top: 30px;
}
.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}
.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.25s ease, transform 0.25s ease;
}
.site-nav a:hover,
.site-nav .btn:hover {
  color: var(--accent);
  transform: translateY(-1px);
}
.site-nav .btn {
  padding: 12px 22px;
}
.nav-btn {
  background: rgba(51, 214, 195, 0.12);
  border-color: rgba(51, 214, 195, 0.24);
  color: #dff8f0;
}
.nav-btn:hover {
  background: rgba(51, 214, 195, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 16px 28px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.btn:hover::before {
  left: 100%;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(31, 180, 147, 0.3);
}
.btn-primary {
  background: linear-gradient(135deg, #33d6c3 0%, #14b79a 100%);
  color: #fff;
  box-shadow: 0 22px 48px rgba(31, 180, 147, 0.22);
  border: none;
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #d4e2ff;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(51, 214, 195, 0.3);
  color: #f0f8ff;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.92fr);
  gap: 2.4rem;
  align-items: center;
  padding: 40px 0 30px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(51, 214, 195, 0.08), transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(59, 136, 205, 0.06), transparent 50%);
  pointer-events: none;
  z-index: -1;
}
.hero--small {
  padding-top: 46px;
}
.hero-copy {
  max-width: 680px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  background: rgba(51, 214, 195, 0.12);
  border: 1px solid rgba(51, 214, 195, 0.22);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(51, 214, 195, 0.15);
}
.hero h1 {
  margin: 22px 0 24px;
  font-size: clamp(3rem, 4vw, 4.6rem);
  line-height: 1.02;
  max-width: 700px;
  color: #f8fdff;
  letter-spacing: -0.04em;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.gradient-text {
  background: linear-gradient(135deg, #33d6c3 0%, #1ca690 45%, #0d7266 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.gradient-text-subtle {
  background: linear-gradient(135deg, #e4f8ff 0%, #afcde2 50%, #8c95ae 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.hero p {
  margin: 0 0 34px;
  max-width: 700px;
  color: #c9d8ee;
  line-height: 1.95;
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.highlight-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}
.highlight-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 8px;
}
.highlight-item span {
  font-size: 0.9rem;
  color: var(--muted);
}
.hero-panel {
  padding: 30px;
  border-radius: 32px;
  background: rgba(8, 13, 25, 0.96);
  border: 1px solid rgba(51, 214, 195, 0.14);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26),
              0 0 40px rgba(51, 214, 195, 0.08);
  backdrop-filter: blur(20px);
  position: relative;
}
.hero-panel::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(51, 214, 195, 0.3), rgba(59, 136, 205, 0.2), rgba(51, 214, 195, 0.3));
  z-index: -1;
  opacity: 0.6;
}
.profile-frame {
  width: 100%;
  min-height: 260px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(51, 214, 195, 0.12), rgba(10, 16, 28, 0.96));
  position: relative;
  box-shadow: inset 0 0 20px rgba(51, 214, 195, 0.1),
              0 10px 30px rgba(0, 0, 0, 0.3);
}
.profile-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(51, 214, 195, 0.05), transparent 50%);
  pointer-events: none;
}
.profile-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-panel-copy {
  margin-top: 24px;
}
.trust-line {
  margin: 0;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(51, 214, 195, 0.1), rgba(59, 136, 205, 0.08));
  border: 1px solid rgba(51, 214, 195, 0.2);
  color: #e8fff9;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  box-shadow: 0 8px 24px rgba(51, 214, 195, 0.1);
}
.large-name {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.title-below {
  font-size: 0.9em;
  font-weight: 500;
  margin-top: 0;
  opacity: 0.9;
}
.hero-stat-grid {
  display: grid;
  gap: 16px;
}
.hero-stat {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-stat strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #f8fdff;
}
.hero-stat span {
  color: #a9b4cf;
  font-size: 0.95rem;
  line-height: 1.7;
}
.section {
  padding-top: 88px;
}
.panel {
  background: rgba(14, 20, 35, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: var(--shadow);
}
.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 42px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}
.section-head p {
  margin: 0;
  max-width: 660px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.95;
}
.about-grid,
.cards-grid,
.why-grid,
.testimonials-grid,
.project-grid {
  display: grid;
  gap: 28px;
}
.about-grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 1fr);
  align-items: start;
  gap: 38px;
}
.about-copy {
  display: grid;
  gap: 24px;
}
.about-intro {
  margin: 0;
  color: #eff5ff;
  line-height: 2.05;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.about-body p {
  margin: 0 0 20px;
  color: #c6d4e8;
  line-height: 1.95;
  font-size: 0.99rem;
}
.about-panel {
  display: grid;
  gap: 22px;
  padding: 32px;
  border-radius: 32px;
  background: rgba(12, 18, 34, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}
.about-panel-copy {
  display: grid;
  gap: 14px;
}
.about-panel-copy h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.28;
  color: #f8fdff;
}
.about-panel-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}
.about-features {
  display: grid;
  gap: 18px;
}
.feature-card {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.feature-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.02rem;
  color: #f8fdff;
}
.feature-card p {
  margin: 0;
  color: #b9c5da;
  line-height: 1.8;
}
.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 24px 0 0;
}
.trust-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(35, 95, 83, 0.12);
  border: 1px solid rgba(34, 199, 156, 0.18);
}
.trust-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #e8fff9;
}
.trust-card span {
  display: block;
  color: #c9f9ee;
  line-height: 1.8;
}
.service-card,
.project-card,
.why-card,
.testimonial-card {
  padding: 32px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.service-card:hover,
.project-card:hover,
.why-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.16);
  border-color: rgba(255, 255, 255, 0.14);
}
.service-card {
  display: grid;
  gap: 18px;
}
.service-outcome,
.project-card p,
.why-card p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.8;
}
.service-btn {
  width: fit-content;
  margin-top: 10px;
}
.project-tag {
  display: inline-flex;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.project-card h3,
.why-card h3,
.service-card h3,
.testimonial-card h3 {
  margin: 0 0 14px;
  font-size: 1.15rem;
  line-height: 1.3;
  color: #f8fdff;
}
.project-card p {
  margin: 14px 0 0;
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.experience-card {
  padding: 32px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.16);
  border-color: rgba(255, 255, 255, 0.14);
}
.experience-header {
  margin-bottom: 20px;
}
.experience-header h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #f8fdff;
}
.experience-role {
  display: block;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
}
.experience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.experience-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}
.experience-list li:last-child {
  border-bottom: none;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}
.skills-category h3 {
  margin: 0 0 20px;
  font-size: 1.2rem;
  color: #f8fdff;
}
.skills-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.skills-list li {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.25s ease;
}
.skills-list li:hover {
  background: rgba(51, 214, 195, 0.1);
  border-color: rgba(51, 214, 195, 0.3);
  color: #e8fff9;
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.testimonial-card {
  display: grid;
  gap: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.testimonial-author {
  color: var(--text);
}
.testimonial-author span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}
.cta-panel {
  max-width: 760px;
  margin: 0 auto;
  padding: 44px 38px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(140, 112, 255, 0.16), rgba(7, 10, 26, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  text-align: center;
}
.cta-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
}
.cta-panel p {
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.8;
}
.cta-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.footer {
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: var(--muted);
}
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .about-grid,
  .cards-grid,
  .why-grid,
  .testimonials-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .site-header {
    position: relative;
  }
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: min(320px, 95vw);
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    background: rgba(8, 10, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
    pointer-events: none;
  }
  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-nav a {
    width: 100%;
    padding: 12px 0;
  }
  .nav-btn {
    width: 100%;
  }
}
@media (max-width: 680px) {
  .page {
    padding: 22px 0 60px;
  }
  .hero h1 {
    font-size: 2.7rem;
  }
  .hero-panel {
    padding: 26px;
  }
}
