/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 13px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
  background: #0a0a0a;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Highlight Text */
.highlight-text {
  display: inline;
  padding: 2px 6px;
  border-radius: 6px;
  background-image: linear-gradient(to right, #667eea, #764ba2);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  animation: highlightExpand 2s ease 0.5s forwards;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

@keyframes highlightExpand {
  to { background-size: 100% 100%; }
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #fff;
}

.section-subtitle {
  font-size: 1.4rem;
  color: #b0b0b0;
  line-height: 1.7;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 18px 36px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--secondary {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
  white-space: nowrap;
}

.btn--secondary:hover {
  background: #667eea;
  color: white;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

/* Top Bar */
.topbar {
  background: #fff;
  border-bottom: 1px solid #ececec;
  width: 100%;
}

.topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.topbar__socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar__socials a {
  display: flex;
  align-items: center;
  color: #555;
  transition: color 0.2s;
}

.topbar__socials a:hover {
  color: #246AF4;
}

.topbar__socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  transition: color 0.2s;
}

.topbar__contact:hover {
  color: #246AF4;
}

.topbar__contact svg {
  width: 12px;
  height: 12px;
  fill: #246AF4;
  flex-shrink: 0;
}

.topbar__contact strong {
  color: #092558;
}

.topbar__right {
  display: flex;
  align-items: center;
}

.topbar__cta {
  display: inline-block;
  padding: 8px 22px;
  background: #246AF4;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s;
}

.topbar__cta:hover {
  background: #0e50c9;
}

/* Main Nav */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.8rem 20px;
  transition: padding 0.2s ease;
}

.header.scrolled .nav {
  padding: 1.2rem 20px;
}

.header.scrolled .nav__logo {
  width: 320px;
  height: auto;
}

.header.scrolled .topbar {
  display: none;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo {
  width: 300px;
  height: auto;
  transition: width 0.25s ease;
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav__menu a {
  color: #092558;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.nav__menu a:hover,
.nav__active {
  color: #246AF4 !important;
}

.despre-page {
  padding-top: 160px;
  min-height: 100vh;
  background: #0a0a0a;
}

.nav__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.nav__phone-label {
  font-size: 0.7rem;
  color: #092558;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav__phone-number {
  font-size: 1rem;
  font-weight: 700;
  color: #246AF4;
  text-decoration: none;
  transition: color 0.2s;
}

.nav__phone-number:hover {
  color: #092558;
}

/* Pill Badge */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 9999px;
  border: 1px solid rgba(102, 126, 234, 0.3);
  background: rgba(102, 126, 234, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #a0aec0;
  letter-spacing: 0.03em;
}

.pill-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #667eea;
  box-shadow: 0 0 6px rgba(102, 126, 234, 0.8);
  flex-shrink: 0;
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.shader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(102, 126, 234, 0.1), transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(118, 75, 162, 0.1), transparent 50%);
  animation: float 10s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__title {
  font-size: 5.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out;
}

.hero__subtitle {
  font-size: 1.9rem;
  margin-bottom: 2rem;
  color: #b0b0b0;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Highlights Grid */
.highlights {
  padding: 4rem 0;
  background: #0a0a0a;
  margin-top: -2px;
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(102, 126, 234, 0.15);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.4);
}

.highlight-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.2rem;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
}

.highlight-card__icon svg {
  width: 26px;
  height: 26px;
}

.highlight-card__stat {
  font-size: 2.2rem;
  font-weight: 700;
  color: #667eea;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.highlight-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.8rem;
}

.highlight-card__desc {
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .highlights__grid {
    grid-template-columns: 1fr;
  }
}

/* Services */
.services {
  padding: 5rem 0;
  background: #111;
  position: relative;
  overflow: hidden;
}

.services__grid-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.services .container {
  position: relative;
  z-index: 1;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.service-card .btn--secondary {
  margin-top: auto;
  align-self: flex-start;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: #667eea;
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.service-card p {
  color: #b0b0b0;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* About */
.about {
  padding: 5rem 0;
  background: #0a0a0a;
}

.about__header {
  max-width: 1000px;
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about__header-text {
  flex: 1;
}

.about__header .pill-badge {
  display: inline-flex;
  margin-bottom: 1rem;
}

.about__header-image {
  flex-shrink: 0;
}

.about__header-image img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(102, 126, 234, 0.4);
  box-shadow: 0 0 40px rgba(102, 126, 234, 0.2);
}

@media (max-width: 768px) {
  .about__header {
    flex-direction: column;
  }
  .about__header-image img {
    width: 180px;
    height: 180px;
  }
}

.pill-badge--purple {
  border-color: rgba(102, 126, 234, 0.3);
  background: rgba(102, 126, 234, 0.05);
}

.pill-badge__dot--purple {
  background: #667eea;
  box-shadow: 0 0 6px rgba(102, 126, 234, 0.8);
}

.about__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #6b7280;
  margin-bottom: 1rem;
}

.about__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.about__title--accent {
  color: #667eea;
}

.about__divider {
  border: none;
  border-top: 1px solid rgba(102, 126, 234, 0.3);
  margin: 1.5rem 0 2rem;
  width: 100%;
}

.about__intro {
  font-size: 1.15rem;
  color: #c0c0c0;
  line-height: 1.8;
}

.about__intro strong {
  color: #667eea;
}

/* Founder Card */
.founder-card {
  display: flex;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(102, 126, 234, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
}

.founder-card__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.founder-card__avatar {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  background: linear-gradient(135deg, #667eea, #667eea);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.founder-card__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #667eea;
}

.founder-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.founder-card__title {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #6b7280;
  margin-bottom: 1.2rem;
}

.founder-card__bio {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.8;
}

.founder-card__highlight {
  color: #667eea;
}

/* Pillars Grid */
.about__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}

.pillar-card:hover {
  border-color: rgba(102, 126, 234, 0.3);
  transform: translateY(-4px);
}

.pillar-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.pillar-card__icon {
  width: 28px;
  height: 28px;
  color: #667eea;
}

.pillar-card__num {
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.05em;
}

.pillar-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 0.6rem;
}

.pillar-card__desc {
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.6;
}

/* Quote */
.about__quote {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-left: 3px solid #667eea;
  border-radius: 14px;
  padding: 2.5rem;
  position: relative;
}

.about__quote-icon {
  width: 28px;
  height: 28px;
  color: #667eea;
  opacity: 0.5;
  margin-bottom: 1rem;
}

.about__quote p {
  font-size: 1.1rem;
  font-style: italic;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about__quote cite {
  font-size: 0.85rem;
  color: #667eea;
  font-style: normal;
}

@media (max-width: 768px) {
  .about__pillars {
    grid-template-columns: 1fr;
  }
  .founder-card {
    flex-direction: column;
  }
  .about__title {
    font-size: 2rem;
  }
}

/* Process */
.process {
  padding: 5rem 0;
  background: #111;
}

.process__subtitle {
  font-size: 1.4rem;
  color: #b0b0b0;
  text-align: center;
  line-height: 1.7;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #667eea;
}

.step p {
  color: #b0b0b0;
}

/* Radar Section */
.radar-section {
  padding: 4rem 0 5rem;
  background: #0a0a0a;
  overflow: hidden;
}

.radar-layout {
  display: grid;
  grid-template-columns: 1fr 380px 1fr;
  align-items: center;
  gap: 2rem;
}

.radar-services {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.radar-services--left {
  align-items: flex-end;
}

.radar-services--right {
  align-items: flex-start;
}

.radar-service-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(102, 126, 234, 0.07);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 10px;
  padding: 0.7rem 1.1rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  cursor: default;
  max-width: 220px;
  width: 100%;
}

.radar-service-badge:hover {
  border-color: rgba(102, 126, 234, 0.5);
  background: rgba(102, 126, 234, 0.13);
}

.radar-service-badge__icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: rgba(102, 126, 234, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-service-badge__icon svg {
  width: 18px;
  height: 18px;
  stroke: #667eea;
}

.radar-service-badge__label {
  font-size: 0.88rem;
  font-weight: 500;
  color: #d0d0d0;
  line-height: 1.3;
}

/* Radar Display */
.radar-display {
  position: relative;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
}

.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(102, 126, 234, 0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radar-axis {
  position: absolute;
  background: rgba(102, 126, 234, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radar-axis--h {
  width: 100%;
  height: 1px;
}

.radar-axis--v {
  width: 1px;
  height: 100%;
}

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 300deg,
    rgba(102, 126, 234, 0.04) 320deg,
    rgba(102, 126, 234, 0.12) 340deg,
    rgba(102, 126, 234, 0.35) 355deg,
    rgba(118, 75, 162, 0.7) 360deg
  );
  animation: radarSpin 4s linear infinite;
}

@keyframes radarSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.radar-center-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #667eea;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(102, 126, 234, 0.8), 0 0 20px rgba(102, 126, 234, 0.4);
  z-index: 2;
}

.radar-label {
  position: absolute;
  bottom: 28%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(102, 126, 234, 0.5);
  white-space: nowrap;
  z-index: 2;
}

@media (max-width: 900px) {
  .radar-layout {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .radar-services--left,
  .radar-services--right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .radar-service-badge {
    max-width: 180px;
  }
  .radar-display {
    width: 280px;
    height: 280px;
  }
}

/* About Preview */
.about-preview {
  padding: 5rem 0;
  background: #0a0a0a;
}

.about-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-preview__title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 1rem 0 1.5rem;
}

.about-preview__text {
  color: #b0b0b0;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-preview__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.cert-badge {
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(102, 126, 234, 0.4);
  color: #667eea;
  font-size: 0.8rem;
  font-weight: 500;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(102, 126, 234, 0.15);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.about-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(102, 126, 234, 0.4);
}

.about-stat__number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 0.4rem;
}

.about-stat__label {
  font-size: 1rem;
  color: #b0b0b0;
}

@media (max-width: 768px) {
  .about-preview__inner {
    grid-template-columns: 1fr;
  }
}

/* Partners */
.partners {
  padding: 2rem 0;
  background: #0a0a0a;
  text-align: center;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.partner {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.partner h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.partner p {
  color: #b0b0b0;
}

/* Team */
.team {
  padding: 5rem 0;
  background: #111;
  text-align: center;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member__img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: #333;
  object-fit: cover;
}

.team-member h4 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.team-member p:first-of-type {
  color: #667eea;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.team-member p:last-of-type {
  color: #b0b0b0;
  font-size: 1rem;
}

/* Pricing Cards */
.pricing-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  align-items: center;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.pricing-card--featured {
  border-color: rgba(102, 126, 234, 0.5);
  background: rgba(102, 126, 234, 0.07);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.pricing-card__name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.pricing-card__tagline {
  font-size: 0.9rem;
  color: #b0b0b0;
  margin-bottom: 1rem;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.pricing-card__amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: #667eea;
}

.pricing-card__period {
  font-size: 0.9rem;
  color: #6b7280;
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
  width: 100%;
  text-align: left;
}

.pricing-card__features li {
  font-size: 0.95rem;
  color: #c0c0c0;
}

.pricing-card__features li:has(✗) {
  color: #4b5563;
}

/* Contact */
.contact {
  padding: 5rem 0;
  background: #0a0a0a;
  text-align: center;
}

.contact__subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact__form {
  max-width: 500px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__form input,
.contact__form textarea {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #e0e0e0;
  font-family: inherit;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

/* Footer */
.footer {
  background: #060608;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 4rem 0 0;
}

.footer__top {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 3rem;
}

.footer__logo-img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer__tagline {
  font-size: 1.25rem;
  color: #555;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__heading {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__list a {
  color: #666;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.2s ease;
}

.footer__list a:hover {
  color: #667eea;
}

/* Contact list with icons */
.footer__list--contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #666;
  font-size: 1.2rem;
}

.footer__list--contact svg {
  width: 13px;
  height: 13px;
  fill: #667eea;
  flex-shrink: 0;
}

.footer__list--contact a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__list--contact a:hover {
  color: #667eea;
}

/* Legal list */
.footer__list--legal li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.footer__legal-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #3a3a3a;
  font-weight: 600;
}

.footer__list--legal li span:last-child {
  color: #666;
  font-size: 1.2rem;
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 1.1rem;
  color: #3a3a3a;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer__socials a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer__socials a:hover {
  background: rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.4);
}

.footer__socials svg {
  width: 14px;
  height: 14px;
  fill: #555;
  transition: fill 0.2s ease;
}

.footer__socials a:hover svg {
  fill: #667eea;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .topbar {
    display: none;
  }

  .nav__menu {
    display: none;
  }

  .nav__phone {
    display: none;
  }

  .services__grid,
  .about__features,
  .process__steps,
  .partners__grid,
  .team__grid {
    grid-template-columns: 1fr;
  }
}