:root {
    --yt-primary: #0b6a95;
    --yt-primary-dark: #064b70;
    --yt-primary-soft: #e7f6fd;
    --yt-accent: #ff9f0a;
    --yt-accent-dark: #e58700;
    --yt-dark: #07111f;
    --yt-heading: #0d1b2f;
    --yt-text: #627083;
    --yt-muted: #f5f8fb;
    --yt-white: #ffffff;
    --yt-border: #e5edf5;
    --yt-shadow: 0 20px 60px rgba(9, 32, 63, 0.12);
    --yt-radius: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--yt-text);
    background: var(--yt-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.yt-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.yt-section {
    padding: 96px 0;
}

.yt-section-tag,
.yt-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--yt-primary);
    background: var(--yt-primary-soft);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 18px;
}

.yt-section-head {
    width: min(740px, 100%);
    margin: 0 auto 46px;
    text-align: center;
}

.yt-section-head h2,
.yt-about-content h2,
.yt-why h2,
.yt-testimonial h2,
.yt-contact-info h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--yt-heading);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.16;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.yt-section-head p,
.yt-about-content p,
.yt-why p,
.yt-testimonial p,
.yt-contact-info p {
    font-size: 17px;
}

.yt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 0;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.yt-btn-primary {
    color: var(--yt-white);
    background: linear-gradient(135deg, var(--yt-accent), var(--yt-accent-dark));
    box-shadow: 0 14px 28px rgba(255, 159, 10, 0.25);
}

.yt-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(255, 159, 10, 0.35);
}

.yt-btn-light {
    color: var(--yt-primary-dark);
    background: var(--yt-white);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.yt-page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: var(--yt-dark);
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.yt-page-loader.yt-loader-hide {
    opacity: 0;
    visibility: hidden;
}

.yt-loader-card {
    display: grid;
    gap: 18px;
    place-items: center;
}

.yt-loader-card img {
    width: 220px;
    background: #000;
    border-radius: 18px;
    padding: 10px;
}

.yt-loader-card span {
    width: 180px;
    height: 5px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--yt-primary), var(--yt-accent), var(--yt-primary));
    background-size: 220% 100%;
    animation: ytLoading 1.1s infinite linear;
}

@keyframes ytLoading {
    to { background-position: 220% 0; }
}

.yt-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(229, 237, 245, 0.8);
}

.yt-navbar {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.yt-brand {
    display: flex;
    align-items: center;
    width: 180px;
    background: #ffffff;
    border-radius: 14px;
    padding: 8px 10px;
}

.yt-brand img {
    width: 100%;
}

.yt-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-weight: 800;
    color: var(--yt-heading);
}

.yt-nav a {
    position: relative;
    font-size: 15px;
    transition: 0.25s ease;
}

.yt-nav a:not(.yt-nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    border-radius: 99px;
    background: var(--yt-accent);
    transition: 0.25s ease;
}

.yt-nav a:hover,
.yt-nav a.active {
    color: var(--yt-primary);
}

.yt-nav a:hover::after,
.yt-nav a.active::after {
    width: 100%;
}

.yt-nav-cta {
    color: var(--yt-white) !important;
    background: var(--yt-primary);
    padding: 12px 18px;
    border-radius: 999px;
}

.yt-menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 12px;
    background: var(--yt-primary-soft);
    cursor: pointer;
}

.yt-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--yt-primary);
    border-radius: 99px;
}

.yt-hero {
    position: relative;
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    overflow: hidden;
    color: var(--yt-white);
    background: radial-gradient(circle at 20% 20%, rgba(255, 159, 10, 0.2), transparent 28%), linear-gradient(135deg, #05101f 0%, #063d5f 50%, #0b6a95 100%);
}

.yt-hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.yt-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
}

.yt-hero-content h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(42px, 6.5vw, 76px);
    line-height: 1.02;
    letter-spacing: -2.4px;
    margin-bottom: 24px;
}

.yt-hero-content p {
    width: min(640px, 100%);
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    margin-bottom: 34px;
}

.yt-kicker {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.yt-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 42px;
}

.yt-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.yt-hero-stats div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    backdrop-filter: blur(10px);
}

.yt-hero-stats strong {
    display: block;
    font-size: 30px;
    line-height: 1;
    color: var(--yt-accent);
}

.yt-hero-stats span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
}

.yt-hero-visual {
    position: relative;
    min-height: 520px;
}

.yt-dashboard-card,
.yt-floating-card {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(18px);
}

.yt-card-main {
    position: absolute;
    right: 18px;
    top: 60px;
    width: min(420px, 100%);
    padding: 28px;
    border-radius: 34px;
}

.yt-card-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 34px;
}

.yt-card-top span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}

.yt-card-top h3 {
    color: var(--yt-white);
    font-size: 28px;
}

.yt-card-top i {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--yt-dark);
    background: var(--yt-accent);
    font-size: 22px;
}

.yt-chart-bars {
    height: 210px;
    display: flex;
    align-items: end;
    gap: 16px;
    margin-bottom: 28px;
}

.yt-chart-bars span {
    flex: 1;
    border-radius: 18px 18px 6px 6px;
    background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.22));
}

.yt-progress-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 800;
    color: var(--yt-white);
}

.yt-progress {
    height: 12px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.16);
    overflow: hidden;
}

.yt-progress span {
    display: block;
    width: 92%;
    height: 100%;
    border-radius: inherit;
    background: var(--yt-accent);
}

.yt-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
    color: var(--yt-white);
}

.yt-floating-card i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--yt-white);
    background: var(--yt-primary);
}

.yt-floating-card strong,
.yt-floating-card span {
    display: block;
}

.yt-floating-card span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.yt-float-one {
    top: 12px;
    left: 0;
}

.yt-float-two {
    right: 0;
    bottom: 70px;
}

.yt-partners {
    padding: 34px 0;
    background: var(--yt-muted);
}

.yt-logo-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.yt-logo-strip span {
    min-height: 66px;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 18px;
    background: var(--yt-white);
    color: var(--yt-heading);
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(9, 32, 63, 0.06);
}

.yt-about-grid,
.yt-why-grid,
.yt-testimonial-grid,
.yt-contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 58px;
}

.yt-about-media {
    position: relative;
}

.yt-about-media img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: var(--yt-shadow);
}

.yt-experience-badge {
    position: absolute;
    right: -24px;
    bottom: 34px;
    width: min(250px, calc(100% - 30px));
    padding: 24px;
    color: var(--yt-white);
    background: linear-gradient(135deg, var(--yt-primary), var(--yt-primary-dark));
    border: 8px solid var(--yt-white);
    border-radius: 24px;
    box-shadow: var(--yt-shadow);
}

.yt-experience-badge strong {
    display: block;
    color: var(--yt-accent);
    font-size: 42px;
    line-height: 1;
}

.yt-experience-badge span {
    font-weight: 700;
}

.yt-check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.yt-check-list div {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 16px;
    background: var(--yt-muted);
    color: var(--yt-heading);
    font-weight: 700;
}

.yt-check-list i {
    color: var(--yt-accent);
    margin-top: 4px;
}

.yt-services,
.yt-tech {
    background: linear-gradient(180deg, var(--yt-muted), #fff);
}

.yt-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.yt-service-card {
    position: relative;
    padding: 30px;
    border: 1px solid var(--yt-border);
    border-radius: var(--yt-radius);
    background: var(--yt-white);
    box-shadow: 0 14px 38px rgba(9, 32, 63, 0.06);
    transition: 0.25s ease;
    overflow: hidden;
}

.yt-service-card::before {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 5px;
    background: linear-gradient(90deg, var(--yt-primary), var(--yt-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.25s ease;
}

.yt-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--yt-shadow);
}

.yt-service-card:hover::before {
    transform: scaleX(1);
}

.yt-featured-service {
    border-color: rgba(255, 159, 10, 0.36);
    background: linear-gradient(180deg, #fff9ef, var(--yt-white));
}

.yt-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: var(--yt-white);
    background: linear-gradient(135deg, var(--yt-primary), var(--yt-primary-dark));
    font-size: 24px;
    margin-bottom: 22px;
}

.yt-service-card h3,
.yt-why-cards h3,
.yt-process-card h3,
.yt-project-card h3 {
    color: var(--yt-heading);
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.yt-service-card ul {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    list-style: none;
}

.yt-service-card li {
    position: relative;
    padding-left: 20px;
    color: var(--yt-heading);
    font-weight: 700;
    font-size: 14px;
}

.yt-service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yt-accent);
}

.yt-why {
    color: var(--yt-white);
    background: radial-gradient(circle at 90% 20%, rgba(255, 159, 10, 0.22), transparent 25%), linear-gradient(135deg, #05101f, #063d5f);
}

.yt-why h2,
.yt-why p {
    color: var(--yt-white);
}

.yt-why p {
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 28px;
}

.yt-why .yt-section-tag,
.yt-testimonial .yt-section-tag,
.yt-contact .yt-section-tag {
    color: var(--yt-white);
    background: rgba(255, 255, 255, 0.13);
}

.yt-why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.yt-why-cards div {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}

.yt-why-cards i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--yt-accent);
    color: var(--yt-dark);
    font-size: 22px;
    margin-bottom: 16px;
}

.yt-why-cards h3 {
    color: var(--yt-white);
}

.yt-why-cards p {
    margin: 0;
    font-size: 15px;
}

.yt-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.yt-process-card {
    position: relative;
    padding: 28px;
    border-radius: var(--yt-radius);
    background: var(--yt-white);
    border: 1px solid var(--yt-border);
    box-shadow: 0 14px 38px rgba(9, 32, 63, 0.06);
}

.yt-process-card span {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border-radius: 18px;
    background: var(--yt-primary-soft);
    color: var(--yt-primary);
    font-size: 18px;
    font-weight: 900;
}

.yt-portfolio {
    background: var(--yt-muted);
}

.yt-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.yt-project-card {
    overflow: hidden;
    border-radius: var(--yt-radius);
    background: var(--yt-white);
    box-shadow: var(--yt-shadow);
}

.yt-project-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.35s ease;
}

.yt-project-card:hover img {
    transform: scale(1.05);
}

.yt-project-card div {
    padding: 24px;
}

.yt-project-card span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--yt-primary);
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.yt-tech-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}

.yt-tech-grid div {
    min-height: 126px;
    display: grid;
    place-items: center;
    gap: 12px;
    text-align: center;
    padding: 18px 12px;
    border-radius: 22px;
    background: var(--yt-white);
    border: 1px solid var(--yt-border);
    box-shadow: 0 10px 28px rgba(9, 32, 63, 0.06);
    color: var(--yt-heading);
    font-weight: 900;
}

.yt-tech-grid i {
    color: var(--yt-primary);
    font-size: 36px;
}

.yt-testimonial {
    color: var(--yt-white);
    background: linear-gradient(135deg, var(--yt-primary-dark), var(--yt-primary));
}

.yt-testimonial h2,
.yt-testimonial p {
    color: var(--yt-white);
}

.yt-testimonial p {
    color: rgba(255, 255, 255, 0.78);
}

.yt-quote-card {
    padding: 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
}

.yt-quote-card > i {
    color: var(--yt-accent);
    font-size: 42px;
    margin-bottom: 18px;
}

.yt-quote-card p {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 22px;
}

.yt-quote-card strong,
.yt-quote-card span {
    display: block;
}

.yt-quote-card strong {
    color: var(--yt-white);
    font-size: 18px;
}

.yt-quote-card span {
    color: rgba(255, 255, 255, 0.7);
}

.yt-contact {
    background: radial-gradient(circle at 10% 10%, rgba(255, 159, 10, 0.16), transparent 22%), linear-gradient(180deg, #07111f, #0b243c);
    color: var(--yt-white);
}

.yt-contact-info h2,
.yt-contact-info p {
    color: var(--yt-white);
}

.yt-contact-info p {
    color: rgba(255, 255, 255, 0.72);
}

.yt-contact-list {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.yt-contact-list a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 800;
}

.yt-contact-list i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--yt-dark);
    background: var(--yt-accent);
}

.yt-contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 30px;
    border-radius: 30px;
    background: var(--yt-white);
    box-shadow: var(--yt-shadow);
}

.yt-form-row {
    display: grid;
    gap: 8px;
}

.yt-full-row,
.yt-submit-btn,
.yt-form-note {
    grid-column: 1 / -1;
}

.yt-form-row label {
    color: var(--yt-heading);
    font-weight: 900;
    font-size: 14px;
}

.yt-form-row input,
.yt-form-row select,
.yt-form-row textarea {
    width: 100%;
    border: 1px solid var(--yt-border);
    border-radius: 16px;
    padding: 14px 16px;
    color: var(--yt-heading);
    background: #fbfdff;
    outline: none;
    transition: 0.2s ease;
}

.yt-form-row input:focus,
.yt-form-row select:focus,
.yt-form-row textarea:focus {
    border-color: var(--yt-primary);
    box-shadow: 0 0 0 4px rgba(11, 106, 149, 0.1);
}

.yt-form-row textarea {
    resize: vertical;
}

.yt-submit-btn {
    width: 100%;
}

.yt-form-note {
    color: var(--yt-text);
    font-size: 14px;
    text-align: center;
}

.yt-footer {
    color: rgba(255, 255, 255, 0.72);
    background: #030914;
    padding: 70px 0 24px;
}

.yt-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.yt-footer img {
    width: 220px;
    padding: 8px;
    border-radius: 14px;
    background: #000;
    margin-bottom: 18px;
}

.yt-footer h3 {
    color: var(--yt-white);
    margin-bottom: 18px;
}

.yt-footer a {
    display: block;
    margin-bottom: 10px;
    transition: 0.2s ease;
}

.yt-footer a:hover {
    color: var(--yt-accent);
}

.yt-socials {
    display: flex;
    gap: 10px;
}

.yt-socials a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin: 0;
}

.yt-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
}

.yt-footer-bottom a {
    margin: 0;
    color: var(--yt-white);
    font-weight: 800;
}

@media (max-width: 1080px) {
    .yt-hero-grid,
    .yt-about-grid,
    .yt-why-grid,
    .yt-testimonial-grid,
    .yt-contact-grid {
        grid-template-columns: 1fr;
    }

    .yt-hero-visual {
        min-height: 480px;
    }

    .yt-card-main {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .yt-service-grid,
    .yt-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .yt-process-grid,
    .yt-tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .yt-logo-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .yt-menu-btn {
        display: block;
    }

    .yt-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 92px;
        display: grid;
        gap: 0;
        padding: 14px;
        border: 1px solid var(--yt-border);
        border-radius: 22px;
        background: var(--yt-white);
        box-shadow: var(--yt-shadow);
        transform: translateY(-18px);
        opacity: 0;
        visibility: hidden;
        transition: 0.25s ease;
    }

    .yt-nav.yt-nav-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .yt-nav a {
        padding: 12px 10px;
    }

    .yt-nav-cta {
        text-align: center;
        margin-top: 8px;
    }

    .yt-brand {
        width: 190px;
    }
}

@media (max-width: 760px) {
    .yt-section {
        padding: 72px 0;
    }

    .yt-hero {
        padding: 72px 0 64px;
    }

    .yt-hero-content h1 {
        letter-spacing: -1.4px;
    }

    .yt-hero-stats,
    .yt-check-list,
    .yt-service-grid,
    .yt-why-cards,
    .yt-portfolio-grid,
    .yt-contact-form,
    .yt-footer-grid {
        grid-template-columns: 1fr;
    }

    .yt-logo-strip {
        grid-template-columns: 1fr 1fr;
    }

    .yt-process-grid,
    .yt-tech-grid {
        grid-template-columns: 1fr 1fr;
    }

    .yt-card-main {
        width: 100%;
        top: 78px;
    }

    .yt-floating-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin-top: 14px;
    }

    .yt-hero-visual {
        min-height: auto;
        display: grid;
        padding-top: 0;
    }

    .yt-dashboard-card.yt-card-main {
        position: relative;
        transform: none;
        left: auto;
        right: auto;
    }

    .yt-experience-badge {
        right: 14px;
    }

    .yt-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .yt-container {
        width: min(100% - 24px, 1180px);
    }

    .yt-brand {
        width: 165px;
        padding: 7px;
    }

    .yt-navbar {
        min-height: 76px;
    }

    .yt-nav {
        top: 84px;
    }

    .yt-hero-actions .yt-btn,
    .yt-btn {
        width: 100%;
    }

    .yt-logo-strip,
    .yt-process-grid,
    .yt-tech-grid {
        grid-template-columns: 1fr;
    }

    .yt-about-media img {
        min-height: 360px;
    }

    .yt-contact-form {
        padding: 22px;
    }
}
