/* ============================================
   Neni Consulting — Brand Stylesheet
   Colors: Vibrant Red #FF3130 | White #FFFFFF
           Orange #FF8730 | Peach #FFB9AF
   Fonts:  Poppins (headings) | Open Sans (body)
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- Dotted Surface Background --- */
#dotted-surface {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

#dotted-surface canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

:root {
    --red: #FF3130;
    --red-dark: #E02A2A;
    --white: #FFFFFF;
    --orange: #FF8730;
    --orange-dark: #F07820;
    --peach: #FFB9AF;
    --peach-light: #FFF5F3;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --container-max: 1200px;
    --section-padding: 100px 0;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
}

.section-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
    margin-bottom: 12px;
}

.section-label-light {
    color: var(--peach);
}

.text-highlight {
    color: var(--red);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn-cta {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255, 135, 48, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 70%,
        transparent 100%
    );
    animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    60% { left: 120%; }
    100% { left: 120%; }
}

.btn-cta:hover {
    background: var(--orange-dark);
    box-shadow: 0 6px 24px rgba(255, 135, 48, 0.45);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

.btn-success {
    background: #22C55E;
}

.btn-outline {
    background: transparent;
    color: var(--gray-800);
    border: 2px solid var(--gray-100);
}

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-bottom-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    border-bottom-color: var(--gray-100);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo img {
    height: 69px;
    width: auto;
    margin-bottom: -6px;
}

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

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-600);
    transition: color var(--transition);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* --- Hero --- */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, rgba(255,255,255,0.45) 0%, rgba(255,245,243,0.45) 100%);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape-circle-lg {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: var(--peach);
    opacity: 0.2;
}

.shape-circle-sm {
    position: absolute;
    bottom: 40px;
    left: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0.08;
}

.shape-dot {
    position: absolute;
    top: 50%;
    right: 15%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0.3;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
    margin-bottom: 16px;
}

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Graphic */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    position: relative;
    width: 380px;
    height: 380px;
}

.graphic-block {
    position: absolute;
    border-radius: 24px;
}

.block-1 {
    width: 200px;
    height: 200px;
    background: var(--red);
    top: 20px;
    left: 20px;
    border-radius: 32px;
}

.block-2 {
    width: 160px;
    height: 160px;
    background: var(--peach);
    bottom: 40px;
    right: 20px;
    border-radius: 28px;
}

.block-3 {
    width: 120px;
    height: 120px;
    background: var(--orange);
    bottom: 20px;
    left: 80px;
    border-radius: 50%;
}

.graphic-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--red);
}

.dot-1 {
    width: 16px;
    height: 16px;
    top: 0;
    right: 100px;
}

.dot-2 {
    width: 10px;
    height: 10px;
    bottom: 120px;
    left: 0;
    background: var(--peach);
}

/* --- Services --- */
.services {
    padding: var(--section-padding);
    background: rgba(255, 255, 255, 0.45);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--gray-600);
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 36px 28px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
    border-color: var(--peach);
    box-shadow: 0 8px 32px rgba(255, 49, 48, 0.08);
    transform: translateY(-4px);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--gray-900);
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* --- About --- */
.about {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-graphic {
    position: relative;
    width: 400px;
    height: 400px;
}

.about-block {
    position: absolute;
    border-radius: 24px;
}

.about-block-1 {
    width: 260px;
    height: 300px;
    background: var(--red);
    top: 20px;
    left: 0;
    border-radius: 32px;
}

.about-block-2 {
    width: 180px;
    height: 220px;
    background: var(--peach);
    bottom: 0;
    right: 0;
    border-radius: 28px;
}

.about-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--orange);
    border-radius: 50%;
    top: 0;
    right: 60px;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
    font-size: 1.0625rem;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--gray-100);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: var(--red);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* --- Approach --- */
.approach {
    padding: var(--section-padding);
    background: rgba(255, 255, 255, 0.45);
}

.approach-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}

.step-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 3rem;
    color: var(--peach);
    margin-bottom: 16px;
    line-height: 1;
}

.step h3 {
    margin-bottom: 12px;
    color: var(--gray-900);
}

.step p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.65;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--gray-100);
    margin-top: 32px;
    flex-shrink: 0;
}

/* --- Awards --- */
.awards {
    padding: var(--section-padding);
    background: var(--gray-50);
}

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

.award-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.award-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 49, 48, 0.1);
    border-color: var(--peach);
}

.award-badge {
    margin-bottom: 20px;
}

.award-year {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    background: var(--red);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.award-card h3 {
    font-size: 1.375rem;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.3;
}

.award-subtitle {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
    margin-bottom: 16px;
}

.award-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 12px;
}

.award-card p:last-child {
    margin-bottom: 0;
}

.award-card .award-note {
    font-size: 0.875rem;
    color: var(--gray-400);
    font-style: italic;
}

.awards-cta {
    text-align: center;
    margin-top: 48px;
}

.awards-cta-container {
    text-align: center;
    max-width: 640px;
}

.awards-cta-container h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.awards-cta-container p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    font-size: 1.0625rem;
}

.section-header-compact {
    margin-bottom: 48px;
}

/* --- Fractional CPO Page --- */
.cpo-scenarios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1060px;
    margin: 0 auto;
}

/* --- Comparison Cards --- */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.comparison-grid > .comparison-card:not(.comparison-card-highlight) {
    transform: scale(0.85);
}

.comparison-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: 40px 32px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 49, 48, 0.08);
}

.comparison-card-highlight {
    border-color: var(--peach);
    background: var(--peach-light);
}

.comparison-card-highlight:hover {
    border-color: var(--red);
    box-shadow: 0 12px 40px rgba(255, 49, 48, 0.15);
}

.comparison-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.comparison-label-accent {
    color: var(--red);
}

.comparison-card h3 {
    font-size: 1.375rem;
    color: var(--gray-900);
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.comparison-attr {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
}

.comparison-value {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* --- CPO Teaser (Landing Page) --- */
.cpo-teaser {
    padding: var(--section-padding);
    background: var(--peach-light);
}

.cpo-teaser-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cpo-teaser-content h2 {
    margin-bottom: 24px;
}

.cpo-teaser-content p {
    color: var(--gray-600);
    margin-bottom: 32px;
    font-size: 1.0625rem;
}

.cpo-teaser-visual {
    display: flex;
    justify-content: center;
}

.cpo-teaser-graphic {
    position: relative;
    width: 300px;
    height: 300px;
}

.cpo-block {
    position: absolute;
    border-radius: 24px;
}

.cpo-block-1 {
    width: 180px;
    height: 220px;
    background: var(--red);
    top: 10px;
    left: 10px;
    border-radius: 32px;
}

.cpo-block-2 {
    width: 140px;
    height: 160px;
    background: var(--orange);
    bottom: 10px;
    right: 10px;
    border-radius: 28px;
}

.cpo-dot {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--peach);
    border-radius: 50%;
    top: 0;
    right: 40px;
}

/* --- FAQ Accordion --- */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-card:hover {
    border-color: var(--peach);
    box-shadow: 0 4px 20px rgba(255, 49, 48, 0.06);
}

.faq-card.active {
    border-color: var(--peach);
    box-shadow: 0 8px 32px rgba(255, 49, 48, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--gray-900);
    line-height: 1.4;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--red);
}

.faq-question:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: -2px;
    border-radius: 16px;
}

.faq-question:active {
    transform: scale(0.995);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--peach-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color var(--transition);
}

.faq-card.active .faq-icon {
    transform: rotate(45deg);
    background: var(--red);
}

.faq-icon svg {
    transition: stroke var(--transition);
}

.faq-card.active .faq-icon svg line {
    stroke: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-card.active .faq-answer {
    max-height: 600px;
}

.faq-answer-inner {
    padding: 0 28px 28px;
    border-top: 1px solid var(--gray-100);
    padding-top: 20px;
}

.faq-answer-inner ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-answer-inner li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-answer-inner li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--peach);
}

.faq-answer-inner li strong {
    color: var(--gray-800);
    font-weight: 600;
}

/* --- Awards Page --- */
.awards-page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, rgba(255,255,255,0.45) 0%, rgba(255,245,243,0.45) 100%);
    overflow: hidden;
    text-align: center;
}

.awards-page-hero h1 {
    margin-bottom: 16px;
}

.awards-page-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 520px;
    margin: 0 auto;
}

.hero-logo {
    max-width: 340px;
    width: 100%;
    margin-top: 2.5rem;
}

.award-detail {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.45);
}

.award-detail-alt {
    background: var(--gray-50);
}

.award-detail-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 24px;
    padding: 48px;
    transition: box-shadow var(--transition);
}

.award-detail-card:hover {
    box-shadow: 0 12px 40px rgba(255, 49, 48, 0.08);
}

.award-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-100);
}

.award-detail-badge {
    flex-shrink: 0;
}

.award-detail-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 4px;
}

.award-detail-header .award-subtitle {
    margin-bottom: 0;
}

.award-detail-body p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.award-detail-body p:last-child {
    margin-bottom: 0;
}

.award-quote {
    margin: 24px 0;
    padding: 24px 28px;
    background: var(--peach-light);
    border-left: 4px solid var(--red);
    border-radius: 0 12px 12px 0;
    font-size: 1.0625rem;
    color: var(--gray-800);
    line-height: 1.7;
}

.award-quote strong {
    color: var(--red);
}

/* --- Finalist Cards --- */
.finalist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.finalist-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.finalist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 135, 48, 0.1);
    border-color: var(--peach);
}

.finalist-badge {
    margin-bottom: 16px;
}

.finalist-card h3 {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.3;
}

.finalist-category {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
}

.card-description {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 8px;
    line-height: 1.6;
}

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

.speaking-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.speaking-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 49, 48, 0.08);
    border-color: var(--peach);
}

.speaking-card-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    background: var(--red);
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.speaking-card h3 {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.speaking-card-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 8px;
}

/* --- Contact --- */
.contact {
    padding: var(--section-padding);
    background: var(--red);
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.0625rem;
}

/* --- Form --- */
.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-100);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 49, 48, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* --- Selector Chips --- */
.selector-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-100);
    padding: 14px;
    border-radius: 24px;
}

.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--gray-100);
    background: var(--white);
    color: var(--gray-800);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    user-select: none;
    flex-grow: 1;
    white-space: nowrap;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.2s ease;
}

.chip:hover {
    border-color: var(--peach);
    color: var(--red);
}

.chip:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

.chip:active {
    transform: scale(0.97);
}

.chip-check {
    display: flex;
    align-items: center;
    width: 0;
    margin-left: 0;
    overflow: hidden;
    transition: width 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), margin-left 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chip-check svg {
    transform: scale(0);
    opacity: 0;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.15s ease;
}

.chip.selected {
    background: var(--red);
    border-color: var(--red-dark);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255, 49, 48, 0.3);
}

.chip.selected:hover {
    background: var(--red-dark);
    color: var(--white);
}

.chip.selected .chip-check {
    width: 18px;
    margin-left: 8px;
}

.chip.selected .chip-check svg {
    transform: scale(1.2);
    opacity: 1;
}

@keyframes chip-tick {
    0% { transform: scale(0); }
    60% { transform: scale(1.4); }
    100% { transform: scale(1.2); }
}

.chip.just-selected .chip-check svg {
    animation: chip-tick 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* --- Footer --- */
.footer {
    background: var(--gray-900);
    padding: 64px 0 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 48px;
}

.footer-logo {
    height: 103.5px;
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.9375rem;
    max-width: 320px;
}

.footer-links {
    display: flex;
    gap: 64px;
    justify-content: flex-end;
    margin-left: auto;
}

.footer-col h4 {
    color: var(--gray-400);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 0.9375rem;
    color: var(--gray-400);
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--gray-400);
    text-align: center;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-graphic {
        width: 300px;
        height: 300px;
    }

    .block-1 { width: 160px; height: 160px; }
    .block-2 { width: 130px; height: 130px; }
    .block-3 { width: 100px; height: 100px; }

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

    .about-visual {
        order: -1;
    }

    .about-graphic {
        width: 320px;
        height: 320px;
    }

    .about-block-1 { width: 200px; height: 240px; }
    .about-block-2 { width: 140px; height: 180px; }

    .awards-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .finalist-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .speaking-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

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

    .comparison-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 800px;
    }

    .cpo-teaser-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cpo-teaser-visual {
        order: -1;
    }
}

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

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--gray-100);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform var(--transition), opacity var(--transition);
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 120px 0 72px;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .approach-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin-top: 0;
    }

    .stats-row {
        flex-direction: column;
        gap: 24px;
    }

    .award-detail-card {
        padding: 32px 24px;
    }

    .award-detail-header {
        flex-direction: column;
        gap: 16px;
    }

    .awards-page-hero {
        padding: 120px 0 60px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cpo-scenarios-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .cpo-teaser-graphic {
        width: 240px;
        height: 240px;
    }

    .cpo-block-1 { width: 140px; height: 170px; }
    .cpo-block-2 { width: 110px; height: 130px; }

    .footer-container {
        justify-content: flex-start;
    }

    .footer-links {
        justify-content: flex-start;
        gap: 48px;
    }

    .hero-graphic {
        width: 240px;
        height: 240px;
    }

    .block-1 { width: 130px; height: 130px; top: 10px; left: 10px; }
    .block-2 { width: 100px; height: 100px; }
    .block-3 { width: 80px; height: 80px; left: 60px; }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 28px 20px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }

    .faq-question {
        padding: 20px 20px;
        font-size: 0.9375rem;
    }

    .faq-answer-inner {
        padding: 0 20px 20px;
        padding-top: 16px;
    }
}
