* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff9f3;
    /* Light cream/orange background */
    background-image: radial-gradient(rgba(90, 89, 89, 0.4) 1px, transparent 1px);
    background-size: 30px 30px;
    background-attachment: fixed;
    color: #333333;
    /* Darker grey for better readability */
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

.page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 24px) 20px;
    width: 100%;
}

/* Add specific padding for sections - standardized */
.hero {
    padding: 60px 0 40px;
}

.features,
.pricing,
.contact,
.about {
    padding: 80px 0;
    min-height: 100vh;
    /* Lock to screen size */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 2. Navbar Container */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    /* Reduced vertical padding */
    background-color: transparent;
    position: relative;
}

/* 3. Logo Section */
.logo-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    /* Removed gap as there is no text */
    position: relative;
    z-index: 1;
}

/* Logo Image */
.logo-img {
    height: 40px;
    /* Reduced height for better fit */
    width: auto;
    margin-left: 0px;
    /* Space from the left edge */

}

/* 4. Navigation Links (Center) */
.nav-links {
    list-style: none;
    display: flex;
    gap: 36px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* Center the nav links */
}

.nav-links li a {
    text-decoration: none;
    color: #444;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.2s ease;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.nav-links li a:hover {
    color: #FF6B35;
    /* Hover color match */
}

.nav-links li a.active {
    color: #FF6B35;
    font-weight: 700;
    position: relative;
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FF6B35;
    border-radius: 2px;
}

/* Scroll-triggered animations - standardized timing */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation delays for multiple elements */
.scroll-fade-in.delay-1,
.scroll-slide-left.delay-1,
.scroll-slide-right.delay-1,
.scroll-scale.delay-1 {
    transition-delay: 0.15s;
}

.scroll-fade-in.delay-2,
.scroll-slide-left.delay-2,
.scroll-slide-right.delay-2,
.scroll-scale.delay-2 {
    transition-delay: 0.3s;
}

.scroll-fade-in.delay-3,
.scroll-slide-left.delay-3,
.scroll-slide-right.delay-3,
.scroll-scale.delay-3 {
    transition-delay: 0.45s;
}

.scroll-fade-in.delay-4,
.scroll-slide-left.delay-4,
.scroll-slide-right.delay-4,
.scroll-scale.delay-4 {
    transition-delay: 0.6s;
}

/* 5. Action Buttons (Right) */
.nav-buttons {
    display: flex;
    gap: 15px;
    margin-left: auto;
    /* Push buttons to the right */
    position: relative;
    z-index: 1;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    /* Full viewport height */
    margin-bottom: 0;
    text-align: center;
    padding-top: 80px;
    /* Account for navbar */
    padding-bottom: 40px;
    position: relative;
}

.hero-copy {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 50px;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Context for absolute positioning of image */
}

.hero-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.hero-copy h1 {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    line-height: 1.15;
    position: relative;
    z-index: 1;
    /* Ensure text is above image */
}

/* Hero Center Image - Background Positioned */
.hero-image-container {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(50%, 50%);
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    /* Prevent interference with text selection */
}

.hero-image-container2 {
    position: absolute;
    top: -5%;
    left: -45%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    /* Prevent interference with text selection */
}

.hero-center-img {
    width: 180%;
    /* Match width */
    height: 180%;
    /* Match height */
    object-fit: contain;
    /* Ensure image is visible, use cover if full fill is needed */
    opacity: 0.6;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-highlight {
    display: block;
    color: #d88422;
}

.hero-heading {
    display: block;
    color: #1f1f1f;
    margin-top: 8px;
}

.text-accent {
    color: #FF6B35;
}

.hero-subtitle {
    font-size: 20px;
    /* Slightly reduced */
    color: #373737;
    margin-bottom: 20px;
    /* Reduced margin */
}

.hero-actions {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
    /* Reduced margin */
}



.btn {
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Log In Button (Outline Style) */
.btn-login {
    background-color: #FFFFFF;
    border: 1px solid #FF6B35;
    /* Orange border */
    color: #FF6B35;
    /* Orange text */
}

.btn-login:hover {
    background-color: #FFF8F0;
}

/* Get Started Button (Solid Style) */
.btn-signup {
    background-color: #FF6B35;
    /* Orange background */
    border: 1px solid #D98E36;
    color: #FFFFFF;
    /* White text */
}

.btn-signup:hover {
    background-color: #c77f2e;
    /* Slightly darker orange on hover */
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid #FF6B35;
    color: #1f1f1f;
}

.btn-secondary:hover {
    background-color: #fff5ea;
}

.social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center items horizontally within the column */
    gap: 18px;
    margin-top: 40px;
    /* Add some space after the hero actions */
}

.proof-label {
    font-size: 20px;
    color: #404040;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.logo-grid {
    display: flex;
    /* Display logos in a linear fashion */
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    justify-content: center;
    /* Center the logos */
    gap: 18px;
}

.logo-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 0;
    border-radius: 12px;
    background: #f8ecde;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    position: relative;
}

.logo-pill::before {
    content: "";
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background-color: #353535;
    margin-bottom: 10px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.hero-img {
    max-width: 100%;
    width: auto;
    max-width: 500px;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page {
        padding: 0 clamp(16px, 4vw, 20px) 20px;
    }

    .navbar {
        padding: 15px 0;
    }

    .nav-links {
        display: none;
    }

    .nav-buttons {
        gap: 10px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 0 30px;
    }

    .hero-img {
        max-width: 100%;
        width: 100%;
        max-height: 280px;
    }

    .hero-visual {
        width: 100%;
        justify-content: center;
    }

    .hero-copy h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .logo-img {
        height: 50px;
    }

    .logo-track-wrapper {
        margin-top: 30px;
    }

    .features-header h2 {
        font-size: 28px;
    }

    .features-header p {
        font-size: 15px;
    }

    .pricing-header h2 {
        font-size: 28px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .about-text h2 {
        font-size: 32px;
    }
}

.hero .logo-track-wrapper {
    width: 100%;
    margin-bottom: 200px;
    margin-top: auto;
    /* Push to bottom */
    max-width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-basis: auto;
    order: 3;
}

.scrolling-container {
    overflow: hidden;
    width: 100%;
    max-width: 1400px;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    gap: 10px;
}

.logo-track {
    display: flex;
    align-items: center;
    animation: scroll-left 30s linear infinite;
    width: fit-content;
    will-change: transform;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.logo-track img {
    width: 100px;
    height: 50px;
    margin: 0 15px;
    flex-shrink: 0;
    object-fit: contain;
}

@keyframes scroll-left {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(calc(-50% - 50%));
    }
}

.hero-subtitle {
    font-size: 16px;
    /* Slightly reduced */
    color: #373737;
    margin-bottom: 20px;
    /* Reduced margin */
}

.hero-actions {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
    /* Reduced margin */
}

.btn {
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Log In Button (Outline Style) */
.btn-login {
    background-color: #FFFFFF;
    border: 1px solid #FF6B35;
    /* Orange border */
    color: #FF6B35;
    /* Orange text */
}

.btn-login:hover {
    background-color: #FFF8F0;
}

/* Get Started Button (Solid Style) */
.btn-signup {
    background-color: #FF6B35;
    /* Orange background */
    border: 1px solid #D98E36;
    color: #FFFFFF;
    /* White text */
}

.btn-signup:hover {
    background-color: #c77f2e;
    /* Slightly darker orange on hover */
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid #FF6B35;
    color: #1f1f1f;
}

.btn-secondary:hover {
    background-color: #fff5ea;
}

.social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center items horizontally within the column */
    gap: 18px;
    margin-top: 40px;
    /* Add some space after the hero actions */
}

.proof-label {
    font-size: 20px;
    color: #404040;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.logo-grid {
    display: flex;
    /* Display logos in a linear fashion */
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    justify-content: center;
    /* Center the logos */
    gap: 18px;
}

.logo-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 0;
    border-radius: 12px;
    background: #f8ecde;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    position: relative;
}

.logo-pill::before {
    content: "";
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background-color: #353535;
    margin-bottom: 10px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.hero-img {
    max-width: 100%;
    width: auto;
    max-width: 500px;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page {
        padding: 0 clamp(16px, 4vw, 20px) 20px;
    }

    .navbar {
        padding: 15px 0;
    }

    .nav-links {
        display: none;
    }

    .nav-buttons {
        gap: 10px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 0 30px;
    }

    .hero-img {
        max-width: 100%;
        width: 100%;
        max-height: 280px;
    }

    .hero-visual {
        width: 100%;
        justify-content: center;
    }

    .hero-copy h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .logo-img {
        height: 50px;
    }

    .logo-track-wrapper {
        margin-top: 30px;
    }

    .features-header h2 {
        font-size: 28px;
    }

    .features-header p {
        font-size: 15px;
    }

    .pricing-header h2 {
        font-size: 28px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .about-text h2 {
        font-size: 32px;
    }
}



.scrolling-container {
    overflow: hidden;
    width: 100%;
    max-width: 1400px;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    gap: 10px;
}

.logo-track {
    display: flex;
    align-items: center;
    animation: scroll-left 30s linear infinite;
    width: fit-content;
    will-change: transform;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.logo-track img {
    width: 100px;
    height: 50px;
    margin: 0 15px;
    flex-shrink: 0;
    object-fit: contain;
}

@keyframes scroll-left {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(calc(-50% - 50%));
    }
}

/* Features Section */
.features {
    max-width: 100%;
    margin: 0 auto;
}

.features-header {
    margin-bottom: 40px;
}

.features-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: #1f1f1f;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.features-header h2 span {
    color: #FF6B35;
}

.features-header p {
    font-size: 18px;
    color: #444;
    max-width: 700px;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.features-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    flex: 1;
}

.feature-card {
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 400px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(217, 142, 54, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.feature-card.transitioning {
    z-index: 0;
    pointer-events: none;
}

.feature-card.showing {
    z-index: 2;
}

/* Ripple effect - only for feature cards */
.feature-card .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(217, 142, 54, 0.4);
    transform: scale(0);
    animation: rippleAnimation 0.6s ease-out;
    pointer-events: none;
    z-index: 5;
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217, 142, 54, 0.1) 0%, rgba(255, 176, 87, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(217, 142, 54, 0.2), 0 6px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(217, 142, 54, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .btn-card {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Carousel wrapper and grid */
.features-grid-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    min-height: 450px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    flex: 1;
    position: relative;
    will-change: transform;
}

/* Removed grid-level slide animations - using card-level animations instead */

/* Card fade animation */
.feature-card.fade-out {
    animation: fadeOut 0.4s ease-out forwards;
    z-index: 1;
    pointer-events: none;
}

.feature-card.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
    z-index: 2;
    opacity: 0;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0);
        visibility: visible;
    }

    100% {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
        visibility: hidden;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
        visibility: visible;
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        visibility: visible;
    }
}

/* Initially hide cards beyond first set */
.features-grid .feature-card:nth-child(n+4) {
    display: none;
    opacity: 0;
    visibility: hidden;
}

/* Ensure cards don't show during transitions */
.feature-card[style*="display: none"] {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.95);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.card-orange {
    background-color: #FFB057;
    /* Vibrant orange from design */
}

.card-light {
    background-color: #FFE6CC;
    /* Light peach/orange */
}

.card-icon {
    margin-bottom: 24px;
    color: #1f1f1f;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.feature-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    color: #1f1f1f;
    transition: color 0.3s ease;
    letter-spacing: -0.3px;
}

.feature-card:hover h3 {
    color: #D98E36;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 32px;
    flex-grow: 1;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.btn-card {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-card:active::after {
    width: 300px;
    height: 300px;
}

.btn-card:hover {
    transform: translateX(5px);
}

.btn-card.btn-clicked {
    animation: buttonClick 0.3s ease-out;
}

@keyframes buttonClick {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

.btn-black {
    background-color: #000;
    color: #fff;
}

.btn-orange {
    background-color: #FF6B35;
    color: #fff;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #000;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.nav-arrow:hover:not(:disabled) {
    background-color: #333;
    transform: scale(1.1);
}

.nav-arrow:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

.nav-arrow:active:not(:disabled) {
    transform: scale(0.95);
}

/* Responsive Features */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-container {
        position: relative;
    }

    .nav-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 36px;
        height: 36px;
    }

    .nav-arrow.prev {
        left: -10px;
    }

    .nav-arrow.next {
        right: -10px;
    }

    .features {
        padding: 50px 0;
    }

    .features-header h2 {
        font-size: 32px;
    }

    /* Mobile touch-friendly adjustments */
    .feature-card {
        min-height: auto;
        padding: 24px;
    }

    .feature-card:hover {
        transform: translateY(-4px) scale(1.01);
    }

    .feature-card.selected {
        transform: translateY(-2px) scale(1.02);
    }

    /* Disable 3D transforms on mobile for better performance */
    .feature-card {
        transform-style: flat;
    }
}

/* Pricing Section */
.pricing {
    max-width: 100%;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: #1f1f1f;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.pricing-header h2 span {
    color: #D98E36;
}

.pricing-header p {
    font-size: 16px;
    color: #444;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.6;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 48px;
    position: relative;
    background-color: #f5f5f5;
    border-radius: 30px;
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-btn {
    padding: 12px 32px;
    border: none;
    background-color: transparent;
    color: #666;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    border-radius: 26px;
    white-space: nowrap;
}

.toggle-btn.active {
    background-color: #FF6B35;
    color: #fff;
    box-shadow: 0 4px 12px rgba(217, 142, 54, 0.3);
    transform: scale(1.02);
}

.toggle-btn:not(.active):hover {
    color: #D98E36;
    background-color: rgba(217, 142, 54, 0.1);
    transform: scale(1.05);
}

.toggle-btn.active:hover {
    background-color: #c77f2e;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(217, 142, 54, 0.4);
}

.save-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 6px;
    font-weight: 700;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.toggle-btn:not(.active) .save-badge {
    display: inline-block;
}

.toggle-btn.active .save-badge {
    display: none;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(217, 142, 54, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D98E36, #FFB057);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 12px 40px rgba(217, 142, 54, 0.15), 0 6px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(217, 142, 54, 0.3);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.selected {
    box-shadow: 0 16px 48px rgba(217, 142, 54, 0.25), 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #D98E36;
    border-width: 3px;
    padding: 31px 23px;
    /* Adjust padding to prevent layout shift from border width change */
}

.pricing-card.selected::before {
    transform: scaleX(1);
    height: 5px;
}

.pricing-card.selected::after {
    content: '✓';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: #D98E36;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    animation: checkmarkAppear 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(217, 142, 54, 0.4);
    z-index: 10;
}

@keyframes checkmarkAppear {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pricing-card.highlighted {
    background-color: #FFB057;
    border: 2px solid #FFB057;
    box-shadow: 0 8px 32px rgba(217, 142, 54, 0.25), 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pricing-card.highlighted:hover {
    box-shadow: 0 16px 48px rgba(217, 142, 54, 0.3), 0 8px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card.highlighted.selected {
    box-shadow: 0 20px 56px rgba(217, 142, 54, 0.35), 0 10px 28px rgba(0, 0, 0, 0.15);
    border: 3px solid #D98E36;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f1f1f;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.card-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.1px;
}

.price {
    display: flex;
    align-items: flex-start;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.currency {
    font-size: 28px;
    font-weight: 700;
    color: #1f1f1f;
    transition: all 0.3s ease;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #1f1f1f;
    line-height: 1;
    transition: all 0.3s ease;
    display: inline-block;
}

.amount.animate {
    animation: priceBounce 0.6s ease-out;
}

@keyframes priceBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.per-month {
    font-size: 13px;
    color: #666;
    margin-bottom: 24px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #333;
}

.features-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.features-list.excluded li {
    color: #999;
}

.features-list.excluded svg {
    stroke: #ccc;
}

.not-included,
.everything-plus {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin: 20px 0 12px 0;
}

.btn-pricing {
    width: 100%;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    margin-top: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-pricing:active::before {
    width: 300px;
    height: 300px;
}

.pricing-card:not(.highlighted) .btn-pricing {
    background-color: #000;
    color: #fff;
}

.pricing-card:not(.highlighted) .btn-pricing:hover {
    background-color: #333;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.pricing-card.selected .btn-pricing {
    background-color: #FF6B35 !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4) !important;
}

.pricing-card.selected .btn-pricing:hover {
    background-color: #c77f2e !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5) !important;
}

.pricing-card.highlighted .btn-pricing {
    background-color: #fff;
    color: #1f1f1f;
}

.pricing-card.highlighted .btn-pricing:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}



@keyframes buttonPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.btn-pricing.btn-clicked {
    animation: buttonClick 0.3s ease-out;
}

@keyframes buttonClick {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Pricing */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card.highlighted {
        transform: scale(1);
    }

    .pricing {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 50px 0;
    }

    .pricing-header h2 {
        font-size: 32px;
    }
}

.pricing-header h2 span {
    color: #D98E36;
}

.pricing-header p {
    font-size: 16px;
    color: #444;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.6;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 48px;
    position: relative;
    background-color: #f5f5f5;
    border-radius: 30px;
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-btn {
    padding: 12px 32px;
    border: none;
    background-color: transparent;
    color: #666;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    border-radius: 26px;
    white-space: nowrap;
}

.toggle-btn.active {
    background-color: #FF6B35;
    color: #fff;
    box-shadow: 0 4px 12px rgba(217, 142, 54, 0.3);
    transform: scale(1.02);
}

.toggle-btn:not(.active):hover {
    color: #D98E36;
    background-color: rgba(217, 142, 54, 0.1);
    transform: scale(1.05);
}

.toggle-btn.active:hover {
    background-color: #c77f2e;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(217, 142, 54, 0.4);
}

.save-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 6px;
    font-weight: 700;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.toggle-btn:not(.active) .save-badge {
    display: inline-block;
}

.toggle-btn.active .save-badge {
    display: none;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(217, 142, 54, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D98E36, #FFB057);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(217, 142, 54, 0.15), 0 6px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(217, 142, 54, 0.3);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.selected {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(217, 142, 54, 0.25), 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #D98E36;
    border-width: 3px;
}

.pricing-card.selected::before {
    transform: scaleX(1);
    height: 5px;
}

.pricing-card.selected::after {
    content: '✓';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: #D98E36;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    animation: checkmarkAppear 0.4s ease-out;
    box-shadow: 0 4px 12px rgba(217, 142, 54, 0.4);
    z-index: 10;
}

/* Glow effect on click - using box-shadow animation */
.pricing-card.clicked {
    animation: cardGlow 0.6s ease-out;
}

@keyframes cardGlow {
    0% {
        box-shadow: 0 4px 20px rgba(217, 142, 54, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(217, 142, 54, 0.2), 0 8px 32px rgba(217, 142, 54, 0.3), 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    100% {
        box-shadow: 0 16px 48px rgba(217, 142, 54, 0.25), 0 8px 24px rgba(0, 0, 0, 0.12);
    }
}

@keyframes checkmarkAppear {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.2) rotate(10deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.pricing-card.highlighted {
    background-color: #FFB057;
    border: 2px solid #FFB057;
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(217, 142, 54, 0.25), 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pricing-card.highlighted:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(217, 142, 54, 0.3), 0 8px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card.highlighted.selected {
    box-shadow: 0 20px 56px rgba(217, 142, 54, 0.35), 0 10px 28px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f1f1f;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.card-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.1px;
}

.price {
    display: flex;
    align-items: flex-start;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.currency {
    font-size: 28px;
    font-weight: 700;
    color: #1f1f1f;
    transition: all 0.3s ease;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #1f1f1f;
    line-height: 1;
    transition: all 0.3s ease;
    display: inline-block;
}

.amount.animate {
    animation: priceBounce 0.6s ease-out;
}

@keyframes priceBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.per-month {
    font-size: 13px;
    color: #666;
    margin-bottom: 24px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #333;
}

.features-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.features-list.excluded li {
    color: #999;
}

.features-list.excluded svg {
    stroke: #ccc;
}

.not-included,
.everything-plus {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin: 20px 0 12px 0;
}

.btn-pricing {
    width: 100%;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    margin-top: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-pricing:active::before {
    width: 300px;
    height: 300px;
}

.pricing-card:not(.highlighted) .btn-pricing {
    background-color: #000;
    color: #fff;
}

.pricing-card:not(.highlighted) .btn-pricing:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.pricing-card.selected .btn-pricing {
    background-color: #FF6B35 !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4) !important;
}

.pricing-card.selected .btn-pricing:hover {
    background-color: #c77f2e !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5) !important;
}

.pricing-card.highlighted .btn-pricing {
    background-color: #fff;
    color: #1f1f1f;
}

.pricing-card.highlighted .btn-pricing:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}



@keyframes buttonPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.btn-pricing.btn-clicked {
    animation: buttonClick 0.3s ease-out;
}

@keyframes buttonClick {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Pricing */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card.highlighted {
        transform: scale(1);
    }

    .pricing {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 50px 0;
    }

    .pricing-header h2 {
        font-size: 32px;
    }

    .toggle-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Contact Section */
.contact {
    max-width: 100%;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-info {
    padding-right: 20px;
}

.contact-label {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 900;
    color: #1f1f1f;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.contact-info h2 span {
    color: #D98E36;
}

.contact-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background-color: #FFE6CC;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-type {
    font-size: 13px;
    color: #999;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: #1f1f1f;
}

.contact-form-wrapper {
    background-color: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D98E36;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    background-color: #FF6B35;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    transition: all 0.2s ease;
    align-self: flex-start;
    letter-spacing: 0.3px;
}

.btn-submit:hover {
    background-color: #c77f2e;
    transform: translateX(5px);
}

.btn-submit svg {
    transition: transform 0.2s ease;
}

.btn-submit:hover svg {
    transform: translateX(3px);
}

/* Responsive Contact */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 50px 0;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about {
    max-width: 100%;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}

.about-text {
    padding-left: 20px;
}

.about-label {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 900;
    color: #1f1f1f;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-text h2 span {
    color: #D98E36;
}

.about-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.about-description strong {
    color: #D98E36;
    font-weight: 700;
}

.trustpilot-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 32px 0 28px 0;
}

.trustpilot-badge svg {
    flex-shrink: 0;
}

.trustpilot-badge span {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.btn-about {
    background-color: #FF6B35;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

.btn-about:hover {
    background-color: #c77f2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 142, 54, 0.3);
}

/* Responsive About */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        padding-left: 0;
    }

    .about-image img {
        max-width: 400px;
        margin: 0 auto;
    }

    .about {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 50px 0;
    }

    .about-text h2 {
        font-size: 36px;
    }

    .about-image img {
        max-width: 100%;
    }
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #FFB057 0%, #FF9A3C 100%);
    padding: 80px 0 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.footer-newsletter h3 {
    font-size: 32px;
    font-weight: 900;
    color: #1f1f1f;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.footer-newsletter p {
    font-size: 15px;
    color: rgba(31, 31, 31, 0.8);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.newsletter-form:focus-within {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.newsletter-input {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-family: inherit;
    background: transparent;
    color: #1f1f1f;
    outline: none;
}

.newsletter-input::placeholder {
    color: #999;
}

.btn-subscribe {
    background: linear-gradient(135deg, #1f1f1f 0%, #000 100%);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-subscribe::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-subscribe:hover::before {
    width: 300px;
    height: 300px;
}

.btn-subscribe:hover {
    background: linear-gradient(135deg, #000 0%, #1f1f1f 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.btn-subscribe:active {
    transform: translateY(0);
}

.footer-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-logo {
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-description {
    font-size: 14px;
    color: rgba(31, 31, 31, 0.75);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 400px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.footer-social {
    margin-bottom: 32px;
}

.social-label {
    font-size: 13px;
    color: rgba(31, 31, 31, 0.7);
    margin-bottom: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.social-icon:hover::before {
    width: 100px;
    height: 100px;
}

.social-icon:hover {
    background: linear-gradient(135deg, #000 0%, #1f1f1f 100%);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.social-icon:active {
    transform: translateY(-2px) scale(1.05);
}

.footer-copyright {
    font-size: 13px;
    color: rgba(31, 31, 31, 0.6);
    font-weight: 500;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 clamp(20px, 4vw, 32px);
    }

    .footer {
        padding: 60px 0 35px;
    }

    .footer-newsletter {
        text-align: center;
    }

    .footer-newsletter p {
        margin-left: auto;
        margin-right: auto;
    }

    .newsletter-form {
        margin: 0 auto;
    }

    .footer-info {
        align-items: center;
        text-align: center;
    }

    .footer-description {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 30px;
    }

    .footer-content {
        padding: 0 clamp(16px, 4vw, 20px);
        gap: 50px;
    }

    .footer-newsletter h3 {
        font-size: 28px;
    }

    .newsletter-form {
        flex-direction: column;
        padding: 8px;
        border-radius: 16px;
    }

    .newsletter-input {
        border-radius: 12px;
        padding: 12px 20px;
    }

    .btn-subscribe {
        width: 100%;
        border-radius: 12px;
        padding: 12px 24px;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Modern Typewriter Cursor */
.cursor {
    display: inline-block;
    color: #FF6B35;
    font-weight: 900;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}