:root {
  --bg: #05070d;
  --bg-soft: rgba(255, 255, 255, 0.05);
  --bg-soft-2: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --muted-2: rgba(255, 255, 255, 0.45);
  --dark: #0b0d12;
  --light: #ffffff;
  --accent: #8b5cf6;
  --accent-2: #3b82f6;
  --success: #1fd17d;
  --radius: 24px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.06), transparent 25%),
    radial-gradient(circle at top right, rgba(139,92,246,0.16), transparent 25%),
    radial-gradient(circle at bottom, rgba(59,130,246,0.14), transparent 30%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  position: relative;
  z-index: 2;
}

.glass {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.3px;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-title.left {
  text-align: left;
  max-width: 100%;
  margin: 0;
}

.section-title h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  margin: 18px 0 14px;
}

.section-title p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

.orb-1 {
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,0.08);
  top: 10%;
  left: -60px;
}

.orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(139,92,246,0.18);
  top: 8%;
  right: -90px;
}

.orb-3 {
  width: 260px;
  height: 260px;
  background: rgba(59,130,246,0.14);
  bottom: 10%;
  left: 20%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 13, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: #fff;
  color: #000;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text small {
  color: var(--muted-2);
  font-size: 11px;
  text-transform: lowercase;
}

.logo-text strong {
  font-size: 15px;
  letter-spacing: 1.3px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  color: var(--muted);
  transition: 0.25s;
}

.desktop-nav a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  border: 0;
  border-radius: 16px;
  padding: 14px 20px;
  cursor: pointer;
  transition: 0.25s ease;
  font-weight: 600;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-light {
  background: var(--light);
  color: #000;
}

.btn-light:hover {
  background: rgba(255,255,255,0.92);
}

.btn-dark {
  background: #0b0d12;
  color: #fff;
}

.btn-dark:hover {
  background: #141821;
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.10);
}

.full {
  width: 100%;
}

.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
  cursor: pointer;
}

.hamburger span {
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 3px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 16px;
  background: rgba(5, 7, 13, 0.95);
}

.mobile-nav.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.96;
  margin: 20px 0;
  max-width: 760px;
}

.hero p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 19px;
  margin: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.stat-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
}

.stat-card h3 {
  margin: 0 0 6px;
  font-size: 30px;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.dashboard-card {
  border-radius: 32px;
  padding: 28px;
}

.dashboard-top,
.project-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mini-label,
.project-box span,
.profile-box small,
.contact-lines small {
  color: var(--muted-2);
  font-size: 13px;
}

.dashboard-top h3,
.project-head h4 {
  margin: 6px 0 0;
}

.status {
  background: rgba(31,209,125,0.12);
  color: #7bf0b6;
  border: 1px solid rgba(31,209,125,0.2);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 22px 0;
}

.mini-panel,
.project-box,
.profile-box,
.profile-project {
  background: rgba(0,0,0,0.22);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
}

.mini-panel strong {
  display: block;
  font-size: 28px;
  margin: 8px 0;
}

.mini-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.project-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.project-items div {
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 14px;
}

.project-items strong {
  display: block;
  margin-top: 6px;
}

.progress {
  width: 100%;
  height: 9px;
  background: rgba(255,255,255,0.09);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff, #8b5cf6, #3b82f6);
}

.strip {
  border-radius: 30px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  text-align: center;
  font-weight: 600;
}

.cards-3,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.testimonial-card,
.price-card,
.profile-panel,
.contact-info,
.about-box {
  border-radius: 28px;
  padding: 28px;
}

.service-card h3,
.testimonial-card h4,
.price-card h3 {
  margin-top: 18px;
  margin-bottom: 12px;
}

.service-card p,
.testimonial-card p,
.price-card p {
  color: var(--muted);
  line-height: 1.7;
}

.service-card ul,
.price-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.icon-box {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #fff;
  color: #000;
  display: grid;
  place-items: center;
  font-size: 24px;
}

.portfolio-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}

.portfolio-image {
  height: 260px;
}

.gradient-a {
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(139,92,246,0.32), rgba(255,255,255,0.05));
}

.gradient-b {
  background: linear-gradient(135deg, rgba(59,130,246,0.28), rgba(255,255,255,0.12), rgba(255,255,255,0.05));
}

.gradient-c {
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(34,197,94,0.18), rgba(139,92,246,0.18));
}

.portfolio-content {
  margin: -36px 20px 20px;
  border-radius: 22px;
  padding: 22px;
  position: relative;
}

.tag,
.featured-badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.tag {
  background: rgba(255,255,255,0.09);
  border: 1px solid var(--line);
}

.price-card .price {
  font-size: 42px;
  font-weight: 700;
  margin: 16px 0;
}

.price-card.featured {
  background: #fff;
  color: #000;
  border-radius: 28px;
  padding: 34px 28px;
  position: relative;
  box-shadow: 0 28px 80px rgba(255,255,255,0.12);
}

.price-card.featured p,
.price-card.featured ul {
  color: rgba(0,0,0,0.72);
}

.featured-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #000;
  color: #fff;
}

.stars {
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-card span {
  color: var(--muted-2);
}

.faq-wrap {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: transparent;
  color: #fff;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}

.faq-question span {
  font-size: 26px;
  color: var(--muted);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.75;
}

.profile-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.avatar {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: #fff;
  color: #000;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 700;
}

.profile-top h3 {
  margin: 0 0 6px;
}

.profile-top p {
  margin: 0;
  color: var(--muted);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.profile-box strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.profile-project {
  margin-top: 18px;
}

.profile-project h4 {
  margin: 8px 0 16px;
  font-size: 28px;
}

.profile-project p {
  margin-top: 10px;
  color: var(--muted);
}

.hidden {
  display: none !important;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.single-contact {
  grid-template-columns: 1fr;
  max-width: 820px;
}

.contact-info h2 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
}

.contact-info p {
  color: var(--muted);
  line-height: 1.8;
}

.contact-lines {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.contact-lines strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.social-btn {
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: #fff;
  transition: 0.2s ease;
}

.social-btn:hover {
  background: rgba(255,255,255,0.12);
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.18);
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 24px;
}

.footer p,
.footer span,
.footer a {
  color: var(--muted);
  display: block;
  margin-top: 10px;
}

.footer h4 {
  margin: 0 0 12px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
}

.modal-box {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  border-radius: 28px;
  padding: 28px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.auth-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.auth-tab {
  flex: 1;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-radius: 14px;
  cursor: pointer;
}

.auth-tab.active {
  background: #fff;
  color: #000;
}

.auth-content {
  display: none;
}

.auth-content.active {
  display: block;
}

.auth-content h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.auth-content p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.auth-content form {
  display: grid;
  gap: 14px;
}

.auth-content input {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.22);
  color: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  outline: none;
  transition: 0.2s;
}

.auth-content input:focus {
  border-color: rgba(255,255,255,0.26);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

@media (max-width: 1080px) {
  .hero-grid,
  .contact-grid,
  .footer-grid,
  .pricing-grid,
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .strip,
  .hero-stats,
  .dashboard-grid,
  .profile-grid,
  .project-items {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .nav-actions .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section {
    padding: 78px 0;
  }

  .hero h1 {
    line-height: 1.02;
  }
}
.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
}
.seo-bar {
  max-width: 900px;
  margin: 30px auto 0;
  padding: 14px 20px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.6px;
  color: rgba(255,255,255,0.7);

  border: 1px solid rgba(79,140,255,0.15);
  border-radius: 14px;

  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);

  box-shadow: 0 0 25px rgba(79,140,255,0.12);

  animation: fadeIn 1.2s ease forwards;
  opacity: 0;
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  transition: 0.4s ease;
}

.portfolio-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 20px 60px rgba(79,140,255,0.25);
}

.portfolio-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

.portfolio-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15),
    transparent
  );
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.08);
}

.portfolio-content {
  margin: -36px 20px 20px;
  position: relative;
  z-index: 2;
  border-radius: 22px;
  padding: 22px;
  transition: 0.4s ease;
}

.portfolio-card:hover .portfolio-content {
  transform: translateY(-5px);
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .cards-3 {
    grid-template-columns: 1fr;
  }
}
.price-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card ul {
  flex-grow: 1;
}

.price-card a {
  margin-top: 20px;
}
.nav-actions .btn {
  font-weight: 600;
  letter-spacing: 0.3px;
}
.btn-primary {
    background: #fff;
    color: #000;
    border-radius: 10px;
    font-weight: 600;
    padding: 14px 26px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #eaeaea;
    transform: translateY(-2px);
}
.section-note {
    text-align: center;
    margin: 30px auto 0;
    max-width: 700px;
    opacity: 0.6;
    font-size: 14px;
}