/* =============================================
   Logic Pulley Corporate Site - CSS
   ============================================= */

/* =============================================
   Variables
   ============================================= */
:root {
    /* Colors for Green Theme */
    --color-primary: #004d26;
    /* 深い緑 */
    --color-primary-light: #1b7a4a;
    /* 明るめの緑 */
    --color-secondary: #00803e;
    /* アクセントの緑 */
    --color-accent: #c09e5a;
    /* ゴールド */
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F6F8F6;
    /* 微かな緑みのあるグレー */
    --color-border: #E5E7EB;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #004d26 0%, #1b7a4a 100%);
    --gradient-accent: linear-gradient(135deg, #1b7a4a 0%, #00803e 100%);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);

    /* Typography */
    --font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    --header-height: 80px;

    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
    list-style: none;
}

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

.section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-lead {
    text-align: center;
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 50px;
    line-height: 1.9;
}

.highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.pc-only {
    display: none;
}

@media (min-width: 768px) {
    .pc-only {
        display: inline;
    }
}

/* =============================================
   Buttons
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 77, 38, 0.3);
    /* green shadow */
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 77, 38, 0.4);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.125rem;
}

.btn-accent {
    background: linear-gradient(135deg, #c09e5a 0%, #b38f4a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(192, 158, 90, 0.3);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 158, 90, 0.4);
    color: white;
}

/* =============================================
   Header
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.nav {
    display: none;
}

@media (min-width: 1024px) {
    .nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-list a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

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

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.header-cta {
    display: none;
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    background: var(--color-accent);
    border-radius: 50px;
}

@media (min-width: 1024px) {
    .header-cta {
        display: inline-flex;
    }
}

.header-cta:hover {
    background: #e69518;
    transform: translateY(-2px);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #f8fbf9 0%, #eef6f0 100%);
    /* soft green tint */
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(27, 122, 74, 0.1), transparent 60%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle at bottom left, rgba(52, 168, 83, 0.08), transparent 50%);
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-tagline {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-description {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 2;
}

.hero-description strong {
    color: var(--color-text);
}

/* =============================================
   Pain Points Section
   ============================================= */
.pain-points {
    background: var(--color-bg-alt);
}

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

@media (min-width: 768px) {
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pain-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pain-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.pain-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.pain-card p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* =============================================
   Services Section
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #eef6f0 0%, #e2f0e6 100%);
    /* green tint */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.service-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-text);
}

.service-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.service-description {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.service-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-points li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
}

.service-points li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

/* =============================================
   Why Us Section
   ============================================= */
.why-us {
    background: var(--color-bg-alt);
}

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

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.why-card-header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card-header.green-alt {
    background: linear-gradient(135deg, #1b7a4a 0%, #29a063 100%);
    /* Green equivalent */
}

.why-card-header.green-alt {
    background: linear-gradient(135deg, #00803e 0%, #00b355 100%);
    /* Brighter green */
}

.why-card-header.gold {
    background: linear-gradient(135deg, #004d26 0%, #00803e 100%);
    /* Darker green */
}

.why-icon {
    font-size: 2.5rem;
    filter: grayscale(1) brightness(10);
}

.why-card-body {
    padding: 32px 24px;
}

.why-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.why-subtitle {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.why-card-body>p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.why-card-body ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why-card-body li {
    display: flex;
    align-items: flex-start;
    font-size: 0.8125rem;
    color: var(--color-text);
}

.why-card-body li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gradient-accent);
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 6px;
    flex-shrink: 0;
}

/* Certifications */
.certifications {
    margin-top: 60px;
    background: linear-gradient(135deg, #f8fbf9 0%, #eef6f0 100%);
    /* soft green */
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.certifications h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 24px;
}

.cert-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: white;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text);
    box-shadow: var(--shadow-sm);
}

/* =============================================
   Cases Section
   ============================================= */
.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        /* 2列になる分、余白を少し広くする */
    }
}

.case-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    padding: 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.case-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    /* adjusted green tint */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.case-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}

.case-card p {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* =============================================
   Media Section
   ============================================= */
.media {
    background: var(--color-bg-alt);
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .media-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.media-card {
    display: block;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.media-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.media-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.media-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.media-card:hover .media-thumbnail img {
    transform: scale(1.1);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 0, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.media-card:hover .play-icon {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.media-info {
    padding: 20px;
}

.media-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--color-primary);
    background: #e8f4fd;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.media-info h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.4;
}

.media-info p {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.sns-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.sns-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    background: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.sns-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.sns-btn.youtube {
    color: #FF0000;
    border: 2px solid #FFE5E5;
}

.sns-btn.note {
    color: #41C9B4;
    border: 2px solid #E5F9F6;
}

/* =============================================
   Message Section
   ============================================= */
.message-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .message-content {
        grid-template-columns: 280px 1fr;
    }
}

.message-photo {
    display: flex;
    justify-content: center;
}

.photo-placeholder {
    width: 240px;
    height: 240px;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fd 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
}

.photo-placeholder span {
    font-size: 3rem;
    margin-bottom: 8px;
}

.photo-placeholder p {
    font-size: 0.875rem;
}

.message-text p {
    margin-bottom: 16px;
    font-size: 0.9375rem;
    line-height: 2;
}

.message-text p:last-of-type {
    margin-bottom: 32px;
}

.message-signature {
    padding: 24px;
    background: var(--color-bg-alt);
    border-radius: 12px;
    text-align: center;
}

.message-signature p {
    margin-bottom: 4px;
    font-size: 0.875rem;
}

.signature-name {
    font-size: 1.5rem !important;
    font-weight: 900;
    color: var(--color-primary);
}

.signature-title {
    font-size: 0.8125rem !important;
    color: var(--color-text-muted);
}

/* =============================================
   Company Section
   ============================================= */
.company {
    background: var(--color-bg-alt);
}

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

@media (min-width: 768px) {
    .company-content {
        grid-template-columns: 1fr 1fr;
    }
}

.company-table {
    width: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.company-table tr {
    border-bottom: 1px solid var(--color-border);
}

.company-table tr:last-child {
    border-bottom: none;
}

.company-table th,
.company-table td {
    padding: 20px 24px;
    text-align: left;
    vertical-align: top;
}

.company-table th {
    width: 120px;
    background: #f8fafc;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text);
}

.company-table td {
    font-size: 0.9375rem;
}

.company-table a {
    color: var(--color-primary);
}

.company-table a:hover {
    text-decoration: underline;
}

.company-mission {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mission-box,
.vision-box {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

.mission-box h3,
.vision-box h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.mission-statement,
.vision-statement {
    font-size: 1.375rem;
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.5;
}

.mission-box p:last-child,
.vision-box p:last-child {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* =============================================
   Pricing Section
   ============================================= */
.pricing-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--color-bg-alt);
    padding: 48px;
    border-radius: 20px;
}

.pricing-content p {
    font-size: 1rem;
    margin-bottom: 16px;
}

.pricing-note {
    font-size: 1.125rem !important;
    color: var(--color-text);
}

/* =============================================
   CTA Section
   ============================================= */
.cta {
    background: var(--gradient-primary);
    text-align: center;
    padding: 80px 24px;
}

.cta-title {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
}

.cta-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 2;
}

.cta-description strong {
    color: white;
}

.cta .btn-primary {
    background: var(--color-accent);
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
}

.cta .btn-primary:hover {
    background: #e69518;
}

.cta-note {
    margin-top: 16px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* =============================================
   Footer
   ============================================= */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2.5fr 1.2fr 1fr 1.2fr 1fr;
    }
}

.footer-brand {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-brand {
        text-align: left;
    }
}

.footer-logo {
    height: 48px;
    margin: 0 auto 12px;
}

@media (min-width: 768px) {
    .footer-logo {
        margin: 0 0 12px;
    }
}

.footer-brand p {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.8125rem !important;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

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

.footer-links a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: white;
}

/* =============================================
   Fixed CTA (Mobile)
   ============================================= */
.fixed-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

@media (min-width: 1024px) {
    .fixed-cta {
        display: none;
    }
}

.fixed-cta .btn {
    width: 100%;
}

/* Padding bottom for fixed CTA */
body {
    padding-bottom: 80px;
}

@media (min-width: 1024px) {
    body {
        padding-bottom: 0;
    }
}

/* =============================================
   Mobile Navigation
   ============================================= */
.nav.active {
    display: block;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-height));
    background: rgba(255, 255, 255, 0.98);
    padding: 40px 24px 80px;
    z-index: 999;
    overflow-y: auto;
}

.nav.active .nav-list {
    flex-direction: column;
    gap: 24px;
}

.nav.active .nav-list a {
    font-size: 1.25rem;
}

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

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

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

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

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}