:root {
    --bg: #f6f0e5;
    --bg-soft: #fffaf1;
    --surface: rgba(255, 250, 241, 0.82);
    --surface-strong: #fffdf8;
    --text: #201a12;
    --muted: #6b6056;
    --line: rgba(32, 26, 18, 0.12);
    --accent: #b85c38;
    --accent-dark: #8f4528;
    --accent-soft: rgba(184, 92, 56, 0.12);
    --shadow: 0 24px 80px rgba(58, 38, 19, 0.12);
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 999px;
    --container: 1400px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: #FFFFFFA3;
    overflow-x: hidden;
    background: #040406 url('../images/hero bg.jpg') center top / cover fixed no-repeat;
}

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

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

.page-shell {
    min-height: 100vh;
}

.container {
    width: min(calc(100% - 120px), var(--container));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 15px 0;
    background: transparent;
    border-bottom: 0;
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    transition: transform 0.28s ease, background-color 0.25s ease, -webkit-backdrop-filter 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-hidden {
    transform: translateY(calc(-100% - 8px));
}

.site-header.is-scrolled {
    background: rgba(8, 8, 8, 0.64);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.header-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: #fff;
    justify-self: start;
}

.brand-logo {
    display: block;
    width: auto;
    height: 42px;
    max-width: 200px;
    object-fit: contain;
}

.main-nav {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 400;
    font-size: 16px;
    justify-self: center;
}

.main-nav a {
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: #fff;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    justify-self: end;
}

.github-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: auto;
    padding: 16px 14px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.github-button:hover,
.github-button:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.github-button svg {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
}

.mobile-nav-toggle,
.mobile-nav-panel {
    display: none;
}

.mobile-nav-toggle {
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    border: 0;
    background: transparent;
    color: #f1f1f1;
    font: inherit;
    cursor: pointer;
    justify-self: end;
}

.mobile-nav-toggle-icon {
    position: relative;
    width: 24px;
    height: 18px;
    flex: 0 0 auto;
}

.mobile-nav-toggle-icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.22s ease, opacity 0.18s ease, top 0.22s ease;
}

.mobile-nav-toggle-icon span:first-child {
    top: 2px;
}

.mobile-nav-toggle-icon span:nth-child(2) {
    top: 8px;
}

.mobile-nav-toggle-icon span:last-child {
    top: 14px;
}

.site-header.mobile-nav-open .mobile-nav-toggle-icon span:first-child {
    top: 8px;
    transform: rotate(45deg);
}

.site-header.mobile-nav-open .mobile-nav-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.site-header.mobile-nav-open .mobile-nav-toggle-icon span:last-child {
    top: 8px;
    transform: rotate(-45deg);
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: 9;
    padding-top: var(--mobile-header-height, 72px);
    pointer-events: none;
}

.mobile-nav-panel[hidden] {
    display: none;
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: rgba(4, 4, 6, 0.25);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    will-change: opacity;
}

.site-header.mobile-nav-open + .mobile-nav-panel .mobile-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-sheet {
    position: relative;
    z-index: 1;
    width: 100vw;
    padding: 20px 17px 24px;
    background: rgba(10, 10, 12, 0.78);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(-18px) scale(0.985);
    transition:
        opacity 0.24s ease,
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.site-header.mobile-nav-open + .mobile-nav-panel .mobile-nav-sheet {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mobile-nav-links {
    display: grid;
    gap: 5px;
    margin-top: 0;
}

.mobile-nav-links a {
    display: block;
    padding: 5px 0;
    color: #f1f1f1;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-align: left;
    text-transform: uppercase;
}

.mobile-nav-socials {
    display: grid;
    gap: 5px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-socials a {
    display: block;
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-align: left;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.mobile-nav-socials a:hover,
.mobile-nav-socials a:focus-visible {
    color: #fff;
}

.mobile-nav-footer {
    margin-top: 4px;
}

.mobile-nav-cta,
.mobile-nav-cta .button {
    width: 100%;
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.header-cta {
    min-height: auto;
    padding: 12px 14px;
    background: linear-gradient(#b5b5b5, #e2e2e2);
    border-radius: 25px !important;
    color: #111111;
    border: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-family: 'Manrope', sans-serif;
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
    transform: none;
}

.header-cta:hover,
.header-cta:focus-visible {
    background: transparent;
    color: #f3f3f3;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 250px 0;
    color: #f6f1e8;
    background: transparent;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 60px auto auto -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(184, 92, 56, 0.08);
    filter: blur(24px);
    pointer-events: none;
    display: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, 0) 68%, rgba(0, 0, 0, 0.72) 100%);
    pointer-events: none;
}

.hero-section > .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    width: 100%;
}

.hero-centered {
    display: flex;
    justify-content: flex-start;
}

.hero-centered .hero-content {
    width: 100%;
    max-width: 760px;
    text-align: left;
}

.hero-content h1 {
    margin: 0 0 18px;
    font-size: 4rem;
    line-height: 1.3em;
    letter-spacing: -0.02em;
    max-width: 800px;
    font-weight: 500;
    color: #E8E8E8;
}

.hero-text {
    margin: 0;
    color: #FFFFFFA3;
    font-size: 1.12rem;
    line-height: 1.75;
    max-width: 680px;
    font-weight: 400 !important;
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
    text-decoration: none;
}

.primary-btn {
    background-image: linear-gradient(#cecece, #c0c0c0);
    padding: 3px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
}

.header-cta-wrap {
    flex-shrink: 0;
    justify-self: end;
}

.primary-btn .button {
    min-height: auto;
    padding: 12px 14px;
    background: linear-gradient(#b5b5b5, #e2e2e2);
    border-radius: 25px !important;
    color: #111111;
    border: 0;
}

.primary-btn .button:hover,
.primary-btn .button:focus-visible {
    background: transparent;
}

.secondary-btn {
    display: inline-flex;
}

.secondary-btn .button {
    background: #252525;
    color: #f3f3f3;
    border: 0;
    border-radius: 25px;
    min-height: auto;
    padding: 16px 18px;
    border-radius: 8px;
}

.secondary-btn .button:hover,
.secondary-btn .button:focus-visible {
    background: #2b2b2b;
}

.hero-centered .hero-text {
    margin-left: 0;
}

.hero-centered h1 {
    margin-left: 0;
}

.portfolio-image-1 {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 28%),
        linear-gradient(150deg, rgba(12, 13, 18, 0.9) 0%, rgba(42, 53, 82, 0.7) 100%);
}

.portfolio-image-2 {
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.14), transparent 26%),
        linear-gradient(150deg, rgba(17, 18, 20, 0.94) 0%, rgba(71, 39, 30, 0.68) 100%);
}

.portfolio-image-3 {
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.14), transparent 24%),
        linear-gradient(150deg, rgba(10, 13, 18, 0.94) 0%, rgba(22, 64, 78, 0.68) 100%);
}

.portfolio-image-4 {
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.14), transparent 26%),
        linear-gradient(150deg, rgba(14, 14, 18, 0.94) 0%, rgba(67, 30, 62, 0.68) 100%);
}

.type-separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.project-tech-pills span.tech-pill--default {
    background: rgba(77, 126, 232, 0.12);
    border-color: rgba(77, 126, 232, 0.24);
    color: rgba(213, 226, 255, 0.92);
}

.project-tech-pills span.tech-pill--php {
    background: rgba(147, 112, 219, 0.14);
    border-color: rgba(147, 112, 219, 0.28);
    color: rgba(234, 223, 255, 0.94);
}

.project-tech-pills span.tech-pill--wordpress {
    background: rgba(33, 117, 154, 0.16);
    border-color: rgba(33, 117, 154, 0.34);
    color: rgba(220, 242, 250, 0.95);
}

.project-tech-pills span.tech-pill--elementor {
    background: rgba(149, 8, 66, 0.16);
    border-color: rgba(149, 8, 66, 0.34);
    color: rgba(255, 218, 235, 0.95);
}

.project-tech-pills span.tech-pill--html {
    background: rgba(232, 122, 50, 0.14);
    border-color: rgba(232, 122, 50, 0.28);
    color: rgba(255, 229, 210, 0.94);
}

.project-tech-pills span.tech-pill--mysql {
    background: rgba(112, 197, 255, 0.14);
    border-color: rgba(112, 197, 255, 0.3);
    color: rgba(224, 246, 255, 0.95);
}

.project-tech-pills span.tech-pill--css {
    background: rgba(64, 119, 255, 0.14);
    border-color: rgba(64, 119, 255, 0.28);
    color: rgba(219, 229, 255, 0.94);
}

.project-tech-pills span.tech-pill--javascript {
    background: rgba(232, 201, 72, 0.14);
    border-color: rgba(232, 201, 72, 0.28);
    color: rgba(255, 246, 199, 0.95);
}

.portfolio-grid-section {
    padding: 20px 0 120px;
    background: #040406;
    color: #e8e8e8;
}

.portfolio-grid-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 16px;
    margin-bottom: 40px;
}

.portfolio-grid-header h2 {
    margin: 0;
    max-width: 720px;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.portfolio-grid-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: #e8e8e8;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.portfolio-grid-more svg {
    width: 18px;
    height: 18px;
}

.portfolio-grid-more:hover,
.portfolio-grid-more:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    outline: none;
}

.portfolio-grid-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.portfolio-grid-item {
    min-width: 0;
}

.portfolio-grid-card {
    position: relative;
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 5px;
    background: #0e0f13;
    color: inherit;
    isolation: isolate;
}

.portfolio-grid-card::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 35%;
    background: linear-gradient(180deg, rgba(4, 4, 6, 0) 0%, rgba(4, 4, 6, 0.5) 65%, rgba(4, 4, 6, 0.7) 100%);
    pointer-events: none;
}


.portfolio-grid-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.portfolio-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.portfolio-grid-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    display: grid;
    gap: 12px;
    max-width: 400px;
}

.portfolio-grid-tag {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.portfolio-grid-content h3 {
    margin: 0;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.portfolio-grid-content p {
    margin: 0;
    max-width: 48rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.65;
}

.portfolio-grid-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: #8ed8a2;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.portfolio-grid-link svg {
    width: 17px;
    height: 17px;
}

.portfolio-grid-card:hover .portfolio-grid-image img,
.portfolio-grid-card:focus-visible .portfolio-grid-image img {
    transform: scale(1.04);
}

.portfolio-grid-card:hover .portfolio-grid-link,
.portfolio-grid-card:focus-visible .portfolio-grid-link {
    color: #b9f5c7;
}

.about-section {
    padding: 120px 0;
    background: #040406;
    color: #e8e8e8;
}

.project-page {
    padding: 160px 0 100px;
    min-height: 100vh;
    background: #040406;
    color: #e8e8e8;
}

.project-page-empty {
    padding: 0;
}

.project-gallery-section {
    display: grid;
    gap: 60px;
}

.project-layout {
    display: grid;
    grid-template-columns: minmax(0, 70%) minmax(0, 30%);
    gap: 60px;
    align-items: start;
}

.project-layout-main,
.project-layout-side {
    display: grid;
    gap: 50px;
    align-self: start;
}

.project-layout-side {
    position: sticky;
    top: 120px;
}


.project-meta-list {
    display: grid;
    gap: 15px;
    padding: 24px;
    border-radius: 10px;
    background: #121212;
}

.project-meta-item {
    display: grid;
    gap: 8px;
}

.project-meta-item + .project-meta-item {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.project-meta-label {
    color: rgba(255, 255, 255, 0.42);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.75px;
}

.project-meta-value {
    margin: 0;
    color: #e8e8e8;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

.project-meta-action {
    justify-self: stretch;
}

.project-meta-action .button {
    width: 100%;
    justify-content: center;
    gap: 5px;
}

.project-tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.project-tech-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 400;
}

.project-gallery-heading-copy {
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
}

.project-gallery-heading-copy h1 {
    margin: 0;
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.project-gallery {
    display: block;
}

.project-gallery-main {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
}

.project-gallery-main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-gallery-main-empty {
    aspect-ratio: 3 / 2;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 26%),
        linear-gradient(150deg, rgba(14, 16, 23, 0.94) 0%, rgba(33, 46, 78, 0.7) 100%);
}

.project-not-found h1 {
    margin: 0 0 18px;
    max-width: 14ch;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.project-not-found p {
    margin: 0;
    max-width: 760px;
    color: #bbbbbb;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
}

.project-description p {
    margin: 0 0 5px;
    color: #FFFFFFA3;
    line-height: 1.85;
    font-weight: 400;
}

.project-description h3 {
    margin: 0 0 10px;
    color: #e8e8e8;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.project-description p:last-child {
    margin-bottom: 0;
}

.project-not-found {
    display: grid;
    gap: 18px;
    justify-items: start;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 30%) minmax(0, 70%);
    gap: 100px;
    align-items: start;
}

.section-label {
    margin: 0 0 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.7);
}

.about-copy {
    display: grid;
}

.about-copy h2 {
    margin: 0;
    max-width: 980px;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.scroll-reveal-text {
    color: rgba(255, 255, 255, 0.34);
}

.scroll-reveal-word {
    color: inherit;
    transition: color 180ms linear;
}

.scroll-reveal-word.is-revealed {
    color: #ffffff;
}

.about-point-list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
}

.about-point {
    display: grid;
    align-content: start;
    gap: 18px;
}

.about-point h3 {
    margin: 0;
    color: #f2f2f2;
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 600;
}

.about-point p {
    margin: 0;
    max-width: 520px;
    color: #FFFFFFA3;
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 400;
}

.about-media {
    display: grid;
    order: -1;
    justify-items: start;

}

.about-media-frame {
    position: relative;
    display: block;
    width: min(100%, 460px);
    min-height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.about-media-frame::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 35%;
    background: linear-gradient(180deg, rgba(4, 4, 6, 0) 0%, rgba(4, 4, 6, 0.5) 65%, rgba(4, 4, 6, 0.7) 100%);
    pointer-events: none;
}

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

.about-media-caption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 2;
    display: grid;
    gap: 6px;
}

.about-media-name {
    color: #f3f3f3;
    font-size: 1.15rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.about-media-role {
    color: #FFFFFFA3;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.about-panel {
    display: grid;
    gap: 16px;
}

.about-item {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.about-item-title {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #f2f2f2;
}

.about-item p {
    margin: 0;
    color: #b8b8b8;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

.about-details-grid {
    display: grid;
    grid-template-columns: 175px minmax(0, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-top: 60px;
    padding: 18px 00px 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;

}

.about-details-heading {
    max-width: 320px;
    display: flex;
    align-items: center;
    padding-right: 6px;
}

.about-details-heading h3 {
    margin: 0;
    text-transform: uppercase;
    color: #FFFFFFA3;
    font-size: 0.8rem;
    line-height: 1.2em;
    font-weight: 500;
   
}

.about-details-content {
    min-height: auto;
}

.about-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.about-tool-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;

    padding: 0 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.about-tool-group:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.about-tool-group h3 {
    display: none;
}

.about-tool-items {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.about-tool-card {
    display: block;
    flex: 0 0 auto;
}

.about-tool-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.about-tool-icon img {
    display: block;
    width: min(100%, 30px);
    height: min(100%, 30px);
    object-fit: contain;
}

.about-tool-icon-dark img {
    filter: brightness(0) invert(1);
}

.about-tool-icon-muted img {
    filter: brightness(0) invert(1);
    opacity: 0.76;
}

.about-tool-label {
    display: none;
}

.why-choose-section {
    display: none;
    padding: 120px 0;
    background: #040406;
    color: #e8e8e8;
}

.why-choose-header {
    display: grid;
    gap: 24px;
    margin-bottom: 56px;
}

.why-choose-header h2 {
    margin: 0;
    max-width: 18ch;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.why-choose-list {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-choose-item {
    display: grid;
    grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.3fr);
    gap: 48px;
    align-items: start;
    padding: 34px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-choose-item h3 {
    margin: 0;
    color: #f1f1f1;
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.why-choose-item p {
    margin: 0;
    max-width: 700px;
    color: #FFFFFFA3;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 400;
}

.testimonials-section {
    padding: 120px 0;
    background: #040406;
    color: #e8e8e8;
}

.testimonials-header {
    display: block;
    gap: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.testimonials-header h2 {
    margin: 0 auto;
    max-width: 18ch;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.testimonials-slider {
    position: relative;
    display: grid;
    gap: 24px;
    min-width: 0;
    overflow: hidden;
}

.testimonials-slider-frame {
    position: relative;
    min-width: 0;
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.testimonials-slider-frame.is-dragging {
    cursor: grabbing;
}

.testimonials-slider-frame::before,
.testimonials-slider-frame::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 10px;
    width: 72px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-slider-frame::before {
    left: 0;
    background: linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0) 100%);
}

.testimonials-slider-frame::after {
    right: 0;
    background: linear-gradient(270deg, #050505 0%, rgba(5, 5, 5, 0) 100%);
}

.testimonials-track {
    display: flex;
    gap: 20px;
    width: 100%;
    min-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-inline: var(--testimonial-side-peek, 0px);
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--testimonial-side-peek, 0px);
    scroll-behavior: smooth;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    will-change: auto;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-slide {
    flex: 0 0 var(--testimonial-slide-width, 62%);
    width: var(--testimonial-slide-width, 62%);
    max-width: var(--testimonial-slide-width, 62%);
    min-width: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.testimonial-card {
    display: grid;
    align-content: space-between;
    gap: 20px;
    min-height: 100%;
    min-width: 0;
    padding: 50px 40px;
    border: 0;
    border-radius: 10px;
    background: #121212;
}

.testimonial-body {
    display: grid;
    gap: 30px;
}

.testimonial-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    min-width: 0;
    flex-wrap: wrap;
}

.testimonial-stars {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f4c95d;
}

.testimonial-star {
    position: relative;
    display: inline-flex;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.testimonial-star svg {
    width: 18px;
    height: 18px;
}

.testimonial-star-base {
    color: rgba(244, 201, 93, 0.35);
}

.testimonial-star-fill {
    position: absolute;
    inset: 0 auto 0 0;
    overflow: hidden;
    color: #f4c95d;
}

.testimonial-source-link-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    color: rgba(255, 255, 255, 0.56);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 2px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
}

.testimonial-source-link-inline svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

.testimonial-source-link-inline:hover,
.testimonial-source-link-inline:focus-visible {
    color: #fff;
}

.testimonial-quote {
    margin: 0;
    color: #FFFFFFA3;
    font-size: 1.35rem;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.testimonial-more {
    display: inline;
    margin-left: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font: inherit;
    font-size: 0.92em;
    font-weight: 600;
    letter-spacing: -0.02em;
    cursor: pointer;
}

.testimonial-more:hover,
.testimonial-more:focus-visible {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.testimonial-meta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding-top: 60px;
}

.testimonial-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f1f1f1;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
    flex: 0 0 auto;
    overflow: hidden;
}

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

.testimonial-meta-copy {
    display: grid;
    gap: 5px;
}

.testimonial-client-name {
    color: #e8e8e8;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.testimonial-country {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.testimonials-autoplay {
    display: flex;
    justify-content: center;
}

.testimonials-autoplay-toggle {
    --ring-progress: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #f1f1f1;
    cursor: pointer;
}

.testimonials-autoplay-ring {
    width: 60px;
    height: 60px;
    transform: rotate(90deg) scaleX(-1);
}

.testimonials-autoplay-ring-track,
.testimonials-autoplay-ring-progress {
    fill: none;
    stroke-width: 4;
}

.testimonials-autoplay-ring-track {
    stroke: rgba(255, 255, 255, 0.12);
}

.testimonials-autoplay-ring-progress {
    stroke: rgba(255, 255, 255, 0.72);
    stroke-linecap: round;
    stroke-dasharray: 176;
    stroke-dashoffset: calc(176 * (1 - var(--ring-progress)));
    transition: stroke-dashoffset 0.12s linear;
}

.testimonials-autoplay-icon {
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.testimonials-autoplay-icon[hidden] {
    display: none;
}

.testimonials-autoplay-icon svg {
    width: 20px;
    height: 20px;
}

body.has-review-modal {
    overflow: hidden;
}

.review-modal {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: grid;
    place-items: center;
    padding: 24px;
}

.review-modal[hidden] {
    display: none;
}

.review-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 12, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.review-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
    padding-top: 56px;
}

.review-modal-card {
    gap: 24px;
    padding: 50px 40px;
    background: #121212;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.review-modal-quote {
    font-size: 1.35rem;
}

.review-modal-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.86);
    cursor: pointer;
}

.review-modal-close svg {
    width: 18px;
    height: 18px;
}

.contact-section {
    padding: 120px 0 100px;
    background: #040406;
    color: #e8e8e8;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 640px);
    gap: 60px;
    align-items: start;
}

.contact-copy h2 {
    margin: 0;
    max-width: 15ch;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.contact-intro {
    margin: 18px 0 0;
    max-width: 520px;
    color: #FFFFFFA3;
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 400;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 32px;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: fit-content;
    padding: 0 0 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-method:hover,
.contact-method:focus-visible {
    border-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.contact-method-text {
    font-size: clamp(1rem, 1.45vw, 1.25rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-method svg {
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.48);
    transition: color 0.2s ease;
}

.contact-method:hover svg,
.contact-method:focus-visible svg {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-card {
    width: 100%;
    justify-self: stretch;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #121212;
}

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

.contact-form-feedback[hidden] {
    display: none;
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.contact-form-message {
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.6;
}

.contact-form-message-success {
    border: 1px solid rgba(86, 200, 120, 0.2);
    background: rgba(37, 91, 51, 0.28);
    color: #dbffe3;
}

.contact-form-message-error {
    border: 1px solid rgba(217, 90, 90, 0.2);
    background: rgba(107, 39, 39, 0.28);
    color: #ffe3e3;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-field span,
.contact-field legend {
    color: #f0f0f0;
    font-size: 14px;
    font-weight: 500;
}

.contact-choice-group {
    padding: 0;
    margin: 0;
    border: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-choice-group legend {
    width: 100%;
    margin-bottom: 8px;
}

.contact-choice {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: auto;
    padding: 0;
    color: #d9d9de;
    cursor: pointer;
    position: relative;
}

.contact-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-choice-box {
    position: relative;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.03);
}

.contact-choice-box::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4px;
    height: 8px;
    border: solid #0b0b0d;
    border-width: 0 2px 2px 0;
    opacity: 0;
    transform: translate(-50%, -58%) rotate(45deg);
}

.contact-choice-text {
    line-height: 1.5;
}

.contact-choice:has(input:checked) {
    color: #eef9f1;
}

.contact-choice:has(input:checked) .contact-choice-box {
    border-color: #8ed8a2;
    background: #8ed8a2;
}

.contact-choice:has(input:checked) .contact-choice-box::after {
    opacity: 1;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    color: #f1f1f1;
    font: inherit;
}

.contact-field input {
    min-height: 54px;
    padding: 0 16px;
}

.contact-field textarea {
    min-height: 170px;
    padding: 16px;
    resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #8d8d94;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
}

.contact-select {
    position: relative;
}

.contact-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    color: #8d8d94;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.contact-select.is-open .contact-select-trigger,
.contact-select-trigger:focus-visible {
    outline: none;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
}

.contact-select.has-value .contact-select-trigger {
    color: #f1f1f1;
}

.contact-select-arrow {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-right: 1.5px solid rgba(255, 255, 255, 0.72);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.72);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
}

.contact-select.is-open .contact-select-arrow {
    transform: scaleY(-1) rotate(45deg) translateY(-2px);
}

.contact-select-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 20;
    display: grid;
    gap: 4px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: #17171b;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.28);
}

.contact-select-menu[hidden] {
    display: none;
}

.contact-select-option {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #d7d7dc;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.contact-select-option:hover,
.contact-select-option:focus-visible,
.contact-select-option.is-selected {
    outline: none;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.contact-form-action {
    margin-top: 4px;
    width: 100%;
}

.contact-form-action .button {
    width: 100%;
    gap: 10px;
    justify-content: center;
}

.contact-form-action .button:disabled,
.contact-form-action .button.is-loading {
    opacity: 0.7;
    cursor: wait;
}

.contact-form-action .button svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

.contact-note {
    margin: 0;
    color: #a8a8ae;
    line-height: 1.7;
    font-size: 14px;
}

.contact-note a {
    color: #d8d8dc;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.site-footer {
    position: relative;
    min-height: 100vh;
    padding: 80px 0 30px;
    border-top: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.72) 100%),
        url('../images/footer bg.jpg') center center / cover no-repeat;
    color: #d8d8d8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.site-footer > .container {
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: start;
    padding-bottom: 28px;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    display: block;
    height: 42px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    margin: 0;
    color: #a9a9af;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, auto));
    gap: 36px;
}

.footer-column {
    display: grid;
    gap: 12px;
}

.footer-title {
    margin-bottom: 4px;
    color: #f1f1f1;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.footer-column a {
    color: #b8b8bd;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-external-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.footer-external-link svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 18px;
}

.footer-bottom p {
    margin: 0;
    color: #8f8f95;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 1080px) {
    .main-nav,
    .header-actions {
        display: none;
    }

    .mobile-nav-toggle {
        display: inline-flex;
    }

    .mobile-nav-panel {
        display: block;
    }

    .about-grid,
    .about-details-grid,
    .testimonials-header,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .portfolio-grid-list {
        grid-template-columns: 1fr;
    }

    .portfolio-grid-header {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .portfolio-grid-more {
        width: fit-content;
    }

    .about-point-list {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .testimonials-header {
        margin-bottom: 40px;
    }

    .about-media {
        place-items: center;
        margin-top: 0;
    }

    .about-tools-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-details-grid {
        gap: 24px;
        padding: 24px;
    }

    .about-details-heading {
        padding-right: 0;
    }

    .about-tool-group {
        min-height: 88px;
        padding: 0 20px;
    }

    .about-tool-group:nth-child(odd) {
        border-left: 0;
    }

    .why-choose-item {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-methods,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 720px) {
    body {
        background: #040406;
    }

    .testimonials-slider-frame::before,
    .testimonials-slider-frame::after {
        width: 28px;
    }

    .testimonials-slider-frame.is-mobile-slider {
        cursor: auto;
        touch-action: pan-x;
    }

    .testimonials-slider-frame.is-mobile-slider::before,
    .testimonials-slider-frame.is-mobile-slider::after {
        display: none;
    }

    .testimonials-slider-frame.is-mobile-slider .testimonials-track {
        scroll-padding-inline: 0;
        padding-inline: 0;
    }

    .container {
        width: min(calc(100% - 34px), var(--container));
    }

    .site-header {
        padding: 16px 0;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
    }

    .brand-logo {
        height: 40px;
        max-width: 170px;
    }

    .hero-section {
        min-height: 100vh;
        height: 100vh;
        padding: 140px 0 60px;
        align-items: flex-end;
        background: #040406 url('../images/mobile hero bg.jpg') center center / cover no-repeat;
    }

    .hero-content h1 {
        margin-top: 18px;
        font-size: 2.2rem;
    }

    .hero-text {
        font-size: 1rem;
        line-height: 1.72;
    }

    .portfolio-section,
    .portfolio-grid-section,
    .about-section,
    .why-choose-section,
    .testimonials-section,
    .contact-section {
        padding: 80px 0;
    }

    .portfolio-grid-header h2,
    .project-gallery-heading-copy h1,
    .project-not-found h1,
    .about-copy h2,
    .why-choose-header h2,
    .testimonials-header h2,
    .contact-copy h2 {
        font-size: 2rem;
    }

    .project-not-found p,
    .contact-intro {
        font-size: 1rem;
        line-height: 1.75;
    }

    .portfolio-grid-content {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .portfolio-grid-content h3 {
        font-size: 1.1rem;
    }

    .portfolio-grid-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-details-grid {
        gap: 36px;
    }

    .about-details-heading {
        max-width: none;
    }

    .about-details-heading h3 {
        font-size: 1.4rem;
    }

    .about-tools-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-tool-group {
        min-height: auto;
        padding: 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding-top: 20px;
    }

    .about-tool-group:first-child {
        border-left: 0;
        border-top: 0;
        padding-top: 0;
    }

    .why-choose-header {
        margin-bottom: 36px;
    }

    .why-choose-item {
        padding: 24px 0;
    }

    .why-choose-item h3 {
        font-size: 1.25rem;
    }

    .why-choose-item p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .testimonials-track {
        gap: 16px;
    }

    .testimonial-slide {
        flex-basis: 100%;
        max-width: 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-meta {
        padding-top: 30px;
    }

    .testimonial-quote,
    .review-modal-quote {
        font-size: 1.1rem;
    }

    .review-modal {
        padding: 16px;
    }

    .review-modal-card {
        padding: 28px 22px;
    }

    .review-modal-dialog {
        padding-top: 52px;
    }

    .project-page {
        padding: 130px 0 80px;
    }

    .project-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .project-meta-list {
        padding: 20px;
    }

    .contact-form-card,
    .about-item {
        padding: 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-logo {
        height: 36px;
    }
}
