/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Fashion & Lifestyle Theme */
    --bg-primary: #ffffff;
    --bg-secondary: #fef6f8;
    --bg-tertiary: #f0f4f8;
    --bg-card: #fafafa;

    --text-primary: #1a1a1a;
    --text-secondary: #525252;
    --text-tertiary: #737373;

    /* Fashion-forward color palette */
    --coral: #ff6b6b;
    --blush: #ffa8b5;
    --lavender: #b8a6d9;
    --sage: #a8d5ba;
    --peach: #ffb88c;
    --mint: #b8e6d5;
    --rose-gold: #e8a798;
    --dusty-blue: #9db4c0;

    --accent-primary: #ff6b6b;
    --accent-secondary: #ffa8b5;
    --accent-gradient: linear-gradient(135deg, #ff6b6b 0%, #ffa8b5 50%, #b8a6d9 100%);
    --accent-gradient-alt: linear-gradient(135deg, #a8d5ba 0%, #b8e6d5 50%, #9db4c0 100%);

    --success: #a8d5ba;
    --warning: #ffb88c;

    --border-color: #ffe5eb;
    --border-subtle: #fff0f3;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px;

    /* Typography */
    --font-primary: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.logo-text {
    color: var(--text-primary);
}

.logo-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.nav-links a.active {
    color: var(--text-primary);
    font-weight: 600;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle,
.nav-dropdown-trigger {
    cursor: pointer;
    position: relative;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-trigger:hover {
    color: var(--text-primary);
}

.nav-dropdown-toggle::after,
.nav-dropdown-trigger::after {
    content: '▾';
    margin-left: 6px;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:hover .nav-dropdown-trigger::after {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.nav-dropdown-menu a.active {
    color: var(--accent);
    font-weight: 600;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 999;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-item {
    display: block;
    padding: 16px 24px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: background 0.2s ease, color 0.2s ease;
    border-bottom: 1px solid rgba(26, 26, 26, 0.05);
}

.mobile-menu-item:last-child {
    border-bottom: none;
}

.mobile-menu-item:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* Buttons */
.cta-button {
    position: relative;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    will-change: transform, box-shadow;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa8b5 50%, #b8a6d9 100%);
    color: white;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.35);
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 24px 48px rgba(255, 107, 107, 0.45);
    background: linear-gradient(135deg, #ff5555 0%, #ff9aa5 50%, #a896c9 100%);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-primary);
    border: 1px solid rgba(26, 26, 26, 0.12);
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(26, 26, 26, 0.08);
    backdrop-filter: blur(6px);
}

.cta-button.secondary:hover {
    border-color: rgba(26, 26, 26, 0.24);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(26, 26, 26, 0.16);
}

.cta-button:active {
    transform: translateY(0) scale(0.99);
}

.cta-button.full-width {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 200px 0 120px;
    overflow: hidden;
    background: radial-gradient(circle at 12% 15%, rgba(255, 107, 107, 0.15), transparent 55%),
                radial-gradient(circle at 88% 20%, rgba(184, 166, 217, 0.12), transparent 60%),
                linear-gradient(180deg, #ffffff 0%, #fef6f8 45%, #fff0f3 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(from 130deg at 30% 20%, rgba(255, 168, 181, 0.18), transparent 55%, rgba(168, 213, 186, 0.12) 70%, transparent 90%);
    filter: blur(100px);
    opacity: 0.7;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, rgba(184, 166, 217, 0.08) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-copy {
    text-align: center;
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(26, 26, 26, 0.75);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
    box-shadow: 0 18px 40px rgba(26, 26, 26, 0.18);
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
    letter-spacing: -0.02em;
}

.hero-title-line {
    display: block;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.hero-title-highlight {
    display: inline-block;
    background: linear-gradient(120deg, #0f0f0f 0%, #484848 45%, #0f0f0f 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
    line-height: 1.4;
}

.hero-benefit {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
    letter-spacing: 0.02em;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.highlight-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 999px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: 0 12px 30px rgba(26, 26, 26, 0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-chip::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-primary);
    opacity: 0.7;
}

.highlight-chip:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(26, 26, 26, 0.15);
    color: var(--text-primary);
}

.hero-cta {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
    align-items: center;
    justify-content: center;
}

/* Trusted By Section */
.trusted-by {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.trusted-label {
    text-align: center;
    font-size: 14px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

.client-grid-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.client-logo {
    width: 100%;
    max-width: 200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.client-logo:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.3) contrast(1.2);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(100%) brightness(0.15) contrast(1.3);
}

.client-fallback {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Sections */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Image Placeholders */
.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 60px;
    background: linear-gradient(135deg, rgba(255, 168, 181, 0.1) 0%, rgba(184, 166, 217, 0.1) 100%);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    color: var(--accent-primary);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 12px;
}

.service-icon .image-placeholder,
.detail-icon .image-placeholder {
    min-height: 48px;
}

.value-prop-icon .image-placeholder {
    min-height: 60px;
    font-size: 11px;
}

.use-case-icon .image-placeholder {
    min-height: 140px;
    font-size: 12px;
    line-height: 1.6;
}

/* Hero Image Showcase */
.hero-image-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(184, 166, 217, 0.15) 100%);
    border: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.hero-image-card .image-placeholder {
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--accent-primary);
}

/* Lifestyle Gallery Section */
.lifestyle-gallery {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #ffffff 0%, #fef6f8 50%, #ffffff 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.12) 0%, rgba(168, 213, 186, 0.12) 100%);
    border: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.25);
    border-color: var(--accent-primary);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item .image-placeholder {
    border: none;
    background: transparent;
}

/* Service Detail Banners */
.service-detail-banner {
    display: none;
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 168, 181, 0.08) 0%, rgba(184, 166, 217, 0.08) 100%);
    border-radius: 24px;
    animation: fadeInUp 0.5s ease-out;
}

.service-detail-banner.active {
    display: block;
}

.banner-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.banner-header {
    text-align: center;
    margin-bottom: 50px;
}

.banner-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.banner-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.banner-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.banner-image-card {
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(184, 166, 217, 0.15) 100%);
    border: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.banner-image-card .image-placeholder {
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--accent-primary);
}

.banner-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 50px;
}

.banner-feature {
    background: rgba(255, 255, 255, 0.7);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 107, 0.15);
    transition: all 0.3s ease;
}

.banner-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.15);
    border-color: var(--accent-primary);
}

.banner-feature h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.banner-feature p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.banner-cta {
    text-align: center;
    margin-top: 40px;
}

.banner-cta .cta-button {
    font-size: 16px;
    padding: 16px 32px;
}

/* Combined Banner Layout */
.service-banner-combined {
    display: block;
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 60px;
    background: linear-gradient(135deg, rgba(255, 168, 181, 0.08) 0%, rgba(184, 166, 217, 0.08) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
}

.service-banner-combined:first-of-type {
    margin-top: 80px;
}

.service-banner-combined:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(255, 107, 107, 0.12);
}

.banner-header-combined {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.banner-intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.banner-intro .banner-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 0;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.banner-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.banner-visual-inline {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image-large {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(184, 166, 217, 0.15) 100%);
    border: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-image-large:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.banner-image-large .image-placeholder {
    border: none;
    background: transparent;
    font-size: 16px;
    color: var(--accent-primary);
    font-weight: 600;
    text-align: center;
}

.built-for-section {
    margin-top: 40px;
}

.built-for-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.banner-cta-combined {
    text-align: center;
    margin-top: 40px;
}

.banner-cta-combined .cta-button {
    font-size: 16px;
    padding: 16px 32px;
}

/* Services Grid */
.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

/* Simple Service Cards */
.services-grid-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card-simple {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 107, 107, 0.15);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(255, 107, 107, 0.15);
    cursor: pointer;
}

.service-card-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-simple::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 168, 181, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card-simple:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 107, 0.35);
    box-shadow: 0 36px 80px rgba(255, 107, 107, 0.25);
}

.service-card-simple:hover::before {
    opacity: 1;
}

.service-card-simple:hover::after {
    opacity: 1;
}

.service-image-placeholder {
    width: 100%;
    height: 200px;
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(184, 166, 217, 0.1) 50%, rgba(168, 213, 186, 0.1) 100%);
    border: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.service-image-placeholder .image-placeholder {
    border: none;
    background: transparent;
}

.service-card-simple.active {
    background: rgba(17, 17, 17, 0.98);
    border-color: rgba(17, 17, 17, 0.98);
    box-shadow: 0 40px 90px rgba(17, 17, 17, 0.25);
    transform: translateY(-12px);
}

.service-card-simple.active::before {
    opacity: 1;
    height: 4px;
}

.service-card-simple.active .service-title,
.service-card-simple.active .service-description-simple {
    color: white;
}

.service-card-simple.active .expand-button {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.service-card-simple.active .expand-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.service-card-simple.active .service-status.live {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.5);
}

.service-card-simple.active .service-status.coming-soon {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.5);
}

.service-card-simple.highlight {
    border-color: var(--accent-primary);
}

.service-card-simple.highlight::before {
    opacity: 1;
}

.service-card-simple .service-icon {
    margin: 0 auto 24px;
}

.service-description-simple {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 24px;
}

/* Expand Button (now used as link) */
.expand-button {
    margin-top: 20px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    text-decoration: none;
}

.expand-button:hover {
    border-color: var(--accent-primary);
    background: rgba(26, 26, 26, 0.05);
    transform: translateY(-2px);
}

/* Built For Tabbed Interface */
.built-for-tabbed {
    max-width: 1100px;
    margin: 64px auto 0;
    padding-top: 48px;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.built-for-content {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.built-for-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Collapsible Service Details (for index.html only) */
.service-detail.collapsed {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                padding 0.5s ease;
    padding: 0;
}

.service-detail.expanded {
    max-height: 5000px;
    opacity: 1;
    padding: 80px 0;
}

/* Standalone service pages (design.html, make.html, sell.html) */
.service-page {
    opacity: 1;
    padding: 120px 0;
    background: linear-gradient(180deg, #f4f4f7 0%, #ffffff 35%, #f4f4f7 100%);
}

/* Clean Service Page Layout */
.service-detail-clean {
    padding: 140px 0 80px;
    background: var(--bg-primary);
}

.service-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.service-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.service-badge.live {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.service-hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.service-hero-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.service-section {
    max-width: 900px;
    margin: 0 auto 80px;
}

.service-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-section-intro {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.service-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.capability-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.capability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
}

.capability-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.capability-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

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

.stat-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    text-align: center;
}

.stat-value {
    font-size: 40px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

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

.process-step {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-left: 4px solid var(--accent-primary);
}

.process-step-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.process-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step-period {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

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

.process-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.process-step-list li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
}

.process-step-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 600;
}

/* Case Studies */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.case-study-card {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(17, 17, 17, 0.12);
}

.case-study-banner {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.04);
}

.case-study-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-tertiary);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.03), rgba(64, 64, 64, 0.06));
}

.case-study-title {
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.service-cta-section {
    max-width: 700px;
    margin: 80px auto 0;
    text-align: center;
    padding: 48px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(26, 26, 26, 0.06);
}

.service-cta-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-cta-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.highlight {
    border-color: var(--accent-primary);
}

.service-card.highlight::before {
    opacity: 1;
}

.service-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.service-status.live {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.service-status.coming-soon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(26, 26, 26, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    color: var(--accent-primary);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    padding-left: 24px;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.service-extra {
    padding: 16px;
    background: rgba(26, 26, 26, 0.03);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    border: 1px solid rgba(26, 26, 26, 0.05);
}

.service-extra strong {
    color: var(--accent-primary);
}

/* Service Detail Sections */
.service-detail {
    background: var(--bg-primary);
}

.service-detail.design-detail {
    background: var(--bg-secondary);
}

.service-detail.sell-detail {
    background: var(--bg-secondary);
}

.detail-content {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 32px;
    padding: 72px 64px;
    box-shadow: 0 40px 80px rgba(17, 17, 17, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
}

.detail-content::before {
    content: '';
    position: absolute;
    inset: -160px;
    background: radial-gradient(circle at 15% 10%, rgba(26, 26, 26, 0.12), transparent 55%),
                radial-gradient(circle at 85% 0%, rgba(64, 64, 64, 0.1), transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}

.detail-content > * {
    position: relative;
    z-index: 1;
}

/* Hero Image - Edge to Edge */
.detail-hero-image {
    width: 100%;
    height: 420px;
    background: linear-gradient(120deg, rgba(17, 17, 17, 0.85) 0%, rgba(64, 64, 64, 0.65) 55%, rgba(17, 17, 17, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 64px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 80px rgba(17, 17, 17, 0.25);
}

.detail-hero-image .image-placeholder {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    padding: 0 32px;
    text-align: center;
    line-height: 1.8;
    max-width: 720px;
    position: relative;
    z-index: 1;
}

/* Old 2-column layout (keep for compatibility) */
.detail-body {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 48px;
}

.detail-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* New 3-column layout */
.detail-body-3col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 48px 32px;
    align-items: start;
}

.detail-full-width {
    grid-column: 1 / -1;
}

.detail-grid-3col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.detail-header {
    text-align: left;
    margin-bottom: 56px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    position: relative;
}

.detail-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 140px;
    height: 3px;
    background: var(--accent-gradient);
}

.detail-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.detail-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 620px;
}

.section-subtitle-bold {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.detail-section {
    margin-bottom: 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.detail-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(26, 26, 26, 0.06);
    border-radius: 18px;
    padding: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 24px 50px rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(4px);
}

.detail-card:hover {
    border-color: rgba(26, 26, 26, 0.18);
    box-shadow: 0 30px 70px rgba(17, 17, 17, 0.14);
    transform: translateY(-6px);
}

.detail-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.detail-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Design Section Specific Styles */
.detail-callout {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(51, 51, 51, 0.75) 100%);
    color: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(17, 17, 17, 0.3);
    position: relative;
    overflow: hidden;
}

.detail-callout::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 55%);
    opacity: 0.7;
    pointer-events: none;
}

.detail-callout h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.detail-callout p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}


.benefit-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(17, 17, 17, 0.08);
}

.benefit-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(26, 26, 26, 0.1), transparent 65%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover {
    border-color: rgba(26, 26, 26, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(17, 17, 17, 0.14);
}

.benefit-item:hover::after {
    opacity: 1;
}

.benefit-stat {
    font-size: 36px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1.2;
}

.benefit-label {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.detail-visual .image-placeholder {
    min-height: 220px;
    font-size: 12px;
    line-height: 1.6;
}

.summary-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 30px 60px rgba(17, 17, 17, 0.12);
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 0%, rgba(26, 26, 26, 0.12), transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}

.summary-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.summary-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.summary-list li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
}

.summary-list li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-primary);
    opacity: 0.6;
}

.summary-list span {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

/* Timeline Section */
.timeline-section {
    margin-top: 72px;
    padding: 56px 48px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(26, 26, 26, 0.08);
    box-shadow: 0 40px 80px rgba(17, 17, 17, 0.1);
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 0%, rgba(26, 26, 26, 0.12), transparent 65%);
    opacity: 0.45;
    pointer-events: none;
}

.timeline-intro {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.timeline-step {
    display: flex;
    gap: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(26, 26, 26, 0.06);
    border-radius: 18px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 24px 50px rgba(17, 17, 17, 0.08);
    position: relative;
    overflow: hidden;
}

.timeline-step::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border-left: 4px solid var(--accent-primary);
    opacity: 0.6;
}

.timeline-step > * {
    position: relative;
    z-index: 1;
}

.timeline-step:hover {
    border-color: rgba(26, 26, 26, 0.2);
    box-shadow: 0 32px 72px rgba(17, 17, 17, 0.14);
    transform: translateY(-6px);
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.timeline-period {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.timeline-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.timeline-tasks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-tasks li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.timeline-tasks li:last-child {
    margin-bottom: 0;
}

.timeline-tasks li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 600;
}

.timeline-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.92) 0%, rgba(51, 51, 51, 0.78) 100%);
    border-radius: 20px;
    padding: 48px 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 70px rgba(17, 17, 17, 0.32);
    color: white;
    position: relative;
    overflow: hidden;
}

.timeline-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.2), transparent 65%);
    opacity: 0.7;
    pointer-events: none;
}

.timeline-cta-text {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.timeline-cta-subtext {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.timeline-cta .cta-button {
    position: relative;
    z-index: 1;
}

.detail-outcomes {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 32px;
    margin-top: 48px;
}

.outcomes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 20px;
}

.outcomes-list li {
    padding: 16px 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    padding-left: 32px;
}

.outcomes-list li:last-child {
    border-bottom: none;
}

.outcomes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 18px;
}

.outcomes-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Sell Section Specific Styles */
.value-props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.value-prop-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-prop-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.value-prop-icon {
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 1;
}

.value-prop-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.value-prop-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Value Propositions */
.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
}

.prop-card {
    position: relative;
    padding-left: 24px;
}

.prop-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.prop-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.prop-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

.prop-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-gradient);
    border-radius: 3px;
}

/* Use Cases */
.use-cases {
    background: var(--bg-secondary);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.use-case-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 48px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
}

.use-case-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.use-case-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.use-case-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Built For Table */
.built-for-table-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 8px;
}

.built-for-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(17, 17, 17, 0.12);
}

.built-for-table thead {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.92) 0%, rgba(51, 51, 51, 0.8) 100%);
}

.built-for-table th {
    padding: 20px 24px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.built-for-table tbody tr {
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    transition: background 0.3s ease;
}

.built-for-table tbody tr:last-child {
    border-bottom: none;
}

.built-for-table tbody tr:hover {
    background: rgba(26, 26, 26, 0.04);
}

.built-for-table td {
    padding: 24px;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    vertical-align: top;
    background: rgba(255, 255, 255, 0.88);
}

.built-for-table td.customer-type {
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

/* Success Story */
.success-story {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.03) 0%, rgba(64, 64, 64, 0.06) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: center;
}

.story-visual .image-placeholder {
    min-height: 320px;
    font-size: 13px;
    line-height: 1.6;
}

.story-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.12);
}

.story-content {
    max-width: 640px;
    margin: 0;
    text-align: left;
}

.story-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(26, 26, 26, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
    margin-bottom: 24px;
}

.story-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 32px;
}

.story-quote {
    font-size: 20px;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0 0 32px;
    padding: 24px 32px;
    border-left: 4px solid var(--accent-primary);
    background: rgba(26, 26, 26, 0.02);
}

.story-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
}


.story-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 32px;
    padding-top: 48px;
    border-top: 1px solid var(--border-subtle);
}

.story-metric {
    text-align: left;
}

.metric-value {
    font-size: 36px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* Team Section */
.team {
    background: var(--bg-secondary);
}

.about-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-description strong {
    color: var(--accent-primary);
    font-weight: 600;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-member {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.team-member-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
    transition: all 0.3s ease;
}

.team-member:hover .team-member-image {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.05);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.team-member-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.team-member-bio {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: var(--bg-primary);
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.contact-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 16px;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-benefit {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 500;
    padding: 12px 16px;
    background: rgba(26, 26, 26, 0.03);
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
}

/* Cal.com Embed Styling */
.cal-embed-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 12px;
    min-height: 700px;
}

#my-cal-inline-15-minute-call {
    width: 100%;
    height: 700px;
    overflow: auto;
}

/* Cal.com iframe dark theme adjustments */
.cal-embed-wrapper iframe {
    border-radius: 12px;
}

/* About Page Styles */
.about-hero {
    padding: 180px 0 100px;
    background: var(--bg-primary);
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.about-hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.company-story {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.story-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.story-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.story-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.story-list li {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
}

.story-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 600;
}

.story-list strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about-cta {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    text-align: center;
}

.about-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.about-cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.about-cta-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-tagline {
    color: var(--text-tertiary);
    font-size: 14px;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 14px;
}

.footer-bottom p {
    margin: 4px 0;
}

.footer-powered {
    margin-top: 8px;
    font-size: 13px;
}

.footer-powered a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-powered a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-title {
        font-size: 58px;
    }

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

    .hero-title-line {
        font-size: 18px;
        letter-spacing: 0.14em;
    }

    .detail-content {
        padding: 56px 48px;
    }

    .timeline-section {
        padding: 48px 40px;
    }

    .detail-body {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .detail-sidebar > * {
        flex: 1 1 240px;
    }

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

    .story-image {
        max-height: 300px;
        width: 100%;
        object-fit: cover;
    }

    .story-visual {
        order: -1;
    }

    .section-title {
        font-size: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info {
        position: static;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-hero-title {
        font-size: 48px;
    }

    .detail-body-3col {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-process {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .hero {
        padding: 140px 0 60px;
    }

    .hero-image-showcase {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.15;
    }

    .hero-title-line {
        font-size: 16px;
        letter-spacing: 0.12em;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 1.5;
    }

    .hero-benefit {
        font-size: 16px;
    }

    .hero-highlights {
        justify-content: center;
    }

    .highlight-chip {
        width: calc(50% - 8px);
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
        justify-content: center;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .hero-copy {
        text-align: center;
    }

    .detail-content {
        padding: 40px 24px;
        border-radius: 24px;
    }

    .detail-header {
        margin-bottom: 40px;
        padding-bottom: 24px;
    }

    .detail-title {
        font-size: 26px;
    }

    .detail-subtitle {
        font-size: 16px;
    }

    .detail-body-3col,
    .detail-grid-3col {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .detail-card {
        padding: 20px;
    }

    .detail-card h4 {
        font-size: 16px;
    }

    .detail-card p {
        font-size: 14px;
    }

    .timeline-section {
        padding: 32px 20px;
        border-radius: 20px;
    }

    .timeline-intro {
        font-size: 16px;
        margin-bottom: 36px;
    }

    .section-subtitle-bold {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .timeline-step {
        flex-direction: column;
    }

    .timeline-step::before {
        border-left: none;
        border-top: 4px solid var(--accent-primary);
    }


    .nav-content {
        padding: 16px 0;
    }

    .logo {
        font-size: 20px;
    }

    .nav-links {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .about-hero {
        padding: 140px 0 60px;
    }

    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-subtitle {
        font-size: 18px;
    }

    .about-cta-title {
        font-size: 28px;
    }

    .detail-sidebar {
        flex-direction: column;
    }

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

    /* Clean Service Page Mobile Styles */
    .service-detail-clean {
        padding: 100px 0 60px;
    }

    .service-hero-title {
        font-size: 36px;
    }

    .service-hero-subtitle {
        font-size: 18px;
    }

    .service-section {
        margin-bottom: 60px;
    }

    .service-section-title {
        font-size: 28px;
    }

    .service-capabilities-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .capability-card {
        padding: 18px;
    }

    .capability-card h3 {
        font-size: 15px;
    }

    .capability-card p {
        font-size: 13px;
    }

    .service-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-card {
        padding: 24px 20px;
    }

    .stat-value {
        font-size: 32px;
    }

    .service-process {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-step {
        padding: 20px;
    }

    .process-step-header {
        gap: 14px;
    }

    .process-step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .process-step-title {
        font-size: 18px;
    }

    .process-step-list li {
        font-size: 14px;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .case-study-banner {
        aspect-ratio: 16 / 9;
    }

    .case-study-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .case-study-title {
        font-size: 16px;
        padding: 16px 20px;
    }

    .service-cta-section {
        padding: 32px 24px;
        margin-top: 60px;
    }

    .service-cta-title {
        font-size: 22px;
    }

    .service-cta-text {
        font-size: 15px;
    }

    .detail-sidebar > * {
        flex: 1 1 auto;
    }

    .detail-body-3col {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .detail-grid-3col {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .detail-hero-image {
        height: 250px;
        margin-bottom: 32px;
    }

    .timeline-step {
        flex-direction: column;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .services-grid-simple {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
    }

    .built-for-table-wrapper {
        overflow: visible;
        padding: 0;
        margin: 0;
    }

    .built-for-table {
        display: block;
        border: none;
        box-shadow: none;
        background: transparent;
    }

    .built-for-table thead {
        display: none;
    }

    .built-for-table tbody {
        display: block;
    }

    .built-for-table tbody tr {
        display: block;
        background: white;
        border: 1px solid rgba(26, 26, 26, 0.08);
        border-radius: 12px;
        padding: 24px;
        margin-bottom: 20px;
        box-shadow: 0 8px 24px rgba(17, 17, 17, 0.08);
    }

    .built-for-table tbody tr:last-child {
        margin-bottom: 0;
    }

    .built-for-table td {
        display: block;
        padding: 0;
        margin-bottom: 16px;
        border: none;
        background: transparent;
        white-space: normal;
        font-size: 14px;
        line-height: 1.7;
    }

    .built-for-table td:last-child {
        margin-bottom: 0;
    }

    .built-for-table td.customer-type {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 20px;
        white-space: normal;
        min-width: auto;
    }

    .built-for-table td:not(.customer-type)::before {
        content: attr(data-label);
        display: block;
        font-weight: 700;
        font-size: 12px;
        color: var(--text-primary);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 8px;
    }

    .built-for-table td:nth-child(2)::before {
        content: "Challenge";
    }

    .built-for-table td:nth-child(3)::before {
        content: "What We Deliver";
    }

    .service-card-simple {
        padding: 36px 28px;
    }

    .service-description-simple {
        font-size: 15px;
        line-height: 1.6;
    }

    .expand-button {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }

    .service-detail.expanded {
        padding: 60px 0;
    }

    .detail-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .detail-title {
        font-size: 28px;
    }

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

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

    .value-props-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .story-title {
        font-size: 28px;
    }

    .story-quote {
        font-size: 18px;
        padding: 20px 24px;
    }

    .story-metrics {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .client-grid-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

    .team-member {
        padding: 28px;
    }

    .team-member-image {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }

    .team-member-name {
        font-size: 18px;
    }

    .team-member-bio {
        font-size: 14px;
    }

    .cal-embed-wrapper {
        padding: 8px;
        min-height: 650px;
    }

    #my-cal-inline-15-minute-call {
        height: 650px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 120px 0 50px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-title-line {
        font-size: 13px;
        letter-spacing: 0.1em;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-highlights {
        gap: 10px;
    }

    .highlight-chip {
        width: 100%;
        padding: 10px 16px;
        font-size: 13px;
    }

    .stat-number {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .service-card,
    .service-card-simple,
    .use-case-card {
        padding: 28px 20px;
    }

    .service-title {
        font-size: 20px;
    }

    .detail-content {
        padding: 32px 20px;
        border-radius: 20px;
    }

    .timeline-section {
        padding: 28px 16px;
        border-radius: 16px;
    }

    .timeline-step {
        padding: 20px 16px;
    }

    .timeline-title {
        font-size: 18px;
    }

    .timeline-tasks li {
        font-size: 14px;
    }

    .client-grid-logos {
        grid-template-columns: 1fr;
    }

    .client-logo {
        max-width: 160px;
    }

    .detail-title {
        font-size: 22px;
    }

    .detail-subtitle {
        font-size: 15px;
    }

    .section-subtitle-bold {
        font-size: 18px;
    }

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

    .team-member {
        padding: 24px 20px;
    }

    .team-member-image {
        width: 110px;
        height: 110px;
    }

    .team-member-name {
        font-size: 17px;
    }

    .team-member-role {
        font-size: 13px;
    }

    .team-member-bio {
        font-size: 13px;
    }

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

    .benefit-stat {
        font-size: 28px;
    }

    .value-props-grid {
        grid-template-columns: 1fr;
    }

    .value-prop-icon {
        font-size: 32px;
    }

    .cal-embed-wrapper {
        padding: 6px;
        min-height: 600px;
        border-radius: 12px;
    }

    #my-cal-inline-15-minute-call {
        height: 600px;
    }

    .contact-description {
        font-size: 16px;
    }

    .expand-button {
        font-size: 13px;
        padding: 10px 20px;
    }

    .service-detail.expanded {
        padding: 40px 0;
    }

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .detail-body {
        gap: 28px;
    }

    .detail-card {
        padding: 18px;
    }

    .summary-card {
        padding: 20px;
    }

    .summary-card h3 {
        font-size: 18px;
    }

    .summary-list li {
        font-size: 14px;
    }

    .timeline-step {
        padding: 20px;
    }

    .story-layout {
        gap: 24px;
    }

    .story-title {
        font-size: 24px;
    }

    .story-quote {
        font-size: 16px;
        padding: 16px 20px;
    }

    .story-description {
        font-size: 15px;
    }

    .about-hero-title {
        font-size: 32px;
    }

    .about-hero-subtitle {
        font-size: 16px;
    }

    .about-cta-title {
        font-size: 24px;
    }

    .about-cta-description {
        font-size: 16px;
    }

    .service-hero-title {
        font-size: 30px;
    }

    .service-hero-subtitle {
        font-size: 16px;
    }

    .service-section-title {
        font-size: 24px;
    }

    .service-section-intro {
        font-size: 15px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

}
