/* ===================================
   NeforissTrade - Capital Management
   Long-Form Funnel Design
   =================================== */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7f;
    --accent-gold: #d4af37;
    --accent-blue: #4a90b8;
    --dark-bg: #0f1e29;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --border-light: #e0e0e0;
    --success: #27ae60;
    --shadow: rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* === CONTAINERS === */
.container-narrow {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === NAVIGATION === */
.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 4px 20px var(--shadow);
    z-index: 1000;
    max-width: 900px;
    width: calc(100% - 40px);
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-blue);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* === HERO === */
.hero-visual {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-blue) 100%);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 20px 80px;
}

.hero-content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.hero-visual h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 400;
}

.cta-hero {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 18px 45px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #c49d2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* === STORY INTRO === */
.story-intro {
    padding: 100px 20px;
    background: var(--white);
}

.intro-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 400;
    text-align: center;
}

/* === PROBLEM SECTION === */
.problem-section {
    padding: 120px 20px;
    background: var(--light-bg);
}

.split-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.split-text,
.split-image {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.split-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.split-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px var(--shadow);
}

.cta-inline {
    display: inline-block;
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 1.15rem;
    margin-top: 15px;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 3px;
}

.cta-inline:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* === INSIGHT REVEAL === */
.insight-reveal {
    padding: 120px 20px;
    background: var(--white);
}

.insight-reveal h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.insight-lead {
    font-size: 1.4rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 500;
}

.insight-cards {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.insight-card {
    flex: 1;
    padding: 40px 30px;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
}

.insight-icon {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.insight-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

/* === TRUST BUILDING === */
.trust-building {
    padding: 120px 20px;
    background: var(--primary-color);
    color: var(--white);
}

.trust-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-stat-block {
    flex: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--white);
}

.trust-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* === TESTIMONIALS === */
.testimonial-flow {
    padding: 100px 20px;
    background: var(--light-bg);
}

.testimonial {
    background: var(--white);
    padding: 50px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* === APPROACH SECTION === */
.approach-section {
    padding: 120px 20px;
    background: var(--white);
}

.approach-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.approach-item {
    flex: 1 1 calc(50% - 20px);
    padding: 40px;
    background: var(--light-bg);
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.approach-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* === BENEFITS === */
.benefits-reveal {
    padding: 120px 20px;
    background: var(--light-bg);
}

.benefits-reveal h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.benefits-list {
    margin-bottom: 50px;
}

.benefits-list li {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-size: 1.5rem;
    font-weight: 700;
}

.benefits-list strong {
    color: var(--primary-color);
}

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

.cta-primary {
    display: inline-block;
    background: var(--accent-blue);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 184, 0.3);
}

/* === SERVICES PRICING === */
.services-pricing {
    padding: 120px 20px;
    background: var(--white);
}

.services-pricing h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.service-card.featured {
    border: 3px solid var(--accent-gold);
    background: var(--white);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 8px 45px;
    font-weight: 600;
    font-size: 0.85rem;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-header {
    padding: 35px 30px 25px;
    background: var(--white);
}

.service-card.featured .service-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card.featured .service-header h3 {
    color: var(--white);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.service-card.featured .service-price {
    color: var(--accent-gold);
}

.service-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-features {
    margin-bottom: 30px;
    flex: 1;
}

.service-features li {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

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

.btn-select-service {
    width: 100%;
    padding: 15px;
    background: var(--accent-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* === URGENCY SECTION === */
.urgency-section {
    padding: 100px 20px;
    background: var(--dark-bg);
    color: var(--white);
    text-align: center;
}

.urgency-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--white);
}

.urgency-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* === CONTACT FORM === */
.contact-form-section {
    padding: 120px 20px;
    background: var(--light-bg);
}

.contact-form-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    flex: 1;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.form-group input[readonly] {
    background: var(--light-bg);
    cursor: not-allowed;
}

.form-hint {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--accent-blue);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent-gold);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #c49d2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* === STICKY CTA === */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    padding: 20px;
    box-shadow: 0 -4px 20px var(--shadow);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sticky-cta-content span {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky {
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #c49d2e;
}

/* === FOOTER === */
.footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

/* === PAGE HEADER === */
.page-header {
    padding: 160px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* === ABOUT PAGE === */
.about-story {
    padding: 100px 20px;
    background: var(--white);
}

.about-story h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.story-lead {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 500;
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.philosophy-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.philosophy-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.philosophy-card {
    flex: 1 1 calc(50% - 15px);
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
}

.philosophy-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.team-section {
    padding: 100px 20px;
    background: var(--white);
}

.team-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.team-member {
    flex: 1 1 calc(50% - 20px);
    text-align: center;
}

.team-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--light-bg);
}

.team-member h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.team-role {
    font-size: 1.05rem;
    color: var(--accent-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.values-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.values-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.values-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-section {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

/* === SERVICES PAGE === */
.services-overview {
    padding: 60px 20px;
    background: var(--white);
}

.services-detailed {
    padding: 60px 20px;
    background: var(--light-bg);
}

.service-detail-card {
    background: var(--white);
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px var(--shadow);
}

.service-detail-card.featured-service {
    border: 3px solid var(--accent-gold);
    position: relative;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-light);
}

.service-detail-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.service-detail-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.service-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.detailed-features {
    margin: 20px 0;
}

.detailed-features li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.detailed-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.2rem;
}

.btn-service-select {
    display: inline-block;
    background: var(--accent-blue);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.service-process {
    padding: 100px 20px;
    background: var(--white);
}

.service-process h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.process-steps {
    display: flex;
    gap: 30px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* === CONTACT PAGE === */
.contact-info-section {
    padding: 100px 20px;
    background: var(--white);
}

.contact-split {
    display: flex;
    gap: 80px;
}

.contact-info-block,
.contact-map-placeholder {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.info-item a {
    color: var(--accent-blue);
}

.info-item a:hover {
    text-decoration: underline;
}

.info-note {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 10px;
}

.map-box {
    background: var(--light-bg);
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-cta-section {
    padding: 80px 20px;
    background: var(--light-bg);
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-cta-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.faq-section {
    padding: 100px 20px;
    background: var(--white);
}

.faq-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-light);
}

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

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* === THANKS PAGE === */
.thanks-section {
    padding: 120px 20px;
    background: var(--white);
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.service-confirmation {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.steps-list {
    list-style: decimal;
    padding-left: 30px;
}

.steps-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.btn-secondary,
.btn-outline {
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: var(--accent-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-color);
}

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

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

.thanks-info {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: left;
}

.thanks-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.thanks-info a {
    color: var(--accent-blue);
    text-decoration: underline;
}

.thanks-resources {
    padding: 80px 20px;
    background: var(--light-bg);
}

.thanks-resources h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.resource-cards {
    display: flex;
    gap: 30px;
}

.resource-card {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.resource-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.resource-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.resource-card a {
    color: var(--accent-blue);
    font-weight: 600;
}

.resource-card a:hover {
    text-decoration: underline;
}

/* === LEGAL PAGES === */
.legal-content {
    padding: 80px 20px;
    background: var(--white);
}

.legal-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 40px 0 20px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 30px 0 15px;
}

.legal-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 20px 0 10px;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 20px 30px;
    list-style: disc;
}

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--accent-blue);
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid var(--border-light);
}

.cookie-table th {
    background: var(--light-bg);
    color: var(--primary-color);
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-light);
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 30, 41, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -4px 20px var(--shadow);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: var(--accent-gold);
    color: var(--text-dark);
}

.btn-cookie-accept:hover {
    background: #c49d2e;
}

.btn-cookie-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .split-content,
    .trust-content,
    .contact-split {
        flex-direction: column;
        gap: 50px;
    }

    .insight-cards {
        flex-direction: column;
    }

    .approach-item,
    .philosophy-card {
        flex: 1 1 100%;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .process-steps {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 15px 20px;
        top: 10px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: 0 8px 30px var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-visual h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .intro-text {
        font-size: 1.2rem;
    }

    .split-text h2,
    .insight-reveal h2,
    .approach-section h2,
    .benefits-reveal h2,
    .services-pricing h2 {
        font-size: 2rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .sticky-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .team-grid {
        flex-direction: column;
    }

    .team-member {
        flex: 1 1 100%;
    }

    .resource-cards {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-secondary,
    .btn-outline {
        width: 100%;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .service-detail-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-visual h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .testimonial {
        padding: 30px 20px;
    }
}