/* ===== base ===== */

:root {
    --text: #0b0b0b;
    --muted: #5d5d5d;
    --line: #d7d7d7;
    --lime: #c9f14a;
    --lime-dark: #a8d32e;
    --black: #000;
    --white: #fff;
    --radius: 22px;
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0
}

body {
    font-family: Inter, Segoe UI, Arial, sans-serif;
    color: var(--text);
    background: var(--white);
}

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

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px
}


/* ===== header ===== */

.cf-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 20;
    border-bottom: 1px solid transparent
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px
}

.logo {
    font-weight: 800;
    letter-spacing: .3px;
    font-size: 24px;
    display: flex;
    gap: 6px;
    align-items: center
}

.logo-svg {
    height: 60px;
    width: auto;
    display: block;
}

.logo-oyu {
    color: var(--lime)
}

.logo-studio {
    color: #111
}

.menu a {
    color: #111;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600
}

.menu a:hover {
    opacity: .7
}


/* ===== hero ===== */

.hero {
    position: relative;
    padding: 64px 0 48px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
    align-items: center;
}

.hero-title {
    font-family: "PP Neue Machina", Inter, "Segoe UI", Arial, sans-serif;
    font-weight: 800; /* соответствует Ultrabold выше */
    font-size: 56px;
    line-height: 1.40;
    margin: 0 0 14px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.accent-underline {
    position: relative;
    display: inline-block
}

.accent-underline::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 14px;
    background: radial-gradient(60% 120% at 50% 60%, var(--lime) 0%, var(--lime) 60%, transparent 61%) bottom/100% 100% no-repeat;
    border-radius: 999px;
}

.hero-sub {
    font-family: "FreeSetLightC", "PP Neue Machina", Inter, "Segoe UI", Arial, sans-serif;
    color: #000000;
    max-width: 560px;  
    margin: 12px 0 22px;
    
    font-size: 20px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between; /* стрелка справа */
    gap: 16px;
    padding: 14px 28px 14px 28px;
    min-width: 380px; 
    margin-top: 24px;
    background: #D3F36B;
    border-radius: 16px;
    color: #111;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    box-shadow: none;
    border: none;
    letter-spacing: 0.5px;
    transition: background 0.15s, transform 0.15s;
}

.btn-cta .cta-text {
    font-family: "Gotham Pro Medium", Arial, sans-serif;    
    flex: 1; 
    text-align: left;
}

.btn-cta .cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 46px;
    border-radius: 12px;
    background: #111;
    color: #e4fa7a;
    border: none;
    font-weight: 900;
    font-size: 24px;
    line-height: 1;
    transition: background 0.15s, color 0.15s;
    margin-left: 16px; /* небольшой отступ слева */
}

.btn-cta:hover {
    background: #d4f05a;
    transform: translateY(-1px);
}

.hero-right {
    position: relative
}

.hero-object{
  width:100%;
  max-width:520px;
  margin-left:auto;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.18));
}


/* ===== section title ===== */

.section-title {
    font-family: "PP Neue Machina", Inter, "Segoe UI", Arial, sans-serif;    
    text-align: center;
    margin: 12px 0 28px;
    font-size: 29px;
    letter-spacing: .8px;
    font-weight: 900;
    text-transform: uppercase;
}


/* ===== projects ===== */

.projects {
    padding: 28px 0 56px
}

.projects-wrap {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 18px;
    align-items: stretch;
}

.tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tab {
    background: #111;
    color: #fff;
    border-radius: 18px;
    padding: 16px 18px;
    min-height: 96px;
    border: 1px solid #222;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tab::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
    pointer-events: none;
}

.tab span {
    display: block;
    color: #bdbdbd;
    font-size: 12px;
    margin-top: 6px;
    line-height: 1.35
}

.tab:hover {
    background: #0f0f0f
}

.project-card {
    background: #111;
    color: #fff;
    border-radius: 22px;
    border: 1px solid #222;
    padding: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.project-badge {
    position: absolute;
    right: 18px;
    top: 18px;
    border: 1px solid var(--lime);
    color: var(--lime);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    background: rgba(201, 241, 74, .05);
}

.project-cover {
    background: #0b0b0b;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #222;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.project-info h3 {
    margin: 2px 0 4px;
    font-size: 22px
}

.project-info p {
    margin: 0;
    color: #cfcfcf
}

/* Карточки */
.cards {
    display: flex;
    gap: 16px;
    overflow: hidden;
}

.card {
    flex: 1;
    background: #111;
    color: #fff;
    border-radius: 16px;
    padding: 20px;
    transition: flex 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.card p {
    margin-top: 10px;
    font-size: 14px;
    color: #bdbdbd;
}

.card:hover {
    flex: 3;
    transform: scale(1.05);
}

.cards .card:not(:hover) {
    flex: 0.8;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ===== contact ===== */

.contact {
    padding: 24px 0 80px
}

.contact-title {
    font-family: "PP Neue Machina", Arial, sans-serif;
    font-size: 28px; 
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px; 
}

.contact-card {
    font-family: "Gotham Pro Light", Arial, sans-serif;    
    font-weight: 900;
    border: 2px solid #141414;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 920px;
    min-height: 800px;     
    /* min-height: 900px;  */
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

/* .contact-card {
    border: 2px solid #141414;
    border-radius: 28px;
    padding: 40px 22px 40px; 
    max-width: 920px;
    min-height: 700px; 
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
} */

.contact-card h2 {
    margin: 0 0 6px;
    text-transform: uppercase
}

.contact-lead {
    font-family: "Gotham Pro Light", Arial, sans-serif;
    font-size: 18px; 
    color: #5d5d5d;
    margin-bottom: 30px;
}

.contact-form {
    display: grid;
    gap: 20px
}

.field {
    font-family: "Gotham Pro Light", Arial, sans-serif;    
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.field span {
    font-weight: 600
}

.field input {
    height: 56px;
    border: 2px solid #d7d7d7;
    border-radius: 12px; /* Закругляем углы */
    padding: 0 16px;
    font-size: 16px;
    color: #0b0b0b;
    background: #fff;
    transition: border-color 0.2s ease;
}

.field input::placeholder {
    color: #9a9a9a
}

.field input:focus {
    border-color: var(--lime);
    outline: none;
}


/* chips */

.chips {
    margin-top: 6px
}

.chips-title {
    display: block;
    margin-bottom: 10px;
    font-weight: 600
}

.chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.chip {
    border: 2px solid #d7d7d7;
    background: #fff;
    color: #0b0b0b;
    border-radius: 999px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.chip.active {
    background: #fff;
    border-color: #a8a8a8;
    box-shadow: inset 0 0 0 2px #111
}

.chip:hover {
    background: var(--lime);
    border-color: var(--lime-dark);
    color: #fff;
}

.submit-wrap {
    display: flex;
    justify-content: center;
    margin-top: 10px
}

.btn-submit {
    font-family: "PP Neue Machina", Inter, "Segoe UI", Arial, sans-serif;
    background: var(--lime);
    border: 2px solid #000;
    box-shadow: none;
    color: #000;
    font-weight: 900;
    padding: 14px 68px;
    border-radius: 16px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 24px; 
    transition: transform 0.15s ease, background 0.15s ease;
}

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


/* ===== footer ===== */

.cf-footer {
    border-top: 1px solid var(--line);
    padding: 24px 0;
    margin-top: 24px
}

.cf-footer p {
    margin: 0;
    color: #5b5b5b
}


/* ===== responsive ===== */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr
    }
    .hero-right {
        order: -1
    }
    .hero-title {
        font-size: 44px
    }
    .projects-wrap {
        grid-template-columns: 1fr
    }
}

@media (max-width: 560px) {
    .hero-title {
        font-size: 36px
    }
    .btn-cta {
        padding: 12px 16px
    }
    .btn-cta .cta-icon {
        width: 34px;
        height: 34px
    }
    .tab {
        min-height: 84px
    }
}

@font-face {
    font-family: "FreeSetC";
    src: url("../fonts/FreeSetC.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "FreeSetLightC";
    src: url("../fonts/FreeSetLightC.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "PP Neue Machina";
    src: url("../fonts/PPNeueMachina-Ultrabold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "PP Neue Machina";
    src: url("../fonts/PPNeueMachina-Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Gotham Pro Medium";
    src: url("../fonts/gothampro_medium.woff2") format("woff2");
    font-weight: 500; /* Укажите соответствующий вес шрифта */
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Gotham Pro Light";
    src: url("../fonts/gothampro_light.woff2") format("woff2");
    font-weight: 300; /* Укажите соответствующий вес шрифта */
    font-style: normal;
    font-display: swap;
}
