/* ========================================
   GLOBAL
======================================== */

* {

  margin: 0;
  padding: 0;

  box-sizing: border-box;
}

html {

  scroll-behavior: smooth;
}

body {

  font-family: 'Inter', sans-serif;

  background: #050505;

  color: #f4f7fb;

  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* ========================================
   HEADER
======================================== */

.site-header {

  position: fixed;

  top: 24px;
  left: 50%;

  transform: translateX(-50%);

  width: calc(100% - 48px);
  max-width: 1800px;

  z-index: 1000;
}

.nav-container {

  display: flex;

  align-items: center;
  justify-content: space-between;

  padding: 20px 28px;

  border-radius: 999px;

  background:
    rgba(0,0,0,0.42);

  border:
    1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(16px);
}

/* Logo */

.logo {

  width: 58px;

  height: auto;
}

/* Nav */

.nav-links {

  display: flex;

  align-items: center;

  gap: 42px;
}

.nav-links a {

  position: relative;

  color:
    rgba(255,255,255,0.68);

  font-size: 16px;

  transition: 0.35s ease;
}

.nav-links a:hover,
.nav-links .active {

  color: #ffffff;
}

/* Actions */

.nav-actions {

  display: flex;

  align-items: center;

  gap: 22px;
}

.login-link {

  color:
    rgba(255,255,255,0.72);

  transition: 0.3s ease;
}

.login-link:hover {

  color: #fff;
}

/* Primary Button */

.primary-button {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 16px 28px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      #f2d3af,
      #78bcff
    );

  color: #050505;

  font-weight: 600;

  transition: 0.35s ease;
}

.primary-button:hover {

  transform:
    translateY(-3px);

  box-shadow:
    0 0 30px rgba(120,188,255,0.25);
}

/* ========================================
   SECTION HELPERS
======================================== */

.section-label {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 12px 22px;

  border-radius: 999px;

  background:
    rgba(255,255,255,0.03);

  border:
    1px solid rgba(120,188,255,0.2);

  font-size: 9px;

  letter-spacing: 1.5px;

  color:
    rgba(255,255,255,0.82);
}

.label-dot {

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #f2d3af,
      #78bcff
    );

  box-shadow:
    0 0 14px rgba(120,188,255,0.7);
}

.center-label {

  justify-content: center;
}

/* ========================================
   HERO
======================================== */

.services-hero {

  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  padding: 180px 48px 120px 108px;

  overflow: hidden;
}

/* Background */

.services-background {

  position: absolute;

  inset: 0;

  background-image:
    url('../assets/services-background.png');

  background-size: cover;
  background-position: center;

  transform: scale(1.03);

  z-index: 1;
}

/* Overlay */

.services-overlay {

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.92) 20%,
      rgba(0,0,0,0.5) 70%
    );

  z-index: 2;
}

/* Container */

.services-container {

  position: relative;

  z-index: 5;

  width: 100%;
  max-width: 1600px;

  margin: 0 auto;
}

/* Content */

.services-hero-content {

  max-width: 620px;
}

/* Title */

.services-title {

  font-size: clamp(30px, 5vw, 65px);

  line-height: 1.25;

  letter-spacing: -6px;

  font-weight: 800;

  margin-top: 28px;
  margin-bottom: 28px;
}

/* Gradient */

.services-title span {

  background:
    linear-gradient(
      90deg,
      #f2d3af,
      #ffffff,
      #78bcff
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */

.services-description {

  max-width: 520px;

  font-size: 20px;

  line-height: 1.2;

  color:
    rgba(255,255,255,0.7);

  margin-bottom: 52px;
}

/* Buttons */

.hero-buttons {

  display: flex;

  align-items: center;

  gap: 18px;
}

/* Hero Buttons */

.hero-primary-btn,
.hero-secondary-btn {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  padding: 16px 25px;

  border-radius: 999px;

  font-size: 16px;

  transition: 0.35s ease;
}

.hero-primary-btn {

  background:
    linear-gradient(
      90deg,
      #f2d3af,
      #78bcff
    );

  color: #050505;

  font-weight: 600;
}

.hero-primary-btn:hover {

  transform:
    translateY(-4px);

  box-shadow:
    0 0 40px rgba(120,188,255,0.25);
}

.hero-secondary-btn {

  border:
    1px solid rgba(255,255,255,0.1);

  color: #fff;

  background:
    rgba(255,255,255,0.03);
}

.hero-secondary-btn:hover {

  border-color:
    rgba(120,188,255,0.4);
}

/* ========================================
   ABOUT SECTION
======================================== */

.about-services-section {

  padding: 100px 108px;
}

/* Container */

.about-services-container {

  width: 100%;
  max-width: 1600px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 50px;
}

/* Left */

.about-services-left h2 {

  font-size: clamp(26px, 4vw, 46px);

  line-height: 1.28;

  letter-spacing: -4px;

  margin-top: 28px;
}

/* Gradient */

.about-services-left h2 span {

  background:
    linear-gradient(
      90deg,
      #f2d3af,
      #ffffff,
      #78bcff
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Right */

.about-services-right {

  display: flex;

  flex-direction: column;

  gap: 20px;
}

.about-services-right p {

  font-size: 20px;

  line-height: 1.3;

  color:
    rgba(255,255,255,0.68);
}

/* ========================================
   VALUES
======================================== */

.values-section {

  padding: 60px 108px 140px 108px;
}

.values-container {

  width: 100%;
  max-width: 1600px;

  margin: 0 auto;
}

/* Section Heading */

.section-heading-center {

  text-align: center;

  max-width: 700px;

  margin: 0 auto 80px;
}

.section-heading-center h2 {

  font-size: clamp(28px, 4.5vw, 50px);

  line-height: 0.98;

  letter-spacing: -4px;

  margin-top: 24px;
}

.section-heading-center h2 span {

  background:
    linear-gradient(
      90deg,
      #f2d3af,
      #ffffff,
      #78bcff
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Grid */

.values-grid {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(300px, 1fr));

  gap: 20px;
}

/* Card */

.value-card {

  position: relative;

  padding: 32px 28px 32px 28px;

  min-height: 260px;

  border-radius: 32px;

  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);

  transition: 0.4s ease;
}

.value-card:hover {

  transform:
    translateY(-10px);

  border-color:
    rgba(120,188,255,0.35);

  box-shadow:
    0 0 40px rgba(120,188,255,0.08);
}

/* Number */

.value-number {

  font-size: 14px;

  letter-spacing: 2px;

  color:
    rgba(120,188,255,0.75);

  margin-bottom: 32px;
}

/* Card Text */

.value-card h3 {

  font-size: 24px;

  line-height: 1.1;

  margin-bottom: 24px;
}

.value-card p {

  font-size: 16px;

  line-height: 1.4;

  color:
    rgba(255,255,255,0.65);
}

/* ========================================
   PRICING
======================================== */

.pricing-section {

  padding: 0 48px 120px;
}

.pricing-container {

  width: 100%;
  max-width: 1700px;

  margin: 0 auto;
}

/* Grid */

.pricing-grid {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));

  gap: 12px;
}

/* ========================================
   CURRENCY TOGGLE
======================================== */

.pricing-currency-toggle {

  display: flex;

  justify-content: center;

  margin-bottom: 40px;
}

.pricing-currency-toggle {

  background:
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(255,255,255,0.08);

  padding: 6px;

  border-radius: 999px;

  width: fit-content;

  margin-left: auto;
  margin-right: auto;
}

.currency-btn {

  border: none;

  background: transparent;

  color:
    rgba(255,255,255,0.65);

  padding: 12px 22px;

  border-radius: 999px;

  cursor: pointer;

  transition: 0.35s ease;

  font-family: inherit;

  font-size: 14px;
}

.currency-btn.active {

  background:
    linear-gradient(
      90deg,
      #f2d3af,
      #78bcff
    );

  color: #050505;

  font-weight: 600;
}

/* Card */

.pricing-card {

  position: relative;

  padding: 52px 42px;

  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);

  overflow: hidden;

  transition: 0.4s ease;
}

.pricing-card:hover {

  transform:
    translateY(-12px);

  border-color:
    rgba(120,188,255,0.35);
}

/* Featured */

.featured-pricing {

  background:
    linear-gradient(
      180deg,
      rgba(242,211,175,0.08),
      rgba(120,188,255,0.04)
    );

  border:
    1px solid rgba(242,211,175,0.22);
}

/* Badge */

.popular-badge {

  position: absolute;

  top: 24px;
  right: 24px;

  padding: 10px 16px;

  border-radius: 999px;

  background:
    rgba(255,255,255,0.08);

  font-size: 11px;

  letter-spacing: 1px;
}

/* Tier */

.pricing-tier {

  font-size: 12px;

  letter-spacing: 2px;

  margin-bottom: 24px;

  color:
    rgba(120,188,255,0.75);
}

/* Price */

.pricing-card h3 {

  font-size: 34px;

  line-height: 1;

  margin-bottom: 22px;
}

.pricing-card h3 span {

  font-size: 18px;

  color:
    rgba(255,255,255,0.6);
}

/* Text */

.pricing-subtext {

  font-size: 13px;

  line-height: 1.7;

  color:
    rgba(255,255,255,0.66);

  margin-bottom: 38px;
}

/* List */

.pricing-card ul {

  list-style: none;

  display: flex;

  flex-direction: column;

  gap: 16px;

  margin-bottom: 40px;
}

.pricing-card li {

  position: relative;

  padding-left: 24px;

  color:
    rgba(255,255,255,0.78);

  line-height: 1.6;
}

.pricing-card li::before {

  content: "";

  position: absolute;

  left: 0;
  top: 10px;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #f2d3af,
      #78bcff
    );
}

/* Button */

.pricing-button {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 100%;

  padding: 18px 24px;

  border-radius: 999px;

  background:
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(255,255,255,0.08);

  color: #fff;

  transition: 0.35s ease;
}

.pricing-button:hover {

  border-color:
    rgba(120,188,255,0.4);

  background:
    rgba(255,255,255,0.06);
}

/* ========================================
   ADDONS
======================================== */

.addons-section {

  padding: 0 48px 50px 108px;
}

.addons-container {

  width: 100%;
  max-width: 1600px;

  margin: 0 auto;
}

/* Grid */

.addons-grid {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));

  gap: 15px;
}

/* Item */

.addon-item {

  padding: 38px 32px;

  border-radius: 30px;

  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);

  transition: 0.35s ease;
}

.addon-item:hover {

  transform:
    translateY(-8px);

  border-color:
    rgba(120,188,255,0.3);
}

.addon-item h3 {

  font-size: 20px;

  margin-bottom: 20px;
}

.addon-item p {

  font-size: 14px;

  line-height: 1.5;

  color:
    rgba(255,255,255,0.66);
}

/* ========================================
   CTA
======================================== */

.services-cta {

  position: relative;

  padding: 160px 48px;

  overflow: hidden;
}

/* Glow */

.services-cta-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);
}

/* Container */

.services-cta-container {

  position: relative;

  z-index: 5;

  max-width: 800px;

  margin: 0 auto;

  text-align: center;
}

/* Heading */

.services-cta-container h2 {

  font-size: clamp(38px, 5vw, 57px);

  line-height: 0.96;

  letter-spacing: -5px;

  margin-top: 24px;
  margin-bottom: 34px;
}

.services-cta-container h2 span {

  background:
    linear-gradient(
      90deg,
      #f2d3af,
      #ffffff,
      #78bcff
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */

.services-cta-container p {

  font-size: 18px;

  line-height: 1.5;

  color:
    rgba(255,255,255,0.68);

  margin-bottom: 40px;
}

/* CTA Button */

.cta-button {

  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 18px 32px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      #f2d3af,
      #78bcff
    );

  color: #050505;

  font-weight: 600;

  transition: 0.35s ease;
}

.cta-button:hover {

  transform:
    translateY(-4px);

  box-shadow:
    0 0 40px rgba(120,188,255,0.24);
}

/* =========================================
   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;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1200px) {

  .nav-links {
    display: none;
  }

  .about-services-container {

    grid-template-columns: 1fr;

    gap: 70px;
  }
}

@media (max-width: 768px) {

  .services-hero,
  .about-services-section,
  .values-section,
  .pricing-section,
  .addons-section,
  .services-cta {

    padding-left: 24px;
    padding-right: 24px;
  }

  .services-title {

    font-size: 58px;

    letter-spacing: -3px;
  }

  .services-description {

    font-size: 18px;
  }

  .hero-buttons {

    flex-direction: column;

    align-items: stretch;
  }

  .section-heading-center h2,
  .services-cta-container h2,
  .about-services-left h2 {

    font-size: 48px;

    letter-spacing: -2px;
  }

  .services-cta-container p {

    font-size: 18px;
  }

  .pricing-card h3 {

    font-size: 48px;
  }

  .nav-actions {

    gap: 12px;
  }

  .primary-button {

    padding: 14px 20px;

    font-size: 14px;
  }

  .site-header {

    width: calc(100% - 20px);
  }

  .blog-cta-card {
    padding:
      60px 24px;
  }

  .posts-header {
    align-items: flex-start;
  }
}
