/* NOTE: Font files are uploaded to /public/fonts/ — use Benzin for headings, Manrope for body.
   If these files are not present, fallback to Space Grotesk + system sans. */

/* Font Face Declarations */
@font-face {
    font-family: 'Benzin';
    src: url('/public/fonts/benzin-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Benzin';
    src: url('/public/fonts/benzin-extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Benzin';
    src: url('/public/fonts/benzin-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Benzin';
    src: url('/public/fonts/benzin-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Benzin';
    src: url('/public/fonts/benzin-semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/public/fonts/Manrope-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/public/fonts/Manrope-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: 'Manrope';
    src: url('/public/fonts/Manrope-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/public/fonts/Manrope-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/public/fonts/Manrope-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/public/fonts/Manrope-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

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

/* Root Variables */
:root {
    --color-white: #FFFFFF;
    --color-bone-white: #FAFAFA;
    --color-black: #000000;
    --color-grey: #DCDCDC;
    --color-yellow: #FFD60A;
    --font-heading: 'Benzin', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --section-padding: 120px 0;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 50%, #F8F8F8 100%);
    padding: 80px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 214, 10, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 214, 10, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.hero-logo {
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 2;
}

.brand-logo {
    height: 56px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.04));
}

.brand-logo:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(52px, 8vw, 104px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.hero-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: letterFadeUp 0.6s ease-out forwards;
    position: relative;
}

.hero-title span:nth-child(1) { animation-delay: 0.1s; }
.hero-title span:nth-child(2) { animation-delay: 0.15s; }
.hero-title span:nth-child(3) { animation-delay: 0.2s; }
.hero-title span:nth-child(4) { animation-delay: 0.25s; }
.hero-title span:nth-child(5) { 
    animation-delay: 0.3s; 
    background: linear-gradient(135deg, var(--color-yellow) 0%, #FFC300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}


@keyframes letterFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.5;
    margin-bottom: 56px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #444;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
    z-index: 2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--color-yellow);
    color: var(--color-black);
    border-color: var(--color-yellow);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(255, 214, 10, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(255, 214, 10, 0.4), 
        0 0 0 3px rgba(255, 214, 10, 0.2),
        0 0 20px rgba(255, 214, 10, 0.3);
    background: linear-gradient(135deg, var(--color-yellow) 0%, #FFC300 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--color-black);
    border-color: var(--color-black);
    font-weight: 600;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--color-black);
    color: var(--color-white);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Sections */
.section {
    padding: 120px 0;
}

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

.section-alt {
    background-color: var(--color-bone-white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 48px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Us Section */
#why {
    background: #FFFFFF;
    position: relative;
}

#why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, var(--color-yellow) 50%, transparent 100%);
    transform: translateX(-50%);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    margin-bottom: 0;
    align-items: start;
    align-items: end;
}

.why-left .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.why-description {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
    font-weight: 400;
}

.why-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 36px 28px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 50%, #F8F8F8 100%);
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-yellow), #FFC300);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.why-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15), 0 0 0 2px rgba(255, 214, 10, 0.15);
    border-color: rgba(255, 214, 10, 0.3);
}

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

.why-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 214, 10, 0.1) 0%, rgba(255, 214, 10, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: 1px solid rgba(255, 214, 10, 0.2);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--color-yellow) 0%, #FFC300 100%);
    color: var(--color-black);
    box-shadow: 0 6px 20px rgba(255, 214, 10, 0.3);
}

.why-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #222;
    letter-spacing: -0.01em;
}

.why-card p {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* Revenue Counter */
.revenue-counter {
    background: var(--color-white);
    padding: 56px 48px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 2px solid rgba(255, 214, 10, 0.2);
    max-width: 650px;
    margin: 56px auto 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFEF8 100%);
    position: relative;
    overflow: hidden;
}

.revenue-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-yellow), #FFC300);
    transform: translateX(-50%);
    border-radius: 0 0 4px 4px;
}

.revenue-counter::after {
    content: '🔥';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    animation: fire 2s ease-in-out infinite;
}

@keyframes fire {
    0%, 100% { transform: scale(1) rotate(-5deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.counter-label {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.counter-value {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-yellow) 0%, #FFC300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: -0.02em;
}

.counter-value::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 214, 10, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: pulse 3s infinite;
    z-index: -1;
}

.counter-note {
    font-size: 15px;
    color: #999;
    font-weight: 400;
    line-height: 1.4;
}

/* What We Do Section */
#what {
    background: linear-gradient(180deg, #FAFAFA 0%, #F8F8F8 100%) !important;
    position: relative;
}

#what::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 214, 10, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 214, 10, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

#what .section-subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: #555;
    margin-bottom: 64px;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 50%, #F8F8F8 100%);
    padding: 56px 36px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-yellow), #FFC300);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.15), 
        0 0 0 3px rgba(255, 214, 10, 0.2),
        0 0 30px rgba(255, 214, 10, 0.1);
    border-color: rgba(255, 214, 10, 0.3);
}

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

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    margin: 0 auto 36px;
    background: linear-gradient(135deg, rgba(255, 214, 10, 0.1) 0%, rgba(255, 214, 10, 0.05) 100%);
    border-radius: 50%;
    color: #333;
    position: relative;
    border: 2px solid rgba(255, 214, 10, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.15) rotate(-8deg);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--color-yellow) 0%, #FFC300 100%);
    color: var(--color-black);
    border-color: rgba(255, 214, 10, 0.4);
    box-shadow: 0 8px 24px rgba(255, 214, 10, 0.25);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #222;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.feature-description {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-weight: 400;
}

/* Deliverable Badges */
.deliverable-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 48px;
}

.deliverable-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(255, 214, 10, 0.15);
    font-size: 14px;
    font-weight: 600;
    color: #444;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    font-family: var(--font-body);
}

.deliverable-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 2px;
    background: var(--color-yellow);
    transform: translateX(-50%);
    border-radius: 0 0 2px 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.deliverable-badge:hover {
    background: rgba(255, 214, 10, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 214, 10, 0.3);
    color: #222;
    box-shadow: 0 4px 12px rgba(255, 214, 10, 0.15);
}

.deliverable-badge:hover::before {
    opacity: 1;
}

/* Use Cases */
#use-cases {
    background: #FFFFFF;
}

#use-cases .section-title {
    margin-bottom: 16px;
}

#use-cases .section-subtitle {
    margin-bottom: 64px;
    font-size: 18px;
    color: #666;
}

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

.use-case {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 32px;
    background: var(--color-white);
    border-radius: 16px;
    border: 1px solid #F0F0F0;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.use-case:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--color-yellow);
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
}

.use-case:hover .use-case-cta {
    opacity: 1;
    transform: translateY(0);
}

.use-case-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.use-case-icon {
    margin-bottom: 24px;
    color: var(--color-black);
    transition: var(--transition);
}

.use-case:hover .use-case-icon {
    transform: scale(1.08);
}

.use-case-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.use-case-text {
    font-size: 17px;
    color: #666;
    margin: 0 0 16px 0;
    flex-grow: 1;
}

.use-case-cta {
    font-size: 14px;
    color: var(--color-yellow);
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease-in-out;
    margin-top: auto;
}

/* Comparison Section */
#comparison {
    background: #FAFAFA;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 64px;
}

.comparison-card {
    padding: 48px 40px;
    border-radius: 16px;
    border: 1px solid #F0F0F0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.25s ease-in-out;
}

.comparison-without {
    background: linear-gradient(135deg, #FEFEFE 0%, #F8F8F8 100%);
}

.comparison-with {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFEF8 100%);
    border-color: rgba(255, 214, 10, 0.3);
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.comparison-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.comparison-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.comparison-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.comparison-icon-bad {
    background: rgba(255, 68, 68, 0.1);
}

.comparison-icon-good {
    background: rgba(255, 214, 10, 0.1);
}

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

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.comparison-check {
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-item span {
    font-size: 16px;
    line-height: 1.4;
    color: #333;
}

/* Impact Section */
#impact {
    background: #FFFFFF;
    position: relative;
    padding-bottom: 60px !important;
}

#impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 214, 10, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 214, 10, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 64px;
}

.impact-card {
    padding: 48px 20px;
    background: var(--color-white);
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.impact-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.impact-accent {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: linear-gradient(90deg, #FFD60A 0%, #FFC300 100%);
    border-radius: 0 0 5px 5px;
}

.impact-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    margin-top: 8px;
    background: linear-gradient(135deg, #FFD60A 0%, #FFC300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
    line-height: 1.1;
}

.impact-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 214, 10, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
}

.impact-label {
    font-size: 14px;
    color: #555;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.impact-sublabel {
    font-size: 12px;
    color: #777;
    line-height: 1.3;
    font-weight: 400;
}

/* Guarantee Section */
#guarantee {
    background: #FAFAFA;
    position: relative;
}

#guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 214, 10, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.guarantee-card {
    position: relative;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFEF8 100%);
    padding: 64px 56px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border: 2px solid rgba(255, 214, 10, 0.3);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform: scale(0.95);
    opacity: 0;
}

.guarantee-card.animate-in {
    transform: scale(1);
    opacity: 1;
}

.guarantee-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.guarantee-accent {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 8px;
    background: linear-gradient(90deg, #FFD60A 0%, #FFC300 100%);
    border-radius: 0 0 8px 8px;
}

.guarantee-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-yellow) 0%, #FFC300 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-black);
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 6px 20px rgba(255, 214, 10, 0.4);
    animation: badge-bounce 2s ease-in-out infinite;
}

@keyframes badge-bounce {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.guarantee-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 28px;
    color: #222;
    letter-spacing: -0.02em;
}

.guarantee-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-note {
    color: #777;
    font-style: italic;
    font-size: 15px;
}

/* Booking Section */
#book {
    background: #F0F0F0 !important;
    position: relative;
    color: #000000 !important;
    overflow-x: hidden;
}

#book * {
    color: #000000 !important;
}

#book .section-title {
    color: #000000 !important;
}

#book .section-subtitle {
    color: #444444 !important;
}

#book .book-trust-signal {
    color: #555555 !important;
}

#book .trust-bullet {
    color: #333333 !important;
}

#book::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 214, 10, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 214, 10, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

#book .section-subtitle {
    margin-bottom: 32px;
    font-size: 22px;
    color: #444;
}

.book-trust-signal {
    font-size: 18px;
    color: #555;
    margin-bottom: 56px;
    text-align: center;
    font-weight: 500;
}

.book-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.book-left {
    padding-right: 32px;
}

.book-left h2 {
    text-align: left;
}

.book-left p {
    text-align: left;
}

.trust-bullets {
    list-style: none;
    padding: 0;
    margin: 48px 0;
}

.trust-bullet {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.trust-bullet svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: var(--color-yellow);
}

.book-right {
    position: relative;
}

.calendly-container {
    width: 100%;
}

.calendly-inline-widget {
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12) !important;
    border: 2px solid rgba(255, 214, 10, 0.2) !important;
    background: var(--color-white);
    width: 100% !important;
    max-width: 100% !important;
    min-width: 280px !important;
}

.premium-calendly-wrapper {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFEF8 100%);
    padding: 24px;
    border-radius: 24px;
    border: 2px solid rgba(255, 214, 10, 0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.premium-calendly-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-yellow), #FFC300);
    transform: translateX(-50%);
    border-radius: 0 0 4px 4px;
}

/* Footer */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 64px 0;
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.footer-text {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-top: 8px;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #333;
    color: #999;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    border-radius: 50%;
    border: 2px solid #444;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-yellow) 0%, #FFC300 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

.social-link:hover,
.social-link:focus {
    color: var(--color-yellow);
    transform: translateY(-6px) scale(1.1);
    border-color: var(--color-yellow);
    box-shadow: 0 8px 24px rgba(255, 214, 10, 0.4);
}

.social-link:hover::before,
.social-link:focus::before {
    opacity: 1;
}

.social-link svg {
    position: relative;
    z-index: 2;
    width: 24px;
    height: 24px;
    transition: all 0.4s ease;
}

.social-link:hover svg,
.social-link:focus svg {
    transform: scale(1.1);
}

/* Imprint Link Styling */
.imprint-link {
    background: #444 !important;
    border-color: #555 !important;
}

.imprint-link:hover,
.imprint-link:focus {
    background: var(--color-yellow) !important;
    color: var(--color-black) !important;
    border-color: var(--color-yellow) !important;
}

.imprint-link:hover::before,
.imprint-link:focus::before {
    opacity: 0 !important;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Intersection Observer Animation Setup */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .impact-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .book-content {
        gap: 48px;
    }
    
    .book-left {
        padding-right: 16px;
    }
}

@media (max-width: 968px) {
    .hero-title {
        font-size: clamp(48px, 8vw, 80px);
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .why-left .section-title {
        text-align: center;
    }
    
    .revenue-counter {
        margin-top: 32px;
        padding: 48px 32px;
    }
    
    .counter-value {
        font-size: 52px;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .impact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .book-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .book-left {
        padding-right: 0;
    }
    
    .book-left h2,
    .book-left p {
        text-align: center;
    }
    
    .deliverable-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-logo {
        margin-bottom: 32px;
    }
    
    .brand-logo {
        height: 40px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        min-width: 0;
        justify-content: center;
        margin: 0 auto;
        display: block;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 60px;
    }
    
    .deliverable-badges {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .revenue-counter {
        padding: 32px 24px;
    }
    
    .counter-value {
        font-size: 48px;
    }
    
    .guarantee-card {
        padding: 48px 32px;
    }
    
    .guarantee-badge {
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 10px;
    }
    
    .impact-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .social-link {
        width: 48px;
        height: 48px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .calendly-inline-widget {
        min-height: 600px !important;
        height: 600px !important;
        width: 100% !important;
        min-width: 280px !important;
        max-width: 100% !important;
    }
    
    #calendly .container {
        padding: 0 12px;
    }
    
    .section-cta {
        text-align: center;
        margin: 48px 0;
    }
    
    .section-cta h3 {
        font-size: 24px;
        margin-bottom: 16px;
        color: #333;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .guarantee-title {
        font-size: 28px;
    }
    
    .guarantee-text {
        font-size: 20px;
    }
    
    .counter-value {
        font-size: 40px;
    }
    
    .impact-number {
        font-size: 40px;
    }
    
    .feature-card {
        padding: 40px 24px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }
    
    .deliverable-badge {
        padding: 12px 16px;
        font-size: 13px;
    }
}

.section-cta {
    text-align: center;
    margin: 64px 0;
    padding: 48px 32px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFEF8 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 214, 10, 0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-yellow), #FFC300);
    transform: translateX(-50%);
    border-radius: 0 0 4px 4px;
}

.section-cta h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #222;
    letter-spacing: -0.01em;
}

.section-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Focus Styles for Accessibility */
*:focus {
    outline: 2px solid var(--color-yellow);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .feature-card,
    .use-case,
    .why-card,
    .guarantee-card,
    .comparison-card,
    .impact-card {
        border-width: 2px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .counter-value {
        animation: none;
    }
    
    .hero-title span {
        animation: none;
        opacity: 1;
        transform: none;
    }
}