/* 
 * KRAFT - Funksjonell Trening
 * Stylish and unconventional design for Norwegian functional training website
 */

/* Base & Typography */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Nunito:wght@300;400;600;700&display=swap');

:root {
    --primary: #FF5722;
    --primary-dark: #E64A19;
    --primary-light: #FFAB91;
    --secondary: #2C3E50;
    --tertiary: #3498DB;
    --text: #333333;
    --text-light: #666666;
    --background: #FFFFFF;
    --background-alt: #F7F9FA;
    --border: #EEEEEE;
    --success: #2ECC71;
    --warning: #F1C40F;
    --error: #E74C3C;
    --dark: #1A1A1A;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --animation-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px = 1rem */
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

h1 {
    font-size: 4.5rem;
    font-weight: 800;
}

h2 {
    font-size: 3.6rem;
    position: relative;
    margin-bottom: 4rem;
}

h2::after {
    content: '';
    position: absolute;
    width: 6rem;
    height: 0.3rem;
    background: var(--primary);
    bottom: -1.5rem;
    left: 0;
    border-radius: 5rem;
}

section h2::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all var(--animation-speed) ease;
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

button {
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

section {
    padding: 10rem 2rem;
    position: relative;
}

section h2 {
    text-align: center;
}

.section-desc {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto 5rem;
    color: var(--text-light);
}

/* Header & Navigation */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all var(--animation-speed) ease;
}

.main-header.scrolled {
    padding: 1rem 4rem;
    background: rgba(255, 255, 255, 0.95);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    margin-right: 1rem;
}

.main-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.main-nav a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0.2rem;
    background: var(--primary);
    bottom: 0;
    left: 0;
    transition: width var(--animation-speed) ease;
}

.main-nav a:hover::after,
.main-nav a:focus::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 3rem;
    height: 0.3rem;
    margin: 0.6rem 0;
    background: var(--secondary);
    transition: all var(--animation-speed) ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 70rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.9)), url('https://images.pexels.com/photos/1552249/pexels-photo-1552249.jpeg') no-repeat center/cover;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 80rem;
    margin: 0 auto;
    z-index: 1;
}

.hero h2 {
    font-size: 6rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    line-height: 1.1;
    color: white;
}

.hero h2::after {
    display: none;
}

.hero p {
    font-size: 2.4rem;
    font-weight: 300;
    margin-bottom: 4rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: all var(--animation-speed) ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.cta-button:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
    transform: translateY(-2px);
}

.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 8rem;
}

.shape-divider .shape-fill {
    fill: var(--background);
}

/* About Section */
.about-section {
    padding: 12rem 4rem 8rem;
    background-color: var(--background);
}

.about-container {
    display: flex;
    max-width: 120rem;
    margin: 0 auto;
    gap: 6rem;
    align-items: center;
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transform: rotate(-2deg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.3), rgba(52, 152, 219, 0.3));
    z-index: 1;
}

.about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 3rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-right: 1.5rem;
    transform: rotate(45deg);
}

/* Services Section */
.services-section {
    background-color: var(--background-alt);
    position: relative;
    padding: 10rem 4rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    padding: 3rem;
    position: relative;
    transition: all var(--animation-speed) ease;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 40rem;
}

.service-card:hover {
    transform: translateY(-1rem);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card[data-service="personlig"] {
    border-top: 5px solid var(--primary);
}

.service-card[data-service="gruppe"] {
    border-top: 5px solid var(--tertiary);
}

.service-card[data-service="bedrift"] {
    border-top: 5px solid var(--secondary);
}

.service-card[data-service="workshop"] {
    border-top: 5px solid var(--warning);
}

.service-icon {
    margin-bottom: 2rem;
    color: var(--primary);
}

.service-card[data-service="gruppe"] .service-icon {
    color: var(--tertiary);
}

.service-card[data-service="bedrift"] .service-icon {
    color: var(--secondary);
}

.service-card[data-service="workshop"] .service-icon {
    color: var(--warning);
}

.service-price {
    margin: 2rem 0;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
}

.service-price span:first-child {
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--secondary);
}

.service-price span:last-child {
    font-size: 1.4rem;
    color: var(--text-light);
}

.service-button {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    padding: 1rem 2rem;
    border: 2px solid var(--primary);
    border-radius: 5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: all var(--animation-speed) ease;
    margin-top: auto;
}

.service-button:hover {
    background: var(--primary);
    color: white;
}

.service-card[data-service="gruppe"] .service-button {
    color: var(--tertiary);
    border-color: var(--tertiary);
}

.service-card[data-service="gruppe"] .service-button:hover {
    background: var(--tertiary);
    color: white;
}

.service-card[data-service="bedrift"] .service-button {
    color: var(--secondary);
    border-color: var(--secondary);
}

.service-card[data-service="bedrift"] .service-button:hover {
    background: var(--secondary);
    color: white;
}

.service-card[data-service="workshop"] .service-button {
    color: var(--warning);
    border-color: var(--warning);
}

.service-card[data-service="workshop"] .service-button:hover {
    background: var(--warning);
    color: white;
}

/* Methods Section */
.methods-section {
    background-color: var(--background);
    padding: 10rem 4rem;
}

.methods-content {
    display: flex;
    max-width: 120rem;
    margin: 0 auto;
    gap: 6rem;
}

.methods-text {
    flex: 1;
}

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

.methods-text h2::after {
    left: 0;
    transform: none;
}

.methods-images {
    flex: 1;
    position: relative;
    height: 50rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.method-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.method-image.active {
    opacity: 1;
}

.method-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.method-tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.tab-button {
    background: none;
    border: none;
    padding: 1.5rem 0;
    margin-right: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--text-light);
    position: relative;
    cursor: pointer;
    transition: all var(--animation-speed) ease;
}

.tab-button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0.3rem;
    background: var(--primary);
    bottom: -1px;
    left: 0;
    transition: width var(--animation-speed) ease;
}

.tab-button.active {
    color: var(--primary);
}

.tab-button.active::after {
    width: 100%;
}

.tab-content {
    margin-top: 3rem;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.tab-pane ul {
    margin-top: 2rem;
}

/* Progress Timeline Section */
.progress-section {
    background: linear-gradient(to bottom right, var(--background-alt), white);
    padding: 10rem 4rem;
}

.progress-timeline {
    max-width: 100rem;
    margin: 6rem auto 0;
    position: relative;
}

.progress-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0.4rem;
    height: 100%;
    background: var(--primary-light);
    border-radius: 0.2rem;
}

.timeline-node {
    position: relative;
    margin-bottom: 8rem;
    width: 50%;
}

.timeline-node:nth-child(odd) {
    left: 0;
    padding-right: 5rem;
}

.timeline-node:nth-child(even) {
    left: 50%;
    padding-left: 5rem;
}

.node-icon {
    position: absolute;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0 0.5rem rgba(255, 87, 34, 0.2);
    z-index: 1;
}

.timeline-node:nth-child(odd) .node-icon {
    right: -2.5rem;
}

.timeline-node:nth-child(even) .node-icon {
    left: -2.5rem;
}

.node-content {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: var(--card-shadow);
    transition: all var(--animation-speed) ease;
}

.timeline-node:hover .node-content {
    transform: translateY(-0.5rem);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.node-stats {
    display: flex;
    margin-top: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 3rem;
}

.stat-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: var(--primary);
}

.stat-label {
    font-size: 1.4rem;
    color: var(--text-light);
}

/* Quiz Section */
.quiz-section {
    background-color: var(--background);
    padding: 10rem 4rem;
    text-align: center;
}

.quiz-container {
    max-width: 70rem;
    margin: 5rem auto 0;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.quiz-progress {
    height: 0.5rem;
    background: #f0f0f0;
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    width: 33.33%;
    transition: width var(--animation-speed) ease;
}

.quiz-questions {
    padding: 4rem;
}

.question {
    display: none;
}

.question.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.options {
    margin-top: 3rem;
}

.option {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid var(--border);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all var(--animation-speed) ease;
}

.option:hover {
    border-color: var(--primary-light);
}

.option input {
    margin-right: 1.5rem;
}

.option-text {
    font-size: 1.6rem;
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    padding: 2rem 4rem;
    border-top: 1px solid var(--border);
}

.quiz-prev, .quiz-next, .quiz-submit {
    background: var(--primary);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all var(--animation-speed) ease;
}

.quiz-prev:disabled {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
}

.quiz-results {
    padding: 4rem;
    text-align: center;
}

.result-level {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.result-description {
    margin-bottom: 3rem;
}

.quiz-restart {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    padding: 1rem 2rem;
    border: 2px solid var(--primary);
    border-radius: 5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: all var(--animation-speed) ease;
    margin-right: 1.5rem;
}

.quiz-restart:hover {
    background: var(--primary);
    color: white;
}

.quiz-contact {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    padding: 1rem 2rem;
    border: 2px solid var(--primary);
    border-radius: 5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: all var(--animation-speed) ease;
}

.quiz-contact:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--secondary), var(--tertiary));
    color: white;
    padding: 10rem 4rem;
    text-align: center;
}

.stats-section h2 {
    color: white;
}

.stats-section h2::after {
    background: white;
}

.stats-section p {
    color: rgba(255, 255, 255, 0.8);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem;
    backdrop-filter: blur(10px);
    transition: all var(--animation-speed) ease;
}

.stat-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-circle {
    margin: 0 auto 2rem;
    width: 10rem;
    height: 10rem;
}

.circular-chart {
    display: block;
    width: 100%;
    height: 100%;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke-width: 3.8;
    stroke: white;
    stroke-linecap: round;
    animation: progress 1.5s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.percentage {
    fill: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.5em;
    text-anchor: middle;
}

.stat-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Trainers Section */
.trainers-section {
    background-color: var(--background-alt);
    padding: 10rem 4rem;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto;
}

.trainer-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all var(--animation-speed) ease;
}

.trainer-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.trainer-image {
    height: 30rem;
    position: relative;
    overflow: hidden;
}

.trainer-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
}

.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    object-position: top;
}

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

.trainer-info {
    padding: 3rem;
}

.trainer-title {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

.trainer-bio {
    margin-bottom: 2rem;
}

.trainer-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.trainer-specialties span {
    background: var(--background-alt);
    color: var(--text);
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 5rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--background);
    padding: 10rem 4rem;
}

.testimonials-container {
    max-width: 100rem;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin: 5rem 0;
    height: 25rem;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-content {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: var(--card-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    font-size: 1.8rem;
    line-height: 1.6;
    flex: 1;
    position: relative;
    padding: 0 2rem;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-size: 8rem;
    color: var(--primary-light);
    opacity: 0.3;
    font-family: 'Georgia', serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.author-image {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1.6rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 1.4rem;
    margin: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-prev,
.testimonial-next {
    background: none;
    border: none;
    font-size: 2.4rem;
    color: var(--primary);
    margin: 0 1.5rem;
    cursor: pointer;
    transition: all var(--animation-speed) ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    color: var(--primary-dark);
}

.testimonial-dots {
    display: flex;
}

.dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--border);
    margin: 0 0.5rem;
    cursor: pointer;
    transition: all var(--animation-speed) ease;
}

.dot.active {
    background: var(--primary);
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(to bottom, var(--background-alt), white);
    padding: 10rem 4rem;
}

.pricing-tiers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    width: 100%;
    max-width: 35rem;
    box-shadow: var(--card-shadow);
    transition: all var(--animation-speed) ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    transform: scale(1.05);
    z-index: 1;
    border: 2px solid var(--primary);
}

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

.pricing-badge {
    position: absolute;
    top: 2rem;
    right: -3.5rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 4rem;
    font-size: 1.2rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 1;
}

.pricing-header {
    padding: 3rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-amount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 4.8rem;
    color: var(--secondary);
}

.price-period {
    font-size: 1.4rem;
    color: var(--text-light);
}

.pricing-features {
    padding: 3rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 1rem 0;
    position: relative;
    padding-left: 3rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

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

.pricing-button {
    display: inline-block;
    width: 100%;
    background: var(--primary);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    padding: 1.5rem;
    border: none;
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: all var(--animation-speed) ease;
}

.pricing-button:hover {
    background: var(--primary-dark);
    color: white;
}

/* Contact Section */
.contact-section {
    background-color: var(--background);
    padding: 10rem 4rem;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    max-width: 120rem;
    margin: 0 auto;
}

.contact-info,
.contact-form-container {
    flex: 1;
    min-width: 30rem;
}

.contact-info h2 {
    text-align: left;
}

.contact-info h2::after {
    left: 0;
    transform: none;
}

.contact-details {
    margin: 4rem 0;
}

.contact-item {
    display: flex;
    margin-bottom: 3rem;
}

.contact-icon {
    margin-right: 2rem;
    color: var(--primary);
}

.contact-text h4 {
    margin-bottom: 0.5rem;
}

.contact-text p {
    margin: 0;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-alt);
    border-radius: 50%;
    color: var(--text);
    transition: all var(--animation-speed) ease;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-0.3rem);
}

.contact-form {
    background: white;
    border-radius: 1rem;
    padding: 4rem;
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-family: 'Nunito', sans-serif;
    font-size: 1.6rem;
    transition: all var(--animation-speed) ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

.form-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    padding: 1.5rem;
    border: none;
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: all var(--animation-speed) ease;
    cursor: pointer;
}

.form-submit:hover {
    background: var(--primary-dark);
}

/* Footer */
.main-footer {
    background: var(--secondary);
    color: white;
}

.footer-content {
    padding: 6rem 4rem;
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo h3 {
    color: white;
    margin-left: 1rem;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    flex: 1;
    justify-content: space-between;
}

.footer-column h4 {
    color: var(--primary);
    margin-bottom: 2rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--animation-speed) ease;
}

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

.footer-bottom {
    background: var(--dark);
    padding: 2rem;
    text-align: center;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 3rem;
    bottom: 3rem;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all var(--animation-speed) ease;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-0.5rem);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 56%;
    }
    
    .about-container,
    .methods-content {
        flex-direction: column;
    }
    
    .about-image,
    .about-text,
    .methods-text,
    .methods-images {
        flex: none;
        width: 100%;
    }
    
    .methods-images {
        height: 40rem;
        margin-top: 4rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 54%;
    }
    
    .main-header {
        padding: 2rem;
    }
    
    .main-header.scrolled {
        padding: 1rem 2rem;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        transform: translateY(-100%);
        transition: transform var(--animation-speed) ease;
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .main-nav li {
        margin: 2rem 0;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1000;
        position: relative;
    }
    html{
        overflow-x: hidden;
    }
    .timeline-node:nth-child(even){
        left: 0;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(0.7rem, 0.6rem);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(0.7rem, -0.6rem);
    }
    
    .hero h2 {
        font-size: 4.5rem;
    }
    
    .progress-timeline::before {
        left: 2rem;
    }
    
    .timeline-node {
        width: 100%;
        left: 0;
    }
    
    .timeline-node:nth-child(odd),
    .timeline-node:nth-child(even) {
        padding-left: 5rem;
        padding-right: 0;
    }
    
    .timeline-node:nth-child(odd) .node-icon,
    .timeline-node:nth-child(even) .node-icon {
        left: -1.5rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 52%;
    }
    
    section {
        padding: 8rem 2rem;
    }
    
    .hero {
        min-height: 60rem;
    }
    
    .hero h2 {
        font-size: 3.6rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-0.5rem);
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 1s ease;
}

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

.animate-pulse {
    animation: pulse 2s infinite;
}



.text-wrapper h2, .text-wrapper h3{
    margin-top: 20px;
    margin-bottom: 10px;
}

.text-wrapper h1{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}
.text-wrapper h2{
    font-size: 1.5rem;
}

.text-wrapper{
    margin: 30px auto;
    max-width: 1200px;
}

.text-wrapper p{
    margin-bottom: 10px;
}