/* =====================================
   Audaz Pro — Webflow-inspired Styles
   ===================================== */

:root {
  --color-black: #000000;
  --color-black-soft: #0d0d0d;
  --color-yellow: #ffe500;
  --color-yellow-dark: #f4d400;
  --color-white: #ffffff;
  --color-pink: #f6e8e3;
  --color-gray: rgba(255, 255, 255, 0.75);
  --font-display: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-ui: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --border-radius: 20px;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  background-color: var(--color-black);
  color: var(--color-white);
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

.audaz-link {
  transition: color var(--transition), transform var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--medium {
  max-width: 64rem;
}

.site-header {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  width: 140px;
  height: auto;
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  position: relative;
}

.nav-link,
.footer-link {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-yellow);
  transition: width var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.btn {
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 10px;
  line-height: 20px;
  cursor: pointer;
  transition: transform var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-yellow);
  color: var(--color-black);
}

.btn-secondary {
  background: #1c1c1c;
  color: var(--color-yellow);
}

.btn-outline {
  background: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-yellow);
}

.btn-outline-yellow {
  background: var(--color-yellow);
  color: var(--color-black);
  border: none;
}

.btn-accent {
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 0.65rem 1.5rem;
}

.btn-black {
  background: var(--color-black);
  border: 1px solid var(--color-white);
  color: var(--color-white);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 26px;
  height: 2px;
  background: var(--color-white);
  display: block;
}

.hero {
  min-height: 90vh;
  padding-top: 120px;
  padding-bottom: 0;
  background-color: var(--color-black);
  color: var(--color-white);
  display: flex;
  align-items: center;
  position: relative;
  margin: 7rem 0;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero-text p {
  margin-bottom: 2rem;
  max-width: 38rem;
  color: var(--color-gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-size: 0.85rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.eyebrow-dark {
  color: rgba(0, 0, 0, 0.75);
  letter-spacing: 0.35rem;
  font-size: 0.8rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-media {
  width: 100%;
  margin-top: 2rem;
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
}

.services-hero {
  position: relative;
  background: var(--color-black);
  padding: 120px 0 4rem;
  color: var(--color-white);
}

.services-hero .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.services-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.services-hero-desc {
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.services-hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.4rem;
}

.services-hero-image {
  justify-self: center;
  max-width: 560px;
  width: 100%;
}

.services-hero-image img {
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
  max-width: 100%;
  height: auto;
}

.partners-bar {
  background: var(--color-yellow);
  padding: 1.5rem 0;
  overflow: hidden;
}

.partners-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  animation: partners-scroll 20s linear infinite;
  width: max-content;
}

.partners-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes partners-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}

.section-light {
  background: var(--color-pink);
  color: var(--color-black);
  padding: 5rem 0 4rem;
}

.section-white {
  background: var(--color-white);
  color: var(--color-black);
  padding: 5rem 0 4rem;
}

.section-dark {
  background: var(--color-black);
  color: var(--color-white);
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 36rem;
  margin: 0 auto;
  color: inherit;
  opacity: 0.8;
}

.section-header.light p {
  color: var(--color-gray);
}

.content-split {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
  justify-content: space-between;
}

.content-split + .content-split {
  margin-top: 3.5rem;
}

.content-split-reverse {
  flex-direction: row-reverse;
}

.content-split-text {
  max-width: 540px;
  flex: 1 1 320px;
}

.content-split-text h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

.content-split-text p {
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.7;
}

.content-split-images {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}

.split-image-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.split-image-stack img {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.split-img-overlay {
  position: absolute;
  width: 65%;
  top: -20px;
  right: -10px;
  border-radius: 18px;
  box-shadow: 0 25px 30px rgba(0, 0, 0, 0.25);
}

.split-image-stack-reverse .split-img-overlay {
  right: auto;
  left: -10px;
}

.clients-bar {
  background: var(--color-yellow);
  padding: 2.5rem 0;
}

.clients-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.client-logo {
  max-height: 45px;
  filter: saturate(0.8);
  opacity: 0.9;
}

.text-center {
  text-align: center;
  margin-bottom: 2rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.project-card {
  background: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.project-card img {
  height: 260px;
  object-fit: cover;
}

.project-copy {
  padding: 1.5rem;
}

.project-copy h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #000;
}

.project-copy p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}

.services-header {
  margin-bottom: 3rem;
}

.services-header .eyebrow {
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.services-header h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.services-header p {
  color: var(--color-gray);
  font-size: 1rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--color-black-soft);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.service-image {
  padding: 1.5rem;
  padding-bottom: 0;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.service-copy {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.service-copy h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

.service-copy p {
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.services-grid-light {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card-light {
  background: #0c0c0c;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card-light:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.service-card-image {
  padding: 1.5rem;
}

.service-card-image-figma {
  padding-top: 0;
  padding-bottom: 0;
}

.service-card-image img {
  width: 100%;
  border-radius: 16px;
  height: auto;
}

.service-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card-content h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0;
}

.service-card-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  margin-top: 1rem;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.95rem;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4da6ff;
}

.check-list-small li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.service-card-light .check-list li {
  color: rgba(255, 255, 255, 0.75);
}

.check-list-light li {
  color: rgba(255, 255, 255, 0.85);
}

.check-list-light li::before {
  background: #22c55e;
}

.site-footer {
  background: var(--color-black);
  padding: 4rem 0 3rem;
}

.cta-card {
  background: var(--color-yellow);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.cta-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1rem;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-black);
  margin-bottom: 1.5rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: center;
}

.footer-logo-img {
  width: 100px;
  height: auto;
  opacity: 0.6;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.15rem;
}

.text-center .btn-outline {
  background: var(--color-yellow);
  color: var(--color-black);
  border-color: var(--color-yellow);
}

@media (max-width: 960px) {
  .nav {
    position: fixed;
    inset: 80px 0 auto 0;
    background: var(--color-black-soft);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 1rem;
    transform: translateY(-120%);
    transition: transform var(--transition);
  }

  .nav.active {
    transform: translateY(0);
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .partners-track {
    gap: 2rem;
  }

  .cta-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Page Header */
.page-header {
  background: var(--color-pink);
  padding: 140px 0 4rem;
  text-align: center;
}

.page-header .subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  color: var(--color-black);
  margin-bottom: 1rem;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1rem;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}

/* Pricing Section */
.section-pink {
  background: var(--color-pink);
  padding: 3rem 0 5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card.featured {
  border: 2px solid var(--color-yellow);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.pricing-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  gap: 0.75rem;
  padding: 0.6rem 0;
  align-items: flex-start;
}

.pricing-features .check {
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-features .feature-title {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-black);
  margin-bottom: 0.15rem;
}

.pricing-features .feature-desc {
  display: block;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.4;
}

.pricing-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}

.pricing-footer p {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.pricing-footer .btn-secondary {
  background: var(--color-black);
  color: var(--color-white);
  width: 100%;
  display: block;
}

@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    order: -1;
  }
}

/* ===================================
   CONTACT FORM STYLES
   =================================== */

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-black);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-family: var(--font-body);
  border: none;
  border-radius: 12px;
  background: var(--color-white);
  color: var(--color-black);
  outline: none;
  transition: box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
  padding-right: 3rem;
  cursor: pointer;
}

.form-group select option {
  padding: 0.5rem;
}

.form-group textarea {
  min-height: 180px;
  resize: vertical;
}

.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.form-submit .btn {
  background: var(--color-black);
  color: var(--color-white);
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15rem;
  border-radius: 8px;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.form-submit .btn:hover {
  transform: translateY(-2px);
  background: #1a1a1a;
}

.form-submit .btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 640px) {
  .contact-form {
    gap: 1.25rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.875rem 1rem;
  }
}
