/* ======================================
   TABLE OF CONTENTS
   ======================================

   1. CSS Reset & Base Styles
   2. Typography
   3. Color Variables
   4. Layout & Grid
   5. Header & Navigation
   6. Mobile Menu
   7. Hero Section
   8. Feature Boxes
   9. Content Sections
   10. Cards & Boxes
   11. Forms & Inputs
   12. Buttons
   13. Footer
   14. Cookie Banner & Modal
   15. Animations
   16. Utility Classes
   17. Media Queries
   18. Page-Specific Styles
      18.1 Home Page
      18.2 Who I Help Page
      18.3 Results Page
      18.4 Contacts Page
      18.5 Methodology Page
      18.6 Pricing Page
      18.7 Thank You Page
      18.8 Legal Pages
   19. Print Styles

====================================== */

/* ======================================
   1. CSS Reset & Base Styles
====================================== */

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

html {
    font-size: 62.5%; 
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #E1E1E1;
    background-color: #0A1023;
    min-height: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select {
    font: inherit;
}

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

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ======================================
   2. Typography
====================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

h1 {
    font-size: 4.8rem;
    letter-spacing: -0.5px;
    margin-bottom: 3rem;
}

h2 {
    font-size: 3.6rem;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 2.4rem;
    letter-spacing: -0.2px;
}

h4 {
    font-size: 2rem;
    letter-spacing: -0.1px;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.6rem;
}

p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 700;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 0.3rem;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.3), #D4AF37, rgba(212, 175, 55, 0.3));
}

.section-subtitle {
    text-align: center;
    font-size: 1.8rem;
    color: #9DA4B4;
    margin-bottom: 5rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 70rem;
}


.code, code, pre {
    font-family: 'Fira Code', monospace;
}

/* ======================================
   3. Color Variables
====================================== */

:root {
    
    --color-primary-bg: #0A1023;
    --color-secondary-bg: #121B36;
    --color-gold: #D4AF37;
    --color-gold-light: #F8E9A1;
    --color-gold-dark: #A17E1D;
    
    
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #E1E1E1;
    --color-text-muted: #9DA4B4;
    
    
    --color-border: rgba(212, 175, 55, 0.3);
    --color-box-shadow: rgba(212, 175, 55, 0.15);
    --color-error: #CF6679;
    --color-success: #4CAF50;
    
    
    --gradient-gold: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
    --gradient-dark: linear-gradient(135deg, #080E1F, #121B36);
    
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ======================================
   4. Layout & Grid
====================================== */

.container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-image {
    position: relative;
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-medium);
}

.section-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--color-gold);
    border-radius: 0.8rem;
    opacity: 0.3;
    z-index: 1;
}

.section-image:hover {
    transform: translateY(-1rem);
}

.section-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform var(--transition-medium);
}

.section-image:hover img {
    transform: scale(1.05);
}


.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.target-audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.reporting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

/* ======================================
   5. Header & Navigation
====================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 16, 35, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all var(--transition-medium);
}

.site-header.scrolled {
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
    background-color: rgba(10, 16, 35, 0.95);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 8rem;
}

.logo {
    display: block;
    height: 5rem;
    transition: transform var(--transition-medium);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 100%;
    width: auto;
}

.main-nav {
    margin-left: auto;
    margin-right: 3rem;
}

.nav-list {
    display: flex;
    gap: 3rem;
}

.nav-list a {
    position: relative;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 0.8rem 0;
    color: var(--color-text-secondary);
    transition: color var(--transition-medium);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--color-gold);
}

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

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

.header-cta {
    display: flex;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 3rem;
    height: 2.4rem;
    position: relative;
    z-index: 1010;
}

.bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-secondary);
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* ======================================
   6. Mobile Menu
====================================== */

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-primary-bg);
    z-index: 1000;
    padding-top: 10rem;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.mobile-nav-list a {
    display: block;
    font-size: 2.4rem;
    font-weight: 500;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}


.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ======================================
   7. Hero Section
====================================== */

.hero-section {
    height: 80vh;
    min-height: 60rem;
    display: flex;
    align-items: center;
    position: relative;
    padding: 12rem 0;
    background-color: var(--color-primary-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 8rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 16, 35, 0.9), rgba(10, 16, 35, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 70rem;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.page-hero {
    text-align: center;
    padding: 16rem 0 8rem;
    background: linear-gradient(to bottom, var(--color-primary-bg), var(--color-secondary-bg));
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.5rem;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0), var(--color-gold), rgba(212, 175, 55, 0));
    opacity: 0.3;
}

/* ======================================
   8. Feature Boxes
====================================== */

.feature-box {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    padding: 3rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-box:hover {
    transform: translateY(-1rem);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3), 0 0 1.5rem var(--color-box-shadow);
}

.feature-icon {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.4rem;
    color: var(--color-primary-bg);
}

.feature-box h3 {
    margin-bottom: 1.6rem;
    font-size: 2rem;
}

.deliverable-box {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    padding: 3rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.deliverable-box:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.3), 0 0 1.5rem var(--color-box-shadow);
    border-color: var(--color-gold);
}

.deliverable-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--color-primary-bg);
}

.audience-card {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    padding: 3rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.audience-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.3), 0 0 1.5rem var(--color-box-shadow);
    border-color: var(--color-gold);
}

.audience-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--color-primary-bg);
}

/* ======================================
   9. Content Sections
====================================== */

.content-box {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}

.content-box h3 {
    margin-top: 2.4rem;
    margin-bottom: 1.6rem;
}

.content-box h3:first-child {
    margin-top: 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(18, 27, 54, 0.9), rgba(10, 16, 35, 0.9));
    border-radius: 0.8rem;
    padding: 4rem;
    margin-top: 6rem;
    text-align: center;
    border: 1px solid var(--color-gold);
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.3), 0 0 1.5rem var(--color-box-shadow);
}

.cta-box h3 {
    margin-bottom: 1.6rem;
    font-size: 2.4rem;
}

.cta-box p {
    margin-bottom: 2.4rem;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    margin-top: 5rem;
}

.process-step {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 7rem;
    left: 4rem;
    height: calc(100% - 3rem);
    width: 2px;
    background: linear-gradient(to bottom, var(--color-gold), rgba(212, 175, 55, 0.1));
}

.step-number {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--color-primary-bg);
    flex-shrink: 0;
    margin-right: 3rem;
    z-index: 2;
}

.step-content {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    padding: 3rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    flex-grow: 1;
}

.step-duration {
    display: inline-block;
    margin-top: 1.6rem;
    padding: 0.5rem 1.5rem;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 2rem;
    font-size: 1.4rem;
    color: var(--color-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.final-cta-section {
    background: linear-gradient(rgba(10, 16, 35, 0.8), rgba(10, 16, 35, 0.8)), url('../images/luxury-workspace.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 10rem 0;
    text-align: center;
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 16, 35, 0.8), rgba(10, 16, 35, 0.95));
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 80rem;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--color-text-secondary);
}

/* ======================================
   10. Cards & Boxes
====================================== */

.faq-container {
    margin-top: 5rem;
}

.faq-item {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    margin-bottom: 2rem;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all var(--transition-medium);
}

.faq-item:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border-color: var(--color-gold);
}

.faq-question {
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    padding-right: 2rem;
}

.faq-toggle {
    font-size: 1.6rem;
    color: var(--color-gold);
    transition: transform var(--transition-medium);
}

.faq-answer {
    padding: 0 3rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-item.active .faq-answer {
    padding: 0 3rem 2rem;
    max-height: 50rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.metric-card {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    padding: 3rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.metric-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.3), 0 0 1.5rem var(--color-box-shadow);
    border-color: var(--color-gold);
}

.metric-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--color-primary-bg);
}

.metric-content ul {
    margin-bottom: 2rem;
}

.metric-content ul li {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 1rem;
}

.metric-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--color-gold);
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.metric-average {
    font-size: 1.4rem;
    color: var(--color-text-muted);
}

.metric-average span {
    color: var(--color-gold);
    font-weight: 500;
}

.case-study {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.case-study:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.3), 0 0 1.5rem var(--color-box-shadow);
    border-color: var(--color-gold);
}

.case-study-header {
    background: linear-gradient(to right, var(--color-gold-dark), var(--color-gold));
    padding: 2rem 3rem;
    position: relative;
}

.case-category {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background-color: var(--color-primary-bg);
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.case-study-header h3 {
    color: var(--color-primary-bg);
    margin-bottom: 0;
}

.case-study-content {
    padding: 3rem;
}

.case-details {
    margin-bottom: 2.4rem;
}

.case-detail {
    margin-bottom: 1.6rem;
}

.case-detail:last-child {
    margin-bottom: 0;
}

.case-detail h4 {
    font-size: 1.6rem;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
}

.case-results h4 {
    font-size: 1.6rem;
    color: var(--color-gold);
    margin-bottom: 1.6rem;
}

.case-results ul li {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 1rem;
}

.case-results ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--color-gold);
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.result-metric {
    color: var(--color-gold);
    font-weight: 500;
}

.reporting-card {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    padding: 3rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reporting-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.3), 0 0 1.5rem var(--color-box-shadow);
    border-color: var(--color-gold);
}

.reporting-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--color-primary-bg);
}

.segment-card {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.segment-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.3), 0 0 1.5rem var(--color-box-shadow);
    border-color: var(--color-gold);
}

.segment-header {
    background: linear-gradient(to right, var(--color-gold-dark), var(--color-gold));
    padding: 2rem 3rem;
}

.segment-header h3 {
    color: var(--color-primary-bg);
    margin-bottom: 0;
}

.segment-content {
    padding: 3rem;
}

.segment-profile, .segment-challenges, .segment-goals, .segment-results {
    margin-bottom: 2.4rem;
}

.segment-profile h4, .segment-challenges h4, .segment-goals h4, .segment-results h4 {
    font-size: 1.6rem;
    color: var(--color-gold);
    margin-bottom: 1.2rem;
}

.segment-profile ul, .segment-challenges ul, .segment-goals ul {
    margin-bottom: 0;
}

.segment-profile ul li, .segment-challenges ul li, .segment-goals ul li {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 0.8rem;
}

.segment-profile ul li::before, .segment-challenges ul li::before, .segment-goals ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--color-gold);
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.segment-highlight {
    background-color: rgba(212, 175, 55, 0.1);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2rem 3rem;
}

.segment-highlight h4 {
    font-size: 1.6rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.format-card {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.format-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.3), 0 0 1.5rem var(--color-box-shadow);
    border-color: var(--color-gold);
}

.format-header {
    background: linear-gradient(to right, var(--color-gold-dark), var(--color-gold));
    padding: 2rem 3rem;
}

.format-header h3 {
    color: var(--color-primary-bg);
    margin-bottom: 0;
}

.format-content {
    padding: 3rem;
    flex-grow: 1;
}

.format-description {
    margin-bottom: 2.4rem;
}

.format-includes h4 {
    font-size: 1.6rem;
    color: var(--color-gold);
    margin-bottom: 1.2rem;
}

.format-includes ul {
    margin-bottom: 2.4rem;
}

.format-includes ul li {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 1rem;
}

.format-includes ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--color-gold);
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.format-details {
    margin-bottom: 2.4rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-label {
    color: var(--color-text-muted);
}

.detail-value {
    color: var(--color-text-secondary);
    font-weight: 500;
}

.format-cta {
    padding: 0 3rem 3rem;
    text-align: center;
}

.case-card {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.3), 0 0 1.5rem var(--color-box-shadow);
    border-color: var(--color-gold);
}

.case-header {
    background: linear-gradient(to right, var(--color-gold-dark), var(--color-gold));
    padding: 2rem 3rem;
}

.case-header h3 {
    color: var(--color-primary-bg);
    margin-bottom: 0;
}

.case-content {
    padding: 3rem;
}

.case-challenge, .case-approach, .case-result {
    margin-bottom: 2.4rem;
}

.case-challenge:last-child, .case-approach:last-child, .case-result:last-child {
    margin-bottom: 0;
}

.case-challenge h4, .case-approach h4, .case-result h4 {
    font-size: 1.6rem;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
}

.case-result ul li {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 0.8rem;
}

.case-result ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--color-gold);
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.principle-card {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    padding: 3rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.principle-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.3), 0 0 1.5rem var(--color-box-shadow);
    border-color: var(--color-gold);
}

.principle-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--color-primary-bg);
}

.tool-card {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.3), 0 0 1.5rem var(--color-box-shadow);
    border-color: var(--color-gold);
}

.tool-header {
    background: linear-gradient(to right, var(--color-gold-dark), var(--color-gold));
    padding: 2rem 3rem;
}

.tool-header h3 {
    color: var(--color-primary-bg);
    margin-bottom: 0;
}

.tool-content {
    padding: 3rem;
}

.tool-content ul li {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 1rem;
}

.tool-content ul li::before {
    content: '\f0eb';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--color-gold);
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.results-timeline {
    margin-top: 5rem;
}

.timeline-item {
    position: relative;
    padding-left: 12rem;
    margin-bottom: 6rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 4rem;
    left: 5rem;
    width: 2px;
    height: calc(100% + 2rem);
    background: linear-gradient(to bottom, var(--color-gold), rgba(212, 175, 55, 0.1));
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 10rem;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    border-radius: 50%;
    z-index: 2;
}

.timeline-marker span {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary-bg);
    text-align: center;
}

.timeline-content {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    padding: 3rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}

.timeline-content h3 {
    margin-bottom: 2rem;
}

.timeline-content ul li {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 1rem;
}

.timeline-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--color-gold);
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.package-card {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.3), 0 0 1.5rem var(--color-box-shadow);
    border-color: var(--color-gold);
}

.package-card.featured-package {
    border: 2px solid var(--color-gold);
    transform: scale(1.05);
    z-index: 2;
}

.package-card.featured-package:hover {
    transform: scale(1.05) translateY(-0.5rem);
}

.package-header {
    background: linear-gradient(to right, var(--color-gold-dark), var(--color-gold));
    padding: 2rem 3rem;
    position: relative;
}

.package-tag {
    position: absolute;
    top: 0;
    right: 3rem;
    transform: translateY(-50%);
    background-color: var(--color-primary-bg);
    color: var(--color-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
    border: 1px solid var(--color-gold);
}

.package-header h3 {
    color: var(--color-primary-bg);
    margin-bottom: 0;
}

.package-content {
    padding: 3rem;
    flex-grow: 1;
}

.package-description {
    margin-bottom: 2.4rem;
}

.package-includes h4 {
    font-size: 1.6rem;
    color: var(--color-gold);
    margin-bottom: 1.2rem;
}

.package-includes ul {
    margin-bottom: 2.4rem;
}

.package-includes ul li {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 1rem;
}

.package-includes ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--color-gold);
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.package-details {
    margin-bottom: 2.4rem;
}

.package-cta {
    padding: 0 3rem 3rem;
    text-align: center;
}

.payment-card {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    padding: 3rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.payment-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.3), 0 0 1.5rem var(--color-box-shadow);
    border-color: var(--color-gold);
}

.payment-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--color-primary-bg);
}

.payment-card ul li {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 1rem;
}

.payment-card ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--color-gold);
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.resource-card {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    padding: 3rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.3), 0 0 1.5rem var(--color-box-shadow);
    border-color: var(--color-gold);
}

.resource-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--color-primary-bg);
}

.resource-link {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding-top: 2rem;
    color: var(--color-gold);
    font-weight: 500;
    transition: all var(--transition-medium);
}

.resource-link i {
    margin-left: 0.8rem;
    transition: transform var(--transition-medium);
}

.resource-link:hover {
    color: var(--color-gold-light);
}

.resource-link:hover i {
    transform: translateX(0.5rem);
}

.stage {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    margin-bottom: 4rem;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all var(--transition-medium);
}

.stage:last-child {
    margin-bottom: 0;
}

.stage:hover {
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.3), 0 0 1.5rem var(--color-box-shadow);
    border-color: var(--color-gold);
}

.stage-header {
    background: linear-gradient(to right, var(--color-gold-dark), var(--color-gold));
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
}

.stage-number {
    width: 4rem;
    height: 4rem;
    background-color: var(--color-primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-right: 2rem;
    flex-shrink: 0;
}

.stage-header h3 {
    color: var(--color-primary-bg);
    margin-bottom: 0;
    flex-grow: 1;
}

.stage-duration {
    background-color: var(--color-primary-bg);
    color: var(--color-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.4rem;
    font-weight: 500;
    margin-left: 2rem;
}

.stage-content {
    padding: 3rem;
}

.stage-description {
    margin-bottom: 2.4rem;
}

.stage-activities, .stage-deliverables {
    margin-bottom: 2.4rem;
}

.stage-deliverables:last-child {
    margin-bottom: 0;
}

.stage-activities h4, .stage-deliverables h4 {
    font-size: 1.6rem;
    color: var(--color-gold);
    margin-bottom: 1.2rem;
}

.stage-activities ul, .stage-deliverables ul {
    margin-bottom: 0;
}

.stage-activities ul li, .stage-deliverables ul li {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 1rem;
}

.stage-activities ul li::before, .stage-deliverables ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--color-gold);
    position: absolute;
    left: 0;
    top: 0.2rem;
}

/* ======================================
   11. Forms & Inputs
====================================== */

.contact-form-container {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    padding: 3rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 1.2rem;
    border: 1px solid var(--color-border);
    border-radius: 0.4rem;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
    transition: all var(--transition-medium);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: 2rem;
    height: 2rem;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 1.4rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: var(--color-gold);
    text-decoration: underline;
    transition: color var(--transition-medium);
}

.checkbox-group a:hover {
    color: var(--color-gold-light);
}

.contact-info {
    margin-top: 3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.6rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    width: 2.4rem;
    height: 2.4rem;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-right: 1.6rem;
    flex-shrink: 0;
}

.info-item p {
    margin-bottom: 0;
}

.map-container {
    width: 100%;
    height: 45rem;
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
}

.map-description {
    margin-top: 3rem;
}


.iti, #phone {
    width: 100%;
}

.iti__flag-container {
    z-index: 10;
}

/* ======================================
   12. Buttons
====================================== */

.btn-gold {
    display: inline-block;
    padding: 1.2rem 3.2rem;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
    color: var(--color-primary-bg);
    border-radius: 0.4rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: none;
    box-shadow: 0 0.4rem 1.2rem rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 0.8rem 1.6rem rgba(212, 175, 55, 0.4);
}

.btn-gold:active {
    transform: translateY(0);
    box-shadow: 0 0.2rem 0.8rem rgba(212, 175, 55, 0.3);
}

.btn-outline {
    display: inline-block;
    padding: 1.2rem 3.2rem;
    background-color: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    border-radius: 0.4rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-0.3rem);
    box-shadow: 0 0.8rem 1.6rem rgba(0, 0, 0, 0.3);
}

.btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.2);
}

.btn-text {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    background-color: transparent;
    color: var(--color-text-secondary);
    border: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-text:hover {
    color: var(--color-gold);
}

.btn-full {
    width: 100%;
}

.custom-cta {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

/* ======================================
   13. Footer
====================================== */

.site-footer {
    background-color: var(--color-secondary-bg);
    padding: 8rem 0 4rem;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 5rem;
    margin-bottom: 1.6rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-links-column h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4rem;
    height: 2px;
    background-color: var(--color-gold);
}

.footer-links-column ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-links-column a {
    color: var(--color-text-secondary);
    transition: color var(--transition-medium);
}

.footer-links-column a:hover {
    color: var(--color-gold);
}

.footer-contact h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4rem;
    height: 2px;
    background-color: var(--color-gold);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.6rem;
}

.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-contact i {
    color: var(--color-gold);
    margin-right: 1rem;
    width: 2rem;
    text-align: center;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright {
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.data-notice {
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.data-notice a {
    color: var(--color-gold);
    text-decoration: underline;
    transition: color var(--transition-medium);
}

.data-notice a:hover {
    color: var(--color-gold-light);
}

/* ======================================
   14. Cookie Banner & Modal
====================================== */

.cookie-banner {
    position: fixed;
    bottom: 3rem;
    left: 3rem;
    right: 3rem;
    max-width: 40rem;
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    z-index: 1000;
    transform: translateY(150%);
    opacity: 0;
    transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    padding: 2.4rem;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.6rem;
}

.cookie-header h3 {
    margin-bottom: 0;
}

.cookie-close {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.6rem;
    cursor: pointer;
    transition: color var(--transition-medium);
}

.cookie-close:hover {
    color: var(--color-gold);
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 16, 35, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    width: 100%;
    max-width: 60rem;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(-5rem);
    opacity: 0;
    transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    padding: 2.4rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin-bottom: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.6rem;
    cursor: pointer;
    transition: color var(--transition-medium);
}

.modal-close:hover {
    color: var(--color-gold);
}

.modal-body {
    padding: 2.4rem;
}

.modal-footer {
    padding: 2.4rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: flex-end;
}

.cookie-option {
    margin-bottom: 2.4rem;
}

.cookie-option:last-child {
    margin-bottom: 0;
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.cookie-option-header h4 {
    margin-bottom: 0;
}


.switch {
    position: relative;
    display: inline-block;
    width: 5rem;
    height: 2.6rem;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition-medium);
    border-radius: 3.4rem;
}

.slider:before {
    position: absolute;
    content: "";
    height: 1.8rem;
    width: 1.8rem;
    left: 0.4rem;
    bottom: 0.4rem;
    background-color: white;
    transition: var(--transition-medium);
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--color-gold);
}

input:checked + .slider:before {
    transform: translateX(2.4rem);
}

input:disabled + .slider {
    opacity: 0.5;
    cursor: not-allowed;
}


#thankYouModal .modal-content {
    max-width: 50rem;
}

/* ======================================
   15. Animations
====================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(3rem);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-3rem);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(3rem);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        transform: translateX(-3rem);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeIn {
    animation-name: fadeIn;
}

.slideUp {
    animation-name: slideUp;
}

.slideDown {
    animation-name: slideDown;
}

.slideLeft {
    animation-name: slideLeft;
}

.slideRight {
    animation-name: slideRight;
}

.pulse {
    animation-name: pulse;
}

/* ======================================
   16. Utility Classes
====================================== */

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

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

.text-right {
    text-align: right;
}

.text-gold {
    color: var(--color-gold);
}

.text-muted {
    color: var(--color-text-muted);
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mt-5 { margin-top: 5rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mb-5 { margin-bottom: 5rem; }

.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }
.pt-4 { padding-top: 4rem; }
.pt-5 { padding-top: 5rem; }

.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }
.pb-4 { padding-bottom: 4rem; }
.pb-5 { padding-bottom: 5rem; }

.hidden {
    display: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.d-flex {
    display: flex;
}

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

.align-items-center {
    align-items: center;
}

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

.justify-content-between {
    justify-content: space-between;
}

.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.gap-3 { gap: 3rem; }

/* ======================================
   17. Media Queries
====================================== */


@media (min-width: 1200px) {
    .container {
        max-width: 117rem;
    }
}


@media (max-width: 1199px) {
    html {
        font-size: 60%;
    }

    .container {
        max-width: 96rem;
    }
}


@media (max-width: 991px) {
    html {
        font-size: 58%;
    }

    .container {
        max-width: 72rem;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .section-image {
        max-width: 60rem;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-logo {
        align-items: center;
        text-align: center;
    }

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

    .footer-links-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact p {
        justify-content: center;
    }

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

    .timeline-item {
        padding-left: 0;
    }

    .timeline-marker {
        position: static;
        margin: 0 auto 2rem;
    }

    .timeline-item::before {
        display: none;
    }
}


@media (max-width: 767px) {
    html {
        font-size: 56%;
    }

    .container {
        max-width: 54rem;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .header-cta {
        display: none;
    }

    h1 {
        font-size: 3.6rem;
    }

    h2 {
        font-size: 2.8rem;
    }

    .hero-section {
        height: auto;
        min-height: 50rem;
        padding: 8rem 0;
    }

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

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

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

    .step-number {
        margin: 0 auto 2rem;
    }

    .process-step::after {
        display: none;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stage-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .stage-number {
        margin: 0 auto;
    }

    .stage-duration {
        margin: 1rem auto 0;
    }

    .cookie-banner {
        left: 1.5rem;
        right: 1.5rem;
        bottom: 1.5rem;
    }
}


@media (max-width: 575px) {
    html {
        font-size: 54%;
    }

    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 6rem 0;
    }

    .btn-gold, .btn-outline {
        padding: 1.2rem 2.4rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
    }

    .modal-content {
        width: 95%;
    }
}

/* ======================================
   18. Page-Specific Styles
====================================== */


.service-section {
    background-color: var(--color-primary-bg);
    position: relative;
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, rgba(10, 16, 35, 0) 70%);
    pointer-events: none;
}


.segments-section {
    background-color: var(--color-primary-bg);
    position: relative;
}

.segments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, rgba(10, 16, 35, 0) 70%);
    pointer-events: none;
}

.formats-section {
    background-color: var(--color-secondary-bg);
}

.case-results-section {
    background-color: var(--color-primary-bg);
}


.metrics-section {
    background-color: var(--color-primary-bg);
}

.case-studies-section {
    background-color: var(--color-secondary-bg);
}

.measurement-section {
    background-color: var(--color-primary-bg);
}

.reporting-section {
    background-color: var(--color-secondary-bg);
}


.contact-info-section {
    background-color: var(--color-primary-bg);
}

.map-section {
    background-color: var(--color-secondary-bg);
}

.contact-cta-section {
    background-color: var(--color-primary-bg);
}


.principles-section {
    background-color: var(--color-secondary-bg);
}

.stages-section {
    background-color: var(--color-primary-bg);
}

.tools-section {
    background-color: var(--color-secondary-bg);
}

.results-section {
    background-color: var(--color-primary-bg);
}

.uniqueness-section {
    background-color: var(--color-secondary-bg);
}


.packages-section {
    background-color: var(--color-primary-bg);
}

.custom-section {
    background-color: var(--color-secondary-bg);
}

.payment-section {
    background-color: var(--color-primary-bg);
}


.thank-you-section {
    padding: 16rem 0 8rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--color-primary-bg), var(--color-secondary-bg));
}

.thank-you-icon {
    width: 10rem;
    height: 10rem;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
    font-size: 4rem;
    color: var(--color-primary-bg);
}

.thank-you-message {
    font-size: 1.8rem;
    max-width: 70rem;
    margin: 0 auto 4rem;
}

.next-steps {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    padding: 3rem;
    margin: 0 auto 4rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    max-width: 70rem;
    text-align: left;
}

.next-steps h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.next-steps ol {
    list-style: decimal;
    padding-left: 2rem;
}

.next-steps ol li {
    margin-bottom: 1.2rem;
}

.thank-you-cta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.resources-section {
    background-color: var(--color-secondary-bg);
}


.policy-section {
    padding: 16rem 0 8rem;
}

.policy-content {
    background-color: var(--color-secondary-bg);
    border-radius: 0.8rem;
    padding: 4rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
}

.policy-intro {
    margin-bottom: 4rem;
}

.policy-section-item {
    margin-bottom: 4rem;
}

.policy-section-item:last-child {
    margin-bottom: 0;
}

.policy-section-item h2 {
    margin-bottom: 2rem;
    color: var(--color-gold);
}

.policy-section-item h3 {
    margin-top: 3rem;
    margin-bottom: 1.6rem;
}

.policy-section-item ul, .policy-section-item ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.policy-section-item ul {
    list-style: disc;
}

.policy-section-item ol {
    list-style: decimal;
}

.policy-section-item ul li, .policy-section-item ol li {
    margin-bottom: 1rem;
}

.policy-section-item a {
    color: var(--color-gold);
    text-decoration: underline;
    transition: color var(--transition-medium);
}

.policy-section-item a:hover {
    color: var(--color-gold-light);
}

.policy-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    text-align: right;
    color: var(--color-text-muted);
}

.cookie-table-container {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.cookie-table th, .cookie-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.cookie-table th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    font-weight: 500;
}

.cookie-table tr:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

/* ======================================
   19. Print Styles
====================================== */

@media print {
    body {
        background-color: #fff;
        color: #000;
        font-size: 12pt;
    }

    .site-header, .mobile-menu, .cookie-banner, .modal, .footer {
        display: none;
    }

    .container {
        width: 100%;
        max-width: none;
        padding: 0;
    }

    section {
        padding: 2cm 0;
        page-break-inside: avoid;
    }

    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 90%;
    }

    .btn-gold, .btn-outline, .btn-text {
        display: none;
    }
}