/* ============================================
   ORA Digital Agency — Styles
   Charte: #865ab4 | #1c1c1c | #e3d4e8
   Fonts: Stagtic (titres) | Acumin (corps)
   ============================================ */

   @font-face {
    font-family: 'Stagtic';
    src: url('../fonts/stagtic/stagtic.woff2') format('woff2'),
         url('../fonts/stagtic/stagtic.ttf') format('truetype'),
         url('../fonts/stagtic/stagtic.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Acumin';
    src: url('../fonts/acumin/Acumin Variable Concept.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }
  
  :root {
    --purple: #865ab4;
    --purple-light: #a67fd4;
    --purple-dark: #6b4491;
    --dark: #1c1c1c;
    --dark-soft: #2a2a2a;
    --lavender: #e3d4e8;
    --lavender-soft: #f0e8f3;
    --white: #ffffff;
    --gray: #d8d8dc;
    --gray-light: #f0f0f3;
  
    --font-display: 'Stagtic', 'Segoe UI', sans-serif;
    --font-body: 'Acumin', 'Segoe UI', sans-serif;
  
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    --glow: 0 0 40px rgba(134, 90, 180, 0.3);
  }
  
  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }
  
  body {
    font-family: var(--font-body);
    font-weight: 400;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
  }
  
  #canvas-container {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  
  main {
    flex: 1;
  }
  
  .grain {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  
  .container {
    width: min(1200px, 92vw);
    margin: 0 auto;
  }
  
  .text-accent {
    color: var(--purple-light);
  }
  
  /* ========== HEADER ========== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: var(--transition);
  }
  
  .header--scrolled {
    background: rgba(28, 28, 28, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(134, 90, 180, 0.15);
    padding: 0.6rem 0;
  }
  
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .nav__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.35rem 0.9rem 0.35rem 0.35rem;
    background: transparent;
    border: 1px solid rgba(134, 90, 180, 0.2);
    border-radius: 14px;
    text-decoration: none;
    transition: var(--transition);
  }
  
  .nav__logo:hover {
    border-color: rgba(134, 90, 180, 0.45);
    box-shadow: 0 6px 30px rgba(134, 90, 180, 0.25);
    transform: translateY(-1px);
  }
  
  .nav__logo-img {
    height: 48px;
    width: 48px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    transition: transform var(--transition);
  }
  
  .nav__logo:hover .nav__logo-img {
    transform: scale(1.03);
  }
  
  .nav__slogan {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lavender);
    white-space: nowrap;
  }
  
  .nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }
  
  .nav__link {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color var(--transition);
    position: relative;
  }
  
  .nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple);
    transition: width var(--transition);
  }
  
  .nav__link:hover {
    color: var(--white);
  }
  
  .nav__link:hover::after {
    width: 100%;
  }
  
  .nav__link--cta {
    background: var(--purple);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  }
  
  .nav__link--cta::after {
    display: none;
  }
  
  .nav__link--cta:hover {
    background: var(--purple-light);
    transform: translateY(-2px);
    box-shadow: var(--glow);
  }
  
  .nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  
  .nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
  }
  
  /* ========== HERO LOGO & SLOGAN ========== */
  .hero__brand {
    margin-bottom: 2rem;
  }
  
  .hero__logo {
    display: inline-block;
    text-decoration: none;
  }
  
  .hero__logo-img {
    width: min(340px, 85vw);
    height: auto;
    display: block;
    border-radius: 20px;
    animation: logoFloat 4s ease-in-out infinite;
  }
  
  .hero__slogan {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.8vw, 1.6rem);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-top: 1.4rem;
    background: linear-gradient(90deg, var(--lavender), var(--purple-light), var(--lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(166, 127, 212, 0.3));
  }
  
  @keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  
  /* ========== HERO ========== */
  .hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
  }
  
  .hero__content {
    max-width: 800px;
  }
  
  .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem;
    background: rgba(134, 90, 180, 0.12);
    border: 1px solid rgba(134, 90, 180, 0.25);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--lavender);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
  }
  
  .hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--purple);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }
  
  .hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
  }
  
  .hero__title-line {
    display: block;
  }
  
  .hero__title-line--accent {
    color: var(--purple-light);
    text-shadow: 0 0 60px rgba(134, 90, 180, 0.4);
  }
  
  .hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-light);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
  }
  
  .hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .btn--primary {
    background: var(--purple);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(134, 90, 180, 0.35);
  }
  
  .btn--primary:hover {
    background: var(--purple-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(134, 90, 180, 0.5);
  }
  
  .btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .btn--ghost:hover {
    border-color: var(--purple);
    color: var(--purple-light);
    background: rgba(134, 90, 180, 0.08);
  }
  
  .btn--lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
  }
  
  .btn--full {
    width: 100%;
  }
  
  .hero__stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
  }
  
  .stat {
    display: flex;
    flex-direction: column;
  }
  
  .stat__number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--purple-light);
    line-height: 1;
  }
  
  .stat__label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.3rem;
  }
  
  .hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  
  .hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--purple), transparent);
    animation: scrollLine 2s infinite;
  }
  
  @keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }
  
  /* ========== SECTIONS ========== */
  .section {
    position: relative;
    z-index: 2;
    padding: 7rem 0;
  }
  
  .section__header {
    margin-bottom: 4rem;
  }
  
  .section__header--center {
    text-align: center;
  }
  
  .section__header--center .section__desc {
    margin: 1rem auto 0;
  }
  
  .section__tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 1rem;
  }
  
  .section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
  }
  
  .section__desc {
    color: var(--gray-light);
    max-width: 520px;
    margin-top: 1rem;
    font-size: 1.05rem;
  }
  
  /* ========== ABOUT ========== */
  .about__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .about__mission {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 1.4rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    overflow: hidden;
  }
  
  .about__mission h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    margin-bottom: 0.65rem;
  }
  
  .about__mission p {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-bottom: 0.45rem;
  }
  
  .about__mission p:last-child {
    margin-bottom: 0;
  }
  
  .about__card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  
  .about__card:hover {
    border-color: rgba(134, 90, 180, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--glow);
  }
  
  .about__card-glow {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(134, 90, 180, 0.15), transparent 70%);
    pointer-events: none;
  }
  
  .about__card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  
  .about__card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }
  
  .about__card p:last-child {
    margin-bottom: 0;
  }
  
  .about__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(134, 90, 180, 0.12);
    border-radius: var(--radius-sm);
    margin-bottom: 1.2rem;
    color: var(--purple-light);
  }
  
  .about__icon svg {
    width: 24px;
    height: 24px;
  }
  
  /* ========== SERVICES ========== */
  .services {
    background: linear-gradient(180deg, transparent, rgba(134, 90, 180, 0.04), transparent);
  }
  
  .services__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
  }
  
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3) {
    grid-column: span 2;
  }
  
  .service-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  
  .service-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
  
  .service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    transform-style: preserve-3d;
    perspective: 1000px;
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(134, 90, 180, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
  }
  
  .service-card:hover {
    border-color: rgba(134, 90, 180, 0.35);
    box-shadow: var(--glow);
  }
  
  .service-card:hover::before {
    opacity: 1;
  }
  
  .service-card__number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: rgba(134, 90, 180, 0.15);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
  }
  
  .service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(134, 90, 180, 0.3);
  }
  
  .service-card__icon svg {
    width: 28px;
    height: 28px;
  }
  
  .service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    position: relative;
  }
  
  .service-card p {
    color: var(--gray-light);
    font-size: 0.92rem;
    margin-bottom: 1.2rem;
    position: relative;
  }
  
  .service-card__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
  }
  
  .service-card__list li {
    font-size: 0.78rem;
    padding: 0.3rem 0.8rem;
    background: rgba(134, 90, 180, 0.1);
    border: 1px solid rgba(134, 90, 180, 0.2);
    border-radius: 50px;
    color: var(--lavender);
  }
  
  /* ========== PROCESS ========== */
  .process__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
  }
  
  .process__timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    opacity: 0.3;
  }
  
  .process__step {
    text-align: center;
    position: relative;
  }
  
  .process__step-marker {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--dark);
    border: 2px solid var(--purple);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--purple-light);
    position: relative;
    z-index: 1;
    box-shadow: var(--glow);
  }
  
  .process__step h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  
  .process__step p {
    color: var(--gray-light);
    font-size: 0.88rem;
  }
  
  /* ========== TEAM ========== */
  .team {
    background: linear-gradient(180deg, transparent, rgba(227, 212, 232, 0.03), transparent);
  }
  
  .team__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
  }
  
  .team-card:nth-child(1),
  .team-card:nth-child(2),
  .team-card:nth-child(3) {
    grid-column: span 2;
  }
  
  .team-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  
  .team-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
  
  .team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    transform-style: preserve-3d;
  }
  
  .team-card:hover {
    border-color: rgba(134, 90, 180, 0.35);
    transform: translateY(-8px);
    box-shadow: var(--glow);
  }
  
  .team-card__avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    position: relative;
  }
  
  .team-card__avatar-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(134, 90, 180, 0.2), rgba(134, 90, 180, 0.05));
    border-radius: 50%;
    color: var(--purple-light);
    position: relative;
    z-index: 1;
  }
  
  .team-card__avatar-inner svg {
    width: 36px;
    height: 36px;
  }
  
  .team-card__ring {
    position: absolute;
    inset: -4px;
    border: 2px solid transparent;
    border-top-color: var(--purple);
    border-radius: 50%;
    animation: spin 4s linear infinite;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  
  .team-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
  }
  
  .team-card__role {
    display: block;
    font-size: 0.8rem;
    color: var(--purple);
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: 0.03em;
  }
  
  .team-card p {
    color: var(--gray-light);
    font-size: 0.85rem;
    line-height: 1.6;
  }
  
  /* ========== CTA ========== */
  .cta__box {
    position: relative;
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, rgba(134, 90, 180, 0.15), rgba(28, 28, 28, 0.8));
    border: 1px solid rgba(134, 90, 180, 0.2);
    border-radius: calc(var(--radius) * 1.5);
    overflow: hidden;
  }
  
  .cta__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(134, 90, 180, 0.2), transparent 70%);
    pointer-events: none;
  }
  
  .cta__box h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    position: relative;
  }
  
  .cta__box p {
    color: var(--gray-light);
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
  }
  
  /* ========== CONTACT ========== */
  .contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
  }
  
  .contact__desc {
    color: var(--gray-light);
    margin: 1rem 0 2rem;
    font-size: 1rem;
  }
  
  .contact__details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact__detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gray-light);
    font-size: 0.95rem;
  }
  
  .contact__detail svg {
    width: 20px;
    height: 20px;
    color: var(--purple);
    flex-shrink: 0;
  }
  
  .contact__form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  
  .form__group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  
  .form__group--full {
    grid-column: span 2;
  }
  
  .form__group label {
    font-size: 0.85rem;
    color: var(--gray-light);
    font-weight: 500;
  }
  
  .form__group input,
  .form__group select,
  .form__group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
  }
  
  .form__group input:focus,
  .form__group select:focus,
  .form__group textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(134, 90, 180, 0.15);
  }
  
  .form__group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8a8a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
  }
  
  .form__group select option {
    background: var(--dark);
  }
  
  .form__group textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  .contact__form .btn {
    grid-column: span 2;
    margin-top: 0.5rem;
  }
  
  /* ========== FOOTER ========== */
  .footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3rem 0 2rem;
    margin-top: auto;
  }
  
  .footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .footer__brand .footer__logo-img {
    width: 140px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 0.6rem;
  }
  
  .footer__slogan {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 0.4rem;
  }
  
  .footer__brand p {
    color: var(--gray);
    font-size: 0.85rem;
  }
  
  .footer__links {
    display: flex;
    gap: 2rem;
  }
  
  .footer__socials {
    display: flex;
    gap: 1.2rem;
    align-items: center;
  }
  
  .footer__socials a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.35rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    transition: var(--transition);
  }
  
  .footer__socials a:hover {
    color: var(--white);
    border-color: rgba(134, 90, 180, 0.55);
    background: rgba(134, 90, 180, 0.16);
  }
  
  .footer__socials svg {
    width: 16px;
    height: 16px;
  }
  
  .footer__links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
  }
  
  .footer__links a:hover {
    color: var(--purple-light);
  }
  
  .footer__copy {
    width: 100%;
    text-align: center;
    color: var(--gray);
    font-size: 0.8rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 1rem;
  }
  
  /* ========== REVEAL ANIMATIONS ========== */
  [data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  [data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ========== RESPONSIVE ========== */
  @media (max-width: 1024px) {
    .about__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .team__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .team-card:nth-child(1),
    .team-card:nth-child(2),
    .team-card:nth-child(3),
    .team-card:nth-child(4),
    .team-card:nth-child(5) {
      grid-column: span 1;
    }
  
    .team-card:nth-child(5) {
      grid-column: 1 / -1;
      max-width: 480px;
      margin: 0 auto;
      width: 100%;
    }
  
    .process__timeline {
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
    }
  
    .process__timeline::before {
      display: none;
    }
  
    .services__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
      grid-column: span 1;
    }
  
    .service-card:nth-child(5) {
      grid-column: 1 / -1;
      max-width: 480px;
      margin: 0 auto;
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .nav__slogan {
      display: none;
    }
  
    .nav__toggle {
      display: flex;
    }
  
    .nav__menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: min(320px, 85vw);
      height: 100vh;
      background: rgba(28, 28, 28, 0.97);
      backdrop-filter: blur(20px);
      flex-direction: column;
      justify-content: center;
      gap: 2rem;
      padding: 2rem;
      transition: right var(--transition);
      border-left: 1px solid rgba(134, 90, 180, 0.15);
    }
  
    .nav__menu.active {
      right: 0;
    }
  
    .nav__toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
  
    .nav__toggle.active span:nth-child(2) {
      opacity: 0;
    }
  
    .nav__toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }
  
    .hero__stats {
      gap: 2rem;
    }
  
    .services__grid {
      grid-template-columns: 1fr;
    }
  
    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
      grid-column: span 1;
    }
  
    .about__grid {
      grid-template-columns: 1fr;
    }
  
    .about__card--main {
      grid-column: span 1;
    }
  
    .team__grid {
      grid-template-columns: 1fr;
    }
  
    .team-card:nth-child(1),
    .team-card:nth-child(2),
    .team-card:nth-child(3),
    .team-card:nth-child(4),
    .team-card:nth-child(5) {
      grid-column: span 1;
      max-width: none;
      margin: 0;
      width: auto;
    }
  
    .process__timeline {
      grid-template-columns: 1fr;
    }
  
    .contact__grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .contact__form {
      grid-template-columns: 1fr;
    }
  
    .form__group--full,
    .contact__form .btn {
      grid-column: span 1;
    }
  
    .footer__inner {
      flex-direction: column;
      text-align: center;
    }
  
    .footer__links {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .footer__socials {
      justify-content: center;
      flex-wrap: wrap;
    }
  
    .hero__scroll {
      display: none;
    }
  }