:root {
    --of-ink: #111827;
    --of-muted: #64748b;
    --of-line: #e5e7eb;
    --of-surface: #f6f8f8;
    --of-accent: #006d77;
    --of-accent-dark: #004f57;
    --of-dark: #101b20;
}

.of-hero {
    padding: 110px 0 90px;
    background:
        radial-gradient(circle at 75% 25%, rgba(0,109,119,.10), transparent 30%),
        #fff;
}

.of-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 90px;
    align-items: center;
}

.of-eyebrow,
.of-section-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    color: var(--of-accent);
}

.of-hero h1 {
    margin: 24px 0 28px;
    font-size: clamp(64px, 8vw, 118px);
    line-height: .84;
    letter-spacing: -.065em;
    font-weight: 700;
    color: var(--of-ink);
}

.of-hero h1 span {
    color: var(--of-accent);
}

.of-hero-lead {
    max-width: 650px;
    font-size: 20px;
    line-height: 1.75;
    color: var(--of-muted);
}

.of-hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.of-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 8px;
    font-weight: 700;
    transition: .2s ease;
}

.of-btn-primary {
    color: #fff !important;
    background: var(--of-accent);
}

.of-btn-primary:hover {
    background: var(--of-accent-dark);
    transform: translateY(-2px);
}

.of-btn-secondary {
    border: 1px solid var(--of-line);
    color: var(--of-ink) !important;
    background: #fff;
}

.of-btn-secondary:hover {
    border-color: var(--of-ink);
}

.of-hero-panel {
    background: var(--of-dark);
    color: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(15,23,42,.18);
}

.of-panel-top,
.of-panel-footer {
    display: flex;
    justify-content: space-between;
    padding: 18px 22px;
    font-size: 11px;
    letter-spacing: .12em;
    color: #94a3b8;
}

.of-panel-top {
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.of-panel-footer {
    border-top: 1px solid rgba(255,255,255,.08);
}

.of-status {
    color: #9ee6d7;
}

.of-status i {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 7px;
    border-radius: 50%;
    background: #5eead4;
}

.of-panel-body {
    padding: 36px 22px;
}

.of-code-line {
    display: grid;
    grid-template-columns: 45px 1fr;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.of-code-line:last-child {
    border-bottom: 0;
}

.of-code-line span {
    color: #64748b;
    font-family: monospace;
}

.of-code-line strong {
    font-size: 15px;
    font-weight: 500;
    color: #e2e8f0;
}

.of-topics {
    border-top: 1px solid var(--of-line);
    border-bottom: 1px solid var(--of-line);
}

.of-topic-list {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    overflow-x: auto;
}

.of-topic-list span {
    white-space: nowrap;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    color: #475569;
}

.of-section {
    padding: 120px 0;
}

.of-section-heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 70px;
}

.of-section-heading h2,
.of-project-box h2 {
    margin: 15px 0 0;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -.045em;
    color: var(--of-ink);
}

.of-section-heading > p,
.of-project-copy p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--of-muted);
}

.of-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--of-line);
}

.of-feature-card {
    position: relative;
    min-height: 340px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--of-line);
    color: inherit !important;
    transition: .25s ease;
}

.of-feature-card:last-child {
    border-right: 0;
}

.of-feature-card:hover {
    background: var(--of-surface);
}

.of-card-number {
    font-family: monospace;
    color: #94a3b8;
}

.of-feature-card h3 {
    margin-bottom: 16px;
    font-size: 32px;
    color: var(--of-ink);
}

.of-feature-card p {
    margin: 0;
    line-height: 1.7;
    color: var(--of-muted);
}

.of-card-arrow {
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 25px;
    color: var(--of-accent);
}

.of-project-section {
    padding: 20px 0 120px;
}

.of-project-box {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
    padding: 75px;
    border-radius: 20px;
    background: var(--of-surface);
}

.of-project-copy {
    align-self: end;
}

.of-text-link {
    display: inline-block;
    margin-top: 20px;
    font-weight: 700;
    color: var(--of-accent) !important;
}

.of-text-link span {
    margin-left: 8px;
}

.of-community {
    padding: 130px 0;
    background: var(--of-dark);
}

.of-community-inner {
    max-width: 900px;
}

.of-community h2 {
    margin: 25px 0 35px;
    font-size: clamp(64px, 8vw, 112px);
    line-height: .9;
    letter-spacing: -.06em;
    color: #fff;
}

.of-community h2 span {
    color: #5eead4;
}

.of-community p {
    max-width: 720px;
    font-size: 19px;
    line-height: 1.8;
    color: #aebbc5;
}

.of-coming {
    display: inline-block;
    margin-top: 35px;
    padding: 10px 15px;
    border: 1px solid rgba(94,234,212,.3);
    border-radius: 6px;
    color: #5eead4;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
}

.of-shop {
    padding: 120px 0;
}

.of-shop-types {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.of-shop-types span {
    padding: 13px 18px;
    border: 1px solid var(--of-line);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .of-hero {
        padding: 70px 0;
    }

    .of-hero-grid,
    .of-section-heading,
    .of-project-box {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .of-feature-grid {
        grid-template-columns: 1fr;
    }

    .of-feature-card {
        min-height: 250px;
        border-right: 0;
        border-bottom: 1px solid var(--of-line);
    }

    .of-project-box {
        padding: 45px 30px;
    }

    .of-topic-list {
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .of-hero h1 {
        font-size: 64px;
    }

    .of-hero-lead {
        font-size: 17px;
    }

    .of-section,
    .of-shop {
        padding: 80px 0;
    }

    .of-community {
        padding: 90px 0;
    }

    .of-community h2 {
        font-size: 62px;
    }
}

/* =========================================================
   OZGUR FIDAN — HEADER V1
   ========================================================= */

body {
    color: var(--of-ink);
    background: #fff;
}

.header {
    position: relative;
    z-index: 100;
    background: rgba(255,255,255,.96);
    border-top: 3px solid var(--of-accent);
    border-bottom: 1px solid rgba(15,23,42,.07);
}

.header.sticky-bar.stick {
    background: rgba(255,255,255,.97);
    box-shadow: 0 10px 35px rgba(15,23,42,.06);
    backdrop-filter: blur(14px);
}

.header .main-header {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .header-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.header .header-logo {
    margin-right: 55px;
}

.header .header-logo img {
    max-height: 42px !important;
    width: auto;
}

.header .header-nav {
    flex: 1;
}

.header .main-menu {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    padding: 0;
}

.header .main-menu > li {
    position: relative;
}

.header .main-menu > li > a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 80px;
    padding: 0 15px;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    transition: color .2s ease;
}

.header .main-menu > li > a::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 17px;
    height: 2px;
    background: var(--of-accent);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .25s ease;
}

.header .main-menu > li:hover > a,
.header .main-menu > li.active > a {
    color: var(--of-accent);
}

.header .main-menu > li:hover > a::after,
.header .main-menu > li.active > a::after {
    transform: scaleX(1);
    transform-origin: left center;
}

/* Dropdown */

.header .main-menu .sub-menu {
    border: 1px solid var(--of-line);
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(15,23,42,.12);
    overflow: hidden;
}

.header .main-menu .sub-menu li a {
    font-size: 14px;
    font-weight: 500;
}

/* Right side */

.header .header-right {
    margin-left: 25px;
}

/* Mobile */

@media (max-width: 1199px) {
    .header .main-header {
        min-height: 72px;
    }

    .header .header-logo {
        margin-right: 0;
    }
}

/* OZGUR FIDAN BRAND */

.of-brand-link {
    display: inline-flex !important;
    align-items: center;
    gap: 11px;
    text-decoration: none !important;
}

.of-brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;

    background: var(--of-dark);
    color: #fff;

    border-radius: 9px;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.03em;
}

.of-brand-name {
    display: flex;
    flex-direction: column;
    line-height: .92;
}

.of-brand-name strong {
    color: var(--of-ink);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .075em;
}

.of-brand-name strong:last-child {
    color: var(--of-accent);
}

.of-brand-link:hover .of-brand-mark {
    background: var(--of-accent);
}

@media (max-width: 575px) {
    .of-brand-mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .of-brand-name strong {
        font-size: 12px;
    }
}

/* =========================================================
   OZGUR FIDAN — LANGUAGE SWITCHER
   ========================================================= */

.of-language-switcher {
    display: flex;
    align-items: center;
    margin-right: 18px;
}

.of-language-switcher ul {
    display: flex !important;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

.of-language-switcher li {
    margin: 0 !important;
    padding: 0 !important;
}

.of-language-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 9px;
    border-radius: 8px;
    border: 1px solid transparent;

    color: var(--of-muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .06em;
    text-decoration: none !important;

    transition: all .2s ease;
}

.of-language-switcher a:hover {
    color: var(--of-primary);
    background: var(--of-primary-soft);
}

.of-language-switcher li.active a,
.of-language-switcher a.active {
    color: #fff;
    background: var(--of-primary);
    border-color: var(--of-primary);
}

.of-language-switcher img {
    display: none !important;
}

.of-language-switcher .dropdown-toggle::after {
    display: none !important;
}

.of-header-search {
    margin-right: 0 !important;
}

.of-header-search .search-post {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    border-radius: 9px;
    color: var(--of-ink);

    transition: all .2s ease;
}

.of-header-search .search-post:hover {
    color: var(--of-primary);
    background: var(--of-primary-soft);
}

.of-header-search svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 991px) {
    .of-language-switcher {
        margin-right: 10px;
    }

    .of-language-switcher a {
        min-width: 30px;
        height: 30px;
        padding: 0 7px;
        font-size: 11px;
    }
}

/* OZGUR FIDAN — BRAND COLOR REFINEMENT */

:root {
    --of-primary: #086B78;
    --of-primary-dark: #064F59;
    --of-primary-soft: #E3F1F2;

    --of-accent: #086B78;
    --of-accent-dark: #064F59;

    --of-mint: #39B9B3;
    --of-ocean: #102F39;

    --of-ink: #101827;
    --of-text: #3D4C5C;
    --of-muted: #718096;

    --of-background: #F7FAFA;
    --of-surface: #F0F5F5;
    --of-line: #E1E8E9;
    --of-border: #E1E8E9;

    --of-dark: #0E2027;
    --of-dark-soft: #162D35;
}

.of-language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 18px;
    font-size: 14px;
    font-weight: 600;
}

.of-lang-link {
    color: #101827;
    text-decoration: none;
    transition: opacity .2s ease;
}

.of-lang-link:hover {
    color: #086B78;
}

.of-lang-separator {
    color: #A0A8B2;
}

.of-header-search {
    display: flex !important;
    align-items: center;
}

.of-lang-link.active {
    color: #086B78;
    font-weight: 800;
}

.of-lang-link:not(.active) {
    opacity: .55;
}

.of-lang-link:not(.active):hover {
    opacity: 1;
}

.of-lang-separator {
    opacity: .35;
}

/* Homepage hero portrait */
.of-hero-photo {
    position: relative;
    height: 310px;
    overflow: hidden;
    background: #17262d;
}

.of-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    display: block;
}

.of-hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(16, 27, 32, 0.02) 35%,
        rgba(16, 27, 32, 0.9) 100%
    );
}

.of-photo-overlay {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.of-photo-overlay span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    color: #9ee6d7;
}

.of-photo-overlay strong {
    max-width: 210px;
    text-align: right;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 991px) {
    .of-hero-photo {
        height: 420px;
    }
}

@media (max-width: 575px) {
    .of-hero-photo {
        height: 320px;
    }

    .of-photo-overlay {
        left: 18px;
        right: 18px;
        bottom: 16px;
    }

    .of-photo-overlay strong {
        font-size: 13px;
    }
}

/* Homepage hero portrait */
.of-hero-photo {
    position: relative;
    height: 310px;
    overflow: hidden;
    background: #17262d;
}

.of-hero-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}

.of-hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(16, 27, 32, 0.02) 35%,
        rgba(16, 27, 32, 0.90) 100%
    );
}

.of-photo-overlay {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.of-photo-overlay span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    color: #9ee6d7;
}

.of-photo-overlay strong {
    max-width: 210px;
    text-align: right;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 991px) {
    .of-hero-photo {
        height: 420px;
    }
}

@media (max-width: 575px) {
    .of-hero-photo {
        height: 320px;
    }

    .of-photo-overlay {
        left: 18px;
        right: 18px;
        bottom: 16px;
    }

    .of-photo-overlay strong {
        font-size: 13px;
    }
}

/* =========================================================
   OZGUR FIDAN — SERVICES
   ========================================================= */

.of-page-hero {
    padding: 110px 0 90px;
    background:
        radial-gradient(circle at 82% 18%, rgba(0,109,119,.10), transparent 28%),
        #fff;
    border-bottom: 1px solid var(--of-line);
}

.of-page-hero h1 {
    max-width: 950px;
    margin: 22px 0 30px;
    font-size: clamp(58px, 7vw, 104px);
    line-height: .92;
    letter-spacing: -.055em;
    color: var(--of-ink);
}

.of-page-hero h1 span {
    color: var(--of-accent);
}

.of-page-hero p {
    max-width: 760px;
    margin: 0;
    font-size: 20px;
    line-height: 1.75;
    color: var(--of-muted);
}

.of-services {
    padding: 100px 0;
    background: #fff;
}

.of-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--of-line);
    border-left: 1px solid var(--of-line);
}

.of-service-card {
    position: relative;
    min-height: 330px;
    padding: 42px;
    border-right: 1px solid var(--of-line);
    border-bottom: 1px solid var(--of-line);
    background: #fff;
    transition: transform .2s ease, background .2s ease;
}

.of-service-card:hover {
    background: var(--of-surface);
    transform: translateY(-2px);
}

.of-service-no {
    display: block;
    margin-bottom: 48px;
    font-family: monospace;
    font-size: 13px;
    color: var(--of-accent);
}

.of-service-card h2 {
    margin: 0 0 18px;
    font-size: 31px;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: var(--of-ink);
}

.of-service-card p {
    max-width: 540px;
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: var(--of-muted);
}

.of-service-tag {
    position: absolute;
    right: 36px;
    bottom: 30px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--of-accent);
}

.of-service-cta {
    padding: 0 0 110px;
    background: #fff;
}

.of-service-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px 60px;
    border-radius: 18px;
    background: var(--of-dark);
}

.of-service-cta-box h2 {
    margin: 12px 0 0;
    font-size: clamp(40px, 5vw, 66px);
    letter-spacing: -.045em;
    color: #fff;
}

.of-service-cta-box .of-section-kicker {
    color: #9ee6d7;
}

@media (max-width: 991px) {
    .of-page-hero {
        padding: 75px 0 65px;
    }

    .of-services {
        padding: 70px 0;
    }

    .of-services-grid {
        grid-template-columns: 1fr;
    }

    .of-service-card {
        min-height: 290px;
    }

    .of-service-cta-box {
        align-items: flex-start;
        flex-direction: column;
        padding: 42px 36px;
    }
}

@media (max-width: 575px) {
    .of-page-hero h1 {
        font-size: 56px;
    }

    .of-page-hero p {
        font-size: 17px;
    }

    .of-service-card {
        min-height: 300px;
        padding: 32px 26px;
    }

    .of-service-card h2 {
        font-size: 27px;
    }

    .of-service-tag {
        right: 24px;
        bottom: 24px;
    }
}

/* =========================================================
   OZGUR FIDAN — PROJECTS
   ========================================================= */

.of-project-section {
    padding: 110px 0;
    background: #fff;
}

.of-project-section .of-section-heading {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 50px;
}

.of-project-section .of-section-heading h2 {
    margin: 18px 0 0;
    font-size: clamp(48px, 6vw, 86px);
    line-height: .95;
    letter-spacing: -.05em;
    color: var(--of-ink);
}

.of-project-section .of-section-heading h2 span {
    color: var(--of-accent);
}

.of-project-section .of-section-heading p {
    margin: 0;
    max-width: 620px;
    font-size: 18px;
    line-height: 1.75;
    color: var(--of-muted);
}

.of-project-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.of-project-filters button {
    border: 1px solid var(--of-line);
    background: #fff;
    color: var(--of-muted);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

.of-project-filters button:hover,
.of-project-filters button.active {
    background: var(--of-dark);
    border-color: var(--of-dark);
    color: #fff;
}

.of-project-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.of-project-card {
    position: relative;
    min-height: 340px;
    padding: 34px;
    border: 1px solid var(--of-line);
    border-radius: 18px;
    background: #fff;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.of-project-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,109,119,.35);
    box-shadow: 0 24px 60px rgba(15,23,42,.08);
}

.of-project-card.is-hidden {
    display: none;
}

.of-project-card-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--of-accent);
}

.of-project-card h3 {
    margin: 0 0 18px;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: var(--of-ink);
}

.of-project-card p {
    max-width: 560px;
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: var(--of-muted);
}

.of-project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: absolute;
    left: 34px;
    bottom: 30px;
}

.of-project-meta span {
    padding: 6px 10px;
    border-radius: 6px;
    background: var(--of-surface);
    font-size: 11px;
    font-weight: 600;
    color: var(--of-muted);
}

.of-project-more {
    margin-top: 34px;
    text-align: right;
}

@media (max-width: 991px) {
    .of-project-section {
        padding: 80px 0;
    }

    .of-project-section .of-section-heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .of-project-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .of-project-card {
        min-height: 360px;
        padding: 28px 24px;
    }

    .of-project-card-top {
        margin-bottom: 44px;
    }

    .of-project-meta {
        left: 24px;
        bottom: 24px;
    }
}

/* =========================================================
   OZGUR FIDAN — COMMUNITY + SHOP
   ========================================================= */

.of-community {
    padding: 120px 0;
    background: var(--of-dark);
}

.of-community-head,
.of-shop-head {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 50px;
}

.of-community h2,
.of-shop h2 {
    margin: 18px 0 0;
    font-size: clamp(54px, 7vw, 96px);
    line-height: .92;
    letter-spacing: -.055em;
}

.of-community h2 {
    color: #fff;
}

.of-community h2 span,
.of-shop h2 span {
    color: var(--of-accent);
}

.of-community-intro p,
.of-shop-intro p {
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.75;
}

.of-community-intro p {
    color: #aebbc5;
}

.of-community-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid rgba(94,234,212,.28);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    color: #5eead4;
}

.of-community-status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5eead4;
    box-shadow: 0 0 0 5px rgba(94,234,212,.08);
}

.of-community-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.of-community-card {
    min-height: 270px;
    padding: 34px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    background: rgba(255,255,255,.025);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.of-community-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,.045);
    border-color: rgba(94,234,212,.22);
}

.of-community-no,
.of-shop-no {
    display: block;
    margin-bottom: 46px;
    font-family: monospace;
    font-size: 12px;
    color: var(--of-accent);
}

.of-community-card h3 {
    margin: 0 0 14px;
    font-size: 28px;
    color: #fff;
}

.of-community-card p {
    margin: 0;
    max-width: 500px;
    font-size: 15px;
    line-height: 1.75;
    color: #9aa8b3;
}

.of-shop {
    padding: 120px 0;
    background: #fff;
}

.of-shop h2 {
    color: var(--of-ink);
}

.of-shop-intro p {
    color: var(--of-muted);
}

.of-shop-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--of-line);
    border-left: 1px solid var(--of-line);
}

.of-shop-card {
    position: relative;
    min-height: 290px;
    padding: 34px;
    border-right: 1px solid var(--of-line);
    border-bottom: 1px solid var(--of-line);
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.of-shop-card:hover {
    background: var(--of-surface);
    transform: translateY(-2px);
}

.of-shop-type {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--of-accent);
}

.of-shop-card h3 {
    margin: 0 0 14px;
    font-size: 30px;
    letter-spacing: -.03em;
    color: var(--of-ink);
}

.of-shop-card p {
    max-width: 480px;
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: var(--of-muted);
}

.of-shop-arrow {
    position: absolute;
    right: 28px;
    bottom: 24px;
    font-size: 24px;
    color: var(--of-accent);
}

@media (max-width: 991px) {
    .of-community-head,
    .of-shop-head {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .of-community-grid,
    .of-shop-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .of-community,
    .of-shop {
        padding: 80px 0;
    }

    .of-community-card,
    .of-shop-card {
        min-height: 250px;
        padding: 28px 24px;
    }

    .of-community h2,
    .of-shop h2 {
        font-size: 54px;
    }
}

/* =========================
   ÖZGÜR FİDAN FOOTER
========================= */

.of-footer {
    background: #0e2027;
    color: #ffffff;
    margin-top: 80px;
    padding: 72px 0 24px;
}

.of-footer-main {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 64px;
    padding-bottom: 56px;
}

.of-footer-logo {
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-decoration: none;
    margin-bottom: 28px;
}

.of-footer-brand h2 {
    color: #ffffff;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.05em;
    margin: 0 0 28px;
}

.of-footer-brand p,
.of-footer-connect p {
    color: #aebdc3;
    font-size: 15px;
    line-height: 1.8;
    max-width: 420px;
    margin: 0;
}

.of-footer-label {
    display: block;
    color: #39b9b3;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 22px;
}

.of-footer-nav nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.of-footer-nav a {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.of-footer-nav a:hover {
    color: #39b9b3;
    transform: translateX(4px);
}

.of-footer-connect h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
}

.of-footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding-bottom: 7px;
    border-bottom: 1px solid #39b9b3;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.of-footer-contact:hover {
    color: #39b9b3;
}

.of-footer-contact span {
    transition: transform 0.2s ease;
}

.of-footer-contact:hover span {
    transform: translateX(5px);
}

.of-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 30px;
}

.of-footer-social a {
    color: #aebdc3;
    font-size: 13px;
    text-decoration: none;
}

.of-footer-social a:hover {
    color: #ffffff;
}

.of-footer-bottom {
    min-height: 64px;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 22px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    color: #84979f;
    font-size: 13px;
}

.of-footer-signature {
    text-align: center;
}

.of-footer-legal {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.of-footer-legal a {
    color: #84979f;
    text-decoration: none;
}

.of-footer-legal a:hover {
    color: #ffffff;
}

@media (max-width: 991px) {
    .of-footer {
        padding-top: 56px;
    }

    .of-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .of-footer-brand {
        grid-column: 1 / -1;
    }

    .of-footer-bottom {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .of-footer-signature {
        text-align: left;
    }

    .of-footer-legal {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .of-footer {
        margin-top: 56px;
        padding: 48px 0 24px;
    }

    .of-footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 42px;
    }

    .of-footer-brand {
        grid-column: auto;
    }

    .of-footer-brand h2 {
        font-size: 48px;
    }

    .of-footer-bottom {
        gap: 12px;
    }
}


/* =========================
   MOBILE FINAL PASS
========================= */

@media (max-width: 991px) {
    .of-hero-grid,
    .of-project-grid,
    .of-community-grid,
    .of-shop-grid {
        grid-template-columns: 1fr;
    }

    .of-hero-copy {
        padding-right: 0;
    }

    .of-hero-visual {
        margin-top: 24px;
    }

    .of-project-card,
    .of-community-card,
    .of-shop-card {
        min-height: auto;
    }

    .of-project-filters {
        flex-wrap: wrap;
    }

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

@media (max-width: 767px) {
    .of-hero {
        padding-top: 48px;
        padding-bottom: 56px;
    }

    .of-hero h1 {
        font-size: clamp(52px, 15vw, 78px);
        line-height: 0.94;
    }

    .of-hero-lead {
        font-size: 17px;
        line-height: 1.7;
    }

    .of-hero-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .of-hero-actions a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .of-project-section,
    .of-community,
    .of-shop {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .of-project-card,
    .of-community-card,
    .of-shop-card {
        padding: 24px;
    }

    .of-project-filters {
        gap: 8px;
    }

    .of-project-filters button {
        flex: 1 1 auto;
        min-width: 110px;
    }

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

    .of-footer-brand h2 {
        font-size: 46px;
    }
}

@media (max-width: 575px) {
    .of-hero h1 {
        font-size: 50px;
    }

    .of-hero-eyebrow,
    .of-section-kicker,
    .of-footer-label {
        font-size: 11px;
    }

    .of-project-section h2,
    .of-community h2,
    .of-shop h2 {
        font-size: 44px;
        line-height: 1;
    }

    .of-project-card h3,
    .of-community-card h3,
    .of-shop-card h3 {
        font-size: 22px;
    }

    .of-footer {
        margin-top: 40px;
    }
}


/* =========================
   ABOUT PAGE
========================= */

.of-about-hero {
    padding: 96px 0 88px;
    background: #f7fafa;
}

.of-about-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
    align-items: center;
}

.of-about-copy h1 {
    margin: 18px 0 28px;
    font-size: clamp(56px, 6vw, 92px);
    line-height: 0.94;
    letter-spacing: -0.055em;
    color: #101827;
}

.of-about-copy h1 span {
    color: #086b78;
}

.of-about-copy p {
    max-width: 720px;
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.8;
    color: #526170;
}

.of-about-photo {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    background: #102f39;
}

.of-about-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
}

.of-about-photo-note {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 20px 22px;
    background: rgba(14, 32, 39, 0.88);
    backdrop-filter: blur(10px);
}

.of-about-photo-note strong,
.of-about-photo-note span {
    display: block;
}

.of-about-photo-note strong {
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 0.14em;
}

.of-about-photo-note span {
    margin-top: 5px;
    color: #8fd7d3;
    font-size: 14px;
}

.of-about-story {
    padding: 96px 0;
    background: #ffffff;
}

.of-about-story-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.of-about-story h2,
.of-about-section-head h2,
.of-about-principles-title h2 {
    margin: 16px 0 0;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -0.045em;
    color: #101827;
}

.of-about-story-content p {
    margin: 0 0 22px;
    font-size: 18px;
    line-height: 1.85;
    color: #526170;
}

.of-about-fields {
    padding: 96px 0;
    background: #f0f5f5;
}

.of-about-section-head {
    max-width: 760px;
    margin-bottom: 52px;
}

.of-about-fields-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #dfe7e8;
}

.of-about-field {
    min-height: 280px;
    padding: 34px;
    background: #ffffff;
}

.of-about-field > span {
    display: block;
    margin-bottom: 54px;
    color: #086b78;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.of-about-field h3 {
    margin: 0 0 14px;
    font-size: 26px;
    color: #101827;
}

.of-about-field p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #647180;
}

.of-about-principles {
    padding: 104px 0;
    background: #0e2027;
}

.of-about-principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.of-about-principles-title h2 {
    color: #ffffff;
}

.of-about-principles-list {
    border-top: 1px solid rgba(255,255,255,0.14);
}

.of-about-principles-list > div {
    display: grid;
    grid-template-columns: 54px 150px 1fr;
    gap: 22px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
    align-items: start;
}

.of-about-principles-list span {
    color: #39b9b3;
    font-size: 12px;
    font-weight: 800;
}

.of-about-principles-list strong {
    color: #ffffff;
    font-size: 16px;
}

.of-about-principles-list p {
    margin: 0;
    color: #9fb0b6;
    font-size: 14px;
    line-height: 1.7;
}

.of-about-cta {
    padding: 88px 0;
    background: #ffffff;
}

.of-about-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    padding: 48px;
    background: #e3f1f2;
}

.of-about-cta-box h2 {
    max-width: 820px;
    margin: 14px 0 0;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #101827;
}

@media (max-width: 991px) {
    .of-about-hero-grid,
    .of-about-story-grid,
    .of-about-principles-grid {
        grid-template-columns: 1fr;
    }

    .of-about-fields-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .of-about-photo,
    .of-about-photo img {
        min-height: 520px;
    }

    .of-about-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .of-about-hero,
    .of-about-story,
    .of-about-fields,
    .of-about-principles,
    .of-about-cta {
        padding: 64px 0;
    }

    .of-about-copy h1 {
        font-size: 52px;
    }

    .of-about-fields-grid {
        grid-template-columns: 1fr;
    }

    .of-about-field {
        min-height: auto;
    }

    .of-about-principles-list > div {
        grid-template-columns: 42px 1fr;
    }

    .of-about-principles-list p {
        grid-column: 2;
    }

    .of-about-cta-box {
        padding: 30px;
    }
}


/* =========================
   BLOG POST
========================= */

.of-post-hero {
    padding: 96px 0 72px;
    background: #f7fafa;
}

.of-post-meta-top {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.of-post-category {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    background: #e3f1f2;
    color: #086b78;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.of-post-hero h1 {
    max-width: 1100px;
    margin: 0;
    font-size: clamp(52px, 7vw, 94px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    color: #101827;
}

.of-post-lead {
    max-width: 860px;
    margin: 28px 0 0;
    font-size: 20px;
    line-height: 1.75;
    color: #526170;
}

.of-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    color: #7a8995;
    font-size: 13px;
}

.of-post-content {
    padding: 72px 0 96px;
    background: #ffffff;
}

.of-post-image {
    margin-bottom: 64px;
}

.of-post-image img {
    display: block;
    width: 100%;
    max-height: 720px;
    object-fit: cover;
}

.of-post-layout {
    display: grid;
    grid-template-columns: 140px minmax(0, 760px);
    gap: 64px;
    justify-content: center;
    align-items: start;
}

.of-post-share {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.of-post-share > span {
    margin-bottom: 8px;
    color: #086b78;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.of-post-share a {
    color: #647180;
    font-size: 13px;
    text-decoration: none;
}

.of-post-share a:hover {
    color: #086b78;
}

.of-post-article {
    min-width: 0;
}

.of-post-article .ck-content {
    color: #283744;
    font-size: 18px;
    line-height: 1.9;
}

.of-post-article .ck-content p {
    margin-bottom: 24px;
}

.of-post-article .ck-content h2 {
    margin: 52px 0 20px;
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: #101827;
}

.of-post-article .ck-content h3 {
    margin: 40px 0 16px;
    font-size: 28px;
    line-height: 1.2;
    color: #101827;
}

.of-post-article .ck-content a {
    color: #086b78;
}

.of-post-article .ck-content blockquote {
    margin: 40px 0;
    padding: 26px 30px;
    border-left: 4px solid #39b9b3;
    background: #f0f5f5;
    color: #32434f;
    font-size: 20px;
    line-height: 1.7;
}

.of-post-article .ck-content img {
    max-width: 100%;
    height: auto;
}

.of-post-tags {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid #e1e8e9;
}

.of-post-tags > span {
    display: block;
    margin-bottom: 14px;
    color: #086b78;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.of-post-tags > div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.of-post-tags a {
    display: inline-flex;
    padding: 8px 13px;
    background: #f0f5f5;
    color: #526170;
    font-size: 13px;
    text-decoration: none;
}

.of-post-tags a:hover {
    background: #e3f1f2;
    color: #086b78;
}

@media (max-width: 991px) {
    .of-post-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .of-post-share {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }

    .of-post-share > span {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .of-post-hero {
        padding: 64px 0 52px;
    }

    .of-post-hero h1 {
        font-size: 50px;
    }

    .of-post-lead {
        font-size: 18px;
    }

    .of-post-content {
        padding: 48px 0 72px;
    }

    .of-post-image {
        margin-bottom: 42px;
    }

    .of-post-article .ck-content {
        font-size: 17px;
        line-height: 1.8;
    }

    .of-post-article .ck-content h2 {
        font-size: 32px;
    }

    .of-post-article .ck-content h3 {
        font-size: 25px;
    }
}


/* =========================
   BLOG LIST
========================= */

.of-blog-hero {
    padding: 92px 0 72px;
    background: #f7fafa;
}

.of-blog-hero h1 {
    max-width: 1080px;
    margin: 18px 0 0;
    font-size: clamp(54px, 7vw, 92px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    color: #101827;
}

.of-blog-hero p {
    max-width: 760px;
    margin: 28px 0 0;
    font-size: 19px;
    line-height: 1.75;
    color: #526170;
}

.of-blog-list {
    padding: 76px 0 100px;
    background: #ffffff;
}

.of-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.of-blog-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e1e8e9;
    background: #ffffff;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.of-blog-card:hover {
    transform: translateY(-4px);
    border-color: #cfdadb;
    box-shadow: 0 18px 40px rgba(16, 24, 39, 0.08);
}

.of-blog-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eef3f3;
}

.of-blog-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.of-blog-card:hover .of-blog-card-image img {
    transform: scale(1.035);
}

.of-blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 26px;
}

.of-blog-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.of-blog-card-meta a {
    color: #086b78;
    text-decoration: none;
}

.of-blog-card-meta span {
    color: #87939d;
    text-align: right;
}

.of-blog-card h2 {
    margin: 0;
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.of-blog-card h2 a {
    color: #101827;
    text-decoration: none;
}

.of-blog-card p {
    margin: 18px 0 0;
    color: #647180;
    font-size: 15px;
    line-height: 1.7;
}

.of-blog-card-link {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding-top: 24px;
    color: #086b78;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.of-blog-pagination {
    margin-top: 58px;
}

.of-blog-empty {
    padding: 72px 0;
    text-align: center;
}

.of-blog-empty span {
    color: #086b78;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
}

.of-blog-empty h2 {
    margin: 16px 0 0;
    font-size: 34px;
    color: #101827;
}

@media (max-width: 991px) {
    .of-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .of-blog-hero {
        padding: 62px 0 54px;
    }

    .of-blog-hero h1 {
        font-size: 50px;
    }

    .of-blog-hero p {
        font-size: 17px;
    }

    .of-blog-list {
        padding: 54px 0 76px;
    }

    .of-blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .of-blog-card-body {
        padding: 22px;
    }
}


/* COMMUNITY PAGE */
.of-community-page {
    padding: 110px 0 120px;
    background: #F7FAFA;
}

.of-community-hero {
    max-width: 900px;
    margin-bottom: 90px;
}

.of-community-hero h1,
.of-community-heading h2,
.of-community-principles h2,
.of-community-cta h2 {
    margin: 14px 0 24px;
    font-size: clamp(52px, 7vw, 92px);
    line-height: .96;
    letter-spacing: -0.055em;
    color: #101827;
}

.of-community-hero h1 span,
.of-community-heading h2 span,
.of-community-principles h2 span,
.of-community-cta h2 span {
    color: #086B78;
}

.of-community-hero p,
.of-community-cta p {
    max-width: 720px;
    margin: 0;
    font-size: 19px;
    line-height: 1.75;
    color: #5E6D7A;
}

.of-community-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.of-community-primary,
.of-community-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.of-community-primary {
    background: #086B78;
    color: #fff;
}

.of-community-secondary {
    border: 1px solid #D7E3E5;
    background: #fff;
    color: #102F39;
}

.of-community-statement {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 30px;
    padding: 45px 0 75px;
    border-top: 1px solid #E1E8E9;
}

.of-community-statement span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .13em;
    color: #39B9B3;
}

.of-community-statement p {
    max-width: 920px;
    margin: 0;
    font-size: 25px;
    line-height: 1.55;
    letter-spacing: -0.02em;
    color: #102F39;
}

.of-community-areas {
    padding: 80px 0;
}

.of-community-heading {
    max-width: 760px;
    margin-bottom: 45px;
}

.of-community-heading h2,
.of-community-principles h2,
.of-community-cta h2 {
    font-size: clamp(42px, 5vw, 68px);
}

.of-community-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.of-community-card {
    position: relative;
    min-height: 360px;
    padding: 30px;
    border: 1px solid #E1E8E9;
    border-radius: 24px;
    background: #fff;
}

.of-community-card-number {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 13px;
    font-weight: 700;
    color: #39B9B3;
}

.of-community-card-type {
    display: inline-block;
    margin-bottom: 70px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    color: #718096;
}

.of-community-card h3 {
    margin: 0 0 15px;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: #102F39;
}

.of-community-card p {
    max-width: 520px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #5E6D7A;
}

.of-community-status {
    display: inline-block;
    margin-top: 24px;
    font-size: 13px;
    font-weight: 700;
    color: #086B78;
}

.of-community-principles {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    padding: 100px 0;
    border-top: 1px solid #E1E8E9;
}

.of-community-principle-list > div {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid #E1E8E9;
}

.of-community-principle-list strong {
    font-size: 13px;
    color: #39B9B3;
}

.of-community-principle-list p {
    margin: 0;
    font-size: 17px;
    line-height: 1.65;
    color: #3D4C5C;
}

.of-community-cta {
    padding: 70px;
    border-radius: 28px;
    background: #102F39;
}

.of-community-cta > span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    color: #39B9B3;
}

.of-community-cta h2 {
    color: #fff;
}

.of-community-cta h2 span {
    color: #79D4CF;
}

.of-community-cta p {
    color: #C8D6DA;
}

@media (max-width: 767px) {
    .of-community-page {
        padding: 75px 0 85px;
    }

    .of-community-hero {
        margin-bottom: 55px;
    }

    .of-community-hero h1 {
        font-size: 50px;
    }

    .of-community-statement,
    .of-community-principles {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .of-community-statement p {
        font-size: 21px;
    }

    .of-community-grid {
        grid-template-columns: 1fr;
    }

    .of-community-card {
        min-height: 320px;
    }

    .of-community-cta {
        padding: 40px 26px;
    }
}

/* CONTACT PAGE */
.of-contact-page {
    padding: 110px 0 120px;
    background: #F7FAFA;
}

.of-contact-hero {
    max-width: 900px;
    margin-bottom: 80px;
}

.of-contact-hero h1 {
    margin: 14px 0 24px;
    font-size: clamp(56px, 7vw, 94px);
    line-height: .95;
    letter-spacing: -0.055em;
    color: #101827;
}

.of-contact-hero h1 span {
    color: #086B78;
}

.of-contact-hero p {
    max-width: 720px;
    margin: 0;
    font-size: 19px;
    line-height: 1.75;
    color: #5E6D7A;
}

.of-contact-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    padding: 70px 0;
    border-top: 1px solid #E1E8E9;
}

.of-contact-info-item {
    padding: 0 0 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid #E1E8E9;
}

.of-contact-info-item > span,
.of-contact-form-heading > span,
.of-contact-bottom > span {
    display: block;
    margin-bottom: 13px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    color: #39B9B3;
}

.of-contact-info-item h3 {
    margin: 0 0 12px;
    font-size: 25px;
    letter-spacing: -0.03em;
    color: #102F39;
}

.of-contact-info-item p {
    margin: 0;
    max-width: 470px;
    font-size: 15px;
    line-height: 1.75;
    color: #5E6D7A;
}

.of-contact-form-box {
    padding: 45px;
    border: 1px solid #E1E8E9;
    border-radius: 28px;
    background: #fff;
}

.of-contact-form-heading {
    margin-bottom: 35px;
}

.of-contact-form-heading h2 {
    margin: 0;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: #102F39;
}

.of-contact-form-box input,
.of-contact-form-box textarea,
.of-contact-form-box select {
    width: 100%;
    border: 1px solid #DCE6E7 !important;
    border-radius: 12px !important;
    background: #F7FAFA !important;
}

.of-contact-form-box input,
.of-contact-form-box select {
    min-height: 52px;
}

.of-contact-form-box textarea {
    min-height: 150px;
}

.of-contact-form-box button[type="submit"] {
    min-height: 50px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    background: #086B78;
    color: #fff;
    font-weight: 700;
}

.of-contact-bottom {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    padding-top: 55px;
    border-top: 1px solid #E1E8E9;
}

.of-contact-bottom p {
    max-width: 680px;
    margin: 0;
    font-size: 22px;
    line-height: 1.55;
    letter-spacing: -0.02em;
    color: #102F39;
}

@media (max-width: 767px) {
    .of-contact-page {
        padding: 75px 0 85px;
    }

    .of-contact-hero {
        margin-bottom: 50px;
    }

    .of-contact-hero h1 {
        font-size: 50px;
    }

    .of-contact-layout {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 45px 0;
    }

    .of-contact-form-box {
        padding: 28px 20px;
    }

    .of-contact-bottom {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* SHOP PAGE */
.of-shop-page {
    padding: 110px 0 120px;
    background: #F7FAFA;
}

.of-shop-hero {
    max-width: 920px;
    margin-bottom: 80px;
}

.of-shop-hero h1 {
    margin: 14px 0 24px;
    font-size: clamp(56px, 7vw, 94px);
    line-height: .95;
    letter-spacing: -0.055em;
    color: #101827;
}

.of-shop-hero h1 span {
    color: #086B78;
}

.of-shop-hero p {
    max-width: 720px;
    margin: 0;
    font-size: 19px;
    line-height: 1.75;
    color: #5E6D7A;
}

.of-shop-section-heading {
    margin-bottom: 34px;
}

.of-shop-section-heading > span {
    display: block;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    color: #39B9B3;
}

.of-shop-section-heading h2 {
    margin: 0;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -0.045em;
    color: #102F39;
}

.of-shop-categories {
    padding: 70px 0;
    border-top: 1px solid #E1E8E9;
}

.of-shop-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.of-shop-category-card {
    display: block;
    padding: 16px;
    border: 1px solid #E1E8E9;
    border-radius: 22px;
    background: #fff;
    text-decoration: none !important;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.of-shop-category-card:hover {
    transform: translateY(-4px);
    border-color: #C8DDDF;
    box-shadow: 0 20px 45px rgba(16, 47, 57, .08);
}

.of-shop-category-image {
    position: relative;
    aspect-ratio: 4 / 3;
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 16px;
    background: #F0F5F5;
}

.of-shop-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.of-shop-category-card:hover .of-shop-category-image img {
    transform: scale(1.035);
}

.of-shop-category-card h3 {
    margin: 0 0 5px;
    font-size: 19px;
    letter-spacing: -0.025em;
    color: #102F39;
}

.of-shop-category-card span {
    font-size: 13px;
    color: #718096;
}

.of-shop-products {
    padding-top: 70px;
    border-top: 1px solid #E1E8E9;
}

/* Existing ecommerce toolbar */
.of-shop-page .product-filter-content {
    margin-bottom: 30px;
}

.of-shop-page .products-listing {
    min-height: 220px;
}

/* Existing product cards */
.of-shop-page .card-grid-style-3,
.of-shop-page .card-grid-style-2,
.of-shop-page .card-grid-style-1 {
    border: 1px solid #E1E8E9 !important;
    border-radius: 20px !important;
    background: #fff;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.of-shop-page .card-grid-style-3:hover,
.of-shop-page .card-grid-style-2:hover,
.of-shop-page .card-grid-style-1:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(16, 47, 57, .08);
}

.of-shop-page .card-grid-style-3 img,
.of-shop-page .card-grid-style-2 img,
.of-shop-page .card-grid-style-1 img {
    border-radius: 14px;
}

.of-shop-page .product-price,
.of-shop-page .price {
    color: #086B78 !important;
    font-weight: 700;
}

/* Sidebar */
.of-shop-page .sidebar {
    border-radius: 20px;
}

.of-shop-page .widget {
    margin-bottom: 28px;
}

@media (max-width: 991px) {
    .of-shop-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .of-shop-page {
        padding: 75px 0 85px;
    }

    .of-shop-hero {
        margin-bottom: 50px;
    }

    .of-shop-hero h1 {
        font-size: 50px;
    }

    .of-shop-categories,
    .of-shop-products {
        padding-top: 50px;
    }

    .of-shop-category-grid {
        grid-template-columns: 1fr;
    }
}

/* PRODUCT DETAIL PAGE */
.of-product-page {
    padding: 95px 0 110px;
    background: #F7FAFA;
}

.of-product-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 45px;
    padding-bottom: 18px;
    border-bottom: 1px solid #E1E8E9;
}

.of-product-topline a {
    font-size: 14px;
    font-weight: 700;
    color: #086B78;
    text-decoration: none;
}

.of-product-topline span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    color: #718096;
}

.of-product-main {
    margin-bottom: 90px;
}

.of-product-gallery,
.of-product-info {
    background: #fff;
    border: 1px solid #E1E8E9;
    border-radius: 28px;
}

.of-product-gallery {
    padding: 24px;
}

.of-product-info {
    padding: 42px;
}

/* Product title */
.of-product-info h1,
.of-product-info .product-title {
    font-size: clamp(36px, 4vw, 58px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em !important;
    color: #102F39 !important;
}

/* Price */
.of-product-info .product-price,
.of-product-info .price,
.of-product-info .text-heading-3,
.of-product-info .text-heading-4 {
    color: #086B78 !important;
}

/* Inputs / selects */
.of-product-info input,
.of-product-info select,
.of-product-info .form-control,
.of-product-info .form-select {
    border: 1px solid #DCE6E7 !important;
    border-radius: 12px !important;
    background: #F7FAFA !important;
}

/* Add to cart buttons */
.of-product-info button,
.of-product-info .btn-cart,
.of-product-info .add-to-cart-button,
.of-product-info .btn-buy {
    border-radius: 999px !important;
}

.of-product-info .btn-primary,
.of-product-info .btn-cart,
.of-product-info .add-to-cart-button {
    border-color: #086B78 !important;
    background: #086B78 !important;
}

/* Product tabs */
.of-product-description {
    padding-top: 70px;
    border-top: 1px solid #E1E8E9;
}

.of-product-section-title {
    margin-bottom: 35px;
}

.of-product-section-title > span,
.of-related-heading span {
    display: block;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    color: #39B9B3;
}

.of-product-section-title h2 {
    margin: 0;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: #102F39;
}

.of-product-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 38px;
    padding: 0;
    border: 0;
}

.of-product-tabs li {
    list-style: none;
}

.of-product-tabs a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid #DCE6E7;
    border-radius: 999px;
    background: #fff;
    color: #3D4C5C;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.of-product-tabs a.active {
    border-color: #086B78;
    background: #086B78;
    color: #fff;
}

.of-product-tab-content {
    padding: 40px;
    border: 1px solid #E1E8E9;
    border-radius: 24px;
    background: #fff;
}

.of-product-tab-content .ck-content {
    font-size: 16px;
    line-height: 1.8;
    color: #3D4C5C;
}

/* Related products */
.of-related-products {
    padding: 95px 0 120px;
    background: #F0F5F5;
}

.of-related-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

.of-related-heading h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: #102F39;
}

.of-related-heading > a {
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 700;
    color: #086B78;
    text-decoration: none;
}

/* Existing product card polish */
.of-related-products .card-grid-style-1,
.of-related-products .card-grid-style-2,
.of-related-products .card-grid-style-3 {
    height: 100%;
    border: 1px solid #E1E8E9 !important;
    border-radius: 20px !important;
    background: #fff;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.of-related-products .card-grid-style-1:hover,
.of-related-products .card-grid-style-2:hover,
.of-related-products .card-grid-style-3:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(16, 47, 57, .08);
}

@media (max-width: 991px) {
    .of-product-info {
        margin-top: 24px;
    }

    .of-related-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .of-product-page {
        padding: 70px 0 80px;
    }

    .of-product-topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .of-product-main {
        margin-bottom: 60px;
    }

    .of-product-gallery {
        padding: 16px;
    }

    .of-product-info {
        padding: 26px 20px;
    }

    .of-product-description {
        padding-top: 50px;
    }

    .of-product-tab-content {
        padding: 24px 18px;
    }

    .of-related-products {
        padding: 70px 0 85px;
    }
}


/* =========================================================
   OF HOME — CLEAN 2026
   ========================================================= */

.of-home-hero {
    padding: 90px 0 80px;
    background:
        radial-gradient(circle at 85% 10%, rgba(57,185,179,.13), transparent 34%),
        #f7fafa;
}

.of-home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr);
    align-items: center;
    gap: 80px;
}

.of-home-kicker {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    color: #086b78;
}

.of-home-hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(64px, 8vw, 118px);
    line-height: .84;
    letter-spacing: -.065em;
    color: #101827;
}

.of-home-hero h1 span {
    color: #086b78;
}

.of-home-hero-copy > p {
    max-width: 610px;
    margin: 34px 0 0;
    font-size: 20px;
    line-height: 1.7;
    color: #526270;
}

.of-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.of-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: .25s ease;
}

.of-home-btn-primary {
    background: #086b78;
    color: #fff !important;
}

.of-home-btn-primary:hover {
    background: #064f59;
    transform: translateY(-2px);
}

.of-home-btn-secondary {
    border: 1px solid #d7e1e2;
    background: #fff;
    color: #101827 !important;
}

.of-home-btn-secondary:hover {
    border-color: #086b78;
}

.of-home-hero-visual {
    display: flex;
    justify-content: center;
}

.of-home-orbit {
    position: relative;
    width: min(420px, 100%);
    aspect-ratio: 1;
    border: 1px solid #cbdadb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.of-home-orbit:before,
.of-home-orbit:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid #dfe8e9;
}

.of-home-orbit:before {
    inset: 48px;
}

.of-home-orbit:after {
    inset: 98px;
}

.of-home-orbit-center {
    position: relative;
    z-index: 2;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #102f39;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.of-home-orbit-label {
    position: absolute;
    top: 32px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2em;
    color: #718096;
}

.of-home-orbit-label-bottom {
    top: auto;
    bottom: 32px;
}

.of-home-focus {
    border-top: 1px solid #e1e8e9;
    border-bottom: 1px solid #e1e8e9;
    background: #fff;
}

.of-home-focus-row {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    overflow-x: auto;
}

.of-home-focus-row span {
    white-space: nowrap;
    font-size: 13px;
    font-weight: 700;
    color: #3d4c5c;
}

.of-home-projects {
    padding: 110px 0;
    background: #fff;
}

.of-home-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 44px;
}

.of-home-section-head h2 {
    margin: 0;
    font-size: clamp(38px,5vw,64px);
    line-height: 1;
    letter-spacing: -.045em;
    color: #101827;
}

.of-home-text-link {
    flex: none;
    color: #086b78;
    font-weight: 700;
    text-decoration: none;
}

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

.of-home-project-card {
    position: relative;
    min-height: 310px;
    padding: 34px;
    border: 1px solid #e1e8e9;
    border-radius: 20px;
    background: #f7fafa;
    text-decoration: none;
    transition: .25s ease;
}

.of-home-project-card:hover {
    transform: translateY(-4px);
    border-color: #b7d4d6;
    box-shadow: 0 18px 50px rgba(16,47,57,.08);
}

.of-home-project-no {
    display: block;
    margin-bottom: 42px;
    font-size: 12px;
    font-weight: 800;
    color: #086b78;
}

.of-home-project-type {
    display: block;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    color: #718096;
}

.of-home-project-card h3 {
    margin: 0 0 16px;
    font-size: 28px;
    letter-spacing: -.03em;
    color: #101827;
}

.of-home-project-card p {
    max-width: 500px;
    margin: 0;
    color: #5f6e7d;
    line-height: 1.7;
}

.of-home-card-arrow {
    position: absolute;
    right: 28px;
    top: 28px;
    font-size: 22px;
    color: #086b78;
}

.of-home-paths {
    padding: 0 0 110px;
    background: #fff;
}

.of-home-path-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    border: 1px solid #e1e8e9;
    border-radius: 22px;
    overflow: hidden;
}

.of-home-path {
    padding: 48px;
    min-height: 340px;
    text-decoration: none;
    color: #101827;
}

.of-home-path + .of-home-path {
    border-left: 1px solid #e1e8e9;
}

.of-home-path > span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
    color: #086b78;
}

.of-home-path h2 {
    max-width: 520px;
    margin: 50px 0 16px;
    font-size: clamp(30px,4vw,46px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.of-home-path p {
    max-width: 520px;
    color: #62717f;
    line-height: 1.7;
}

.of-home-path strong {
    display: block;
    margin-top: 30px;
    color: #086b78;
}

.of-home-bottom {
    padding: 90px 0;
    background: #102f39;
}

.of-home-bottom-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.of-home-bottom h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(36px,5vw,62px);
    line-height: 1.02;
    letter-spacing: -.045em;
    color: #fff;
}


/* =========================================================
   PROJECTS PAGE — FIX
   ========================================================= */

.of-projects-page {
    background: #fff;
}

.of-projects-hero {
    padding: 90px 0 70px;
    border-bottom: 1px solid #e1e8e9;
    background:
        radial-gradient(circle at 85% 10%, rgba(57,185,179,.12), transparent 35%),
        #f7fafa;
}

.of-projects-hero h1 {
    max-width: 920px;
    margin: 12px 0 0;
    font-size: clamp(54px,7vw,92px);
    line-height: .95;
    letter-spacing: -.055em;
    color: #101827;
}

.of-projects-hero p {
    max-width: 700px;
    margin: 28px 0 0;
    font-size: 19px;
    line-height: 1.75;
    color: #5c6c7b;
}

.of-projects-list {
    padding: 90px 0 110px;
}

.of-projects-item {
    display: grid;
    grid-template-columns: 90px minmax(0,1fr);
    gap: 32px;
    padding: 42px 0;
    border-bottom: 1px solid #e1e8e9;
}

.of-projects-item:first-child {
    border-top: 1px solid #e1e8e9;
}

.of-projects-number {
    font-size: 13px;
    font-weight: 800;
    color: #086b78;
}

.of-projects-content {
    max-width: 920px;
}

.of-projects-type {
    display: block;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    color: #718096;
}

.of-projects-content h2 {
    margin: 0 0 15px;
    font-size: clamp(30px,4vw,48px);
    letter-spacing: -.04em;
    color: #101827;
}

.of-projects-content p {
    max-width: 760px;
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: #5f6e7d;
}

.of-project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
}

.of-project-meta span {
    padding: 7px 11px;
    border-radius: 999px;
    background: #e3f1f2;
    color: #064f59;
    font-size: 11px;
    font-weight: 700;
}


/* RESPONSIVE */

@media (max-width: 991px) {
    .of-home-hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .of-home-hero-visual {
        justify-content: flex-start;
    }

    .of-home-orbit {
        width: 320px;
    }

    .of-home-project-grid,
    .of-home-path-grid {
        grid-template-columns: 1fr;
    }

    .of-home-path + .of-home-path {
        border-left: 0;
        border-top: 1px solid #e1e8e9;
    }

    .of-home-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .of-home-hero {
        padding: 64px 0 55px;
    }

    .of-home-hero h1 {
        font-size: 62px;
    }

    .of-home-hero-copy > p {
        font-size: 17px;
    }

    .of-home-orbit {
        width: 270px;
    }

    .of-home-projects {
        padding: 75px 0;
    }

    .of-home-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .of-home-project-card {
        min-height: 270px;
        padding: 28px;
    }

    .of-home-path {
        min-height: auto;
        padding: 34px 28px;
    }

    .of-home-path h2 {
        margin-top: 34px;
    }

    .of-home-bottom {
        padding: 65px 0;
    }

    .of-projects-hero {
        padding: 65px 0 50px;
    }

    .of-projects-list {
        padding: 60px 0 80px;
    }

    .of-projects-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 34px 0;
    }
}

/* OF HOME PORTRAIT */

.of-home-photo-wrap {
    position: relative;
    width: min(430px, 100%);
    margin-left: auto;
}

.of-home-photo {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    border-radius: 28px;
    filter: saturate(.92);
    box-shadow: 0 30px 80px rgba(16, 47, 57, .14);
}

.of-home-photo-wrap:before {
    content: "";
    position: absolute;
    z-index: -1;
    right: -28px;
    bottom: -28px;
    width: 72%;
    height: 72%;
    border-radius: 28px;
    background: #e3f1f2;
}

.of-home-photo-label {
    position: absolute;
    z-index: 2;
    left: -38px;
    bottom: 34px;
    min-width: 210px;
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(16, 47, 57, .94);
    backdrop-filter: blur(8px);
    color: #fff;
}

.of-home-photo-label span {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
}

.of-home-photo-label small {
    display: block;
    margin-top: 5px;
    font-size: 9px;
    letter-spacing: .11em;
    opacity: .7;
}

@media (max-width: 991px) {
    .of-home-photo-wrap {
        width: 350px;
        margin-left: 0;
    }
}

@media (max-width: 575px) {
    .of-home-photo-wrap {
        width: calc(100% - 20px);
        margin-left: 0;
    }

    .of-home-photo-label {
        left: 18px;
        bottom: 18px;
    }

    .of-home-photo-wrap:before {
        right: -18px;
        bottom: -18px;
    }
}


/* =========================================================
   OF BRAND HEADER
   ========================================================= */

.header {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid #e8eeee;
}

.header.sticky-bar.stick {
    box-shadow: 0 8px 30px rgba(16, 47, 57, .07);
    backdrop-filter: blur(14px);
}

.main-header {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
}

.of-brand {
    flex: 0 0 auto;
    margin-right: 52px;
}

.of-brand-link {
    display: inline-flex !important;
    align-items: center;
    gap: 13px;
    text-decoration: none !important;
}

.of-brand-mark {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #102f39;
    color: #fff;
    font-family: var(--primary-font);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.04em;
    transition: transform .25s ease, background .25s ease;
}

.of-brand-link:hover .of-brand-mark {
    transform: rotate(-6deg);
    background: #086b78;
}

.of-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.of-brand-text strong {
    color: #101827;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .055em;
    white-space: nowrap;
}

.of-brand-text small {
    margin-top: 6px;
    color: #718096;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .16em;
    white-space: nowrap;
}

.header-nav {
    flex: 1;
}

.nav-main-menu {
    width: 100%;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 7px;
}

.main-menu > li > a {
    position: relative;
    padding: 33px 13px !important;
    color: #1c2938 !important;
    font-size: 14px;
    font-weight: 600;
    transition: color .2s ease;
}

.main-menu > li > a:after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 22px;
    height: 2px;
    border-radius: 2px;
    background: #086b78;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .22s ease;
}

.main-menu > li > a:hover,
.main-menu > li.active > a {
    color: #086b78 !important;
}

.main-menu > li > a:hover:after,
.main-menu > li.active > a:after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-right {
    flex: 0 0 auto;
    margin-left: 25px;
}

.of-header-search {
    width: 42px;
    height: 42px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1e8e9;
    border-radius: 50%;
    transition: border-color .2s ease, background .2s ease;
}

.of-header-search:hover {
    border-color: #b6d1d4;
    background: #f7fafa;
}

.of-header-search .search-post {
    display: flex;
    align-items: center;
    justify-content: center;
}

.of-header-search svg {
    width: 19px;
    height: 19px;
    color: #102f39;
}


/* tablet + mobile header */

@media (max-width: 1199px) {

    .main-header {
        min-height: 76px;
    }

    .of-brand {
        margin-right: 0;
    }

    .header-right {
        display: flex !important;
        align-items: center;
        gap: 12px;
    }

    .burger-icon {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        display: inline-flex !important;
        flex-direction: column;
        justify-content: center;
        width: 42px;
        height: 42px;
        padding: 10px;
        border: 1px solid #e1e8e9;
        border-radius: 50%;
    }

    .burger-icon span {
        background-color: #102f39 !important;
    }
}

@media (min-width: 1200px) {
    .header-right > .burger-icon {
        display: none !important;
    }
}

@media (max-width: 575px) {

    .main-header {
        min-height: 70px;
    }

    .of-brand-mark {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .of-brand-text strong {
        font-size: 12px;
    }

    .of-brand-text small {
        display: none;
    }

    .header-right {
        margin-left: 10px;
        gap: 7px;
    }

    .of-header-search,
    .burger-icon {
        width: 39px;
        height: 39px;
    }
}


/* =========================================================
   OF ICON SYSTEM
   ========================================================= */

.of-project-icon {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7e5e6;
    border-radius: 14px;
    background: #fff;
    color: #086b78;
    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}

.of-project-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.6;
}

.of-home-project-card:hover .of-project-icon {
    transform: translateY(-3px) rotate(-3deg);
    background: #102f39;
    border-color: #102f39;
    color: #fff;
}

/* Eski ok artık ikona rakip olmasın */

.of-home-card-arrow {
    top: auto !important;
    bottom: 28px;
    right: 28px;
}


/* =========================================================
   GLOBAL RESPONSIVE SAFETY
   ========================================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
}

#main-content {
    min-width: 0;
}

@media (max-width: 1199px) {

    .container {
        max-width: calc(100% - 48px);
    }

    .of-home-project-card {
        min-width: 0;
    }
}

@media (max-width: 767px) {

    .container {
        max-width: calc(100% - 32px);
    }

    .of-home-focus-row {
        justify-content: flex-start;
        padding: 0 4px;
        scrollbar-width: none;
    }

    .of-home-focus-row::-webkit-scrollbar {
        display: none;
    }

    .of-home-project-card {
        padding: 26px;
    }

    .of-project-icon {
        top: 24px;
        right: 24px;
        width: 44px;
        height: 44px;
    }

    .of-project-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 575px) {

    .container {
        max-width: calc(100% - 24px);
    }

    .of-home-actions {
        width: 100%;
    }

    .of-home-actions .of-home-btn {
        flex: 1 1 auto;
    }

    .of-home-project-card h3 {
        padding-right: 42px;
        font-size: 25px;
    }

    .of-home-project-card p {
        font-size: 15px;
    }
}


/* =========================================================
   SERVICES — VISUAL PASS
   ========================================================= */

.of-service-card {
    position: relative;
    overflow: hidden;
}

.of-service-icon {
    width: 54px;
    height: 54px;
    margin: 26px 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7e5e6;
    border-radius: 15px;
    background: #f7fafa;
    color: #086b78;
    transition: .25s ease;
}

.of-service-icon svg {
    width: 25px;
    height: 25px;
    stroke-width: 1.55;
}

.of-service-card:hover .of-service-icon {
    background: #102f39;
    border-color: #102f39;
    color: #fff;
    transform: translateY(-3px);
}

.of-service-card:after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -75px;
    bottom: -75px;
    border-radius: 50%;
    background: rgba(57,185,179,.07);
    pointer-events: none;
}


/* =========================================================
   COMMUNITY — VISUAL PASS
   ========================================================= */

.of-community-card {
    position: relative;
    overflow: hidden;
}

.of-community-icon {
    width: 50px;
    height: 50px;
    margin: 25px 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7e5e6;
    border-radius: 15px;
    background: #fff;
    color: #086b78;
    transition: .25s ease;
}

.of-community-icon svg {
    width: 23px;
    height: 23px;
    stroke-width: 1.55;
}

.of-community-card:hover .of-community-icon {
    color: #fff;
    background: #102f39;
    border-color: #102f39;
    transform: translateY(-3px) rotate(-2deg);
}


/* =========================================================
   CONTACT — WIDE + RESPONSIVE
   ========================================================= */

.of-contact-page > .container {
    max-width: 1240px;
}

.of-contact-layout {
    display: grid !important;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.55fr) !important;
    gap: clamp(40px, 6vw, 82px) !important;
    align-items: start;
}

.of-contact-info {
    min-width: 0;
}

.of-contact-form-box {
    width: 100%;
    max-width: none !important;
    min-width: 0;
    padding: clamp(30px, 4vw, 52px) !important;
}

.of-contact-form-box form,
.of-contact-form-box .contact-form,
.of-contact-form-box .contact-form-wrapper {
    width: 100% !important;
    max-width: none !important;
}

.of-contact-form-box .row {
    width: auto !important;
}

.of-contact-form-box input,
.of-contact-form-box select,
.of-contact-form-box textarea {
    width: 100% !important;
    max-width: none !important;
    min-height: 52px;
}

.of-contact-form-box textarea {
    min-height: 190px !important;
    resize: vertical;
}

.of-contact-form-heading {
    margin-bottom: 30px;
}

.of-contact-form-heading h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -.035em;
}


/* =========================================================
   INNER PAGES RESPONSIVE
   ========================================================= */

@media (max-width: 1199px) {

    .of-contact-layout {
        grid-template-columns: minmax(240px, .75fr) minmax(0, 1.35fr) !important;
        gap: 44px !important;
    }
}

@media (max-width: 991px) {

    .of-contact-layout {
        grid-template-columns: 1fr !important;
    }

    .of-contact-info {
        display: grid;
        grid-template-columns: repeat(3, minmax(0,1fr));
        gap: 14px;
    }

    .of-contact-info-item {
        min-width: 0;
    }
}

@media (max-width: 767px) {

    .of-services-grid,
    .of-community-grid {
        grid-template-columns: 1fr !important;
    }

    .of-contact-info {
        grid-template-columns: 1fr;
    }

    .of-contact-form-box {
        padding: 28px 22px !important;
    }

    .of-service-icon,
    .of-community-icon {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 575px) {

    .of-contact-hero h1,
    .of-page-hero h1,
    .of-community-hero h1 {
        overflow-wrap: anywhere;
    }

    .of-contact-form-box {
        border-radius: 18px;
    }
}


/* =========================================================
   SERVICES — VISUAL PASS
   ========================================================= */

.of-service-card {
    position: relative;
    overflow: hidden;
}

.of-service-icon {
    width: 54px;
    height: 54px;
    margin: 26px 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7e5e6;
    border-radius: 15px;
    background: #f7fafa;
    color: #086b78;
    transition: .25s ease;
}

.of-service-icon svg {
    width: 25px;
    height: 25px;
    stroke-width: 1.55;
}

.of-service-card:hover .of-service-icon {
    background: #102f39;
    border-color: #102f39;
    color: #fff;
    transform: translateY(-3px);
}

.of-service-card:after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -75px;
    bottom: -75px;
    border-radius: 50%;
    background: rgba(57,185,179,.07);
    pointer-events: none;
}


/* =========================================================
   COMMUNITY — VISUAL PASS
   ========================================================= */

.of-community-card {
    position: relative;
    overflow: hidden;
}

.of-community-icon {
    width: 50px;
    height: 50px;
    margin: 25px 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7e5e6;
    border-radius: 15px;
    background: #fff;
    color: #086b78;
    transition: .25s ease;
}

.of-community-icon svg {
    width: 23px;
    height: 23px;
    stroke-width: 1.55;
}

.of-community-card:hover .of-community-icon {
    color: #fff;
    background: #102f39;
    border-color: #102f39;
    transform: translateY(-3px) rotate(-2deg);
}


/* =========================================================
   CONTACT — WIDE + RESPONSIVE
   ========================================================= */

.of-contact-page > .container {
    max-width: 1240px;
}

.of-contact-layout {
    display: grid !important;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.55fr) !important;
    gap: clamp(40px, 6vw, 82px) !important;
    align-items: start;
}

.of-contact-info {
    min-width: 0;
}

.of-contact-form-box {
    width: 100%;
    max-width: none !important;
    min-width: 0;
    padding: clamp(30px, 4vw, 52px) !important;
}

.of-contact-form-box form,
.of-contact-form-box .contact-form,
.of-contact-form-box .contact-form-wrapper {
    width: 100% !important;
    max-width: none !important;
}

.of-contact-form-box .row {
    width: auto !important;
}

.of-contact-form-box input,
.of-contact-form-box select,
.of-contact-form-box textarea {
    width: 100% !important;
    max-width: none !important;
    min-height: 52px;
}

.of-contact-form-box textarea {
    min-height: 190px !important;
    resize: vertical;
}

.of-contact-form-heading {
    margin-bottom: 30px;
}

.of-contact-form-heading h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -.035em;
}


/* =========================================================
   INNER PAGES RESPONSIVE
   ========================================================= */

@media (max-width: 1199px) {

    .of-contact-layout {
        grid-template-columns: minmax(240px, .75fr) minmax(0, 1.35fr) !important;
        gap: 44px !important;
    }
}

@media (max-width: 991px) {

    .of-contact-layout {
        grid-template-columns: 1fr !important;
    }

    .of-contact-info {
        display: grid;
        grid-template-columns: repeat(3, minmax(0,1fr));
        gap: 14px;
    }

    .of-contact-info-item {
        min-width: 0;
    }
}

@media (max-width: 767px) {

    .of-services-grid,
    .of-community-grid {
        grid-template-columns: 1fr !important;
    }

    .of-contact-info {
        grid-template-columns: 1fr;
    }

    .of-contact-form-box {
        padding: 28px 22px !important;
    }

    .of-service-icon,
    .of-community-icon {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 575px) {

    .of-contact-hero h1,
    .of-page-hero h1,
    .of-community-hero h1 {
        overflow-wrap: anywhere;
    }

    .of-contact-form-box {
        border-radius: 18px;
    }
}


/* =========================================================
   REAL WEB PROJECTS PASS
   ========================================================= */

/* 4 proje için daha güçlü 2x2 portföy düzeni */

.of-web-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.of-web-project-preview {
    height: 340px;
}


/* ---------------------------------------------------------
   DR OZAN YAZICI MOCKUP
   --------------------------------------------------------- */

.preview-drozanyazici {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(57,185,179,.14),
            transparent 32%
        ),
        #eef7f6;
}

.of-doctor-browser {
    width: 90%;
    overflow: hidden;
    border: 1px solid #d2e2e1;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 25px 55px rgba(16,47,57,.12);
    transform:
        perspective(900px)
        rotateX(3deg)
        rotateY(-4deg);
}

.of-doctor-browser-top {
    height: 38px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid #e5eeee;
}

.of-doctor-browser-top i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cadada;
}

.of-doctor-browser-top span {
    margin-left: 9px;
    color: #8a999c;
    font-size: 9px;
}

.of-doctor-screen {
    position: relative;
    min-height: 225px;
    padding: 35px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f0f8f7 100%
        );
}

.of-doctor-brand small {
    color: #086b78;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .18em;
}

.of-doctor-brand strong {
    display: block;
    margin-top: 13px;
    color: #102f39;
    font-size: 38px;
    line-height: .95;
    letter-spacing: -.05em;
}

.of-doctor-content-lines {
    margin-top: 27px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.of-doctor-content-lines i {
    height: 5px;
    border-radius: 999px;
    background: #cededd;
}

.of-doctor-content-lines i:nth-child(1) {
    width: 58%;
}

.of-doctor-content-lines i:nth-child(2) {
    width: 43%;
}

.of-doctor-content-lines i:nth-child(3) {
    width: 50%;
}

.of-doctor-cross {
    position: absolute;
    right: 28px;
    bottom: 21px;
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bbd8d5;
    border-radius: 50%;
    color: #086b78;
    font-size: 27px;
    font-weight: 300;
}


/* ---------------------------------------------------------
   PROJECT STATUS
   --------------------------------------------------------- */

.of-project-status {
    margin-top: 27px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #60727d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.of-project-status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #39b9b3;
    box-shadow: 0 0 0 5px rgba(57,185,179,.11);
}


/* ---------------------------------------------------------
   WEB CARD REFINEMENT
   --------------------------------------------------------- */

.of-web-project-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.of-web-project-body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.of-web-project-body > p {
    min-height: 72px;
}

.of-web-project-body .of-project-link,
.of-web-project-body .of-project-status {
    margin-top: auto;
    padding-top: 28px;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 991px) {

    .of-web-project-preview {
        height: 300px;
    }

}

@media (max-width: 767px) {

    .of-web-project-grid {
        grid-template-columns: 1fr !important;
    }

    .of-web-project-preview {
        height: 310px;
    }

    .of-web-project-body > p {
        min-height: 0;
    }

}

@media (max-width: 575px) {

    .of-web-project-preview {
        height: 255px;
        padding: 20px;
    }

    .of-doctor-screen {
        min-height: 175px;
        padding: 25px;
    }

    .of-doctor-brand strong {
        font-size: 31px;
    }

}

/* =========================================================
   OF PORTFOLIO FINAL
   ========================================================= */

.of-pf {
    background: #fff;
    color: #101827;
}

.of-pf-hero {
    min-height: 620px;
    padding: 100px 0 90px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}

.of-pf-hero-copy h1 {
    margin: 18px 0 0;
    font-size: clamp(58px, 7vw, 102px);
    line-height: .92;
    letter-spacing: -.07em;
}

.of-pf-hero-copy h1 span,
.of-pf-heading h2 span,
.of-pf-cta h2 span {
    color: #086b78;
}

.of-pf-hero-copy > p {
    max-width: 650px;
    margin: 30px 0 0;
    color: #61727e;
    font-size: 18px;
    line-height: 1.75;
}

.of-pf-jump {
    margin-top: 38px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.of-pf-jump a {
    padding: 11px 16px;
    border: 1px solid #dce6e7;
    border-radius: 999px;
    color: #32434f;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.of-pf-jump a:hover {
    color: #fff;
    border-color: #102f39;
    background: #102f39;
}


/* hero graphic */

.of-pf-hero-visual {
    position: relative;
    width: min(100%, 470px);
    aspect-ratio: 1;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.of-pf-orbit {
    position: absolute;
    border: 1px solid #d8e6e7;
    border-radius: 50%;
}

.of-pf-orbit-a {
    inset: 3%;
}

.of-pf-orbit-b {
    inset: 20%;
    border-style: dashed;
}

.of-pf-core {
    position: relative;
    z-index: 2;
    width: 185px;
    height: 185px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #102f39;
    box-shadow: 0 28px 65px rgba(16,47,57,.18);
}

.of-pf-core strong {
    margin: 5px 0;
    color: #fff;
    font-size: 61px;
    line-height: 1;
    letter-spacing: -.08em;
}

.of-pf-core small,
.of-pf-core span {
    color: #8eb2b5;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .22em;
}

.of-pf-float {
    position: absolute;
    z-index: 3;
    padding: 9px 13px;
    border: 1px solid #dae6e7;
    border-radius: 999px;
    background: #fff;
    color: #086b78;
    font-size: 9px;
    letter-spacing: .14em;
    box-shadow: 0 9px 25px rgba(16,47,57,.07);
}

.pf-web { top: 5%; left: 42%; }
.pf-erp { right: 0; top: 45%; }
.pf-data { bottom: 7%; left: 45%; }
.pf-ai { left: 0; top: 44%; }


/* strip */

.of-pf-strip {
    border-top: 1px solid #e4ecec;
    border-bottom: 1px solid #e4ecec;
    background: #f7fafa;
}

.of-pf-strip-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    overflow-x: auto;
}

.of-pf-strip-inner span {
    color: #586a75;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .17em;
    white-space: nowrap;
}

.of-pf-strip-inner i {
    width: 4px;
    height: 4px;
    flex: 0 0 4px;
    border-radius: 50%;
    background: #39b9b3;
}


/* headings */

.of-pf-heading {
    padding: 115px 0 52px;
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 70px;
    align-items: end;
}

.of-pf-heading h2 {
    margin: 16px 0 0;
    font-size: clamp(46px, 5.5vw, 78px);
    line-height: .95;
    letter-spacing: -.06em;
}

.of-pf-heading > p {
    margin: 0 0 5px;
    color: #667783;
    line-height: 1.75;
}


/* featured */

.of-pf-featured {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 22px;
}

.of-pf-feature-card {
    padding: 31px;
    border-radius: 27px;
    overflow: hidden;
}

.of-pf-feature-card.is-dark {
    color: #fff;
    background: #102f39;
}

.of-pf-feature-card.is-light {
    color: #101827;
    background: #eef4f4;
}

.of-pf-card-top {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
}

.is-dark .of-pf-card-top {
    color: #8fb7b9;
}

.is-light .of-pf-card-top {
    color: #086b78;
}

.of-pf-feature-art {
    height: 320px;
    margin: 28px 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.of-pf-feature-card h3 {
    margin: 0;
    font-size: clamp(29px,3vw,42px);
    letter-spacing: -.045em;
}

.of-pf-feature-card > p {
    margin: 16px 0 0;
    line-height: 1.7;
}

.is-dark > p {
    color: #bed2d4;
}

.is-light > p {
    color: #62737e;
}


/* ERP art */

.of-pf-erp-ui {
    width: 92%;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 15px;
    background: #173b45;
    box-shadow: 0 25px 55px rgba(0,0,0,.2);
    transform: perspective(900px) rotateX(4deg) rotateY(-5deg);
}

.of-pf-window-bar {
    height: 34px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.of-pf-window-bar i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
}

.of-pf-erp-body {
    height: 205px;
    display: grid;
    grid-template-columns: 55px 1fr;
}

.of-pf-erp-body aside {
    padding-top: 24px;
    border-right: 1px solid rgba(255,255,255,.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.of-pf-erp-body aside i {
    width: 18px;
    height: 4px;
    background: rgba(255,255,255,.18);
}

.of-pf-erp-body main {
    padding: 25px;
}

.of-pf-erp-body main > span {
    display: block;
    width: 35%;
    height: 7px;
    margin-bottom: 22px;
    background: rgba(255,255,255,.3);
}

.of-pf-stat-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
}

.of-pf-stat-row i {
    height: 38px;
    border-radius: 7px;
    background: rgba(57,185,179,.13);
}

.of-pf-chart {
    height: 75px;
    margin-top: 22px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.of-pf-chart i {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: #39b9b3;
    opacity: .62;
}

.of-pf-chart i:nth-child(1) { height: 40%; }
.of-pf-chart i:nth-child(2) { height: 68%; }
.of-pf-chart i:nth-child(3) { height: 52%; }
.of-pf-chart i:nth-child(4) { height: 88%; }
.of-pf-chart i:nth-child(5) { height: 72%; }


/* database art */

.of-pf-db-art {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.of-pf-db {
    position: relative;
    width: 185px;
    height: 185px;
}

.of-pf-db span {
    position: absolute;
    left: 50%;
    width: 150px;
    height: 58px;
    border: 2px solid #086b78;
    border-radius: 50%;
    transform: translateX(-50%);
}

.of-pf-db span:nth-child(1) { top: 20px; }
.of-pf-db span:nth-child(2) { top: 62px; }
.of-pf-db span:nth-child(3) { top: 104px; }

.of-pf-db-art small {
    margin-top: 8px;
    color: #086b78;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .2em;
}


/* tags */

.of-pf-tags {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.of-pf-tags span {
    padding: 6px 10px;
    border: 1px solid rgba(113,128,150,.23);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 700;
}

.is-dark .of-pf-tags span {
    color: #c6dbdd;
    border-color: rgba(255,255,255,.13);
}


/* web projects */

.of-pf-web-section {
    margin-top: 115px;
    padding-bottom: 115px;
    background: #f7fafa;
}

.of-pf-web-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 22px;
}

.of-pf-web-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #dfe8e9;
    border-radius: 24px;
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.of-pf-web-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(16,47,57,.09);
}

.of-pf-web-art {
    height: 335px;
    padding: 35px;
    overflow: hidden;
}

.visual-of {
    background: #102f39;
}

.visual-health {
    background: #e7f4f3;
}

.visual-salon {
    background: #1b1b1b;
}

.visual-community {
    background: #edf2f4;
}

.of-pf-browser {
    height: 100%;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
    transform: translateY(12px) rotate(-1.8deg);
}

.visual-health .of-pf-browser,
.visual-community .of-pf-browser {
    transform: translateY(12px) rotate(1.8deg);
}

.of-pf-browser-top {
    height: 32px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid #e5ecec;
    background: #f5f8f8;
}

.of-pf-browser-top i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c3d0d1;
}

.of-pf-browser-top span {
    margin-left: 9px;
    color: #89989c;
    font-size: 8px;
}

.of-pf-browser-screen {
    min-height: 240px;
    padding: 30px;
    background: linear-gradient(135deg,#fff,#f1f7f7);
}

.visual-salon .of-pf-browser-screen {
    background: #222;
}

.of-pf-browser-screen small {
    color: #086b78;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .17em;
}

.visual-salon .of-pf-browser-screen small {
    color: #aaa;
}

.of-pf-browser-screen strong {
    display: block;
    margin-top: 16px;
    color: #102f39;
    font-size: 38px;
    line-height: .9;
    letter-spacing: -.055em;
}

.visual-salon .of-pf-browser-screen strong {
    color: #fff;
}

.of-pf-screen-lines {
    margin-top: 27px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.of-pf-screen-lines i {
    width: 56%;
    height: 5px;
    border-radius: 99px;
    background: #cfdddd;
}

.of-pf-screen-lines i:nth-child(2) { width: 42%; }
.of-pf-screen-lines i:nth-child(3) { width: 49%; }

.of-pf-web-content {
    padding: 28px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.of-pf-web-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.of-pf-web-meta span,
.of-pf-web-meta small {
    color: #718096;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
}

.of-pf-web-content h3 {
    margin: 17px 0 0;
    font-size: 28px;
    letter-spacing: -.04em;
}

.of-pf-web-content > p {
    margin: 14px 0 0;
    color: #63747f;
    line-height: 1.7;
}

.of-pf-link,
.of-pf-status {
    margin-top: auto;
    padding-top: 28px;
}

.of-pf-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #086b78 !important;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none !important;
}

.of-pf-link span {
    font-size: 17px;
}

.of-pf-status {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #647680;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
}

.of-pf-status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #39b9b3;
    box-shadow: 0 0 0 5px rgba(57,185,179,.11);
}


/* technical */

.of-pf-heading-tech {
    grid-template-columns: 1fr;
}

.of-pf-tech-list {
    border-top: 1px solid #dfe8e9;
}

.of-pf-tech-item {
    padding: 43px 0;
    display: grid;
    grid-template-columns: 70px minmax(0,1fr) 50px;
    gap: 28px;
    border-bottom: 1px solid #dfe8e9;
}

.of-pf-tech-icon {
    width: 56px;
    height: 56px;
    border: 1px solid #d7e4e5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #086b78;
    background: #f7fafa;
}

.of-pf-tech-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.of-pf-tech-type {
    color: #086b78;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
}

.of-pf-tech-item h3 {
    margin: 9px 0 0;
    font-size: 31px;
    letter-spacing: -.04em;
}

.of-pf-tech-item p {
    max-width: 720px;
    margin: 13px 0 0;
    color: #62737e;
    line-height: 1.7;
}

.of-pf-tech-no {
    color: #b5c3c7;
    font-size: 11px;
    text-align: right;
}


/* CTA */

.of-pf-cta {
    margin: 115px 0 90px;
    padding: 55px;
    border-radius: 27px;
    background: #102f39;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 45px;
}

.of-pf-cta h2 {
    margin: 13px 0 0;
    color: #fff;
    font-size: clamp(38px,4vw,57px);
    line-height: 1;
    letter-spacing: -.05em;
}

.of-pf-cta .of-section-kicker {
    color: #86b4b3;
}

.of-pf-cta > a {
    flex: 0 0 auto;
    padding: 16px 23px;
    border-radius: 999px;
    background: #fff;
    color: #102f39 !important;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none !important;
}


/* responsive */

@media (max-width: 991px) {

    .of-pf-hero {
        grid-template-columns: 1fr;
        padding: 75px 0;
    }

    .of-pf-hero-visual {
        width: 400px;
        margin: 20px auto 0;
    }

    .of-pf-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .of-pf-featured {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 767px) {

    .of-pf-hero {
        min-height: auto;
    }

    .of-pf-hero-copy h1 {
        font-size: clamp(50px,14vw,72px);
    }

    .of-pf-hero-visual {
        width: min(100%,350px);
    }

    .of-pf-core {
        width: 145px;
        height: 145px;
    }

    .of-pf-core strong {
        font-size: 48px;
    }

    .of-pf-heading {
        padding: 78px 0 38px;
    }

    .of-pf-feature-art {
        height: 260px;
    }

    .of-pf-web-section {
        margin-top: 80px;
        padding-bottom: 80px;
    }

    .of-pf-web-grid {
        grid-template-columns: 1fr;
    }

    .of-pf-web-art {
        height: 300px;
    }

    .of-pf-tech-item {
        grid-template-columns: 56px 1fr;
        gap: 20px;
    }

    .of-pf-tech-no {
        display: none;
    }

    .of-pf-cta {
        margin: 80px 0 65px;
        padding: 34px 27px;
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 575px) {

    .of-pf-jump {
        flex-direction: column;
    }

    .of-pf-jump a {
        width: 100%;
        text-align: center;
    }

    .of-pf-feature-card {
        padding: 23px;
    }

    .of-pf-feature-art {
        height: 215px;
    }

    .of-pf-erp-body {
        height: 165px;
    }

    .of-pf-web-art {
        height: 245px;
        padding: 21px;
    }

    .of-pf-browser-screen {
        min-height: 180px;
        padding: 23px;
    }

    .of-pf-browser-screen strong {
        font-size: 31px;
    }

    .of-pf-tech-item {
        grid-template-columns: 1fr;
    }

    .of-pf-cta > a {
        width: 100%;
        text-align: center;
    }

}
