/* General ==========================*/
html {
    scroll-behavior: smooth;
}
:root {
    --primary-green: #09AB99;
    --primary-green-dark: #006f62;
    --text-dark: #1A1A1A;
    --text-light: #555;
    --bg-cream: #FFFDF5;
    --bg-light-green: #E0F2F1;
    --bg-yellow: #FFC107;
    --highlight-yellow: #FFC107;
    --font-main: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-script: 'Bad Script', cursive;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 21px;
}
.container {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-main);
    line-height: 1.2;
}
h1 {
    font-weight: 700;
}
h2, h3 {
    font-weight: 400;
}
.script-text {
    font-family: var(--font-script);
    font-weight: 600;
    vertical-align: top;
    position: relative;
    top: -.7em; /* Raise script text slightly */
    display: inline-block;
    line-height: .9;
}
.script-text.down {
    top:0;
}
.script-text.down2 {
    top:.4em;
    margin-bottom:.6em;
}
.script-text.top1 {
    top:-.5em;
}
.script-text.top2 {
    top:-.35em;
}
.text-green { color: var(--primary-green); }
.text-yellow { color: var(--highlight-yellow); }
a {
    text-decoration: none;
    color: inherit;
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-family: var(--font-main);
    transition: transform 0.2s;
    font-size: 20px;
}
.btn-primary {
    background-color: var(--highlight-yellow);
    color: var(--text-dark);
}
.btn:hover {
    transform: translateY(-2px);
}

/* Navbar ==========================*/
.navbar {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 20; /* Ensure on top */
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo-part {
    height: 30px;
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    font-weight: 600;
    font-family: var(--font-main);
    color: #fff; 
    font-size: 18px;
    transition: opacity 0.3s;
}
body.home-page .nav-links a {
    text-shadow: 1px 1px 3px var(--primary-green-dark), 1px 1px 3px var(--primary-green-dark);;
}
.nav-links a:hover {
    opacity: 0.8;
}
/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 30;
}
.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* Hero Section ==========================*/
.hero-section {
    position: relative;
    padding-top:40px;
    background: #fff;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    min-height: 600px;
}
.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: 40px;
    line-height:.6;
    margin-bottom: 20px;
}
.hero-content h1 .script-text {
    font-size: 60px; /* Proportionally larger for script text */
}
.hero-subtext {
    margin-top:40px;
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 30px;
    font-weight: 500;
}
/* Hero Decorative Elements */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 1920px;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}
/* Left side decorations */
.decor-plant3 {
    position: absolute;
    bottom: 0px;
    left: 400px;
    width: 60px;
    z-index: 1;
    will-change: transform;
    transition: transform 0.1s ease-out;
}
.decor-plant2 {
    position: absolute;
    bottom:0;
    left: 500px;
    width: 70px;
    z-index: 1;
    will-change: transform;
    transition: transform 0.1s ease-out;
}
.decor-pattern1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 850px;
    will-change: transform;
    transition: transform 0.1s ease-out;
}
/* Right side decorations */
.decor-leaves1 {
    position: absolute;
    bottom: -32px;
    right: 250px;
    width: 62px;
    z-index: 1;
    will-change: transform;
    transition: transform 0.1s ease-out;
}
.decor-leaves2 {
    position: absolute;
    bottom:-8px;
    right: 180px;
    width: 62px;
    z-index: 1;
    will-change: transform;
    transition: transform 0.1s ease-out;
}
.decor-leaves3 {
    position: absolute;
    bottom:0px;
    right: 110px;
    width: 62px;
    z-index: 1;
    will-change: transform;
    transition: transform 0.1s ease-out;
}
.decor-pattern2 {
    position: absolute;
    bottom:-100px;
    right: -690px;
    height: 1700px;
    will-change: transform;
    transition: transform 0.1s ease-out;
}
.hero-char {
    position: absolute;
    bottom: -30px;
    left: calc(50% + 200px);
    width: 450px;
    height: auto;
    z-index: 3;
}

/* Introduction Section ==========================*/
.intro-section {
    background: linear-gradient(to top, #fff 0%, #fffaf2 100%);
    padding: 150px 0;
    position: relative;
}
.intro-container p {
    max-width: 1000px;
}
.intro-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}
.intro-content .decor-dots img {
    margin-top:15px;
    opacity:1;
}
.intro-heading {
    font-size: 38px;
    line-height: 60px;
    color: var(--primary-green-dark);
    font-weight: 400;
    margin: 0;
    max-width: 100%;
}
.intro-heading .text-green {
    font-size: 48px;
    font-weight: 700;
}
.intro-text {
    font-size: 24px;
    color: #333;
    font-weight: 400;
    max-width: 100%;
}
.intro-text p {
    margin: 0;
}
.intro-text .highlight {
    color: var(--primary-green);
}

/* Features Sections ==========================*/
.feature-section {
    padding: 120px 0;
    position: relative;
}

.section-effortless {
    background: linear-gradient(135deg, #FEFFEF 0%, #EDFFFE 100%);
    overflow: hidden; /* Prevent arrow overflow */
}

.effortless-heading {
    text-align: center;
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.feature-section.in-view .effortless-heading {
    opacity: 1;
    transform: translateY(0);
}

.effortless-logo {
    height: 60px;
    width: auto;
    max-width: 100%;
    margin-bottom: 35px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.effortless-subtitle {
    font-size: 38px;
    color: var(--primary-green-dark);
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}
.effortless-subtitle .script-text {
    font-size: 54px;
}

.section-records {
    background-color: #fff;
    overflow: hidden;
}

.section-records .bg-card {
    margin-bottom: 20px;
}

.section-connected {
    background-color: #fff;
    overflow: hidden;
}

.section-connected .bg-card {
    margin-bottom: 20px;
}

.section-scheduling {
    background-color: #FFFDF5; /* Light Yellowish */
    overflow: hidden;
}

.section-scheduling .bg-card {
    margin-bottom: 20px;
}


.feature-container {
    display: flex;
    align-items: center;
    gap: 60px;
    position:relative;
    z-index:1;
}

.feature-container.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    position: relative;
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Initial states - text moves in from opposite side */
.feature-content.left {
    transform: translateX(-100px);
}

.feature-content.right {
    transform: translateX(100px);
}

.feature-content h2 {
    font-size: 38px;
    color: var(--text-dark);
}

.feature-content h2 .script-text {
    font-size: 54px;
}

.feature-content p {
    color: var(--text-dark);
    margin-top:20px;
    margin-bottom: 30px;
    max-width: 550px;
    text-align: left;
}
.decor-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.decor-diamond {
    width: auto;
    height: 28px;
    display: block;
    opacity: 0;
    animation: none;
}

/* Blink animation for diamonds */
@keyframes diamondBlink {
    0% { opacity: 0; }
    25% { opacity: 1; }
    50% { opacity: 0.3; }
    75% { opacity: 1; }
    100% { opacity: 1; }
}


.feature-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Initial states - images move in from their sides */
.feature-image-wrapper.left {
    transform: translateX(-100px);
}

.feature-image-wrapper.right {
    transform: translateX(100px);
}

.bg-card {
    border-radius: 20px;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Align to bottom so head can extend up */
    /* Rotation and styling */
    transform: rotate(-3deg);
    overflow: visible; /* Allow head to extend without cropping */
    box-shadow: 10px 10px 0px rgba(0,0,0,0.05);
    width: 350px; /* Fixed width */
    height: 250px; /* Fixed height approx */
}

.green-card {
    background-color: #88C7B8;
    margin-bottom:20px;
}

.yellow-card {
    background-color: #FFC107;
    transform: rotate(3deg);
}

.feature-char {
    width: 100%;
    height: auto;
    max-height: 120%; /* Allow image to be taller than card */
    object-fit: contain; /* Scale image to fit inside card while maintaining aspect ratio */
    object-position: center bottom; /* Align to bottom, head extends up */
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    opacity: 0;
    transform: rotate(-30deg);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: 0.2s; /* Delay character animation */
}

/* Rounded corners for char2 photo */
.char2-photo, .char3-photo, .char4-photo {
    border-radius: 30px;
    object-fit: cover; /* Use cover for photos instead of contain */
}

.feature-char-decor {
    position: absolute;
    top: -50px;
    right: -40px;
    width: 100px;
    height: auto;
    z-index: 3;
    pointer-events: none;
}

.feature-char-decor img {
    width: 100%;
    height: auto;
    display: block;
}

.section-scheduling .feature-char-decor {
    width:100px;
    right: auto;
    left: -60px;
}

.section-connected .feature-char-decor {
    width:120px;
    top: -70px;
}

.feature-circle-1,
.feature-circle-2,
.feature-circle-3,
.feature-circle-4 {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 60px;
    height: auto;
    z-index: 2;
    pointer-events: none;
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Staggered delays for circles to pop out sequentially */
.feature-section.in-view .feature-circle-1 {
    transition-delay: 0.2s;
}

.feature-section.in-view .feature-circle-2 {
    transition-delay: 0.4s;
}

.feature-section.in-view .feature-circle-3 {
    transition-delay: 0.2s;
}

.feature-section.in-view .feature-circle-4 {
    transition-delay: 0.4s;
}

.feature-circle-2 {
    bottom:30px;
    left: -50px;
    width: 20px;
}

.feature-circle-3 {
    left: 110%;
}

.feature-circle-4 {
    bottom:-30px;
    left: 105%;
    width: 20px;
}

.sample-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.15); /* Dark transparent */
    pointer-events: none;
    text-transform: uppercase;
    font-family: var(--font-main);
    z-index: 2;
    white-space: nowrap;
    letter-spacing: 3px;
}

.dotted-arrow {
    position: absolute;
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Arrow positioning and initial states */
.arrow-1 {
    position: relative;
    margin-top: 20px;
    width: 80px;
    transform: translateY(-100px) rotateZ(-35deg); 
}

.arrow-2 {
    width:150px;
    top: -50px;
    left: 2%;
    transform: translateY(-100px); /* Start off-screen from above */
}

.arrow-3 {
    width:90px;
    top: 0;
    right: 8%;
    transform: translateY(-100px); /* Start off-screen from above */
}

.arrow-4 {
    width:80px;
    top: 0;
    left: 2%;
    transform: translateY(-100px); /* Start off-screen from above */
}

/* Feature Section Scroll Animations */
.feature-section.in-view .feature-image-wrapper.left {
    opacity: 1;
    transform: translateX(0);
}

.feature-section.in-view .feature-image-wrapper.right {
    opacity: 1;
    transform: translateX(0);
}

.feature-section.in-view .feature-content.left {
    opacity: 1;
    transform: translateX(0);
}

.feature-section.in-view .feature-content.right {
    opacity: 1;
    transform: translateX(0);
}

.feature-section.in-view .feature-char {
    opacity: 1;
    transform: rotate(5deg) translateY(-20px) translateX(10px);
    transition-delay: 0.2s; /* Delay character animation */
}
.feature-section.in-view .char3-photo {
    transform: rotate(-5deg) translateY(-15px) translateX(-15px);
}


.feature-section.in-view .feature-circle-1,
.feature-section.in-view .feature-circle-2,
.feature-section.in-view .feature-circle-3,
.feature-section.in-view .feature-circle-4 {
    transform: scale(1);
}

.in-view .decor-diamond {
    animation: diamondBlink 1s ease-out forwards;
    animation-delay: 0.3s;
}

.feature-section.in-view .dotted-arrow {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s; /* Delay arrow animation */
}
.feature-section.in-view .arrow-1 {
    transform: translateY(0) rotateZ(-35deg);
}

/* Scrolling away - reverse animations */
.feature-section.past-view .feature-image-wrapper.left {
    opacity: 0;
    transform: translateX(-100px);
}

.feature-section.past-view .feature-image-wrapper.right {
    opacity: 0;
    transform: translateX(100px);
}

.feature-section.past-view .feature-content.left {
    opacity: 0;
    transform: translateX(-100px);
}

.feature-section.past-view .feature-content.right {
    opacity: 0;
    transform: translateX(100px);
}

.feature-section.past-view .feature-char {
    opacity: 0;
    transform: translateY(50px);
    transition-delay: 0s; /* No delay when scrolling away */
}

.feature-section.past-view .feature-circle-1,
.feature-section.past-view .feature-circle-2,
.feature-section.past-view .feature-circle-3,
.feature-section.past-view .feature-circle-4 {
    transform: scale(0);
    transition-delay: 0s; /* No delay when scrolling away */
}

.feature-section.past-view .decor-diamond {
    opacity: 0;
    animation: none;
}

.feature-section.past-view .arrow-1,
.feature-section.past-view .arrow-2,
.feature-section.past-view .arrow-3,
.feature-section.past-view .arrow-4 {
    opacity: 0;
    transform: translateY(-100px);
    transition-delay: 0s; /* No delay when scrolling away */
}
.feature-section.past-view .arrow-1 {
    transform: translateY(-100px) rotateZ(-35deg);
}

/* Tabs Section ==========================*/
.tabs-section {
    padding: 100px 0;
    background-color: #F2F9F8; /* Light background to make card pop */
    border-top: 1px solid #E0F2F1;
}

.tabs-header {
    display: flex;
    justify-content: flex-start; /* Align tabs to start */
    border-bottom: none; /* Remove bottom border */
    margin-bottom: 0; /* Connect directly to content */
    gap: 4px; /* Small gap between tabs */
    padding-left: 20px; /* Indent tabs slightly */
    padding-right: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    position: relative;
}

.tabs-header::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Tabs fading masks */
.tabs-header-wrapper {
    position: relative;
}

.tabs-header-wrapper::before,
.tabs-header-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tabs-header-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #F2F9F8 0%, rgba(242, 249, 248, 0) 100%);
}

.tabs-header-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #F2F9F8 0%, rgba(242, 249, 248, 0) 100%);
}

/* Show masks when scrolling is needed */
.tabs-header-wrapper.scrollable::before,
.tabs-header-wrapper.scrollable::after {
    opacity: 1;
}

.tab-btn {
    background: #D1E8E2; /* Inactive tab color */
    border: none;
    padding: 15px 35px;
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 600;
    color: #5F7D78;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    text-align: center;
    flex: 0 1 auto; /* Don't stretch */
    border-radius: 15px 15px 0 0; /* Rounded top corners */
    margin-bottom: 0;
    border-bottom: none;
    line-height: 1.4;
}

.tab-btn:hover {
    background-color: #BFE0D9;
    color: #4A635F;
}

.tab-btn.active {
    background-color: #fff; /* Active tab becomes white */
    color: var(--text-dark);
    font-weight: 700;
    border-bottom: none;
    z-index: 2; /* Sit above content wrapper */
    box-shadow: 0 -5px 10px rgba(0,0,0,0.02); /* Subtle shadow top */
}

/* Pseudo-element to cover the bottom line of active tab if needed, 
   but since content wrapper is white and right below, it should merge naturally */
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #fff;
    z-index: 3;
}

.tabs-content-wrapper {
    background-color: #fff;
    padding: 60px;
    border-radius: 20px;
    border-top-left-radius: 0; /* Connect to first tab if it's first */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
    min-height: 400px;
    display: flex;
    align-items: center;
}

/* Adjust border radius if we want generic look */
.tabs-content-wrapper {
    border-radius: 20px;
    /* To make it look like the image where the active tab merges, 
       we rely on the tab sitting on top (z-index) and the matching white background */
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
    width: 100%;
    min-height: 100%;
}

.tab-text {
    flex: 1;
    max-width: 500px;
}

.tab-image-wrapper {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.tab-image {
    width: 100%;
    max-height: 200px;
    height: auto;
    object-fit: contain;
}

.tab-pane h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.2;
}

.tab-pane p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

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

/* Pricing Section ==========================*/
.pricing-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #FEFFEF 0%, #EDFFFE 100%);
    min-height: 100vh;
}
.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}
.pricing-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}
.pricing-header p {
    font-size: 20px;
    color: var(--text-light);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    border: 2px solid var(--primary-green);
    transform: scale(1.05);
    z-index: 1;
}
.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.card-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.card-header .price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.card-header .price span {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 400;
}

.card-header .desc {
    font-size: 16px;
    color: var(--text-light);
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
}

.btn-outline {
    display: block;
    width: 100%;
    text-align: center;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-family: var(--font-main);
    transition: all 0.2s;
    font-size: 20px;
}

.btn-outline:hover {
    background: var(--primary-green);
    color: #fff;
}

.pricing-card .btn {
    display: block;
    width: 100%;
    text-align: center;
}

/* Pricing Page Styles ==========================*/

/* Contact Section ==========================*/
.contact-section {
    padding: 80px 0 0 0;
    background: linear-gradient(135deg, #FEFFEF 0%, #FFFFFF 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 42px;
    color: var(--primary-green-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-title .script-text {
    font-size: 60px;
    top: 0.5em;
}

.contact-subtitle {
    font-size: 20px;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 30px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    text-align: center;
}

.contact-form-intro a {
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.contact-form-intro a:hover {
    color: var(--primary-green-dark);
}

.contact-form-wrapper {
    margin: 0 auto;
    border-radius: 12px;
}

.contact-form-wrapper iframe {
    width: 100%;
    border: none;
    border-radius: 8px;
    height: 3000px;
    min-height: 3000px;
}

.contact-privacy-notice {
    max-width: 900px;
    margin: 30px auto 0;
    padding: 0 30px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    text-align: center;
}

/* Contact Page Navbar - Hamburger Menu */
body.contact-page .navbar .mobile-menu-toggle span {
    background-color: var(--primary-green);
}
/* When menu is open, make X white for visibility */
body.contact-page .navbar .mobile-menu-toggle.active span {
    background-color: #fff;
}

/* Contact Page Mobile Menu - Fix link colors */
@media (max-width: 768px) {
    body.contact-page .nav-links a {
        color: #fff !important;
    }
    body.contact-page .nav-links a.active {
        color: #fff !important;
        opacity: 1;
    }
}

/* Pricing Page Navbar - Hamburger Menu */
body.pricing-page .navbar .mobile-menu-toggle span {
    background-color: var(--primary-green);
}
/* When menu is open, make X white for visibility */
body.pricing-page .navbar .mobile-menu-toggle.active span {
    background-color: #fff;
}

/* Pricing Page Mobile Menu - Fix link colors */
@media (max-width: 768px) {
    body.pricing-page .nav-links a {
        color: #fff !important;
    }
    body.pricing-page .nav-links a.active {
        color: #fff !important;
        opacity: 1;
    }
}

/* Pricing Hero Section */
.pricing-hero-section {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.pricing-hero-banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.pricing-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0.2) 100%);
    z-index: 1;
} 

.pricing-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.pricing-hero-section .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 2;
}

.pricing-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align:right;
}

.pricing-hero-title {
    color: var(--primary-green-dark);
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 2px rgba(255,255,255,1);
}
.pricing-hero-title .script-text {
    color: var(--primary-green);
    top:.5em;
    font-size: 54px;
    text-shadow: 2px 2px 2px rgba(255,255,255,1);
}

.pricing-hero-subtitle {
    color: var(--primary-green-dark);
    font-size: 21px;
    margin-bottom: 40px;
    line-height: 1.3;
    font-weight: 500;
    margin-top:50px;
    text-shadow: 2px 2px 2px rgba(255,255,255,1);
}

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.contact-hero-banner {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.contact-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0.2) 100%);
    z-index: 1;
}

.contact-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.contact-hero-section .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 2;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-title {
    color: var(--primary-green-dark);
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 2px rgba(255,255,255,1);
}

.contact-hero-title .script-text {
    color: var(--primary-green);
    top: 0;
    font-size: 72px;
    text-shadow: 2px 2px 2px rgba(255,255,255,1);
}

.contact-hero-subtitle {
    color: var(--primary-green-dark);
    font-size: 21px;
    margin-bottom: 40px;
    line-height: 1.3;
    font-weight: 500;
    margin-top: 50px;
    text-shadow: 2px 2px 2px rgba(255,255,255,1);
}

.contact-hero-subtitle a {
    color: var(--primary-green-dark);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.contact-hero-subtitle a:hover {
    opacity: 0.8;
}

/* Modules Section */
/* Modules Section */
.modules-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, 
        rgba(144, 205, 200, 0.05) 0%, 
        rgb(255, 255, 255) 30%, 
        rgb(255, 255, 255) 50%,
        rgba(247, 194, 35, 0.08) 70%,
        rgba(247, 194, 35, 0.12) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Circles for Modules Section */
.module-decor-circle-bg {
    position: absolute;
    width: 128px;
    height: 128px;
    border-radius: 9999px;
    opacity: 0.1;
    pointer-events: none;
}

.module-decor-circle-bg.decor-1 {
    background: linear-gradient(135deg, rgb(144, 205, 200), transparent);
    left: 0%;
    top: 0%;
    transform: translateX(16.6px) translateY(-27.6667px) rotate(99.6deg);
}

.module-decor-circle-bg.decor-2 {
    background: linear-gradient(135deg, rgb(247, 194, 35), transparent);
    left: 20%;
    top: 15%;
    transform: translateX(7.58824px) translateY(-12.6471px) rotate(45.5294deg);
}

.module-decor-circle-bg.decor-3 {
    background: linear-gradient(135deg, rgb(244, 123, 115), transparent);
    left: 40%;
    top: 30%;
    transform: translateX(0.473684px) translateY(-0.789474px) rotate(2.84211deg);
}

.module-decor-circle-bg.decor-4 {
    background: linear-gradient(135deg, rgb(97, 128, 130), transparent);
    left: 60%;
    top: 45%;
    transform: translateX(5.28571px) translateY(-8.80952px) rotate(328.286deg);
}

.module-decor-circle-bg.decor-5 {
    background: linear-gradient(135deg, rgb(144, 205, 200), transparent);
    left: 80%;
    top: 60%;
    transform: translateX(10.0435px) translateY(-16.7391px) rotate(299.739deg);
}

.module-decor-circle-bg.decor-6 {
    background: linear-gradient(135deg, rgb(247, 194, 35), transparent);
    left: 0%;
    top: 75%;
    transform: translateX(14.04px) translateY(-23.4px) rotate(275.76deg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 1000px;
    margin: 0 auto;
}

.section-header .script-text {
    font-size: 54px;
    top: 0;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.module-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: none;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s;
}

.module-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.module-card.animate:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Card-specific glow effects */
.module-card-orange:hover {
    box-shadow: 0 8px 30px rgba(244, 123, 115, 0.25), 0 4px 12px rgba(244, 123, 115, 0.15);
}

.module-card-yellow:hover {
    box-shadow: 0 8px 30px rgba(247, 194, 35, 0.25), 0 4px 12px rgba(247, 194, 35, 0.15);
}

.module-card-teal:hover {
    box-shadow: 0 8px 30px rgba(144, 205, 200, 0.25), 0 4px 12px rgba(144, 205, 200, 0.15);
}

.module-card.coming-soon {
    opacity: 1;
}

.module-card-purple:hover {
    box-shadow: 0 8px 30px rgba(167, 139, 250, 0.25), 0 4px 12px rgba(167, 139, 250, 0.15);
}

.module-card-blue:hover {
    box-shadow: 0 8px 30px rgba(96, 165, 250, 0.25), 0 4px 12px rgba(96, 165, 250, 0.15);
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #8b5cf6;
    font-size: 16px;
    font-weight:800;
    line-height: 1.2;
    font-family: var(--font-main);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Colored variants for different module types */
.module-card-purple .coming-soon-badge,
.module-card-blue .coming-soon-badge {
}

.coming-soon-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* Module Icon Boxes */
.module-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding: 16px;
}

.module-icon-orange {
    background: linear-gradient(135deg, #f47b73 0%, #f7c223 100%);
    border: 2px solid rgba(244, 123, 115, 0.3);
}

.module-icon-yellow {
    background: linear-gradient(135deg, #f7c223 0%, #90cdc8 100%);
    border: 2px solid rgba(247, 194, 35, 0.3);
}

.module-icon-teal {
    background: linear-gradient(135deg, #90cdc8 0%, #5fa8a0 100%);
    border: 2px solid rgba(144, 205, 200, 0.3);
}

.module-icon-purple {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    border: 2px solid rgba(167, 139, 250, 0.3);
}

.module-icon-blue {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    border: 2px solid rgba(96, 165, 250, 0.3);
}

.module-icon-box svg {
    width: 48px;
    height: 48px;
    color: #fff;
    stroke-width: 2;
}

.module-card h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 600;
    padding: 0;
    background: none;
}

/* Module Title with Colored Bar */
.module-title {
    position: relative;
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 25px;
    border-radius: 8px;
    font-weight: 700;
}

.module-title-orange {
    background: rgba(244, 123, 115, 0.15);
    color: var(--text-dark);
}

.module-title-yellow {
    background: rgba(247, 194, 35, 0.15);
    color: var(--text-dark);
}

.module-title-teal {
    background: rgba(144, 205, 200, 0.15);
    color: var(--text-dark);
}

.module-title-purple {
    background: rgba(167, 139, 250, 0.15);
    color: var(--text-dark);
}

.module-title-blue {
    background: rgba(96, 165, 250, 0.15);
    color: var(--text-dark);
}

.module-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    margin-top: 0;
}

.module-features {
    list-style: none;
    margin-bottom: 10px;
    flex-grow: 1;
}

.module-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.3;
}

.module-features li:has(.feature-text-more) {
    justify-content: flex-end;
}

.feature-text-more {
    font-style: italic;
    color: var(--text-light);
    font-size: 16px;
}

.feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: top;
    margin-top: 2px;
}

.feature-icon-orange {
    color: #f47b73;
}

.feature-icon-yellow {
    color: #f7c223;
}

.feature-icon-teal {
    color: #90cdc8;
}

.feature-icon-purple {
    color: #a78bfa;
}

.feature-icon-blue {
    color: #60a5fa;
}

/* Module Buttons */
.btn-module {
    width: 100%;
    text-align: center;
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 12px;
    transition: all 0.3s;
    margin-top: auto;
}

.btn-module-orange {
    background: #f47b73;
}

.btn-module-orange:hover {
    background: #e06a62;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 123, 115, 0.3);
}

.btn-module-yellow {
    background: #f7c223;
}

.btn-module-yellow:hover {
    background: #e6b01a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 194, 35, 0.3);
}

.btn-module-teal {
    background: #5fa8a0;
}

.btn-module-teal:hover {
    background: #4d8f87;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(95, 168, 160, 0.3);
}

.btn-module-purple {
    background: #a78bfa;
}

.btn-module-purple:hover {
    background: #8b5cf6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(167, 139, 250, 0.3);
}

.btn-module-blue {
    background: #60a5fa;
}

.btn-module-blue:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

.btn-module:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-module .arrow {
    color: #fff;
}

.module-card .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Horizon Section */
.horizon-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.horizon-decor-circle-bg {
    position: absolute;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
}

.horizon-decor-circle-bg.decor-1 {
    background: linear-gradient(135deg, #90cdc8, transparent);
    left: 0%;
    top: 0%;
    transform: translateX(12.464px) translateY(-18.696px) rotate(56.088deg);
}

.horizon-decor-circle-bg.decor-2 {
    background: linear-gradient(135deg, #f7c223, transparent);
    left: 15%;
    top: 20%;
    transform: translateX(7.69455px) translateY(-11.5418px) rotate(34.6255deg);
}

.horizon-decor-circle-bg.decor-3 {
    background: linear-gradient(135deg, #f47b73, transparent);
    left: 30%;
    top: 40%;
    transform: translateX(3.72px) translateY(-5.58px) rotate(16.74deg);
}

.horizon-decor-circle-bg.decor-4 {
    background: linear-gradient(135deg, #618082, transparent);
    left: 45%;
    top: 60%;
    transform: translateX(0.356923px) translateY(-0.535385px) rotate(1.60615deg);
}

.horizon-decor-circle-bg.decor-5 {
    background: linear-gradient(135deg, #90cdc8, transparent);
    left: 60%;
    top: 80%;
    transform: translateX(2.52571px) translateY(-3.78857px) rotate(11.3657deg);
}

.horizon-decor-circle-bg.decor-6 {
    background: linear-gradient(135deg, #f7c223, transparent);
    left: 75%;
    top: 0%;
    transform: translateX(5.024px) translateY(-7.536px) rotate(22.608deg);
}

.horizon-decor-circle-bg.decor-7 {
    background: linear-gradient(135deg, #f47b73, transparent);
    left: 90%;
    top: 20%;
    transform: translateX(7.21px) translateY(-10.815px) rotate(32.445deg);
}

.horizon-decor-circle-bg.decor-8 {
    background: linear-gradient(135deg, #618082, transparent);
    left: 5%;
    top: 40%;
    transform: translateX(9.13882px) translateY(-13.7082px) rotate(41.1247deg);
}

.horizon-note {
    text-align: center;
    margin-top: 50px;
    font-size: 18px;
    color: var(--text-light);
}

/* Foundation Section */
.foundation-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.foundation-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.foundation-section .container {
    position: relative;
    z-index: 1;
}

.foundation-section .section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.foundation-section .section-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.foundation-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.foundation-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.foundation-item:nth-child(1) { transition-delay: 0.1s; }
.foundation-item:nth-child(2) { transition-delay: 0.2s; }
.foundation-item:nth-child(3) { transition-delay: 0.3s; }
.foundation-item:nth-child(4) { transition-delay: 0.4s; }
.foundation-item:nth-child(5) { transition-delay: 0.5s; }

.foundation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.foundation-item {
    text-align: left;
    padding: 30px 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.foundation-icon {
    width: 80px;
    height: 80px;
    margin: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #4a9f8f 100%);
    border: 2px solid rgba(74, 159, 143, 0.3);
}

.foundation-item-content {
    flex: 1;
}

.foundation-icon img,
.foundation-icon svg {
    width: 48px;
    height: 48px;
    object-fit: contain;
    color: #fff;
    stroke-width: 2;
}

.foundation-item-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 0;
    color: var(--text-dark);
    font-weight: 600;
}

.foundation-item-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Pricing Works Section */
.pricing-works-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.pricing-works-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(144, 205, 200, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(247, 194, 35, 0.1) 0%, transparent 50%);
    transform: scale(1.05) rotate(2deg);
    pointer-events: none;
}

.pricing-works-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.pricing-works-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.pricing-steps-wrapper {
    position: relative;
    margin-top: 60px;
}

.pricing-steps-connector {
    display: none;
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    height: 4px;
    transform: translateY(-50%);
    border-radius: 2px;
    overflow: hidden;
    z-index: 0;
}

.pricing-steps-connector::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #90cdc8, #f7c223, #f47b73);
    opacity: 0.3;
}

.pricing-steps-connector::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #90cdc8, #f7c223, #f47b73);
    transform: translateX(-100%);
    transition: transform 1.5s ease;
}

.pricing-steps-connector.animate::after {
    transform: translateX(0);
}

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

.pricing-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .pricing-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .pricing-steps {
        gap: 60px;
    }
}

.pricing-step {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.pricing-step.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pricing-step[data-step="1"] { transition-delay: 0.2s; }
.pricing-step[data-step="2"] { transition-delay: 0.4s; }
.pricing-step[data-step="3"] { transition-delay: 0.6s; }

.step-icon-wrapper {
    position: relative;
    display: inline-flex;
    margin-bottom: 30px;
}

.step-icon-glow {
    position: absolute;
    inset: 20px;
    border-radius: 24px;
    filter: blur(40px);
    opacity: 0.6;
    animation: stepIconGlow 4s ease-in-out infinite;
    pointer-events: none;
}

.step-icon-glow-1 {
    animation-delay: 0s;
}

.step-icon-glow-2 {
    filter: blur(20px);
    opacity: 0.4;
    animation-delay: 0.5s;
}

.step-icon-wrapper .step-icon-glow-1 {
    background: #90cdc8;
}

.step-icon-wrapper .step-icon-glow-2 {
    background: #90cdc8;
}

.pricing-step[data-step="2"] .step-icon-glow-1,
.pricing-step[data-step="2"] .step-icon-glow-2 {
    background: #f7c223;
}

.pricing-step[data-step="3"] .step-icon-glow-1,
.pricing-step[data-step="3"] .step-icon-glow-2 {
    background: #f47b73;
}

@keyframes stepIconGlow {
    0%, 100% {
        transform: scale(1.2) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3) rotate(180deg);
        opacity: 0.8;
    }
}

.step-icon-box {
    position: relative;
    width: 112px;
    height: 112px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.3);
}

.step-icon-box-1 {
    background: linear-gradient(135deg, #90cdc8 0%, #618082 100%);
    box-shadow: 0 20px 60px -10px rgba(144, 205, 200, 0.5);
}

.step-icon-box-2 {
    background: linear-gradient(135deg, #f7c223 0%, #f47b73 100%);
    box-shadow: 0 20px 60px -10px rgba(247, 194, 35, 0.5);
}

.step-icon-box-3 {
    background: linear-gradient(135deg, #f47b73 0%, #618082 100%);
    box-shadow: 0 20px 60px -10px rgba(244, 123, 115, 0.5);
}

.step-icon-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    animation: stepIconOverlay 6s linear infinite;
}

@keyframes stepIconOverlay {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.step-icon {
    width: 48px;
    height: 48px;
    color: #fff;
    position: relative;
    z-index: 2;
    stroke-width: 2;
}

.step-icon-border {
    position: absolute;
    inset: 0;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    transform: scale(1.05);
    pointer-events: none;
}

.step-number-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid #fff;
    font-size: 14px;
    font-weight: 900;
    color: #fff;
    z-index: 10;
    animation: stepBadgeRotate 8s linear infinite;
}

@keyframes stepBadgeRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.pricing-step h3 {
    font-size: 28px;
    margin-top:20px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.pricing-step p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* Pricing CTA Section */
.pricing-cta-section {
    padding: 100px 0;
    background: #51C7C1;
    text-align: center;
    color: #1E556A;
}

.pricing-cta-section h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1E556A;
}

.pricing-cta-section .script-text {
    font-size:64px;
    color:#fff;
}

.pricing-cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cta-section .btn {
    background: var(--highlight-yellow);
    color: var(--text-dark);
}

.pricing-cta-section .btn:hover {
    background: #ffb300;
}

/* App Section ==========================*/
.app-section {
    padding: 100px 0;
    background-color: #51C7C1;
    overflow: hidden;
    position: relative;
}

.app-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.app-content {
    text-align: center;
    z-index: 2;
    position:relative;
}

.app-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1E556A;
}

.app-content p {
    font-size: 20px;
    color: #1E556A;
    margin-bottom: 30px;
    line-height: 1.5;
}

.app-highlight {
    background-color: #FFD76D;
    padding: 2px 8px;
    border-radius: 15px;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.app-btn {
    display: inline-block;
    transition: opacity 0.2s, transform 0.2s;
    text-decoration: none;
}

.app-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.app-store-image {
    height: 50px;
    width: auto;
    display: block;
}

.app-image-wrapper {
    width: 350px;
    position: absolute;
    left: calc(100% - 40px);
    bottom:-100px;
    display: flex;
    align-items: center;
    z-index: 1;
    pointer-events: none;
}

.app-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

/* CTA Section ==========================*/
.cta-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    color: #1E556A;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-section p {
    font-size: 20px;
    color: #6D8591;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background-color: var(--primary-green);
    color: #fff;
}

.btn-secondary:hover {
    background-color: #078a7a;
}

/* Footer ==========================*/
.footer {
    background-color: #fff;
}

.footer-content {
    padding: 80px 0 20px 0;
    background-color: #fff;
}

.footer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

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

.footer-logo {
    height: 26px;
    width: auto;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #333;
}

.contact-icon {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
    opacity: 0.7;
}

.contact-item .contact-icon:not(img) {
    color: #AAAAAA;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.contact-text {
    color: #555;
}

.contact-item a.contact-text {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a.contact-text:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.footer-bar {
    width: 100%;
    height: 18px;
    overflow: hidden;
}

.footer-bar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
    display: block;
}

.footer-copyright {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

/* Responsiveness ==========================*/
/* Medium Tablet (768px - 900px) */
@media (max-width: 900px) {
    .tabs-header {
        gap: 6px;
    }
    .tab-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    .tabs-content-wrapper {
        padding: 35px 25px;
    }
    .tab-pane.active {
        gap: 35px;
    }
}

@media (max-width: 1280px) {
    .arrow-2, .arrow-4 {
        left: 40%;
    }
}
/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-section {
        min-height: 500px;
    }
    .hero-container {
        min-height: 500px;
    }    
    .hero-content {
        max-width: 100%;
    }    
    .hero-content h1 {
        font-size: 36px;
    }    
    .hero-content h1 .script-text {
        font-size: 48px;
    }    
    .hero-subtext {
        font-size: 20px;
        margin-top: 0;
    }    
    .btn {
        font-size: 18px;
        padding: 10px 25px;
    }
    .hero-decorations {
        min-width:1600px;
    }
    .hero-deco-leaves1 {
        right: 300px;
    }
    .hero-deco-leaves2 {
        right: 250px;
    }
    .hero-deco-leaves3 {
        right: 150px;
    }
    .hero-char {
        width: 350px;
        left: calc(50% + 200px);
    }
    .decor-pattern2 {
        right: -750px;
    }
    /* Intro section */
    .intro-section {
        padding: 100px 0;
    }
    .intro-heading {
        font-size: 32px;
        line-height: 48px;
    }
    .intro-text {
        font-size: 20px;
    }
    
    /* Feature sections */
    .feature-container, .feature-container.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-content {
        margin-bottom: 40px;
    }
    
    /* Feature sections responsive - 1024px */
    .feature-section .feature-content h2 {
        font-size: 38px;
    }
    
    .feature-section .feature-content h2 .script-text {
        font-size: 54px;
    }
    
    .feature-section .feature-content p {
        font-size: 20px;
    }
    .dotted-arrow {
        transform: scale(1) translateY(0);
    }
    .arrow-2 {left:1%; top:-70px;}
    .arrow-4 {left:4%; top:0;}
    
    /* Pricing Page Responsive - 1024px */
    .pricing-hero-title {
        font-size: 36px;
    }
    .pricing-hero-subtitle {
        font-size: 20px;
    }
    .contact-hero-title {
        font-size: 36px;
    }
    .contact-hero-subtitle {
        font-size: 20px;
    }
    .section-header h2 {
        font-size: 36px;
    }
    .section-header p {
        font-size: 18px;
    }
    .modules-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    .pricing-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }
    .pricing-cta-section h2 {
        font-size: 36px;
    }

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }    
    /* Backdrop overlay - separate element */
    .nav-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 24;
        pointer-events: none;
    }    
    .nav-backdrop.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--primary-green);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 25;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }    
    .nav-links.active {
        right: 0;
    }    
    .nav-links a {
        font-size: 20px;
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        transition: opacity 0.2s;
    }    
    .nav-links a:hover {
        opacity: 0.8;
    }    
    .nav-links a:last-child {
        border-bottom: none;
    }

    /* Tabs Tablet */
    .tabs-section {
        padding: 60px 0;
    }
    .tabs-header {
        gap: 8px;
    }
    .tab-btn {
        flex: 0 0 auto;
        padding: 12px 20px;
        font-size: 15px;
        min-width: fit-content;
    }
    .tabs-content-wrapper {
        padding: 40px 30px;
        border-radius: 15px;
    }
    .tab-pane.active {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }
    .tab-text {
        max-width: 100%;
    }
    .tab-image {
        max-width: 100%;
    }
    .tab-pane h3 {
        font-size: 28px;
    }
    .tab-pane p {
        font-size: 18px;
    }

    /* Pricing Responsive Tablet */
    .pricing-card {
        width: 300px;
    }
    .pricing-card.popular {
        transform: none;
        z-index: 0;
    }
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    /* App Section Tablet */
    .app-content h2 {
        font-size: 38px;
    }
    .app-image-wrapper {
        right: -50px;
    }
    .app-image {
        max-height: 400px;
    }

    /* CTA Section Tablet */
    .cta-section h2 {
        font-size: 38px;
    }
    .cta-section p {
        font-size: 18px;
    }
    
    /* Pricing Page Responsive - 1024px */
    .pricing-hero-banner {
        height: 500px;
    }
    .contact-hero-banner {
        height: 500px;
    }
    .pricing-hero-title {
        font-size: 36px;
    }
    .pricing-hero-subtitle {
        font-size: 20px;
    }
    .contact-hero-title {
        font-size: 36px;
    }
    .contact-hero-subtitle {
        font-size: 20px;
    }
    .section-header h2 {
        font-size: 36px;
    }
    .section-header p {
        font-size: 18px;
    }
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .foundation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .pricing-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pricing-cta-section {
        padding: 80px 0;
    }
    .pricing-cta-section h2 {
        font-size: 36px;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 80px 0 60px;
    }
    .contact-title {
        font-size: 32px;
    }
    .contact-title .script-text {
        font-size: 44px;
    }
    .contact-subtitle {
        font-size: 18px;
        padding: 0 20px;
    }
    .contact-form-intro {
        padding: 0 20px;
        margin-bottom: 30px;
        font-size: 16px;
    }
    .contact-privacy-notice {
        padding: 0 20px;
        margin-top: 25px;
    }
}

@media (max-width: 1200px) {
    body.home-page .nav-links a {
        text-shadow: var(--primary-green-dark) 1px 0px 2px, var(--primary-green-dark) 0.540302px 0.841471px 2px, var(--primary-green-dark) -0.416147px 0.909297px 2px, var(--primary-green-dark) -0.989992px 0.14112px 2px, var(--primary-green-dark) -0.653644px -0.756802px 2px, var(--primary-green-dark) 0.283662px -0.958924px 2px, var(--primary-green-dark) 0.96017px -0.279415px 2px;
    }
}
/* Mobile and Tablet (below 768px) */
@media (max-width: 768px) {
    .container.narrow {
        padding: 0;
    }
    .hero-section {
        min-height: 550px;
    }    
    .hero-container {
        min-height: 550px;
        align-items: flex-start;
    }
    .hero-content {
        padding-top:100px;
    }
    .hero-content h1 {
        font-size: 28px;
        margin:0;
        line-height:1.2;
    }    
    .hero-content h1 .script-text {
        font-size: 36px;
    }    
    .hero-subtext {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 20px;
    }    
    .btn {
        font-size: 18px;
        padding: 10px 25px;
    }    
    .hero-decorations {
        min-width: 100% !important;
        left: 0 !important;
        transform: none !important;
    }    
    .hero-char {
        width: 40vw !important;
        min-width: 240px !important;
        left: auto !important;
        right: -20px !important;
    }    
    .decor-plant3 {
        width: 40px !important;
        left: 15% !important;
    }    
    .decor-plant2 {
        width: 45px !important;
        left: 25% !important;
    }    
    .decor-leaves1, .decor-leaves2, .decor-leaves3 {
        display: none;
    }    
    .decor-pattern1 {
        width: 500px !important;
    }    
    .decor-pattern2 {
        right: inherit;
        left: 20%;
    }
    
    /* Intro section mobile */
    .intro-section {
        padding: 80px 0;
    }
    .intro-heading {
        font-size: 28px;
        line-height: 42px;
    }
    .intro-text {
        font-size: 18px;
    }
    .intro-content {
        gap: 25px;
    }
    
    /* Effortless heading mobile */
    .effortless-heading {
        margin-bottom: 60px;
    }
    .effortless-logo {
        height: 50px;
        margin-bottom: 15px;
    }
    .effortless-subtitle {
        font-size: 24px; line-height: 2;
    }
    .effortless-subtitle .script-text {
        font-size: 48px;
    }
    
    /* Feature sections mobile responsive - 768px */
    .feature-section .feature-content h2 {
        font-size: 32px;
    }
    
    .feature-section .feature-content h2 .script-text {
        font-size: 44px;
    }
    
    .feature-section .feature-content p {
        font-size: 18px;
    }

    .dotted-arrow {
        display:none;
    }
    

    /* Tabs Mobile */
    .tabs-section {
        padding: 50px 0;
    }
    .tabs-header {
        gap: 8px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .tab-btn {
        border-radius: 15px 15px 0 0;
        flex: 0 0 auto;
        padding: 12px 18px;
        font-size: 14px;
        text-align: center;
        min-width: fit-content;
    }
    
    .tab-btn.active {
        background-color: #fff;
        font-weight: 700;
    }
    
    .tabs-content-wrapper {
        padding: 30px 20px;
        border-radius: 15px;
        margin-top: 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    }
    
    .tab-pane h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .tab-pane p {
        font-size: 16px;
        line-height: 1.6;
    }

    .tab-pane.active {
        flex-direction: column;
        gap: 25px;
        align-items: center;
        text-align: center;
    }
    
    .tab-text, .tab-image {
        max-width: 100%;
        flex: auto;
    }

    /* Pricing Responsive Mobile */
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        width: 100%;
        max-width: 400px;
    }

    /* App Section Mobile */
    .app-container {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }
    .app-content {
        max-width: 100%;
        position: relative;
        z-index: 2;
    }
    .app-content h2 {
        font-size: 32px;
    }
    .app-content p {
        font-size: 18px;
    }
    .app-buttons {
        justify-content: center;
    }
    .app-store-image {
        height: 45px;
    }
    .app-image-wrapper {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
    }
    .app-image {
        max-height: 300px;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 60px 0;
    }
    .cta-section h2 {
        font-size: 32px;
    }
    .cta-section p {
        font-size: 18px;
        padding: 0 20px;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Footer Mobile */
    .footer-info {
        flex-direction: column;
        gap: 20px;
    }
    .footer-contact {
        /*flex-direction: column;*/
        gap: 15px;
        align-items: flex-start;
    }
    .contact-item {
        font-size: 13px;
    }
    .contact-text {
        word-break: break-word;
    }
    .footer-bar-image {
        object-position: 75%;
    }
    
    /* Pricing Page Mobile - 768px */
    .pricing-hero-banner {
        height: 450px;
    }
    .contact-hero-banner {
        height: 450px;
    }
    .pricing-hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    .pricing-hero-title .script-text {
        font-size: 36px;
    }
    .pricing-hero-title .script-text {
        font-size: 36px;
    }
    .pricing-hero-subtitle {
        font-size: 18px;
    }
    .contact-hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    .contact-hero-title .script-text {
        font-size: 36px;
    }
    .contact-hero-subtitle {
        font-size: 18px;
    }
    .modules-section,
    .horizon-section,
    .foundation-section,
    .pricing-works-section {
        padding: 60px 0;
    }
    .section-header {
        margin-bottom: 40px;
    }
    .section-header h2 {
        font-size: 28px;
    }
    .section-header h2 .script-text {
        font-size: 36px;
        top:.2em;

    }
    .section-header p {
        font-size: 16px;
    }
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    .module-card {
        padding: 30px 20px;
    }
    .module-card h3 {
        font-size: 24px;
    }
    .module-features li {
        font-size: 16px;
    }
    .coming-soon-badge {
        font-size: 12px;
        top: 15px;
        right: 15px;
        color: #6b7280;
    }
    
    .module-card-purple .coming-soon-badge,
    .module-card-blue .coming-soon-badge {
        color: #7c3aed;
    }
    
    .coming-soon-icon {
        width: 14px;
        height: 14px;
    }
    .horizon-note {
        font-size: 16px;
        margin-top: 40px;
    }
    .foundation-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    @media (min-width: 768px) {
        .foundation-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (min-width: 1024px) {
        .foundation-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    .foundation-item h3 {
        font-size: 20px;
    }
    .foundation-item p {
        font-size: 16px;
    }
    .pricing-steps {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
    .step-number {
        font-size: 56px;
    }
    .pricing-step h3 {
        font-size: 24px;
    }
    .pricing-step p {
        font-size: 16px;
    }
    .pricing-cta-section {
        padding: 60px 0;
    }
    .pricing-cta-section h2 {
        font-size: 28px;
    }
    .pricing-cta-section h2 .script-text {
        font-size: 36px;
    }
    .pricing-cta-section p {
        font-size: 18px;
    }
    
    /* Contact Section Small Mobile */
    .contact-section {
        padding: 60px 0 40px;
    }
    .contact-title {
        font-size: 28px;
    }
    .contact-title .script-text {
        font-size: 36px;
    }
    .contact-subtitle {
        font-size: 16px;
    }
    .contact-form-intro {
        padding: 0 15px;
        margin-bottom: 25px;
        font-size: 15px;
    }
    .contact-form-intro {
        padding: 0 15px;
        margin-bottom: 25px;
        font-size: 15px;
    }
    .contact-form-wrapper iframe {
        min-height: 3400px;
    }
    .contact-privacy-notice {
        padding: 0 15px;
        margin-top: 20px;
    }
}

/* Back to Top Button ==========================*/
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(9, 171, 153, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-green-dark);
    box-shadow: 0 6px 16px rgba(9, 171, 153, 0.4);
    transform: translateY(-3px);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Responsive Back to Top Button */
@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--primary-green);
}

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

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

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
    margin: 0 0 8px 0;
    font-family: 'Inter', sans-serif;
}

.cookie-consent-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: var(--primary-green);
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #005a3c;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-decline {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-cookie-accept {
    background: var(--primary-green);
    color: #fff;
}

.btn-cookie-accept:hover {
    background: #005a3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 77, 0.3);
}

.btn-cookie-decline {
    background: #f5f5f5;
    color: #666;
}

.btn-cookie-decline:hover {
    background: #e0e0e0;
    color: #333;
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 16px;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-consent-text {
        min-width: auto;
    }

    .cookie-consent-text h3 {
        font-size: 16px;
    }

    .cookie-consent-text p {
        font-size: 13px;
    }

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

    .btn-cookie-accept,
    .btn-cookie-decline {
        width: 100%;
        padding: 14px 24px;
    }
}

/* Privacy Policy Page Styles */
body.privacy-page {
    background-color: #ffffff;
}

.privacy-content {
    padding: 100px 0;
    background-color: #ffffff;
}

.privacy-content h1 {
    font-size: 42px;
    color: var(--primary-green-dark);
    margin-bottom: 40px;
    font-weight: 700;
}

.privacy-content h2 {
    font-size: 28px;
    color: var(--primary-green-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.privacy-content p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.privacy-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.privacy-content li {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 10px;
}

.privacy-content a {
    color: var(--primary-green);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-content a:hover {
    color: var(--primary-green-dark);
}

.privacy-content strong {
    color: var(--primary-green-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 60px 0;
    }

    .privacy-content h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .privacy-content h2 {
        font-size: 24px;
        margin-top: 30px;
    }

    .privacy-content p,
    .privacy-content li {
        font-size: 16px;
    }
}
