/* styles.css */

:root {

  /* Brand Colors */
  --bg-black: #050505;
  --white: #f5f7fa;
  --muted-text: #9fa7b2;

  --ice-blue: #b9dcff;
  --soft-beige: #e6cfb6;

  --glass-border: rgba(255,255,255,0.12);
  --glass-bg: rgba(255,255,255,0.03);

  --button-shadow:
    0 8px 40px rgba(185,220,255,0.15);

  --container-width: 1600px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg-black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
video,
canvas,
svg {
  max-width: 100%;
}

/* =========================
   PAGE
========================= */

.hero-section {
  height: 100vh;
  max-height: 980px;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  top: 23px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 32px;
}

.nav-container {

  width: 100%;
  max-width: var(--container-width);

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 28px;

  border: 1px solid var(--glass-border);

  border-radius: 28px;

  backdrop-filter: blur(20px);

  background: rgba(0,0,0,0.45);

  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02),
    0 12px 50px rgba(0,0,0,0.55);

  position: relative;
}

.logo {
  width: 55px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 48px;
}

.nav-links a {

  text-decoration: none;

  color: rgba(255,255,255,0.88);

  font-size: 16px;
  font-weight: 500;

  transition: 0.3s ease;
}

.nav-links a:hover {
  color: var(--ice-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.login-link {
  text-decoration: none;
  color: var(--ice-blue);
  font-weight: 500;
}

.primary-button {

  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 15px 24px;

  border-radius: 999px;

  text-decoration: none;

  font-weight: 600;
  font-size: 16px;

  color: #0a0a0a;

  background:
    linear-gradient(
      135deg,
      var(--soft-beige),
      var(--ice-blue)
    );

  box-shadow: var(--button-shadow);

  transition: 0.35s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

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

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

  cursor: pointer;
}

.mobile-menu-toggle span {
  position: relative;

  width: 18px;
  height: 2px;

  border-radius: 999px;

  background: currentColor;

  transition: 0.28s ease;
}

.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  content: "";

  position: absolute;
  left: 0;

  width: 18px;
  height: 2px;

  border-radius: 999px;

  background: currentColor;

  transition: 0.28s ease;
}

.mobile-menu-toggle span::before {
  top: -6px;
}

.mobile-menu-toggle span::after {
  top: 6px;
}

.nav-container.menu-open .mobile-menu-toggle span {
  background: transparent;
}

.nav-container.menu-open .mobile-menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-container.menu-open .mobile-menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* =========================
   HERO
========================= */

.hero-section {

  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  overflow: visible;
}

/* Background Image */

.hero-background {

  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  z-index: 1;
}

.hero-background img {

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

/* Overlay */

.hero-overlay {

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.92) 10%,
      rgba(0,0,0,0.72) 38%,
      rgba(0,0,0,0.15) 75%
    );

  z-index: 2;
}

/* Hero Content */

.hero-content {
  position: relative;
  z-index: 5;

  width: 100%;
  max-width: 100%;

  margin: 0 auto;

  padding: 200px 32px 80px;
}

.hero-left {
  max-width: 760px;
  margin-left: clamp(16px, 5vw, 72px);
}

/* Badge */

.hero-badge {

  display: inline-flex;
  align-items: center;

  padding: 8px 18px;

  border-radius: 999px;

  border: 1px solid rgba(185,220,255,0.25);

  background: rgba(255,255,255,0.03);

  color: #dce7f3;

  font-size: 12px;
  font-weight: 500;

  margin-bottom: 34px;

  backdrop-filter: blur(10px);
}

/* Title */

.hero-title {

  font-size: clamp(34px, 5.4vw, 78px);

  line-height: 1.08;

  letter-spacing: -4px;

  font-weight: 800;

  margin-bottom: 32px;
}

.hero-title span {

  background:
    linear-gradient(
      90deg,
      var(--soft-beige),
      #ffffff,
      var(--ice-blue)
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */

.hero-description {

  max-width: 460px;

  font-size: 20px;
  line-height: 1.5;

  color: var(--muted-text);

  margin-bottom: 42px;

  font-weight: 400;
}

/* Buttons */

.hero-buttons {

  display: flex;
  align-items: center;
  gap: 24px;

  margin-bottom: 56px;
}

.secondary-button {

  display: inline-flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;

  color: var(--ice-blue);

  font-weight: 600;

  transition: 0.3s ease;
}

.secondary-button:hover {
  transform: translateX(4px);
}

/* Trusted */

.trusted-section p {

  color: rgba(255,255,255,0.5);

  font-size: 14px;

  margin-bottom: 28px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: nowrap;

}

.brand-row span {

  color: rgba(255,255,255,0.42);

  font-size: 23px;
  font-weight: 700;

  letter-spacing: -1px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

  .site-header {
    padding: 0 24px;
  }

  .nav-container {
    padding: 14px 16px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;

    display: grid;
    gap: 6px;

    padding: 16px;

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

    background: rgba(0,0,0,0.92);
    box-shadow: 0 22px 60px rgba(0,0,0,0.55);
    backdrop-filter: blur(22px);

    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  .nav-links a {
    display: flex;
    align-items: center;

    min-height: 48px;

    padding: 0 12px;

    border-radius: 14px;

    font-size: 16px;
  }

  .nav-links a:hover,
  .nav-links a.active,
  .nav-links a.active-link {
    background: rgba(255,255,255,0.06);
  }

  .nav-actions {
    position: absolute;
    top: calc(100% + 304px);
    left: 0;
    right: 0;

    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;

    padding: 0 16px 16px;

    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  .nav-actions .login-link,
  .nav-actions .primary-button {
    justify-content: center;
    width: 100%;
  }

  .nav-actions .login-link {
    min-height: 46px;
    display: inline-flex;
    align-items: center;

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

    background: rgba(255,255,255,0.04);
  }

  .nav-container.menu-open {
    border-color: rgba(255,255,255,0.16);
    background: rgba(0,0,0,0.82);
  }

  .nav-container.menu-open .nav-links,
  .nav-container.menu-open .nav-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-container.menu-open .nav-links {
    border-bottom-color: transparent;
    border-radius: 22px 22px 0 0;
  }

  .nav-container.menu-open .nav-actions {
    border: 1px solid rgba(255,255,255,0.12);
    border-top: 0;
    border-radius: 0 0 22px 22px;

    background: rgba(0,0,0,0.92);
    box-shadow: 0 22px 60px rgba(0,0,0,0.55);
    backdrop-filter: blur(22px);
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .hero-title {
    font-size: clamp(48px, 8vw, 72px);
    letter-spacing: 0;
  }

  .hero-description {
  font-size: 22px;

}

}

@media (max-width: 768px) {

  .site-header {
    top: 15px;
    padding: 0 16px;
  }

  .nav-container {
    padding: 12px 14px;
    border-radius: 22px;
  }

  .logo {
    width: 48px;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .primary-button {
    padding: 14px 20px;
  }

  .hero-content {
    padding: 190px 22px 56px;
  }

  .hero-left {
    margin-left: 0;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(38px, 11vw, 54px);
    letter-spacing: 0;
  }

  .hero-description {
    font-size: 18px;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-buttons a {
    justify-content: center;
    width: 100%;
  }

  .brand-row {
    gap: 18px;
    flex-wrap: wrap;
  }

  .brand-row span {
    font-size: 16px;
    letter-spacing: 0;
  }
}

/* =========================
   ABOUT SECTION
========================= */

.about-section {

  position: relative;

  width: 100%;

  padding: 100px 48px 10px 98px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at top right,
      rgba(50,120,255,0.08),
      transparent 30%
    ),
    #050505;
}

/* Container */

.about-container {

  width: 100%;
  max-width: 1600px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 80px;
}

/* =========================
   LEFT CONTENT
========================= */

.about-content {

  flex: 1;

  max-width: 720px;

  z-index: 5;
}

/* Label */

.section-label {

  display: inline-flex;
  align-items: center;
  gap: 12px;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 4px;

  color: rgba(255,255,255,0.82);

  margin-bottom: 18px;
}

.label-dot {

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #6db7ff;

  box-shadow:
    0 0 12px #6db7ff,
    0 0 30px #6db7ff;
}

/* Mini Title */

.about-mini-title {

  color: rgba(255,255,255,0.7);

  font-size: 18px;

  margin-bottom: 42px;

  font-weight: 400;
}

/* Main Heading */

.about-title {

  font-size: clamp(26px, 4vw, 45px);

  line-height: 1.02;

  letter-spacing: -4px;

  font-weight: 800;

  margin-bottom: 36px;
}

/* Gradient Highlight */

.about-title span {

  background:
    linear-gradient(
      90deg,
      #f3d8b8,
      #ffffff,
      #78bcff
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */

.about-subtitle {

  font-size: 26px;

  line-height: 1.5;

  color: rgba(255,255,255,0.88);

  margin-bottom: 40px;

  max-width: 650px;
}

/* Description */

.about-description {

  font-size: 17px;

  line-height: 1.5;

  color: rgba(255,255,255,0.62);

  max-width: 680px;

  margin-bottom: 54px;
}

/* Button */

.about-button {

  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 18px 28px;

  border-radius: 999px;

  text-decoration: none;

  color: #f4f7fb;

  border: 1px solid rgba(255,255,255,0.12);

  background:
    rgba(255,255,255,0.02);

  backdrop-filter: blur(10px);

  font-weight: 600;

  transition: 0.35s ease;
}

.about-button:hover {

  transform: translateY(-3px);

  border-color: rgba(120,188,255,0.5);

  box-shadow:
    0 0 30px rgba(120,188,255,0.18);
}

/* =========================
   RIGHT VISUAL
========================= */

.about-visual {

  flex: 1;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Image */

.about-image {

  width: 180%;
  max-width: 960px;

  object-fit: contain;

  z-index: 3;

  animation: floatOrb 7s ease-in-out infinite;
}

/* Floating Animation */

@keyframes floatOrb {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Glow Background */

.about-bg-glow {

  position: absolute;

  top: 50%;
  right: -10%;

  width: 700px;
  height: 700px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(88,150,255,0.12),
      transparent 70%
    );

  transform: translateY(-50%);

  filter: blur(80px);

  z-index: 1;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {

  .about-container {

    flex-direction: column;

    text-align: left;
  }

  .about-visual {
    margin-top: 60px;
  }

  .about-title {
    font-size: 64px;
  }

  .about-subtitle {
    font-size: 24px;
  }

  .about-description {
    font-size: 20px;
  }
}

@media (max-width: 768px) {

  .about-section {
    padding: 100px 24px;
  }

  .about-title {

    font-size: 48px;

    letter-spacing: -2px;
  }

  .about-mini-title {
    font-size: 20px;
  }

  .about-subtitle {
    font-size: 20px;
  }

  .about-description {

    font-size: 17px;

    line-height: 1.7;
  }

  .about-button {

    width: 100%;

    justify-content: center;
  }
}

/* =========================
   SERVICES SECTION
========================= */

.services-section {

  position: relative;

  width: 100%;

  padding: 40px 48px 100px 106px;

  background:
    linear-gradient(
      180deg,
      #050505 0%,
      #070707 100%
    );

  overflow: hidden;
}

/* =========================
   BACKGROUND EFFECTS
========================= */

.services-bg-glow {

  position: absolute;

  top: 20%;
  right: -10%;

  width: 900px;
  height: 900px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(66,130,255,0.12),
      transparent 70%
    );

  filter: blur(100px);

  z-index: 1;
}

.services-grid-overlay {

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.015) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.015) 1px,
      transparent 1px
    );

  background-size: 80px 80px;

  opacity: 0.3;

  z-index: 1;
}

/* =========================
   CONTAINER
========================= */

.services-container {

  position: relative;
  z-index: 5;

  width: 100%;
  max-width: 1600px;

  margin: 0 auto;
}

/* =========================
   TOP AREA
========================= */

.services-top {

  position: relative;  

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 60px;

  margin-bottom: 30px;
}

/* Left Content */

.services-heading-content {

  position: relative;
  z-index: 5;

  max-width: 460px;
}

/* Heading */

.services-title {

  font-size: clamp(26px, 4.5vw, 45px);

  line-height: 1.02;

  letter-spacing: -4px;

  font-weight: 800;

  margin-top: 18px;
  margin-bottom: 34px;
}

/* Gradient */

.services-title span {

  background:
    linear-gradient(
      90deg,
      #f2d3af,
      #ffffff,
      #78bcff
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */

.services-description {

  font-size: 17px;

  line-height: 1.8;

  color: rgba(255,255,255,0.62);

  max-width: 720px;
}

/* =========================
   WAVE VISUAL
========================= */

.services-visual {

  position: absolute;

  top: -180px;
  right: -120px;

  width: 900px;

  z-index: 1;

  pointer-events: none;
}

.services-wave {

  width: 100%;
  max-width: 1100px;

  opacity: 0.45;

  animation: waveFloat 8s ease-in-out infinite;
}

@keyframes waveFloat {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* =========================
   GRID
========================= */

.services-grid {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(260px, 1fr));

  gap: 20px;
}

/* =========================
   CARD
========================= */

.service-card {

  position: relative;

  padding: 28px 24px;

  min-height: 280px;

  border-radius: 24px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.015)
    );

  border:
    1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(16px);

  overflow: hidden;

  transition: 0.45s ease;
}

/* Glow Hover */

.service-card::before {

  content: "";

  position: absolute;

  inset: -1px;

  border-radius: inherit;

  padding: 1px;

  background:
    linear-gradient(
      135deg,
      rgba(242,211,175,0.4),
      rgba(120,188,255,0.4)
    );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  opacity: 0;

  transition: 0.45s ease;
}

.service-card:hover::before {
  opacity: 1;
}

/* Hover */

.service-card:hover {

  transform:
    translateY(-10px);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.045),
      rgba(255,255,255,0.02)
    );

  box-shadow:
    0 0 60px rgba(82,148,255,0.12);
}

/* =========================
   ICON
========================= */

.service-icon {

  width: 64px;
  height: 64px;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 28px;

  background:
    linear-gradient(
      135deg,
      rgba(242,211,175,0.12),
      rgba(120,188,255,0.12)
    );

  border:
    1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(12px);
}

.service-icon img {

  width: 28px;
  height: 28px;

  object-fit: contain;
}

/* =========================
   TEXT
========================= */

.service-card h3 {

  font-size: 23px;

  line-height: 1.15;

  letter-spacing: -1.5px;

  margin-bottom: 18px;

  color: #f4f7fb;
}

.service-card p {

  font-size: 15px;

  line-height: 1.5;

  color: rgba(255,255,255,0.62);

  margin-bottom: 28px;
}

/* Arrow */

.service-card a {

  position: absolute;

  bottom: 24px;

  font-size: 22px;

  text-decoration: none;

  color: #84c1ff;

  transition: 0.3s ease;
}

.service-card:hover a {
  transform: translateX(6px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {

  .services-top {

    flex-direction: column;

    align-items: flex-start;
  }

  .services-visual {
    justify-content: flex-start;
  }

  .services-wave {
    max-width: 520px;
  }
}

@media (max-width: 768px) {

  .services-section {
    padding: 100px 24px;
  }

  .services-title {

    font-size: 48px;

    letter-spacing: -2px;
  }

  .services-description {

    font-size: 18px;

    line-height: 1.7;
  }

  .service-card {

    min-height: auto;

    padding: 34px 28px 80px;
  }

  .service-card h3 {
    font-size: 28px;
  }

  .service-card p {
    font-size: 17px;
  }
}

/* ========================================
   WEBSITE SERVICE SECTION
======================================== */

.website-service-section {

  position: relative;

  width: 100%;

  padding: 100px 48px 120px 108px;

  background:
    linear-gradient(
      180deg,
      #050505 0%,
      #060606 100%
    );

  overflow: hidden;
}

/* ========================================
   BACKGROUND GLOW
======================================== */

.website-service-glow {

  position: absolute;

  left: -10%;
  top: 50%;

  width: 900px;
  height: 900px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(242,211,175,0.08),
      transparent 70%
    );

  filter: blur(100px);

  transform: translateY(-50%);

  z-index: 1;
}

/* ========================================
   CONTAINER
======================================== */

.website-service-container {

  position: relative;

  z-index: 5;

  width: 100%;
  max-width: 1600px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 80px;
}

/* ========================================
   LEFT VISUAL
======================================== */

.website-service-visual {

  flex: 1;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* ========================================
   FRAME
======================================== */

.website-frame {

  position: relative;

  width: 100%;
  max-width: 860px;

  padding: 18px;

  border-radius: 42px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.015)
    );

  border:
    1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(18px);

  overflow: hidden;

  box-shadow:
    0 0 80px rgba(0,0,0,0.55);

  transform-style: preserve-3d;
}

/* Glow Border */

.website-frame-border {

  position: absolute;

  inset: 0;

  border-radius: inherit;

  padding: 1px;

  background:
    linear-gradient(
      135deg,
      rgba(242,211,175,0.55),
      rgba(120,188,255,0.55)
    );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  opacity: 0.8;

  pointer-events: none;
}

/* Website Preview */

.website-preview-image {

  width: 100%;

  display: block;

  border-radius: 28px;

  object-fit: cover;

  transform:
    perspective(1200px)
    rotateY(-6deg)
    rotateX(3deg);

  transition: 0.6s ease;
}

/* Hover */

.website-frame:hover .website-preview-image {

  transform:
    perspective(1200px)
    rotateY(0deg)
    rotateX(0deg)
    scale(1.02);
}

/* ========================================
   RIGHT CONTENT
======================================== */

.website-service-content {

  flex: 1;

  max-width: 450px;
}

/* ========================================
   TITLE
======================================== */

.website-service-title {

  font-size: clamp(26px, 4.5vw, 45px);

  line-height: 1.02;

  letter-spacing: -4px;

  font-weight: 800;

  margin-top: 20px;
  margin-bottom: 20px;
}

/* Gradient Text */

.website-service-title span {

  background:
    linear-gradient(
      90deg,
      #f3d7b7,
      #ffffff,
      #78bcff
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ========================================
   TEXT
======================================== */

.website-service-subtitle {

  font-size: 26px;

  line-height: 1.5;

  color: rgba(255,255,255,0.88);

  margin-bottom: 18px;
}

.website-service-description {

  font-size: 18px;

  line-height: 1.7;

  color: rgba(255,255,255,0.62);

  margin-top: 20px;
  margin-bottom: 50px;
}

/* ========================================
   DIVIDER
======================================== */

.website-divider {

  position: relative;

  width: 100%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(242,211,175,0.45),
      rgba(120,188,255,0.45)
    );
}

.website-divider span {

  position: absolute;

  top: 50%;
  left: 50%;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #7dc0ff;

  transform:
    translate(-50%, -50%);

  box-shadow:
    0 0 20px #7dc0ff,
    0 0 40px #7dc0ff;
}

/* ========================================
   BUTTONS
======================================== */

.website-service-buttons {

  display: flex;
  align-items: center;

  gap: 24px;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1200px) {

  .website-service-container {

    flex-direction: column;

    gap: 80px;
  }

  .website-service-content {

    max-width: 100%;
  }

  .website-service-title {

    font-size: 64px;
  }

  .website-service-subtitle {

    font-size: 26px;
  }

  .website-service-description {

    font-size: 22px;
  }
}

@media (max-width: 768px) {

  .website-service-section {

    padding: 100px 24px;
  }

  .website-service-title {

    font-size: 48px;

    letter-spacing: -2px;
  }

  .website-service-subtitle {

    font-size: 22px;
  }

  .website-service-description {

    font-size: 18px;
  }

  .website-service-buttons {

    flex-direction: column;

    align-items: flex-start;
  }

  .website-frame {

    border-radius: 28px;

    padding: 12px;
  }

  .website-preview-image {

    border-radius: 18px;
  }
}

/* ========================================
   ECOSYSTEM SECTION
======================================== */

.ecosystem-section {

  position: relative;

  width: 100%;

  padding: 80px 108px;

  background:
    linear-gradient(
      180deg,
      #050505 0%,
      #070707 100%
    );

  overflow: hidden;
}

/* ========================================
   BACKGROUND GLOW
======================================== */

.ecosystem-glow {

  position: absolute;

  top: 50%;
  left: 50%;

  width: 900px;
  height: 900px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(120,188,255,0.08),
      transparent 70%
    );

  transform:
    translate(-50%, -50%);

  filter: blur(100px);

  z-index: 1;
}

/* ========================================
   CONTAINER
======================================== */

.ecosystem-container {

  position: relative;

  z-index: 5;

  width: 100%;
  max-width: 1600px;

  margin: 0 auto;
}

/* ========================================
   ECOSYSTEM SECTION LABEL
======================================== */

.ecosystem-heading .section-label {

  justify-content: center;
}

/* ========================================
   HEADING
======================================== */

.ecosystem-heading {

  max-width: 900px;

  margin: 0 auto 90px;

  text-align: center;
}

/* Title */

.ecosystem-title {

  font-size: clamp(26px, 4.5vw, 45px);

  line-height: 1.02;

  letter-spacing: -4px;

  font-weight: 800;

  margin-top: 20px;
  margin-bottom: 20px;
}

/* Gradient Highlight */

.ecosystem-title span {

  background:
    linear-gradient(
      90deg,
      #f2d3af,
      #ffffff,
      #78bcff
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */

.ecosystem-subtitle {

  font-size: 20px;

  line-height: 1.4;

  color: rgba(255,255,255,0.62);

  max-width: 720px;

  margin: 0 auto;
}

/* ========================================
   GRID
======================================== */

.ecosystem-grid {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(340px, 1fr));

  gap: 20px;
}

/* ========================================
   CARD
======================================== */

.ecosystem-card {

  position: relative;

  padding: 36px 24px;

  min-height: 260px;

  border-radius: 24px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.015)
    );

  border:
    1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(16px);

  overflow: hidden;

  transition: 0.45s ease;
}

/* Glow Border */

.ecosystem-card::before {

  content: "";

  position: absolute;

  inset: -1px;

  border-radius: inherit;

  padding: 1px;

  background:
    linear-gradient(
      135deg,
      rgba(242,211,175,0.4),
      rgba(120,188,255,0.4)
    );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  opacity: 0;

  transition: 0.45s ease;
}

/* Hover */

.ecosystem-card:hover {

  transform:
    translateY(-12px);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.045),
      rgba(255,255,255,0.02)
    );

  box-shadow:
    0 0 60px rgba(82,148,255,0.12);
}

.ecosystem-card:hover::before {
  opacity: 1;
}

/* Featured Card */

.featured-card {

  background:
    linear-gradient(
      180deg,
      rgba(242,211,175,0.06),
      rgba(120,188,255,0.03)
    );

  border:
    1px solid rgba(242,211,175,0.14);
}

/* ========================================
   NUMBER
======================================== */

.ecosystem-number {

  font-size: 12px;

  font-weight: 700;

  color:
    rgba(120,188,255,0.72);

  margin-bottom: 32px;

  letter-spacing: 2px;
}

/* ========================================
   TEXT
======================================== */

.ecosystem-card h3 {

  font-size: 28px;

  line-height: 1.12;

  letter-spacing: -1.5px;

  color: #f4f7fb;

  margin-bottom: 16px;
}

.ecosystem-card p {

  font-size: 15px;

  line-height: 1.8;

  color:
    rgba(255,255,255,0.62);
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 768px) {

  .ecosystem-section {

    padding: 100px 24px;
  }

  .ecosystem-title {

    font-size: 48px;

    letter-spacing: -2px;
  }

  .ecosystem-subtitle {

    font-size: 18px;

    line-height: 1.7;
  }

  .ecosystem-card {

    min-height: auto;

    padding: 36px 28px;
  }

  .ecosystem-card h3 {

    font-size: 28px;
  }

  .ecosystem-card p {

    font-size: 17px;
  }
}

/* ========================================
   PORTFOLIO CTA SECTION
======================================== */

.portfolio-cta-section {

  position: relative;

  width: 100%;

  min-height: 90vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 140px 48px;

  overflow: hidden;

  background: #050505;
}

/* ========================================
   BACKGROUND IMAGE
======================================== */

.portfolio-cta-background {

  position: absolute;

  inset: 0;

  background-image:
    url('../assets/check-works-background.png');

  background-size: cover;
  background-position: center;

  opacity: 0.95;

  z-index: 1;
}

/* Dark Overlay */

.portfolio-overlay {

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.55)
    );

  z-index: 2;
}

/* ========================================
   CONTAINER
======================================== */

.portfolio-cta-container {

  position: relative;

  z-index: 5;

  width: 100%;
  max-width: 1200px;

  margin: 0 auto;

  text-align: center;
}

/* Label */

.portfolio-label {

  justify-content: center;

  margin-bottom: 28px;
}

/* Title */

.portfolio-cta-title {

  font-size: clamp(36px, 5.5vw, 85px);

  line-height: 0.95;

  letter-spacing: -6px;

  font-weight: 800;

  margin-bottom: 42px;
}

/* Gradient */

.portfolio-cta-title span {

  background:
    linear-gradient(
      90deg,
      #f2d3af,
      #ffffff,
      #78bcff
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Divider */

.portfolio-divider {

  position: relative;

  width: 420px;
  height: 1px;

  margin: 0 auto 42px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.3),
      transparent
    );
}

.portfolio-divider span {

  position: absolute;

  top: 50%;
  left: 50%;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #84c1ff;

  transform:
    translate(-50%, -50%);

  box-shadow:
    0 0 24px #84c1ff,
    0 0 44px #84c1ff;
}

/* Subtitle */

.portfolio-cta-subtitle {

  max-width: 600px;

  margin: 0 auto 56px;

  font-size: 18px;

  line-height: 1.7;

  color:
    rgba(255,255,255,0.68);
}

/* Button */

.portfolio-cta-button {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 15px;

  padding: 20px 38px;

  border-radius: 999px;

  text-decoration: none;

  color: #f4f7fb;

  font-size: 18px;
  font-weight: 600;

  background:
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(255,255,255,0.12);

  backdrop-filter: blur(16px);

  transition: 0.4s ease;
}

.portfolio-cta-button:hover {

  transform:
    translateY(-4px);

  border-color:
    rgba(120,188,255,0.55);

  box-shadow:
    0 0 40px rgba(120,188,255,0.16);
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 768px) {

  .portfolio-cta-section {

    padding: 100px 24px;
  }

  .portfolio-cta-title {

    font-size: 58px;

    letter-spacing: -3px;
  }

  .portfolio-divider {

    width: 220px;
  }

  .portfolio-cta-subtitle {

    font-size: 18px;
  }

  .portfolio-cta-button {

    width: 100%;
  }
}

/* ========================================
   CONTACT SECTION
======================================== */

.contact-section {

  position: relative;

  width: 100%;

  padding: 100px 48px 110px 108px;

  background:
    linear-gradient(
      180deg,
      #050505 0%,
      #070707 100%
    );

  overflow: hidden;
}

/* Glow */

.contact-glow {

  position: absolute;

  right: -10%;
  top: 50%;

  width: 800px;
  height: 800px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(120,188,255,0.08),
      transparent 70%
    );

  filter: blur(100px);

  transform:
    translateY(-50%);
}

/* Container */

.contact-container {

  position: relative;

  z-index: 5;

  width: 100%;
  max-width: 1600px;

  margin: 0 auto;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 70px;
}

/* Left */

.contact-content {

  flex: 1;

  max-width: 620px;
}

/* Title */

.contact-title {

  font-size: clamp(26px, 4.5vw, 45px);

  line-height: 1;

  letter-spacing: -4px;

  font-weight: 800;

  margin-top: 20px;
  margin-bottom: 36px;
}

/* Gradient */

.contact-title span {

  background:
    linear-gradient(
      90deg,
      #f2d3af,
      #ffffff,
      #78bcff
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */

.contact-description {

  font-size: 18px;

  line-height: 1.4;

  color:
    rgba(255,255,255,0.64);

  margin-bottom: 56px;
}

/* Contact Details */

.contact-details {

  display: flex;

  flex-direction: column;

  gap: 28px;
}

.contact-detail-item span {

  display: block;

  font-size: 14px;

  letter-spacing: 2px;

  text-transform: uppercase;

  color:
    rgba(120,188,255,0.72);

  margin-bottom: 10px;
}

.contact-detail-item p {

  font-size: 22px;

  color: #f4f7fb;
}

/* ========================================
   FORM
======================================== */

.contact-form-wrapper {

  flex: 1;

  max-width: 700px;
}

/* Form */

.contact-form {

  padding: 48px;

  border-radius: 36px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.015)
    );

  border:
    1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(18px);
}

/* Groups */

.form-group {

  margin-bottom: 28px;
}

.form-group label {

  display: block;

  margin-bottom: 12px;

  font-size: 15px;

  color:
    rgba(255,255,255,0.82);
}

/* Inputs */

.contact-form input,
.contact-form textarea {

  width: 100%;

  padding: 18px 20px;

  border-radius: 18px;

  border:
    1px solid rgba(255,255,255,0.08);

  background:
    rgba(255,255,255,0.03);

  color: #f4f7fb;

  font-size: 16px;

  outline: none;

  transition: 0.35s ease;
}

.contact-form textarea {

  min-height: 180px;

  resize: vertical;
}

/* Focus */

.contact-form input:focus,
.contact-form textarea:focus {

  border-color:
    rgba(120,188,255,0.45);

  box-shadow:
    0 0 30px rgba(120,188,255,0.12);
}

/* Button */

.contact-submit-button {

  width: 100%;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 14px;

  padding: 20px;

  border: none;

  border-radius: 999px;

  cursor: pointer;

  font-size: 18px;
  font-weight: 600;

  color: #050505;

  background:
    linear-gradient(
      90deg,
      #f2d3af,
      #78bcff
    );

  transition: 0.35s ease;
}

.contact-submit-button:hover {

  transform:
    translateY(-3px);

  box-shadow:
    0 0 40px rgba(120,188,255,0.22);
}

/* =========================================
   CTA SECTION
========================================= */

.blog-cta-section {
  padding:
    0 7vw
    120px;
}

.blog-cta-card {
  position: relative;

  overflow: hidden;

  border-radius: 40px;

  padding:
    80px 60px;

  text-align: center;

  border:
    1px solid rgba(255,255,255,0.08);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.02)
    );

  backdrop-filter: blur(24px);
}

.cta-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(155,208,255,0.18),
      transparent 70%
    );

  top: -250px;
  right: -100px;

  pointer-events: none;
}

.blog-cta-card h2 {
  font-size: clamp(2rem, 5vw, 4rem);

  line-height: 1.05;

  margin-bottom: 22px;
}

.blog-cta-card p {
  max-width: 700px;

  margin:
    0 auto
    40px;

  color: rgba(255,255,255,0.7);

  line-height: 1.8;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 16px;

  flex-wrap: wrap;
}

.newsletter-form input {
  width: 100%;
  max-width: 420px;

  height: 60px;

  border-radius: 999px;

  border:
    1px solid rgba(255,255,255,0.08);

  background:
    rgba(255,255,255,0.03);

  padding: 0 24px;

  color: #fff;

  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.45);
}

.footer-spacer {
  height: 40px;
}

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

.site-footer {
  position: relative;

  overflow: hidden;

  padding:
    86px 7vw
    34px;

  border-top:
    1px solid rgba(255,255,255,0.08);

  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(120,188,255,0.12),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,0.035),
      rgba(0,0,0,0.94) 42%,
      #000
    );

  color: #fff;
}

.footer-inner {
  display: grid;

  grid-template-columns:
    minmax(260px, 0.95fr)
    minmax(320px, 1.5fr);

  gap: clamp(46px, 7vw, 110px);

  max-width: 1320px;

  margin:
    0 auto
    62px;
}

.footer-brand {
  max-width: 440px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;

  margin-bottom: 26px;
}

.footer-logo img {
  width: 82px;
  height: auto;
  display: block;
}

.footer-brand p {
  color: rgba(255,255,255,0.68);

  font-size: 17px;
  line-height: 1.8;
}

.footer-links {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(150px, 1fr));

  gap: 34px;
}

.footer-links h3 {
  margin-bottom: 18px;

  color: #f2d3af;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  display: block;

  margin-bottom: 13px;

  color: rgba(255,255,255,0.68);

  font-size: 15px;
  line-height: 1.55;
  text-decoration: none;

  transition:
    color 0.28s ease,
    transform 0.28s ease;
}

.footer-links a:hover {
  color: #ffffff;

  transform:
    translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  max-width: 1320px;

  margin: auto;

  padding-top: 28px;

  border-top:
    1px solid rgba(255,255,255,0.08);

  color: rgba(255,255,255,0.52);

  font-size: 14px;
}

.footer-bottom a {
  color: #c6defc;

  text-decoration: none;
  font-weight: 600;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1200px) {

  .contact-container {

    flex-direction: column;

    gap: 70px;
  }

  .contact-form-wrapper {

    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {

  .contact-section {

    padding: 100px 24px;
  }

  .contact-title {

    font-size: 48px;

    letter-spacing: -2px;
  }

  .contact-description {

    font-size: 18px;
  }

  .contact-form {

    padding: 28px;
  }

  .contact-detail-item p {

    font-size: 18px;
  }

  .blog-cta-card {
    padding:
      60px 24px;
  }

  .site-footer {
    padding:
      70px 24px
      30px;
  }

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

  .footer-inner {
    gap: 42px;

    margin-bottom: 44px;
  }

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

  .posts-header {
    align-items: flex-start;
  }
}
