:root {
    --accent-orange: #FF7F50;
    --accent-blue: #243152;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-color: #f8fafc;

    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;

    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-bg-hover: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(15, 23, 42, 0.05);
    --glass-shadow: 0 10px 40px rgba(15, 23, 42, 0.03);
    --glass-shadow-hover: 0 20px 50px rgba(15, 23, 42, 0.08);
    --glass-blur: blur(24px);
    --page-padding: 5%;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

section {
    scroll-margin-top: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
    color: var(--text-main);
}

h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: #fdfdfd;
}

.doc-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='30'%3E%3Cpath d='M0 15 Q 30 0 60 15 T 120 15' fill='none' stroke='rgba(15,23,42,0.04)' stroke-width='1'/%3E%3Cpath d='M0 20 Q 30 5 60 20 T 120 20' fill='none' stroke='rgba(15,23,42,0.02)' stroke-width='0.5'/%3E%3Cpath d='M0 10 Q 30 25 60 10 T 120 10' fill='none' stroke='rgba(15,23,42,0.02)' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 120px 30px;
    z-index: 1;
    pointer-events: none;
}

.watermark {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 800px;
    height: 800px;
    border: 1px solid rgba(15, 23, 42, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.watermark::before {
    content: '';
    width: 500px;
    height: 500px;
    border: 1px dashed rgba(15, 23, 42, 0.04);
    border-radius: 50%;
    animation: spinSlow 90s linear infinite;
}

.watermark::after {
    content: '';
    width: 300px;
    height: 300px;
    position: absolute;
    border: 1px dotted rgba(255, 127, 80, 0.2);
    border-radius: 50%;
    animation: spinSlow 60s linear infinite reverse;
}

@keyframes spinSlow {
    100% {
        transform: rotate(360deg);
    }
}

.orb-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 25s infinite alternate ease-in-out;
    will-change: transform;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: rgba(255, 127, 80, 0.15);
    top: -10%;
    right: -5%;
}

.orb-2 {
    width: 900px;
    height: 900px;
    background: rgba(36, 49, 82, 0.06);
    bottom: -20%;
    left: -10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: rgba(253, 224, 71, 0.1);
    top: 30%;
    left: 40%;
    animation-duration: 35s;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-50px, 50px);
    }

    100% {
        transform: translate(40px, -30px);
    }
}

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

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    box-shadow: var(--glass-shadow);
    position: sticky;
    top: 20px;
    z-index: 100;
    transition: padding 0.3s ease;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.05em;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: left center;
}

.logo svg {
    color: var(--accent-orange);
    width: 24px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}



.logo-static {
    font-size: 18px;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.05em;
    color: var(--text-main);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.logo-static svg {
    color: var(--accent-orange);
    width: 20px;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    position: relative;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 100px;
    z-index: 1;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.04);
    border-radius: 100px;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.nav-links a:hover::before {
    transform: scale(1);
    opacity: 1;
}

.btn-black {
    background: var(--text-main);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.btn-black:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
    background: var(--accent-orange);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), #ff6333);
    color: #fff;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: var(--font-body);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 127, 80, 0.3);
}

.btn-primary::after,
.btn-black::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease-in-out;
    pointer-events: none;
}

.btn-primary:hover::after,
.btn-black:hover::after {
    left: 150%;
}

section {
    margin-bottom: 140px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-inline: auto;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
}

.doc-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, var(--accent-orange), transparent);
    margin: 0 auto 30px auto;
}

.tags-wrap {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tag {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--text-main);
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
}

.tag:hover {
    transform: scale(1.05);
    color: var(--accent-orange);
    border-color: rgba(255, 127, 80, 0.3);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}

h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-main);
}

h1 .gradient {
    background: linear-gradient(90deg, #FF7F50, #f59e0b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 400;
}

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

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 127, 80, 0.1), transparent);
    transform: skewX(-25deg);
    transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
}

.stat-card:hover::after {
    left: 150%;
}

.stat-card:hover::before {
    background: var(--accent-orange);
    height: 80%;
    top: 10%;
}

.stat-card:hover {
    transform: scale(1.04);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    background: #fff;
    border-color: rgba(255, 127, 80, 0.15);
}

.stat-card h3 {
    font-size: 56px;
    color: var(--accent-orange);
    margin-bottom: 5px;
    font-weight: 800;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 3;
}

.stat-card:hover h3 {
    transform: scale(1.1) translateY(-4px);
}

.stat-card p {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.4s;
    position: relative;
    z-index: 3;
}

.stat-card:hover p {
    color: var(--text-main);
}

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

.bento-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: var(--text-main);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    transform: skewX(-25deg);
    transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 10;
}

.bento-item:hover::before {
    left: 150%;
}

.bento-item:hover {
    transform: scale(1.02);
    box-shadow: var(--glass-shadow-hover);
    background: var(--glass-bg-hover);
}

.bento-item>div,
.bento-item>span {
    position: relative;
    z-index: 11;
    transition: transform 0.4s;
}

.bento-item h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
}

.bento-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.span-2 {
    grid-column: span 2;
}

.bg-highlight-orange {
    background: linear-gradient(135deg, rgba(255, 127, 80, 0.08), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(255, 127, 80, 0.3);
}

.bg-highlight-blue {
    background: linear-gradient(135deg, rgba(36, 49, 82, 0.06), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(36, 49, 82, 0.1);
}

.bg-highlight-slate {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(15, 23, 42, 0.1);
}

.bg-highlight-emerald {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.bento-small {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.8), 0 4px 10px rgba(0, 0, 0, 0.02);
    padding: 30px;
}

.bento-small:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.15);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 1), 0 10px 20px rgba(0, 0, 0, 0.04);
    transform: scale(1.03);
}

.bento-small h3 {
    font-size: 20px;
}

.bento-small p {
    font-size: 14px;
    margin-bottom: 20px;
}

.more-link {
    margin-top: auto;
    align-self: flex-end;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-main);
    background-color: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item:hover .more-link {
    background-color: var(--text-main);
    color: #fff;
    transform: translateX(8px);
}

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

.step-card {
    background: #fff;
    border-top: 4px solid var(--accent-orange);
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-num {
    font-size: 60px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: rgba(15, 23, 42, 0.06);
    margin-bottom: 5px;
    line-height: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.price-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--glass-shadow);
    position: relative;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 50%;
    opacity: 0.5;
}

.price-card:hover {
    transform: scale(1.03);
    background: #fff;
    box-shadow: var(--glass-shadow-hover);
}

.price-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-weight: 700;
}

.price-card .cost {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
}

.price-highlight {
    border: 2px solid var(--accent-orange);
    background: #fff;
    box-shadow: 0 20px 40px rgba(255, 127, 80, 0.08);
}

/* --- Service Grids for Service Pages --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 127, 80, 0.2);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-main);
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

.principles-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    height: 380px;
}

.p-card {
    flex: 1;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.principles-grid:hover .p-card {
    flex: 0.8;
    opacity: 0.6;
    filter: grayscale(0.8);
}

.principles-grid .p-card:hover {
    flex: 1.4;
    opacity: 1;
    filter: grayscale(0);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    border-color: rgba(255, 127, 80, 0.3);
    transform: translateY(-10px);
    z-index: 10;
}

.p-num {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 150px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: rgba(15, 23, 42, 0.02);
    line-height: 1;
    letter-spacing: -0.05em;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    z-index: 0;
}

.p-card:hover .p-num {
    transform: scale(1.1) translate(-10px, 10px);
    color: rgba(255, 127, 80, 0.04);
}

.p-icon-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: auto;
    position: relative;
    z-index: 1;
    transition: transform 0.6s;
}

.shape-1 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), #ffb295);
    position: relative;
}

.shape-1::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--accent-orange);
    left: 25px;
    opacity: 0.5;
    transition: left 0.6s;
}

.p-card:hover .shape-1::after {
    left: -15px;
}

.shape-2 {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-blue), #5a6e9a);
    transform: rotate(45deg);
    margin-left: 10px;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.shape-2::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid var(--accent-blue);
    border-radius: 16px;
    opacity: 0.3;
    transition: transform 0.6s;
}

.p-card:hover .shape-2 {
    transform: rotate(0deg);
}

.p-card:hover .shape-2::after {
    transform: rotate(45deg) scale(0.8);
}

.shape-3 {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 3px solid var(--text-main);
    position: relative;
    transition: border-color 0.6s;
}

.shape-3::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    border: 3px dashed rgba(15, 23, 42, 0.3);
    border-radius: 8px;
    transition: all 0.6s;
}

.p-card:hover .shape-3 {
    border-color: rgba(15, 23, 42, 1);
}

.p-card:hover .shape-3::after {
    top: 5px;
    left: 5px;
    border-color: rgba(15, 23, 42, 0.6);
}

.p-content {
    position: relative;
    z-index: 1;
}

.p-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2px;
    transition: color 0.4s;
}

.p-card:hover .p-content h3 {
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.p-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s;
    max-height: 0;
    overflow: hidden;
}

.p-card:hover .p-content p {
    opacity: 1;
    transform: translateY(0);
    max-height: 150px;
    transition-delay: 0.1s;
}

.p-glow {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transition: all 0.8s;
}

.p-glow-orange {
    background: var(--accent-orange);
}

.p-glow-blue {
    background: var(--accent-blue);
}

.p-glow-slate {
    background: var(--text-muted);
}

.p-card:hover .p-glow {
    opacity: 0.15;
    transform: scale(1.5);
}

details {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    margin-bottom: 16px;
    padding: 24px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s;
}

details:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
    transform: scale(1.01);
    border-color: rgba(255, 127, 80, 0.2);
}

summary {
    font-size: 18px;
    font-weight: 600;
    outline: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    color: var(--text-main);
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    color: var(--text-muted);
    font-size: 24px;
    transition: transform 0.3s;
    background: #f8fafc;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

details[open] summary::after {
    content: '\00D7';
    transform: none;
    font-size: 28px;
    line-height: 1;
    background: var(--accent-orange);
    color: #fff;
}

details p {
    color: var(--text-muted);
    margin-top: 20px;
    line-height: 1.7;
    padding-right: 40px;
    font-weight: 400;
}

.cta-section {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 127, 80, 0.1);
    filter: blur(80px);
    border-radius: 50%;
}

footer {
    margin-top: 80px;
    padding: 60px 0 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--text-main);
    font-weight: 600;
    font-family: var(--font-heading);
}

.footer-col p,
.footer-col a {
    color: var(--text-muted);
    line-height: 1.8;
    text-decoration: none;
    display: block;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 24px;
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

.about-wrapper {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 80px 60px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--glass-blur);
}

.about-heading, .cta-heading {
    font-size: 48px;
    margin-bottom: 24px;
}

.about-text {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

.quote-wrap {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-top: 20px;
}

.quote-mark {
    font-size: 60px;
    font-family: var(--font-heading);
    color: rgba(255, 127, 80, 0.2);
    position: absolute;
    top: -30px;
    left: -20px;
}

.quote-text {
    font-size: 20px;
    color: var(--text-main);
    font-weight: 500;
    font-style: normal;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.quote-btn-wrap {
    margin-top: 30px;
}

.cta-text {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .span-2 {
        grid-column: span 1;
    }

    h1 {
        font-size: 50px;
    }

    .stats-grid,
    .timeline,
    .pricing-grid,
    .about-wrap {
        grid-template-columns: 1fr;
    }

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

    .watermark {
        display: none;
    }
}

@media (max-width: 768px) {
    .app-container {
        padding: 16px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .hero {
        padding-top: 60px;
        min-height: auto;
        padding-bottom: 30px;
    }

    .doc-line {
        height: 40px;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .about-wrapper {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .about-heading, .cta-heading {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .about-text, .quote-text {
        font-size: 16px;
    }

    .quote-mark {
        left: 0;
    }

    .bento-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .bento-item,
    .bento-small {
        padding: 24px;
    }

    .stats-grid,
    .timeline,
    .pricing-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .principles-grid {
        flex-direction: column;
        height: auto;
    }

    .principles-grid .p-card {
        padding: 24px;
        height: auto;
        justify-content: flex-start;
        flex: none !important;
        width: 100%;
        box-sizing: border-box;
    }

    .principles-grid .p-card .p-content p {
        opacity: 1;
        transform: none;
        max-height: none;
    }

    .principles-grid .p-card:hover {
        transform: none;
    }

    .principles-grid:hover .p-card {
        filter: none;
        opacity: 1;
    }

    .cta-section {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    footer {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .nav-links {
        display: none;
    }
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto 30px auto;
    position: relative;
    z-index: 2;
}

.cta-form input {
    padding: 16px 24px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 50px;
    font-size: 16px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: rgba(255, 255, 255, 0.9);
}

.cta-form input:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 4px rgba(255, 127, 80, 0.1);
}

.form-status {
    font-size: 14px;
    font-weight: 500;
    height: 20px;
    transition: color 0.3s;
    margin-top: -8px;
}

.form-status.success {
    color: #10b981;
}

.form-status.error {
    color: #ef4444;
}