/* Modern Landing Page - Light Theme */
/* Professional, clean, and trustworthy design */

/* Font Faces */
@font-face {
    font-family: 'PressStart2P';
    src: url('../fonts/PressStart2P-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

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

:root {
    --primary-color: #00a896;
    --primary-hover: #01D758;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #6f7a74;
    --text-reading: #435264;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #eef6f2;
    --border-color: #e5e7eb;
    --surface-border-soft: #d9e5e0;
    --nav-corner-radius: 12px;
    --ui-corner-radius: var(--nav-corner-radius);
    --lego-corner-size: 52px;
    --lego-tile-size: 26px;
    --lego-corner-opacity: 0.22;
    --lego-corner-filter: saturate(0.46) brightness(0.9) contrast(0.94);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Roboto', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Header */
.header {
    background: linear-gradient(180deg, rgba(8, 129, 111, 0.92) 0%, rgba(8, 140, 122, 0.88) 100%);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 0;
    box-shadow:
        0 1px 0 rgba(15, 23, 42, 0.08),
        0 10px 24px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.45rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 65px;
    width: auto;
}

.theme-toggle-header {
    position: relative;
    width: 140px;
    height: 44px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border: none;
    background: transparent;
    transition: transform 1.2s;
    transform-style: preserve-3d;
    transform: perspective(800px) rotateX(0deg);
}

.theme-toggle-header:hover {
    transform: perspective(800px) rotateX(360deg);
}

.theme-toggle-header span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--nav-corner-radius);
    color: var(--text-secondary);
    transition: all 0.4s ease;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.theme-toggle-header:hover span {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
    box-shadow: 0 4px 16px rgba(1, 215, 88, 0.3);
}

.theme-toggle-header span svg {
    width: 18px;
    height: 18px;
}

.theme-toggle-header span:nth-child(1) {
    transform: rotateX(0deg) translateZ(22px);
    opacity: 1;
}

.theme-toggle-header span:nth-child(2) {
    transform: rotateX(90deg) translateZ(22px);
    opacity: 0;
}



.theme-toggle-header:hover span:nth-child(2) {
    opacity: 1;
}

/* Language Toggle Button */
.lang-toggle-header {
    position: relative;
    width: 60px;
    height: 44px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border: none;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--nav-corner-radius);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-toggle-header:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
    box-shadow: 0 4px 16px rgba(1, 215, 88, 0.3);
}

.lang-menu {
    position: relative;
}

.lang-list {
    position: absolute;
    top: 54px;
    right: 0;
    display: none;
    flex-direction: column;
    min-width: 120px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--nav-corner-radius);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
    z-index: 2000;
}

.lang-list.open {
    display: flex;
}

.lang-option {
    background: transparent;
    border: 0;
    padding: 8px 12px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: var(--nav-corner-radius);
}

.lang-option:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
}

.lang-option.active {
    background: var(--primary-color);
    color: #ffffff;
}

/* RTL Support for Arabic */
[dir="rtl"] * {
    font-family: 'Cairo', 'PressStart2P', 'Press Start 2P', cursive !important;
}


[dir="rtl"] .hero-container {
    direction: rtl;
}

[dir="rtl"] .footer-grid {
    direction: rtl;
}

[dir="rtl"] .header {
    padding: 0.4rem 0;
}

[dir="rtl"] .header-logo {
    height: 60px;
}

/* Hero Section */
.hero {
    position: relative;
    background: #ffffff;
    padding: 6rem 0;
}

.hero::before {
    content: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-links {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.35rem 0.65rem;
    border: 1px solid rgba(0, 168, 150, 0.3);
    border-radius: var(--ui-corner-radius);
    background: #ffffff;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    isolation: isolate;
    perspective: 980px;
}

.hero-image::before {
    content: "";
    position: absolute;
    width: min(100%, 360px);
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(1, 215, 88, 0.14);
    background:
        repeating-linear-gradient(0deg, rgba(1, 215, 88, 0.08) 0 1px, transparent 1px 10px),
        repeating-linear-gradient(90deg, rgba(1, 215, 88, 0.08) 0 1px, transparent 1px 10px);
    opacity: 0.2;
    transform: rotate(-9deg) skewY(-2deg);
    pointer-events: none;
    z-index: 0;
}

.hero-image::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(100%, 300px);
    aspect-ratio: 1 / 1;
    background-image:
        url("../images/Rectangle 99.svg"),
        url("../images/Rectangle 100.svg"),
        url("../images/Rectangle 99.svg"),
        url("../images/Rectangle 100.svg"),
        url("../images/Rectangle 99.svg"),
        url("../images/Rectangle 100.svg");
    background-size:
        18px 18px,
        18px 18px,
        18px 18px,
        18px 18px,
        18px 18px,
        18px 18px;
    background-position:
        24% 34%,
        36% 24%,
        50% 28%,
        64% 24%,
        76% 34%,
        50% 18%;
    background-repeat: no-repeat;
    opacity: 0.52;
    filter: saturate(0.88) contrast(1) drop-shadow(0 1px 2px rgba(0, 102, 91, 0.16));
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.hero-img {
    position: relative;
    z-index: 1;
    width: min(100%, 300px);
    max-width: 100%;
    height: auto;
    opacity: 0.22;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    mix-blend-mode: multiply;
    filter: saturate(0.92) contrast(1.04);
    transform-origin: center;
    
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 0.875rem 2rem;
    border-radius: var(--nav-corner-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #d7e3dd;
    display: inline-block;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.btn-primary:hover, .btn-secondary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
    box-shadow: 0 4px 16px rgba(1, 215, 88, 0.3);
    transform: translateY(-1px);
}

/* Sections */
section {
    padding: 5.35rem 0;
}

.section-header {
    text-align: left;
    margin-bottom: 3.45rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.08rem;
    color: var(--text-reading);
    line-height: 1.68;
    max-width: 64ch;
    margin: 0;
}

/* Motion System */
[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition:
        opacity 0.75s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.75s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

[data-reveal="left"] {
    transform: translate3d(-24px, 0, 0);
}

[data-reveal="right"] {
    transform: translate3d(24px, 0, 0);
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@keyframes icon-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* Minimal Lego corner motif using existing rectangle SVG assets */
.identity::before,
.identity::after,
.about::after,
.insights::before,
.insights::after {
    content: "";
    position: absolute;
    width: var(--lego-corner-size);
    height: var(--lego-corner-size);
    background-image:
        url("../images/Rectangle 99.svg"),
        url("../images/Rectangle 100.svg"),
        url("../images/Rectangle 101.svg"),
        url("../images/Rectangle 100.svg");
    background-size:
        var(--lego-tile-size) var(--lego-tile-size),
        var(--lego-tile-size) var(--lego-tile-size),
        var(--lego-tile-size) var(--lego-tile-size),
        var(--lego-tile-size) var(--lego-tile-size);
    background-position:
        0 0,
        var(--lego-tile-size) 0,
        0 var(--lego-tile-size),
        var(--lego-tile-size) var(--lego-tile-size);
    background-repeat: no-repeat;
    opacity: var(--lego-corner-opacity);
    filter: var(--lego-corner-filter);
    image-rendering: pixelated;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
}

/* Identity Section */
.identity {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 8%, rgba(0, 168, 150, 0.12), transparent 38%),
        linear-gradient(180deg, #f4faf7 0%, #edf8f3 100%);
    border-top: 1px solid #d5ebe3;
    border-bottom: 1px solid #d5ebe3;
}

.identity::before,
.identity::after {
    position: absolute;
}

.identity::before {
    top: 0;
    left: 0;
}

.identity::after {
    right: 0;
    bottom: 0;
    transform: rotate(180deg);
}

.identity-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.identity-header {
    text-align: left;
    margin-bottom: 1.35rem;
}

.identity-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.85rem;
    padding: 0.42rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #ccebdd;
    background: #e7f8f0;
    color: #008c7a;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.identity-title {
    font-size: clamp(2rem, 4vw, 3.7rem);
    font-weight: 700;
    color: #1a202c;
    letter-spacing: -0.03em;
    margin-bottom: 0.65rem;
}

.identity-body {
    color: #4a5568;
    font-size: 1.18rem;
    line-height: 1.7;
    max-width: 48ch;
    margin: 0;
}

.identity-values-panel {
    position: relative;
    border: 1px solid #d5ebe3;
    border-radius: 18px;
    background: linear-gradient(180deg, #eefaf5 0%, #eaf7f1 100%);
    padding: 1rem 1.1rem 1.15rem;
    margin-bottom: 1.35rem;
    overflow: hidden;
}

.identity-values-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.56rem;
}

.identity-values-row-bottom {
    margin-top: 0.72rem;
}

.identity-value-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid #cfe9de;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.identity-value-pill.is-active {
    background: #e6f8f0;
    color: #008c7a;
}

.identity-value-pill.is-active::before {
    content: "✓";
    color: #2daa58;
    margin-right: 0.45rem;
    font-weight: 800;
}

.identity-value-pill.is-muted {
    background: #e9ecf1;
    color: #6f7a74;
    border-color: #d5e3dd;
}

.identity-value-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #00a896;
    opacity: 0.82;
}

.identity-value-dot.muted {
    background: #b9c9c3;
}

.identity-list {
    list-style: none;
    margin-bottom: 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem 1.1rem;
}

.identity-list li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.identity-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: #01D758;
    box-shadow: 0 0 0 1px rgba(74, 85, 104, 0.14);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.offerings-block {
    background: linear-gradient(160deg, #ffffff 0%, #f4faf7 100%);
    border: 1px solid #d2e9df;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 12px 26px rgba(0, 102, 91, 0.08);
    position: relative;
    overflow: hidden;
}

.offerings-block h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.offerings-block ul {
    list-style: none;
}

.offerings-block li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.offerings-block li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: #01D758;
    box-shadow: 0 0 0 1px rgba(74, 85, 104, 0.14);
}

/* Services Section */
.services {
    background: var(--bg-primary);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.workflow-strip {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.55rem;
    margin: -1.2rem 0 1.45rem;
    padding: 0.52rem 0.6rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    border: 1px solid rgba(0, 168, 150, 0.22);
    border-radius: var(--ui-corner-radius);
    background:
        linear-gradient(rgba(248, 249, 250, 0.58), rgba(248, 249, 250, 0.58)),
        repeating-linear-gradient(
            0deg,
            rgba(74, 85, 104, 0.16) 0 1px,
            rgba(248, 249, 250, 0) 1px 3px
        );
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 140, 122, 0.35) transparent;
    scroll-snap-type: x proximity;
}

.workflow-strip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 168, 150, 0.2), rgba(1, 215, 88, 0.78));
    pointer-events: none;
}

.workflow-strip::-webkit-scrollbar {
    height: 6px;
}

.workflow-strip::-webkit-scrollbar-thumb {
    background: rgba(0, 140, 122, 0.35);
    border-radius: 999px;
}

.workflow-strip::-webkit-scrollbar-track {
    background: transparent;
}

.workflow-chip {
    flex: 0 0 auto;
    min-width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 0.52rem;
    padding: 0.36rem 0.56rem;
    border: 1px solid rgba(0, 168, 150, 0.17);
    border-radius: var(--ui-corner-radius);
    background: rgba(255, 255, 255, 0.76);
    scroll-snap-align: start;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.workflow-chip:hover {
    border-color: rgba(0, 168, 150, 0.42);
    background: rgba(255, 255, 255, 0.94);
}

.workflow-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border: 1px solid rgba(0, 168, 150, 0.25);
    background: rgba(0, 168, 150, 0.1);
    flex-shrink: 0;
    animation: none;
}

.workflow-icon svg {
    width: 14px;
    height: 14px;
}

.workflow-copy {
    display: inline-flex;
    align-items: baseline;
    gap: 0.36rem;
    white-space: nowrap;
}

.workflow-label {
    font-size: 0.62rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
}

.workflow-copy strong {
    color: var(--text-primary);
    font-size: 0.8rem;
    line-height: 1.2;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: all 0.3s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 168, 150, 0.2), rgba(1, 215, 88, 0.78));
    transform: scaleX(0.24);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 3;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(248, 249, 250, 0), rgba(248, 249, 250, 0)),
        repeating-linear-gradient(
            0deg,
            rgba(74, 85, 104, 0) 0 1px,
            rgba(248, 249, 250, 0) 1px 3px
        );
    opacity: 0;
    z-index: 2;
    mix-blend-mode: multiply;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

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

.service-card:hover::after {
    background:
        linear-gradient(rgba(248, 249, 250, 0.58), rgba(248, 249, 250, 0.58)),
        repeating-linear-gradient(
            0deg,
            rgba(74, 85, 104, 0.16) 0 1px,
            rgba(248, 249, 250, 0) 1px 3px
        );
    opacity: 1;
}

.services-container .service-icon {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(1, 215, 88, 0.06);
    border: 2px solid #01D758;
    border-radius: 0;
    box-shadow: 5px 5px 0 rgba(1, 215, 88, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-2px);
    box-shadow: 6px 6px 0 rgba(1, 215, 88, 0.26);
}

.services-container .service-icon svg {
    width: 44px;
    height: 44px;
    display: block;
    shape-rendering: crispEdges;
}

.services-container .service-icon img {
    width: 44px;
    height: 44px;
    display: block;
    image-rendering: pixelated;
}

.services-container .service-icon svg rect {
    shape-rendering: crispEdges;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-hover);
}

/* About Section */
.about {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 0%, rgba(0, 168, 150, 0.12), transparent 40%),
        radial-gradient(circle at 5% -8%, rgba(1, 215, 88, 0.08), transparent 44%),
        linear-gradient(180deg, #f5fbf8 0%, #f1faf5 52%, #f7faf9 100%);
    border-top: 1px solid #d5ebe3;
    border-bottom: 1px solid #d5ebe3;
}

.about::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.62)),
        repeating-linear-gradient(
            90deg,
            rgba(74, 85, 104, 0.03) 0 1px,
            transparent 1px 64px
        );
    pointer-events: none;
    z-index: -1;
}

.about::after {
    position: absolute;
    top: 0;
    right: 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.6rem;
}

.about-container::before {
    content: "";
    position: absolute;
    inset: -0.65rem 0.75rem -0.85rem;
    border: 1px solid #d7e4de;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 18px 32px rgba(0, 102, 91, 0.05);
    pointer-events: none;
    z-index: -1;
}

.about-header {
    text-align: left;
    margin-bottom: 0.2rem;
    padding: 0.45rem 0.15rem 0;
}

.about-kicker {
    display: inline-block;
    margin: 0.2rem 0 1.3rem;
    padding: 0.52rem 1rem;
    border: 1px solid #d1ebe2;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    word-spacing: 0.06em;
    line-height: 1.1;
    color: #008c7a;
    background: rgba(242, 251, 246, 0.96);
    text-transform: uppercase;
}

.about .section-title {
    font-size: clamp(2.2rem, 3.2vw, 3rem);
    letter-spacing: -0.03em;
    margin-bottom: 0.95rem;
}

.about-intro {
    max-width: 68ch;
    line-height: 1.72;
    font-size: 1.2rem;
    color: #4a5568;
    margin: 0;
}

.about-values-rail {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.92rem 1rem;
    margin: 0 0 0.8rem;
}

.about-value-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.42rem 0.82rem;
    border-radius: 9px;
    border: 1px solid #d2eae1;
    background: #eefaf5;
    color: #008c7a;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.about-value-pill::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 9px;
    background: #01D758;
    box-shadow: 0 0 0 1px rgba(74, 85, 104, 0.14);
}

.about-value-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #00a896;
    opacity: 0.7;
}

.about-trust-strip {
    margin: 0.1rem 0 0.3rem;
    position: relative;
}

.about-trust-carousel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.7rem;
    align-items: center;
}

.about-trust-viewport {
    overflow: hidden;
    border-radius: 14px;
}

.about-trust-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.about-trust-nav {
    width: 36px;
    height: 36px;
    border: 1px solid #d2e9e0;
    border-radius: 999px;
    background: #ffffff;
    color: #008c7a;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s ease;
}

.about-trust-nav:hover {
    background: #008c7a;
    color: #fff;
    border-color: #008c7a;
}

.about-trust-item {
    min-width: 100%;
    width: 100%;
    background:
        linear-gradient(rgba(248, 249, 250, 0.58), rgba(248, 249, 250, 0.58)),
        repeating-linear-gradient(
            0deg,
            rgba(74, 85, 104, 0.16) 0 1px,
            rgba(248, 249, 250, 0) 1px 3px
        );
    border: 1px solid rgba(0, 168, 150, 0.22);
    border-radius: 16px;
    padding: 0.95rem 1rem 0.95rem 0.9rem;
    display: grid;
    grid-template-columns: minmax(96px, 108px) minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    min-height: 132px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.about-trust-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 168, 150, 0.2), rgba(1, 215, 88, 0.78));
    pointer-events: none;
}

.about-trust-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 168, 150, 0.42);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.94);
}

.about-trust-image {
    margin: 0;
    width: 100%;
    min-height: 100px;
    border: 1px solid rgba(0, 168, 150, 0.17);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.76);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem;
    overflow: hidden;
}

.about-trust-image img {
    width: min(100%, 88px);
    height: auto;
    opacity: 0.78;
    mix-blend-mode: multiply;
    filter: saturate(0.92) contrast(1.03);
}

.about-trust-copy {
    display: grid;
    gap: 0.3rem;
    align-content: center;
}

.about-trust-copy span {
    display: inline-flex;
    width: fit-content;
    padding: 0.2rem 0.5rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(0, 168, 150, 0.17);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
}

.about-trust-copy strong {
    color: #1a202c;
    font-size: 1.06rem;
    line-height: 1.35;
}

.about-trust-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-bottom: 0.3rem;
}

.about-trust-dot {
    width: 24px;
    height: 4px;
    border-radius: 999px;
    border: none;
    background: #d3eae0;
    cursor: pointer;
    transition: all 0.25s ease;
}

.about-trust-dot.active {
    width: 34px;
    background: #008c7a;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(22px, 42px) minmax(0, 1fr);
    gap: 1.15rem;
    align-items: stretch;
    padding: 0.2rem 0.15rem 0.6rem;
}

.about-grid-spacer {
    width: 1px;
    height: 100%;
    min-height: 1px;
    justify-self: center;
    align-self: stretch;
    border-radius: 999px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 168, 150, 0.24) 50%, transparent 100%);
}

.about-bridge-media {
    margin: 0;
    border: 1px solid #d2eae1;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f2faf6 100%);
    box-shadow: 0 11px 24px rgba(0, 102, 91, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem;
}

.about-bridge-media img {
    width: min(100%, 126px);
    height: auto;
    opacity: 0.82;
    mix-blend-mode: multiply;
}

.about-card {
    background: linear-gradient(165deg, #ffffff 0%, #f5fbf8 100%);
    border: 1px solid #d4ebe2;
    border-radius: 18px;
    padding: 2.15rem;
    box-shadow: 0 12px 24px rgba(0, 102, 91, 0.08);
    position: relative;
    overflow: hidden;
    transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 168, 150, 0.82), rgba(0, 168, 150, 0.82));
}

.about-card:hover {
    transform: translateY(-3px);
    border-color: #bde4d5;
    box-shadow: 0 18px 30px rgba(0, 102, 91, 0.11);
}

.about-card-accent {
    border-color: #d2eae1;
    background: linear-gradient(175deg, #ffffff 0%, #eefaf4 74%, #eef7f5 100%);
}

.about-heading {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.34rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.05rem;
}

.about-heading::before {
    content: "";
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border-radius: 2px;
    background: #01D758;
    box-shadow: 0 0 0 1px rgba(74, 85, 104, 0.14);
}

.about-list {
    list-style: none;
    display: grid;
    gap: 0.82rem;
}

.about-list li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--text-secondary);
    line-height: 1.66;
    font-size: 0.97rem;
}

.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.67rem;
    width: 9px;
    height: 9px;
    border-radius: 2px;
    background: #01D758;
    box-shadow: 0 0 0 1px rgba(74, 85, 104, 0.14);
}

.about-proof-list {
    margin-bottom: 1.25rem;
}

.about-philosophy {
    color: #4a5568;
    line-height: 1.75;
    max-width: 48ch;
    background: rgba(245, 251, 248, 0.9);
    border: 1px solid #d2eae1;
    border-radius: 12px;
    padding: 0.9rem 0.95rem;
    margin-top: 0.25rem;
}

/* Process Section */
.process {
    background: var(--bg-primary);
}

.process-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0.95rem;
    align-items: stretch;
    margin-bottom: 1rem;
    padding: 0.95rem;
    border: 1px solid #d2eae1;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f5fbf8 100%);
}

.process-intro-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.45rem 0.2rem;
}

.process-intro .section-title {
    text-align: left;
    margin-bottom: 0.55rem;
    font-size: clamp(2rem, 3.3vw, 2.7rem);
}

.process-intro .section-subtitle {
    text-align: left;
    max-width: 52ch;
    line-height: 1.65;
    margin: 0;
}

.process-intro-media {
    min-height: 185px;
    border: 1px solid rgba(0, 168, 150, 0.22);
    border-radius: 14px;
    background: #f3faf6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.process-intro-media img {
    width: min(100%, 220px);
    height: auto;
    opacity: 0.42;
    mix-blend-mode: multiply;
    filter: saturate(0.88);
}

.process-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    padding: 0.9rem;
    border: 1px solid #d2eae1;
    border-radius: 16px;
    background: #f5fbf8;
}

.process-step {
    text-align: left;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: flex-start;
    gap: 0.9rem;
    background: #ffffff;
    border: 1px solid #d7e5df;
    border-radius: 14px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 168, 150, 0.2), rgba(1, 215, 88, 0.72));
}

.process-step:hover {
    border-color: rgba(0, 168, 150, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 91, 0.1);
}

.step-copy {
    display: grid;
    gap: 0.45rem;
}

.step-head {
    display: flex;
    align-items: flex-start;
    margin: 0;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: 1px solid rgba(0, 168, 150, 0.32);
    background: rgba(0, 168, 150, 0.08);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon svg {
    width: 24px;
    height: 24px;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.step-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.step-impact {
    width: fit-content;
    font-size: 0.76rem;
    line-height: 1.45;
    color: #4a5568;
    border: 1px solid rgba(1, 215, 88, 0.3);
    border-radius: var(--nav-corner-radius);
    background: rgba(1, 215, 88, 0.12);
    padding: 0.33rem 0.58rem;
}

/* Projects Preview */
.projects-preview {
    background: var(--bg-secondary);
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.projects-grid-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-preview-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.project-preview-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: rgba(1, 215, 88, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    color: var(--primary-color);
    animation: icon-float 5.5s ease-in-out infinite;
}

.project-preview-icon svg {
    width: 28px;
    height: 28px;
}

.project-preview-card:nth-child(2) .project-preview-icon {
    animation-delay: 0.8s;
}

.project-preview-card:nth-child(3) .project-preview-icon {
    animation-delay: 1.45s;
}

.games-icon {
    background: rgba(0, 168, 150, 0.1);
}

.legal-icon {
    background: rgba(0, 168, 150, 0.1);
    color: #00a896;
    border-color: rgba(0, 168, 150, 0.35);
}

.app-icon {
    background: rgba(1, 215, 88, 0.12);
}

.project-preview-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.project-preview-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.project-preview-desc {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-preview-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.projects-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Insights Section */
.insights {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #f3f4f6;
    border-top: 1px solid #d5e4de;
    border-bottom: 1px solid #d5e4de;
}

.insights::before,
.insights::after {
    position: absolute;
}

.insights::before {
    top: 0;
    left: 0;
}

.insights::after {
    right: 0;
    bottom: 0;
    transform: rotate(180deg);
}

.insights-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.insights-kicker {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: #4a5568;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
}

.insights .section-title {
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 3.15rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.12;
    margin-bottom: 0.95rem;
}

.insights .section-subtitle {
    max-width: 66ch;
    margin: 0;
    color: #4d5566;
    font-size: 1.02rem;
    line-height: 1.65;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

.insight-card {
    background: transparent;
    border: none;
    overflow: visible;
    display: block;
    height: 100%;
    position: relative;
    box-shadow: none;
    transition: transform 0.28s ease;
}

.insight-content {
    padding: 1rem 0.1rem 0.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-height: 255px;
    position: relative;
    z-index: 2;
}

.insight-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #d7e4de;
}

.insight-card:hover {
    transform: translateY(-3px);
}

.insight-card-accent {
    background: transparent;
}

.insight-meta {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 0.58rem;
    flex-wrap: wrap;
}

.insight-tag {
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4a5568;
    border: 1px solid #d2eae1;
    border-radius: 999px;
    padding: 0.24rem 0.58rem;
    background: #edf9f4;
    font-weight: 700;
}

.insight-source {
    font-size: 0.68rem;
    color: #6f7a74;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 700;
}

.insight-title {
    color: #1a202c;
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, "Times New Roman", serif;
    font-size: 1.98rem;
    line-height: 1.14;
    letter-spacing: -0.01em;
}

.insight-date {
    color: #2f3a35;
    font-style: italic;
    font-size: 0.96rem;
    line-height: 1.4;
}

.insight-summary {
    color: #46524d;
    line-height: 1.62;
    font-size: 0.97rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insight-research {
    display: grid;
    gap: 0.35rem;
    border: 1px solid #d7e5df;
    border-radius: 8px;
    background: #f5faf7;
    padding: 0.72rem 0.8rem;
}

.insight-research-label {
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.62rem;
    font-weight: 700;
}

.insight-research a {
    color: #1a202c;
    text-decoration: none;
    font-size: 0.82rem;
    line-height: 1.45;
}

.insight-research a:hover {
    color: var(--primary-color);
}

.insight-link {
    margin-top: auto;
    color: #1a202c;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid #1a202c;
    width: fit-content;
    padding-bottom: 0.1rem;
}

.insight-link:hover {
    color: #00a896;
    border-bottom-color: #00a896;
}

.insights-cta {
    display: flex;
    justify-content: center;
}

.insights-cta .btn-primary {
    background: #ffffff;
    border-color: #d4e4dd;
    color: #1a202c;
    box-shadow: none;
}

.insights-cta .btn-primary:hover {
    background: #1a202c;
    border-color: #1a202c;
    color: #ffffff;
}

/* Team Section */
.team {
    background: linear-gradient(180deg, #ffffff 0%, #f5faf8 100%);
    border-top: 1px solid #d7e5df;
    border-bottom: 1px solid #d7e5df;
}

.team-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-content {
    position: relative;
    background:
        linear-gradient(136deg, rgba(0, 168, 150, 0.045), rgba(255, 255, 255, 0.98) 44%),
        #ffffff;
    border: 1px solid #d4e5df;
    border-radius: 20px;
    padding: 1.9rem;
    box-shadow: 0 14px 30px rgba(0, 102, 91, 0.07);
}

.team-description {
    text-align: left;
    max-width: 920px;
    margin: 0 0 1.6rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.78;
}

.team-roster {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.team-member-card {
    background: #ffffff;
    border: 1px solid #d7e5df;
    border-radius: 16px;
    padding: 1.15rem 1.2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    box-shadow: 0 9px 20px rgba(0, 102, 91, 0.06);
    transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.team-member-card:hover {
    border-color: rgba(0, 168, 150, 0.45);
    box-shadow: 0 16px 30px rgba(0, 102, 91, 0.11);
    transform: translateY(-2px);
}

.team-member-card-ecosystem {
    background: linear-gradient(165deg, rgba(0, 168, 150, 0.06), #ffffff 58%);
    border-color: #cde3da;
}

.team-member-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 168, 150, 0.2), rgba(1, 215, 88, 0.8));
}

.team-member-head {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.78rem;
    margin-bottom: 0.5rem;
}

.team-avatar {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 1px solid rgba(0, 168, 150, 0.3);
    background: rgba(0, 168, 150, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.team-avatar svg {
    width: 24px;
    height: 24px;
}

.avatar-strategy {
    background: rgba(0, 168, 150, 0.09);
}

.avatar-dev {
    background: rgba(1, 215, 88, 0.1);
}

.avatar-devops {
    background: rgba(0, 168, 150, 0.12);
}

.avatar-ecosystem {
    background: linear-gradient(140deg, rgba(0, 168, 150, 0.1), rgba(1, 215, 88, 0.14));
}

.team-member-card h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.team-member-card p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.68;
}

.team-role {
    color: #008c7a;
    font-size: 0.75rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.22rem;
}

.team-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(1, 215, 88, 0.45);
}

.team-link:hover {
    color: var(--primary-hover);
}

.team-agent-intro {
    margin: 0 0 0.82rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.62;
    text-align: left;
    max-width: 48ch;
}

.team-agent-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
    gap: 0.9rem;
    margin-bottom: 0.4rem;
    padding: 1.05rem;
    border: 1px solid #d3e5de;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f5fbf8 100%);
    box-shadow: 0 11px 24px rgba(0, 102, 91, 0.08);
}

.team-agent-column {
    display: grid;
    align-content: start;
}

.team-agent-title {
    margin: 0 0 0.38rem;
    color: #1a202c;
    font-size: clamp(1.05rem, 1.8vw, 1.32rem);
    line-height: 1.25;
    letter-spacing: -0.01em;
    font-weight: 700;
    max-width: 34ch;
}

.team-agent-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 0;
}

.team-agent-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #d7e5df;
    border-radius: 14px;
    background: #ffffff;
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.4;
    min-height: 56px;
    padding: 0.56rem 0.62rem;
}

.team-agent-chip > span:last-child {
    color: #435264;
    font-weight: 600;
}

.team-agent-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(0, 168, 150, 0.12);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 168, 150, 0.35);
    flex-shrink: 0;
}

.team-agent-icon svg {
    width: 16px;
    height: 16px;
}

.team-agent-visual {
    border: 1px solid rgba(0, 168, 150, 0.24);
    border-radius: 14px;
    background:
        linear-gradient(165deg, rgba(0, 168, 150, 0.06), rgba(1, 215, 88, 0.08)),
        #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    overflow: hidden;
}

.team-agent-visual img {
    width: min(100%, 270px);
    height: auto;
    object-fit: contain;
    opacity: 0.95;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Pricing Section */
.pricing {
    background: linear-gradient(180deg, #f8f9fa 0%, #f3faf6 100%);
    border-top: 1px solid #d7e4de;
    border-bottom: 1px solid #d7e4de;
}

.pricing-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-intro-band {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: -1.5rem 0 1.6rem;
    padding: 0.7rem;
    border-radius: 14px;
    border: 1px solid #d2eae1;
    background: #ffffff;
}

.pricing-intro-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.62rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 168, 150, 0.24);
    background: rgba(0, 168, 150, 0.05);
    color: var(--text-secondary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    align-items: stretch;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #d5e4de;
    border-radius: 16px;
    padding: 1.4rem;
    position: relative;
    transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 24px rgba(0, 102, 91, 0.08);
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 168, 150, 0.22), rgba(1, 215, 88, 0.76));
    pointer-events: none;
}

.pricing-card:hover {
    border-color: rgba(0, 168, 150, 0.45);
    box-shadow: 0 18px 30px rgba(0, 102, 91, 0.14);
    transform: translateY(-3px);
}

.pricing-context {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    margin-bottom: 0.9rem;
}

.pricing-fit {
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6f7a74;
    font-weight: 700;
}

.pricing-commit {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #008c7a;
    border: 1px solid rgba(0, 168, 150, 0.3);
    border-radius: 999px;
    padding: 0.22rem 0.48rem;
    background: rgba(0, 168, 150, 0.06);
}

.pricing-featured {
    border-color: var(--primary-color);
    box-shadow: 0 22px 36px rgba(1, 215, 88, 0.2);
    transform: translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.32rem 0.58rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-title {
    font-size: 1.33rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.pricing-price-wrap {
    margin-bottom: 0.7rem;
}

.pricing-price {
    font-size: clamp(1.66rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
}

.pricing-value-note {
    color: #6f7a74;
    font-size: 0.82rem;
    line-height: 1.5;
}

.pricing-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.65;
    min-height: 3.2em;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1rem;
    display: grid;
    gap: 0.5rem;
}

.pricing-features li {
    padding: 0.55rem 0.62rem 0.55rem 1.5rem;
    position: relative;
    color: var(--text-secondary);
    border: 1px solid #d7e5df;
    border-radius: 8px;
    background: #f5faf7;
    line-height: 1.5;
    font-size: 0.88rem;
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0.58rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-weight: 800;
}

.pricing-action-wrap {
    margin-top: auto;
    display: grid;
    gap: 0.5rem;
}

.pricing-action-btn {
    width: 60%;
    height: 44px;
    padding: 0 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    line-height: 1;
    border: 2px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-weight: 600;
}

.pricing-action-btn:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(1, 215, 88, 0.3);
    transform: none;
}

.pricing-featured .pricing-action-btn {
    border: 2px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pricing-featured .pricing-action-btn:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(1, 215, 88, 0.3);
    transform: none;
}

.pricing-cta-note {
    font-size: 0.75rem;
    line-height: 1.45;
    color: #6f7a74;
    text-align: left;
}

/* Final CTA */
.final-cta {
    background: transparent;
    border-top: 1px solid #d7e5df;
    border-bottom: 0;
    padding: 2.4rem 0 0;
}

.final-cta-container {
    max-width: none;
    margin: 0;
    padding: 0;
}

.final-cta-panel {
    text-align: left;
    display: grid;
    justify-items: start;
    gap: 0.95rem;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.38);
    border-bottom: 1px solid rgba(255, 255, 255, 0.38);
    border-left: 0;
    border-right: 0;
    border-radius: var(--nav-corner-radius);
    background: linear-gradient(180deg, rgba(8, 129, 111, 0.92) 0%, rgba(8, 140, 122, 0.88) 100%);
    box-shadow:
        0 1px 0 rgba(15, 23, 42, 0.08),
        0 10px 24px rgba(15, 23, 42, 0.08);
    padding: 2.4rem 1.35rem 2.8rem;
}

.final-cta-kicker {
    width: fit-content;
    padding: 0.34rem 0.68rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: #d9f9ea;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.final-cta-title {
    font-size: clamp(1.72rem, 3.5vw, 2.65rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #ffffff;
    max-width: 17ch;
}

.final-cta-text {
    color: #d1d5db;
    line-height: 1.62;
    max-width: 52ch;
    margin-bottom: 0.15rem;
}

.final-cta-primary {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    font-size: 14px;
    padding: 0.95rem 2.25rem;
}

.final-cta-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(1, 215, 88, 0.3);
    transform: none;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #c3d4cd;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #c3d4cd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    text-align: center;
    color: #c3d4cd;
}

/* Google Calendar button styling */
.qxCTlb {
    background-color: var(--primary-color) !important;
    border-radius: var(--nav-corner-radius) !important;
    padding: 0.875rem 2rem !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 168, 150, 0.3) !important;
}

.qxCTlb:hover {
    background-color: var(--primary-hover) !important;
    transform: translateY(-2px) !important;
}

/* Premium Index Refinements */
.section-header {
    margin-bottom: 3rem;
}

.services-grid,
.projects-grid-preview,
.insights-grid,
.pricing-grid,
.team-roster {
    gap: 1.4rem;
}

.about-intro,
.service-description,
.project-preview-desc,
.step-description,
.pricing-description,
.team-description,
.final-cta-text,
.insight-summary {
    line-height: 1.75;
    color: var(--text-reading);
}

.about-container::before,
.workflow-strip,
.process-intro,
.process-board,
.team-content,
.pricing-intro-band,
.team-agent-panel,
.service-card,
.about-card,
.project-preview-card,
.process-step,
.pricing-card,
.team-member-card,
.team-agent-chip {
    border-color: var(--surface-border-soft);
    box-shadow: 0 10px 22px rgba(0, 102, 91, 0.05);
}

/* Shared radius system (excluding navbar + final CTA block) */
.hero-links a,
.btn-primary,
.btn-secondary,
.pricing-action-btn,
.about-container::before,
.about-kicker,
.about-value-pill,
.about-trust-nav,
.about-trust-viewport,
.about-trust-item,
.about-trust-image,
.about-trust-copy span,
.about-card,
.about-philosophy,
.identity-kicker,
.identity-values-panel,
.identity-value-pill,
.offerings-block,
.workflow-strip,
.workflow-chip,
.workflow-icon,
.service-card,
.project-preview-card,
.project-preview-icon,
.process-intro,
.process-intro-media,
.process-board,
.process-step,
.step-icon,
.step-impact,
.insight-image,
.insight-tag,
.insight-research,
.team-content,
.team-member-card,
.team-avatar,
.team-agent-panel,
.team-agent-chip,
.team-agent-icon,
.team-agent-visual,
.pricing-intro-band,
.pricing-intro-chip,
.pricing-card,
.pricing-commit,
.pricing-badge,
.pricing-features li {
    border-radius: var(--ui-corner-radius);
}

/* Persuasive Pricing Enhancements */
.pricing-grid {
    gap: 1.5rem;
}

.pricing-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fcfa 100%);
    border: 1px solid #cfe4db;
    box-shadow: 0 14px 30px rgba(0, 102, 91, 0.08);
    isolation: isolate;
}

.pricing-card::before {
    z-index: 2;
}

.pricing-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 92% -8%, rgba(1, 215, 88, 0.14), transparent 38%),
        radial-gradient(circle at 8% 112%, rgba(0, 168, 150, 0.08), transparent 42%);
    opacity: 0.82;
    z-index: 0;
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.pricing-card:hover {
    border-color: rgba(0, 168, 150, 0.52);
    box-shadow: 0 22px 38px rgba(0, 102, 91, 0.14);
    transform: translateY(-5px);
}

.pricing-context {
    margin-bottom: 1rem;
    padding-bottom: 0.62rem;
    border-bottom: 1px dashed rgba(0, 168, 150, 0.22);
}

.pricing-fit {
    font-size: 0.66rem;
    color: #4f5f56;
}

.pricing-commit {
    color: #0a7f71;
    border-color: rgba(0, 168, 150, 0.38);
    background: rgba(1, 215, 88, 0.12);
}

.pricing-title {
    font-size: 1.42rem;
    margin-bottom: 0.6rem;
}

.pricing-price {
    font-size: clamp(1.92rem, 2.8vw, 2.3rem);
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.pricing-value-note {
    color: #4a5c6d;
    font-size: 0.85rem;
}

.pricing-features li {
    background: #fbfefd;
    border-color: #cfe3db;
    padding-left: 1.62rem;
}

.pricing-features li::before {
    left: 0.62rem;
    color: #008c7a;
}

.pricing-action-wrap {
    margin-top: 1.05rem;
    gap: 0.58rem;
}

.pricing-action-btn {
    width: 100%;
    justify-content: center;
    letter-spacing: 0.01em;
}

.pricing-action-btn::after {
    content: "→";
    margin-left: 0.35rem;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.pricing-action-btn:hover::after {
    transform: translateX(2px);
}

.pricing-cta-note {
    font-size: 0.78rem;
    color: #4b5a69;
}

.pricing-featured {
    background: linear-gradient(180deg, #ffffff 0%, #f1fbf6 100%);
    border-color: rgba(0, 168, 150, 0.52);
    box-shadow:
        0 24px 44px rgba(0, 102, 91, 0.15),
        0 0 0 2px rgba(1, 215, 88, 0.18);
    transform: translateY(-8px);
}

.pricing-featured::before {
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 168, 150, 0.6), rgba(1, 215, 88, 0.95));
}

.pricing-featured .pricing-badge {
    background: linear-gradient(135deg, #008c7a 0%, #01D758 100%);
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 10px 22px rgba(1, 215, 88, 0.26);
}

.pricing-featured .pricing-price {
    color: #008c7a;
}

.pricing-featured .pricing-commit {
    color: #086e63;
    border-color: rgba(1, 215, 88, 0.52);
    background: rgba(1, 215, 88, 0.2);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .workflow-icon,
    .project-preview-icon {
        animation: none !important;
    }

    .hero-img {
        animation: none !important;
    }

}

/* Responsive Design */
@media (max-width: 900px) {
    .section-header {
        margin-bottom: 2.1rem;
    }

    .services-grid,
    .projects-grid-preview,
    .insights-grid,
    .pricing-grid,
    .team-roster {
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }

    .hero-content {
        margin: 0;
        max-width: 100%;
    }

    .hero-image {
        content-visibility: visible;
        margin-top: 0.4rem;
    }

    .hero-img {
        width: min(100%, 230px);
        opacity: 0.24;
    }

    .hero-image::after {
        width: min(100%, 230px);
        background-size:
            15px 15px,
            15px 15px,
            15px 15px,
            15px 15px,
            15px 15px,
            15px 15px;
    }

    .hero{
        padding: 4rem 0;
    }

    .hero-cta{
        justify-content: flex-start;
    }

    .hero-links {
        justify-content: flex-start;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

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

    .identity-values-row {
        gap: 0.5rem;
    }

    .identity-value-dot {
        display: none;
    }

    .services-grid,
    .about-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .about-grid-spacer {
        display: none;
    }

    .about-bridge-media {
        max-width: 240px;
        margin: 0 auto;
        min-height: 150px;
    }

    .pricing-intro-band {
        justify-content: flex-start;
    }

    .pricing-featured {
        transform: none;
    }

    .pricing-description {
        min-height: auto;
    }

    .insights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .insight-image {
        aspect-ratio: 4 / 3;
    }

    .insight-content {
        min-height: 260px;
    }

    .about-values-rail {
        justify-content: center;
        gap: 0.78rem 0.86rem;
    }

    .about-container {
        gap: 1.1rem;
    }

    .about-container::before {
        inset: -0.35rem 0.4rem -0.45rem;
        border-radius: var(--ui-corner-radius);
    }

    .workflow-strip {
        padding: 0.48rem 0.52rem;
        gap: 0.48rem;
    }

    .workflow-chip {
        padding: 0.34rem 0.5rem;
    }

    .process-intro {
        grid-template-columns: 1fr;
    }

    .projects-grid-preview {
        grid-template-columns: 1fr;
    }

    .final-cta-panel {
        padding: 1.9rem 1.1rem;
    }

    .team-agent-panel {
        grid-template-columns: minmax(0, 1fr) minmax(132px, 28vw);
        align-items: start;
    }

    .team-agent-grid {
        grid-template-columns: 1fr;
    }

    .team-agent-visual {
        min-height: 168px;
        padding: 0.55rem;
        align-self: start;
    }

    .team-agent-visual img {
        width: min(100%, 132px);
    }

    .team-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .header-logo {
        height: 40px;
    }

    section {
        padding: 3.4rem 0;
    }

    .hero-image{
        content-visibility: visible;
        margin-top: 0.15rem;
    }

    .hero-img {
        width: min(100%, 190px);
        opacity: 0.26;
    }

    .hero-image::after {
        width: min(100%, 190px);
        background-size:
            12px 12px,
            12px 12px,
            12px 12px,
            12px 12px,
            12px 12px,
            12px 12px;
    }

    .hero {
        padding: 3rem 0;
    }

    .about .section-title {
        font-size: 2rem;
    }

    .about-intro {
        font-size: 1.03rem;
        line-height: 1.68;
    }

    .about-container {
        padding: 0 1rem;
        gap: 1.2rem;
    }

    .about-container::before {
        inset: -0.2rem 0 -0.25rem;
        border-radius: var(--ui-corner-radius);
    }

    .about-header {
        padding: 0.15rem 0.1rem 0;
    }

    .about-values-rail {
        justify-content: center;
        gap: 0.62rem 0.66rem;
        margin-top: 0;
        margin-bottom: 0.4rem;
    }

    .about-value-pill {
        font-size: 0.66rem;
        padding: 0.32rem 0.62rem;
    }

    .about-value-dot {
        display: none;
    }

    .about-trust-nav {
        width: 34px;
        height: 34px;
        justify-self: center;
    }

    .about-trust-item {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 0.72rem;
        padding: 0.72rem 0.78rem 0.72rem 0.72rem;
        min-height: 114px;
    }

    .about-trust-image {
        min-height: 82px;
        border-radius: var(--ui-corner-radius);
        padding: 0.45rem;
    }

    .about-trust-image img {
        width: min(100%, 68px);
    }

    .about-grid {
        gap: 1.2rem;
        padding: 0.05rem 0 0.35rem;
    }

    .about-bridge-media {
        max-width: 220px;
        min-height: 124px;
        padding: 0.7rem;
    }

    .about-bridge-media img {
        width: min(100%, 102px);
    }

    .pricing-intro-band {
        margin: -0.8rem 0 1.15rem;
        padding: 0.58rem;
        gap: 0.42rem;
    }

    .pricing-intro-chip {
        font-size: 0.62rem;
    }

    .pricing-card {
        padding: 1.1rem;
    }

    .pricing-context {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-title {
        font-size: 1.2rem;
    }

    .pricing-badge {
        position: static;
        width: fit-content;
        margin-bottom: 0.5rem;
    }

    .pricing-cta-note {
        text-align: left;
    }

    .final-cta-panel {
        padding: 1rem;
        gap: 0.95rem;
    }

    .final-cta-title {
        font-size: clamp(1.44rem, 7vw, 1.95rem);
        max-width: 15ch;
    }

    .final-cta-text {
        font-size: 0.95rem;
        line-height: 1.62;
    }

    .final-cta-primary {
        width: 100%;
        max-width: 320px;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insight-image {
        aspect-ratio: 4 / 3;
    }

    .insight-content {
        min-height: auto;
        padding: 0.82rem 0.08rem 0.2rem;
    }

    .insight-title {
        font-size: 1.48rem;
    }

    .insight-date {
        font-size: 0.89rem;
    }

    .insight-summary {
        font-size: 0.92rem;
        -webkit-line-clamp: 3;
    }

    .identity-kicker {
        font-size: 0.7rem;
    }

    .identity-body {
        font-size: 1rem;
    }

    .identity-values-panel {
        padding: 0.85rem;
    }

    .identity-value-pill {
        font-size: 0.78rem;
        padding: 0.34rem 0.68rem;
    }

    .identity-values-row-bottom {
        margin-top: 0.55rem;
    }

    .workflow-strip {
        gap: 0.42rem;
        padding: 0.42rem 0.46rem;
    }

    .workflow-icon {
        width: 24px;
        height: 24px;
    }

    .workflow-copy strong {
        font-size: 0.76rem;
    }

    .team-agent-grid {
        grid-template-columns: 1fr;
    }

    .team-roster {
        grid-template-columns: 1fr;
    }

    .team-agent-panel {
        grid-template-columns: minmax(0, 1fr) minmax(92px, 30vw);
        align-items: start;
        padding: 0.68rem;
        gap: 0.55rem;
    }

    .team-agent-visual {
        min-height: 120px;
        padding: 0.45rem;
        align-self: start;
    }

    .team-agent-visual img {
        width: min(100%, 96px);
    }

    .process-intro {
        padding: 0.75rem;
        margin-bottom: 0.8rem;
    }

    .process-intro-media {
        min-height: 145px;
    }

    .process-board {
        grid-template-columns: 1fr;
        padding: 0.7rem;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .step-head {
        justify-content: flex-start;
    }

    .team-content {
        padding: 1.05rem;
        border-radius: var(--ui-corner-radius);
    }

    .team-description {
        font-size: 0.97rem;
        margin-bottom: 1.1rem;
    }

    .projects-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .insight-meta {
        align-items: flex-start;
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .team-agent-panel {
        grid-template-columns: minmax(0, 1fr) 84px;
    }

    .team-agent-visual img {
        width: min(100%, 82px);
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

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

@media (max-width: 450px) {
    .theme-toggle-header {
        width: 44px;
    }
    .theme-toggle-header span {
        gap: 0;
        font-size: 0;
    }
    .theme-toggle-header span svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        font-size: initial;
    }
}
