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

    :root {
      --bg:      #0b0f14;
      --surface: #111820;
      --card:    #151d27;
      --border:  #1e2d3d;
      --accent:  #00e5a0;
      --accent2: #00b87a;
      --dim:     #3a5068;
      --text:    #e8edf2;
      --muted:   #5a7a96;
      --white:   #ffffff;
      --font:    'Inter', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font);
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      padding-top: 70px;
      margin: 0;
    }

    /* ══════════ HEADER ══════════ */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 70px;
      padding: 0 32px;
      background: rgba(11,15,20,.95);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      z-index: 1000;
    }

    .logo { color: var(--white); font-size: 36px; font-family: 'Bebas Neue', sans-serif; letter-spacing: 3px; }
    .logo span { color: var(--accent); }

    .links { display: flex; gap: 24px; }
    .links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
    .links a:hover { color: var(--accent); }

    .menu-btn {
      display: none; background: none; border: none;
      color: var(--text); font-size: 24px; cursor: pointer;
    }

    @media (max-width: 768px) {
      .menu-btn { display: block; }
      .links {
        position: fixed; top: 70px; left: 0;
        width: 100%;
        background: rgba(11,15,20,.97);
        backdrop-filter: blur(20px);
        flex-direction: column; align-items: center;
        border-bottom: 1px solid var(--border);
        transform: translateY(-110%);
        opacity: 0;
        transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s ease;
        pointer-events: none;
        will-change: transform, opacity;
      }
      .links.active { transform: translateY(0); opacity: 1; pointer-events: all; }
      .links a { width: 100%; text-align: center; padding: 16px; border-bottom: 1px solid var(--border); }
    }

.home-section{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:50px;
    padding:120px 20px 80px;
}

/* HERO */

.hero-content{
    max-width:800px;
    text-align:center;
    color:#fff;
    margin-top: -120px;
}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(10px);
    margin-bottom:25px;
    font-size:13px;
    letter-spacing:1px;
}

.hero-content h1{
    font-size:clamp(3rem,8vw,6rem);
    line-height:1;
    font-weight:900;
    margin-bottom:20px;
}

.hero-content h1 span{
    display:block;
    background:linear-gradient(
        90deg,
        #00e5a0,
        #00b87a
    );
    -webkit-background-clip:text;
    color:transparent;
}

.hero-content p{
    max-width:650px;
    margin:auto;
    font-size:17px;
    line-height:1.8;
    opacity:.8;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

/* BUTTONS */

.glass-btn{
    padding:14px 34px;
    border:none;
    border-radius:50px;
    background:#00e5a0;
    color:#000;
    font-weight:700;
    cursor:pointer;
    transition:.35s;
}

.glass-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,229,160,.3);
}

.outline-btn{
    padding:14px 34px;
    border-radius:50px;
    background:transparent;
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    cursor:pointer;
    transition:.35s;
}

.outline-btn:hover{
    background:rgba(255,255,255,.08);
}

/* 3D CAROUSEL */

.scene,
.a3d{
    display:grid;
}

.scene{
    width:100%;
    overflow:hidden;
    perspective:35em;
    mask:linear-gradient(
        90deg,
        transparent,
        black 20%,
        black 80%,
        transparent
    );
}

.a3d{
    place-self:center;
    transform-style:preserve-3d;
    animation:ry 32s linear infinite;
}

@keyframes ry{
    to{
        transform:rotateY(360deg);
    }
}

.card{
    --w:17.5em;
    --ba:calc(1turn / var(--n));

    grid-area:1/1;

    width:var(--w);
    aspect-ratio:7/10;

    object-fit:cover;
    border-radius:24px;

    box-shadow:
    0 25px 40px rgba(0,0,0,.35);

    backface-visibility:hidden;

    transform:
    rotateY(calc(var(--i) * var(--ba)))
    translateZ(
        calc(
            -1 *
            (0.5 * var(--w) + 0.5em)
            /
            tan(0.5 * var(--ba))
        )
    );
}

.card:hover{
    filter:brightness(1.1);
}

@media(max-width:768px){

    .hero-content h1{
        font-size:3rem;
    }
    .home-section{
        margin-top:-50px;
    }

    .card{
        --w:12em;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .glass-btn,
    .outline-btn{
        width:100%;
    }
}
    .header-hero {
      display: flex; flex-direction: column; align-items: center; text-align: center;
      max-width: 680px; margin: 64px auto 48px; padding: 0 24px;
    }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 600; color: var(--accent);
      letter-spacing: .14em; text-transform: uppercase;
      margin-bottom: 20px; padding: 6px 14px;
      border: 1px solid rgba(0,229,160,.2); border-radius: 999px;
      background: rgba(0,229,160,.06);
    }

    .header-hero h2 {
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      font-weight: 900; line-height: 1.08; letter-spacing: -0.03em;
      color: var(--white); margin-bottom: 20px;
    }
    .header-hero h2 em { font-style: normal; color: var(--accent); }
    .header-hero p { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 36px; max-width: 480px; }

    .glass-btn {
      position: relative; padding: 14px 36px;
      border: 1px solid rgba(0,229,160,.3); border-radius: 999px;
      background: rgba(0,229,160,.08); color: var(--accent);
      font-size: 14px; font-weight: 700; font-family: var(--font);
      cursor: pointer; overflow: hidden;
      transition: background .25s, transform .25s, box-shadow .25s;
    }
    .glass-btn:hover { transform: translateY(-2px); background: rgba(0,229,160,.15); box-shadow: 0 0 32px rgba(0,229,160,.2); }

    /* 3D ring */
    .scene, .a3d { display: grid; }
    .scene {
      overflow: hidden; perspective: 35em;
      mask: linear-gradient(90deg, #0000, #000 18% 82%, #0000);
      width: 100%;
    }
    .a3d {
      place-self: center;
      transform-style: preserve-3d;
      animation: ry 32s linear infinite;
      will-change: transform;
    }
    @keyframes ry { to { transform: rotateY(1turn); } }

    .card {
      --w: 17.5em;
      --ba: calc(1turn / var(--n));
      grid-area: 1/1; width: var(--w); aspect-ratio: 7/10;
      object-fit: cover; border-radius: 1.5em; backface-visibility: hidden;
      transform: rotateY(calc(var(--i)*var(--ba))) translateZ(calc(-1*(0.5*var(--w)+0.5em)/tan(0.5*var(--ba))));
    }

    /* ══════════ HERO SLIDER ══════════ */
    .hero-slider-wrap {
      width: 100%; overflow: hidden;
      margin: 0 0 0 0;
      position: relative;
    }
    .hero-slider-track {
      display: flex;
      transition: transform .6s cubic-bezier(.4,0,.2,1);
      will-change: transform;
    }
    .hero-slide {
      min-width: 100%;
      padding: 80px 60px;
      display: flex; flex-direction: column; justify-content: flex-end;
      min-height: 520px;
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      margin: 0 8px;
    }
    .hero-slide a{
        text-decoration: none;
    }
    .hero-slide-img {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transition: transform .6s ease;
      object-fit: cover;
      filter: brightness(0.6) contrast(1.1) saturate(0.8);
    }
    .hero-slide:hover .hero-slide-img { transform: scale(1.04); }
    .hero-slide::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(11,15,20,.9) 0%, rgba(11,15,20,.3) 50%, transparent 100%);
      z-index: 1;
    }
    .hero-slide-content { position: relative; z-index: 2; }
    .hero-slide-num { font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
    .hero-slide-num::before { content: ''; display: inline-block; width: 24px; height: 1.5px; background: var(--accent); }
    .hero-slide h3 { font-size: clamp(28px, 4vw, 52px); font-weight: 900; color: var(--white); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 12px; }
    .hero-slide p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 420px; }

    .slider-controls {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 8px 0;
    }
    .slider-dots { display: flex; gap: 8px; }
    .slider-dot {
      width: 8px; height: 8px; border-radius: 999px;
      background: var(--border); border: none; cursor: pointer;
      transition: background .3s, width .3s;
      padding: 0;
    }
    .slider-dot.active { background: var(--accent); width: 24px; }
    .slider-arrows { display: flex; gap: 10px; }
    .sl-arr {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--card); border: 1px solid var(--border);
      color: var(--muted); font-size: 16px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: border-color .2s, color .2s;
    }
    .sl-arr:hover { border-color: rgba(0,229,160,.4); color: var(--accent); }

    @media (max-width: 768px) {
      .hero-slide { padding: 50px 28px; min-height: 380px; margin: 0 4px; }
    }

    .spacer { height: 20px; }

    /* ══════════ SERVICE GALLERY ══════════ */
    .hero-service {
      background: var(--surface);
      padding: 80px 60px; margin: 16px;
      border-radius: 28px; border: 1px solid var(--border);
    }
    .top-content { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
    .heading h1 { font-size: clamp(52px, 7vw, 110px); font-weight: 900; line-height: .92; letter-spacing: -0.04em; color: var(--white); }
    .heading h1 .dim { color: var(--dim); }
    .description p { color: var(--muted); line-height: 1.75; font-size: 14px; max-width: 360px; }

    .gallery { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 48px; }
    .fashion-card { position: relative; border-radius: 28px; overflow: hidden; cursor: pointer; transition: transform .4s ease, box-shadow .4s ease; }
    .fashion-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,.4); }
    .fashion-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .card-1 { width: 270px; height: 420px; }
    .card-2 { width: 280px; height: 370px; margin-bottom: 30px; }
    .card-3 { width: 240px; height: 320px; }
    .card-4 { width: 290px; height: 460px; }
    .fashion-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 60%); }
    .fashion-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--accent); z-index: 6; transition: width .4s ease; }
    .fashion-card:hover::before { width: 100%; }
    .fashion-card h3 { position: absolute; left: 20px; bottom: 22px; z-index: 5; color: white; font-size: 28px; font-weight: 700; letter-spacing: -0.02em; }

    @media (max-width: 992px) {
      .hero-service { padding: 50px 24px; margin: 0 8px; }
      .top-content { flex-direction: column; gap: 24px; }
      .card-1,.card-2,.card-3,.card-4 { width: 100%; max-width: 380px; height: 460px; margin: 0; }
      .gallery { flex-direction: column; align-items: center; }
    }

    /* ══════════ AGENCY SERVICES ══════════ */
    .s1 {
      background: var(--surface);
      padding: 80px 60px; margin: 16px;
      border-radius: 28px; border: 1px solid var(--border);
      display: flex; flex-direction: column; align-items: center;
    }
    .logo-mark { margin-bottom: 32px; display: inline-flex; }
    .logo-mark svg { width: 44px; height: 44px; }
    .s1-headline { text-align: center; max-width: 760px; margin-bottom: 32px; }
    .s1-headline h1 { font-size: clamp(36px, 6vw, 80px); font-weight: 900; line-height: 1.0; letter-spacing: -0.04em; color: var(--white); }
    .s1-headline h1 .muted { color: var(--dim); }
    .s1-cols { display: flex; justify-content: space-between; width: 100%; max-width: 860px; gap: 40px; }
    .s1-col { flex: 1; font-size: 12px; color: var(--muted); line-height: 1.7; }
    .services-row { display: flex; gap: 10px; width: 100%; max-width: 960px; margin-top: 44px; align-items: flex-end; flex-wrap: wrap; }
    .srv-card { border-radius: 18px; background: var(--card); border: 1px solid var(--border); position: relative; overflow: hidden; flex: 1; min-width: 120px; height: 180px; display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; cursor: pointer; transition: transform .25s, box-shadow .25s, border-color .25s; }
    .srv-card:hover { transform: translateY(-4px); border-color: rgba(0,229,160,.3); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
    .srv-card.featured { background: var(--accent); border-color: var(--accent); flex: 1.4; height: 210px; }
    .srv-card.featured:hover { box-shadow: 0 16px 48px rgba(0,229,160,.3); }
    .srv-tag { position: absolute; top: 12px; left: 12px; background: rgba(0,229,160,.12); border: 1px solid rgba(0,229,160,.2); border-radius: 999px; padding: 3px 11px; font-size: 9px; font-weight: 600; color: var(--accent); letter-spacing: .06em; }
    .srv-card.featured .srv-tag { background: rgba(0,0,0,.15); border-color: rgba(0,0,0,.2); color: rgba(0,0,0,.7); }
    .srv-visual { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
    .sv-streak { position: absolute; border-radius: 999px; filter: blur(14px); }
    .sv1 { width: 180px; height: 14px; background: linear-gradient(90deg, transparent, rgba(0,0,0,.3), transparent); top: 42%; left: -10px; transform: rotate(-8deg); animation: sp 2.5s ease-in-out infinite; }
    .sv2 { width: 140px; height: 9px; background: linear-gradient(90deg, transparent, rgba(0,0,0,.2), transparent); top: 50%; left: 20px; transform: rotate(-5deg); animation: sp 2.5s ease-in-out .4s infinite; }
    @keyframes sp { 0%,100%{opacity:.9;} 50%{opacity:.4;} }
    .srv-name { font-size: 15px; font-weight: 700; color: var(--text); position: relative; z-index: 2; }
    .srv-card.featured .srv-name { color: #000; font-size: 17px; }
    .btn-get { margin-top: 8px; background: rgba(0,0,0,.2); color: #000; font-size: 11px; font-weight: 700; font-family: var(--font); border: none; border-radius: 999px; padding: 7px 16px; cursor: pointer; position: relative; z-index: 2; transition: background .2s; width: fit-content; }
    .btn-get:hover { background: rgba(0,0,0,.35); }
    @media (max-width: 768px) {
      .s1 { padding: 50px 24px; margin: 8px; }
      .s1-cols { flex-direction: column; }
      .services-row { flex-direction: column; }
      .srv-card, .srv-card.featured { flex: none; width: 100%; height: 140px; }
      .srv-card.featured { height: 170px; }
    }

    /* ══════════ TEAM ══════════ */
    .s2 { background: var(--bg); padding: 100px 48px; display: flex; flex-direction: column; align-items: center; }
    .s2-top { width: 100%; max-width: 680px; margin-bottom: 64px; }
    .about-label { font-size: 10px; color: var(--accent); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
    .about-label::before { content: ''; display: inline-block; width: 28px; height: 2px; background: var(--accent); }
    .snowflake { display: inline-block; color: var(--accent); font-size: 18px; margin-bottom: 16px; }
    .s2-heading { font-size: clamp(22px, 3.5vw, 40px); font-weight: 800; line-height: 1.25; letter-spacing: -0.03em; color: var(--white); }
    .s2-heading .muted { color: var(--dim); font-weight: 400; }
    .pill { display: inline-block; width: 56px; height: 24px; background: var(--card); border: 1px solid var(--border); border-radius: 999px; vertical-align: middle; margin: 0 4px; position: relative; overflow: hidden; }
    .pill::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(0,229,160,.7), transparent); border-radius: 999px; animation: pg 2.5s ease-in-out infinite; }
    @keyframes pg { 0%,100%{opacity:1;} 50%{opacity:.3;} }
    .team-carousel { width: 100%; display: flex; justify-content: center; align-items: center; gap: 14px; overflow: hidden; padding: 0 10px; }
    .team-card { border-radius: 20px; overflow: hidden; position: relative; flex-shrink: 0; background: var(--card); border: 1px solid var(--border); cursor: pointer; transition: transform .3s; }
    .team-card:hover { transform: scale(1.03); }
    .team-card.side { width: 130px; height: 190px; opacity: .5; }
    .team-card.side2 { width: 110px; height: 165px; opacity: .25; }
    .team-card.active { width: 200px; height: 280px; box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(0,229,160,.2); z-index: 10; }
    .tc-visual { position: absolute; inset: 0; background: linear-gradient(160deg, var(--card) 0%, var(--bg) 100%); overflow: hidden; }
    .face-blob { position: absolute; top: 10%; left: 50%; transform: translateX(-50%); width: 70%; height: 65%; background: radial-gradient(ellipse at 50% 35%, #1e2d3d 0%, var(--bg) 60%, transparent 90%); border-radius: 50% 50% 40% 40%; }
    .tc-streak { position: absolute; border-radius: 999px; filter: blur(10px); }
    .tcs1 { width: 100%; height: 10px; background: linear-gradient(90deg, transparent, var(--accent), transparent); top: 55%; left: -10px; transform: rotate(-6deg); animation: sp 3s ease-in-out infinite; }
    .tcs2 { width: 80%; height: 7px; background: linear-gradient(90deg, transparent, var(--accent2), transparent); top: 62%; left: 10%; transform: rotate(-4deg); animation: sp 3s ease-in-out .5s infinite; }
    .tc-logo { position: absolute; top: 12px; left: 12px; width: 26px; height: 26px; background: var(--bg); border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; z-index: 5; }
    .tc-logo svg { width: 16px; height: 16px; }
    .tc-info { position: absolute; bottom: 16px; left: 14px; right: 14px; z-index: 5; }
    .tc-info h4 { font-size: 16px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
    .tc-info p { font-size: 10px; color: var(--muted); margin-top: 4px; }
    .carousel-nav { display: flex; gap: 10px; margin-top: 48px; }
    .arr-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); background: var(--card); color: var(--muted); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color .2s, color .2s; }
    .arr-btn:hover { border-color: rgba(0,229,160,.4); color: var(--accent); }
    .arr-btn.active-arr { background: var(--accent); border-color: var(--accent); color: #000; }

    /* ══════════ ABOUT ══════════ */
    .about-container {
      display: flex; gap: 0;
      background: var(--surface);
      margin: 16px; border-radius: 28px; border: 1px solid var(--border);
      overflow: hidden;
    }
    .about-image { flex: 1; min-height: 560px; position: relative; overflow: hidden; }
    .about-image img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.7) saturate(1.1); transition: transform .6s ease; }
    .about-image:hover img { transform: scale(1.04); }
    .about-image::after { content: ''; position: absolute; top: 0; right: 0; width: 2px; height: 100%; background: linear-gradient(to bottom, transparent, var(--accent), transparent); }
    .about-card { flex: 1.2; padding: 70px 56px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
    .about-card::before { content: 'ME'; position: absolute; top: 20px; right: 30px; font-size: 180px; font-weight: 900; color: rgba(255,255,255,.025); letter-spacing: -10px; line-height: 1; pointer-events: none; }
    .about-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
    .about-eyebrow-line { width: 32px; height: 2px; background: var(--accent); }
    .about-eyebrow span { font-size: 10px; font-weight: 600; color: var(--accent); letter-spacing: .14em; text-transform: uppercase; }
    .about-card h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 900; line-height: 1.08; letter-spacing: -0.03em; color: var(--white); margin-bottom: 28px; }
    .about-card h2 em { font-style: normal; color: var(--accent); }
    .about-card p { line-height: 1.85; color: var(--muted); font-size: 14px; max-width: 400px; margin-bottom: 16px; }
    .about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
    .about-tag { padding: 6px 14px; border-radius: 999px; border: 1px solid var(--border); font-size: 12px; color: var(--muted); font-weight: 500; transition: border-color .2s, color .2s; cursor: default; }
    .about-tag:hover { border-color: rgba(0,229,160,.4); color: var(--accent); }
    .about-cta { margin-top: 36px; display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: #000; font-size: 13px; font-weight: 700; font-family: var(--font); border: none; border-radius: 999px; padding: 13px 26px; cursor: pointer; width: fit-content; transition: background .2s, transform .2s; }
    .about-cta:hover { background: var(--accent2); transform: translateY(-2px); }
    @media (max-width: 992px) {
      .about-container { flex-direction: column; margin: 8px; }
      .about-image { min-height: 320px; }
      .about-image::after { display: none; }
      .about-card { padding: 48px 32px; }
    }
    @media (max-width: 768px) {
      .about-card { padding: 36px 22px; }
      .about-card::before { display: none; }
    }

    /* ══════════ CONTACT ══════════ */
    .contact-section { background: var(--surface); padding: 100px 48px 80px; margin: 16px; border-radius: 28px; border: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; }
    .contact-label { font-size: 10px; color: var(--accent); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
    .contact-label::before, .contact-label::after { content: ''; display: inline-block; width: 20px; height: 1.5px; background: var(--accent); }
    .contact-heading { font-size: clamp(32px, 5.5vw, 68px); font-weight: 900; line-height: 1.0; letter-spacing: -0.04em; color: var(--white); text-align: center; max-width: 680px; margin-bottom: 64px; }
    .contact-heading .hl { color: var(--accent); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; width: 100%; max-width: 760px; }
    .contact-input { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 17px 20px; font-size: 14px; font-family: var(--font); color: var(--text); outline: none; transition: border-color .2s, box-shadow .2s; width: 100%; }
    .contact-input::placeholder { color: var(--dim); }
    .contact-input:focus { border-color: rgba(0,229,160,.5); box-shadow: 0 0 0 3px rgba(0,229,160,.08); }
    .contact-input.full { grid-column: 1 / -1; }
    textarea.contact-input { resize: none; height: 130px; line-height: 1.6; }
    .contact-submit { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
    .contact-info { display: flex; gap: 28px; flex-wrap: wrap; }
    .contact-info-item { display: flex; align-items: center; gap: 9px; color: var(--dim); font-size: 13px; transition: color .2s; }
    .contact-info-item:hover { color: var(--muted); }
    .contact-info-item i { color: var(--accent); font-size: 13px; }
    .send-btn { background: var(--accent); color: #000; font-size: 14px; font-weight: 700; font-family: var(--font); border: none; border-radius: 999px; padding: 15px 34px; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: background .2s, transform .2s, box-shadow .2s; }
    .send-btn:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,229,160,.25); }
    .contact-bottom { margin-top: 72px; display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 760px; flex-wrap: wrap; gap: 16px; }
    .contact-copyright { color: var(--dim); font-size: 12px; }
    .contact-socials { display: flex; gap: 10px; }
    .social-dot { width: 38px; height: 38px; border-radius: 50%; background: var(--card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--dim); font-size: 14px; cursor: pointer; text-decoration: none; transition: border-color .2s, color .2s, background .2s; }
    .social-dot:hover { border-color: rgba(0,229,160,.4); color: var(--accent); background: rgba(0,229,160,.06); }
    @media (max-width: 768px) {
      .contact-section { padding: 60px 22px; margin: 8px; }
      .contact-grid { grid-template-columns: 1fr; }
      .contact-input.full { grid-column: 1; }
      .contact-submit { grid-column: 1; }
    }

    /* fade-in */
    .fade-in { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }
