/**
 * OneClick Main Stylesheet
 * - Mobile-first, responsive design
 * - Uses polka dot backgrounds for visual interest
 * - Fixed header with hamburger menu for mobile
 * - Sections use white backgrounds with blue polka dots
 * - Extensive use of flex, grid, and CSS variables for transitions
 * - See notes throughout for structure and rationale
 */

/* --- Basic Reset and Body Styling --- */
html {
    scroll-padding-top: 60px; /* Offset for fixed header when scrolling to anchor links */
}

body {
    margin: 0;
    padding-top: 60px; /* Add padding to compensate for fixed header */
    font-family: 'Nunito', sans-serif; /* Apply Nunito font */
    line-height: 1.6;
    color: #1a2b3c; /* Deep blue for contrast against yellow */
    background-color: #ffff00; /* Replaced dark grey with bright yellow */
    background-image: radial-gradient(circle at 1px 1px, #cccc00 1px, transparent 0), radial-gradient(circle at 1px 1px, #cccc00 1px, transparent 0); /* Changed polka dots to a slightly darker yellow */
    background-size: 20px 20px; /* Spacing of the diagonal dots */
    background-position: 0 0, 10px 10px; /* Offset the second dot layer diagonally */
    background-attachment: fixed; /* Make background static */
    /* NOTE: background-attachment: fixed may not be fully supported or performant on all mobile devices. */
}

main {
    margin-top: 100px; /* Increased margin to push main content down for more vertical space */
    background-color: transparent; /* Make main transparent */
    background-image: none; /* Remove background image from main */
    background-size: auto;
    background-position: auto;
    background-attachment: scroll; /* Reset to default */
}

.pointing-hand {
    position: fixed;
    top: 70px; /* Position below the navigation bar */
    left: 20px; /* Justify left */
    font-size: 3em; /* Restore original size */
    color: inherit; /* Restore inherited color */
    z-index: 1001; /* Ensure it's above the navigation bar */
}

/* --- Main Navigation Bar --- */
.main-nav {
    background: #ffff00;
    border-bottom: 2px solid #111111;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex; /* Use flexbox for the nav container */
    justify-content: space-between; /* Space out menu and social links */
    align-items: center;
}

.nav-content {
    display: flex;
    align-items: center; /* Vertically align items within nav-content */
    justify-content: center; /* Center the content block horizontally */
    width: 100%; /* Take full width */
}

.main-nav ul {
    display: flex;
    margin: 0;
    padding: 10px 20px; /* Adjusted vertical padding for centering */
    height: 60px; /* Keep height */
    list-style: none;
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Vertically align items */
}
.main-nav li {
    margin: 0 10px; /* Tightened horizontal spacing */
    /* Removed position: relative and top properties */
}
.main-nav a:not(.header-ticket-link) {
    color: #111111;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    letter-spacing: 0.03em;
    display: inline-block; /* Make it a block element to apply padding and background */
    padding: 6px 12px; /* Slightly reduced padding for smaller buttons */
    background-color: #ffff00; /* Replaced dark gray with bright yellow */
    border: none; /* Remove border */
    border-radius: 9999px; /* Fully rounded corners */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Add transition for box-shadow */
    border-bottom: none; /* Remove the original border-bottom */
    box-shadow: 0 0 0 1px #111111; /* Removed outermost yellow border */
}
.main-nav a:hover,
.main-nav a:focus {
    color: #add8e6; /* Light blue text on hover */
    background-color: #ffff00; /* Keep bright yellow background on hover */
    border: none; /* Ensure no border on hover */
    box-shadow: 0 0 0 1px #add8e6; /* Removed outermost yellow border on hover */
}

/* --- Header Ticket Link (overrides for button-like nav item) --- */
/* NOTE: .header-ticket-link is heavily overridden for both desktop and mobile. Try to minimize !important usage if possible. */
.header-ticket-link {
    /* For full-width screens */
    margin-left: auto; /* Pushes the link to the right */
    margin-right: 30px; /* Increased space from the right edge */
    border: none !important; /* Remove any border */
    background-color: transparent !important; /* Ensure no background color */
    padding: 0 !important; /* Remove any padding */
    /* Override inherited styles from .main-nav a */
    color: inherit !important; /* Inherit color from parent */
    text-decoration: none !important; /* Remove underline */
    font-weight: normal !important; /* Reset font weight */
    font-size: 1em !important; /* Reset font size */
    letter-spacing: normal !important; /* Reset letter spacing */
    display: inline !important; /* Ensure it behaves as an inline element */
    border-radius: 0 !important; /* Remove border-radius */
    box-shadow: none !important; /* Remove box-shadow */
    transition: none !important; /* Remove transition */
}

.header-ticket-image {
    height: 30px; /* Slightly shorter than hamburger */
    z-index: 1001; /* Ensure it's above nav items if needed */
}

/* --- Hamburger menu button styles and responsive navigation --- */
/* NOTE: Hamburger menu appears on mobile (max-width: 600px). Uses .nav-toggle and body.nav-open for toggling. */
.nav-toggle {
    display: none; /* Hidden by default on larger screens */
    background: none;
    border: none;
    cursor: pointer;
    position: absolute; /* Position absolutely within the nav */
    top: 18px; /* Move hamburger menu further down from the top */
    right: 12px; /* Adjusted right position */
    z-index: 1100;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.nav-toggle span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #111111;
    border-radius: 2px;
    transition: 0.3s;
}

/* --- Responsive navigation for mobile --- */
@media (max-width: 991px) {
    .main-nav {
        flex-direction: row; /* Keep items in a row on mobile */
        justify-content: space-between; /* Space out items */
        align-items: center;
        height: 60px; /* Match increased height on mobile */
        padding: 0 20px; /* Add padding to the sides */
        position: fixed; /* Make the nav fixed on small screens */
        width: 100%; /* Ensure it spans the full width */
        /* Removed margin-left and margin-right */
    }

    body.nav-open main {
        filter: blur(3px); /* Apply a slight blur to the main content */
        transition: filter 0.3s ease-in-out; /* Smooth transition for the blur effect */
    }

    .nav-content {
        width: auto; /* Reset width for mobile */
    }

    .main-nav ul {
        display: none; /* Hidden by default */
        flex-direction: column; /* Stack menu items */
        padding: 10px 0;
        margin-right: 0;
        background: transparent; /* Ensure transparent background */
        box-shadow: none; /* Remove box-shadow */
        /* Remove max-height and overflow-y to prevent slider/scrollbar */
    }
    .main-nav li {
        margin: 10px 0; /* Adjust margin for stacked items */
        display: block; /* Was flex, now block for stacking */
        width: auto;    /* Remove width: 100% */
        text-align: right; /* Right-align content within list items */
    }
    .main-nav .social-links {
        display: none; /* Hidden by default */
        flex-direction: column; /* Stack social links */
        width: 100%;
        align-items: center;
        padding: 10px 0;
        margin-left: 0; /* Remove left margin */
    }
    .nav-toggle {
        display: flex; /* Display hamburger on small screens */
        position: relative; /* Relative positioning for mobile */
        top: auto; /* Reset top */
        right: 30px; /* Ensure it's within the display window with more padding */
        z-index: 1100;
        width: 36px;
        height: 36px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    body.nav-open .main-nav ul {
        display: flex; /* Display when nav is open */
        flex-direction: column; /* Stack menu items */
        position: absolute; /* Position absolutely */
        top: 190px; /* Position well below the main nav and hamburger menu */
        right: 30px; /* Align to the right edge with more padding */
        width: auto; /* Allow width to adjust to content */
        /* Removed min-width to prevent overflow on small screens */
        background-color: transparent; /* Semi-transparent yellow background */
        box-shadow: none; /* Remove shadow */
        align-items: flex-end; /* Align items to the right */
        padding: 10px 20px; /* Add padding */
        margin-top: 0; /* Reset margin-top */
        z-index: 1101; /* Ensure it's above other content and hamburger */
    }
    body.nav-open .main-nav .social-links {
        display: flex; /* Display when nav is open */
    }

    /* Restore button styles for dropdown menu items */
    body.nav-open .main-nav ul li a {
        background-color: #ffff00 !important;
        color: #111111 !important;
        border: none !important;
        box-shadow: 0 0 0 1px #111111 !important; /* Removed outermost yellow border */
        border-radius: 9999px !important;
        padding: 6px 12px !important;
        margin: 6px 0 !important;
        font-weight: 600 !important;
        font-size: 1em !important;
        letter-spacing: 0.03em !important;
        display: inline-block !important;
        transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
        text-align: center;
        min-width: 140px;
        box-sizing: border-box;
    }
    body.nav-open .main-nav ul li a:hover,
    body.nav-open .main-nav ul li a:focus {
        color: #add8e6 !important;
        background-color: #ffff00 !important;
        box-shadow: 0 0 0 1px #add8e6 !important; /* Removed outermost yellow border on hover */
    }
    
    @media (max-width: 600px) {
        .pointing-hand {
            left: 40px; /* Increase left justification for mobile */
        }
    }
    /* Add margin to last menu item for spacing from bottom */
    body.nav-open .main-nav ul li:last-child a {
        margin-bottom: 10px !important;
    }
}



/* --- Header Styling --- */
header {
    background-color: #fff; /* Pure white background */
}

/* --- Typography --- */
h1, h2, h3 {
    margin-bottom: 0.5em;
    line-height: 1.2;
    /* Add bold and sophisticated font styles */
}
#examples h2 {
    font-size: 1.8em; /* Slightly larger font size */
    color: #111111; /* Replaced yellow text color with dark gray */
}

/* --- Layout and Spacing --- */
section {
    padding: 40px 20px; /* Increased vertical padding */
    margin-bottom: 60px; /* Increased margin for skewed sections */
    border-radius: 0; /* Remove rounded corners for diagonal effect */
    position: relative; /* Keep relative for z-index and potential future use */
    overflow: hidden; /* Keep hidden to contain skewed content */
    transform: skewY(-3deg); /* Slightly increased diagonal tilt for other sections */
    transform-origin: top left; /* Ensure rotation from top left */
    /* NOTE: Polka dots on sections are currently scrolling with the sections.
             Future improvement: explore methods to make these polka dots static while maintaining the skew effect. */
}

/* Adjustments for the hero section's top border to match the diagonal style */
.hero-content-background {
    background-color: #fff; /* Pure white background */
    background-image: radial-gradient(circle at 2px 2px, #e0f2f7 2px, transparent 0), radial-gradient(circle at 2px 2px, #e0f2f7 2px, transparent 0); /* Lighter blue polka dots, slightly bigger */
    background-size: 40px 40px; /* Increased spacing of the dots */
    background-position: 0 0, 20px 20px; /* Offset the second dot layer diagonally for equidistant spacing */
    background-attachment: scroll; /* Make polka dots scroll with element */
    padding: 80px 0; /* Significantly increased vertical padding */
    border-top: 3px solid #111111; /* Add black border to the top */
    border-bottom: none; /* Removed bottom border */
    border-radius: 0; /* Remove rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add hovering shadow effect */
    position: relative; /* Keep relative for z-index and potential future use */
    overflow: hidden; /* Keep hidden to contain skewed content */
    transform: skewY(-2deg); /* Restore original diagonal tilt for hero section */
    transform-origin: top left; /* Ensure rotation from top left */
    /* NOTE: Polka dots on this element are currently scrolling with the element.
             Future improvement: explore methods to make these polka dots static while maintaining the skew effect. */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Hero Section --- */
#hero {
    text-align: center;
    padding: 60px 0; /* Reverted to original vertical padding */
    /* Removed background-color, border-radius, and box-shadow to allow inner div to control appearance */
    /* Add bold and sophisticated styling */
    color: #1a2b3c; /* Deep blue for contrast against yellow */
}
.hero-content-background {
    background-color: #fff; /* Pure white background */
    background-image: radial-gradient(circle at 2px 2px, #e0f2f7 2px, transparent 0), radial-gradient(circle at 2px 2px, #e0f2f7 2px, transparent 0); /* Lighter blue polka dots, slightly bigger */
    background-size: 40px 40px; /* Increased spacing of the dots */
    background-position: 0 0, 20px 20px; /* Offset the second dot layer diagonally for equidistant spacing */
    background-attachment: scroll; /* Make polka dots scroll with element */
    padding: 80px 0; /* Significantly increased vertical padding */
    border-top: 3px solid #111111; /* Add black border to the top */
    border-bottom: none; /* Removed bottom border */
    border-radius: 0; /* Remove rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add hovering shadow effect */
    position: relative; /* Needed for pseudo-elements positioning */
    overflow: hidden; /* Hide parts of pseudo-elements outside the section */
}


.quotes-container {
    display: flex;
    justify-content: space-around; /* Distribute space around items */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    margin-top: 10px; /* Add space above the quotes */
    margin-bottom: 20px; /* Add some space below the quotes */
}

.quotes-container p {
    flex: 1; /* Allow quotes to grow and shrink */
    margin: 0 10px; /* Decreased horizontal margin between quotes */
    text-align: center; /* Center the text within each quote */
}

@media (max-width: 600px) {
    .hero-content-background {
        padding-left: 80px; /* Increased left padding for mobile content */
        padding-right: 80px; /* Increased right padding for mobile content */
        margin-left: -80px; /* Counteract body padding */
        margin-right: -80px; /* Counteract body padding */
    }
}

#hero h1 {
    font-size: 2em; /* Mobile-first font size */
    margin-bottom: 20px;
}

.visual-showcase img {
    max-width: calc(100% - 60px); /* Confine size to be 30px from left and right edges */
    height: auto;
    margin-bottom: 5px; /* Decreased spacing */
}

.hero-content-background img {
    max-width: 100%; /* Ensure image is responsive and doesn't overflow */
    height: auto;
}

@media (max-width: 600px) {
    .hero-content-background img {
        max-width: 50%; /* Decrease size of hero image for mobile */
    }
}

.activation-section {
    margin-top: 30px;
}

.activation-section input[type="text"] {
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #eecc00;
    border-radius: 8px; /* More rounded corners */
}

.website-code-entry {
    text-align: center; /* Center inline/inline-block elements within the container */
    margin-top: 20px; /* Add space above the input field */
    margin-bottom: 30px; /* Add space below the input field */
}

.website-code-entry label {
    display: inline-block; /* Make label an inline-block element */
    margin-right: 10px; /* Add space between the label and the input */
    color: #1a2b3c; /* Set text color */
    font-size: 1em;
    vertical-align: middle; /* Vertically align label with input */
}

.website-code-entry input[type="text"] {
    padding: 12px 24px; /* Add padding */
    border: 2px solid #111111; /* Dark gray border */
    border-radius: 9999px; /* Make it oval */
    background-color: #fff; /* White background */
    color: #add8e6; /* Light blue text for example value */
    font-size: 1em;
    width: 250px; /* Set a width */
    max-width: 80%; /* Ensure responsiveness */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.website-code-entry input[type="text"]::placeholder {
    color: #add8e6; /* Light blue color for placeholder text */
}

.cta-button {
    display: inline-block;
    background-color: #111111; /* Replaced golden yellow with dark gray */
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px; /* More rounded corners */
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #444444; /* Replaced darker golden yellow with lighter gray for hover */
}

/* --- Section for New Clients --- */
#new-clients {
    transform: none; /* Make the new clients section completely horizontal */
}

/* --- How it Works Section --- */
#how-it-works {
    background-color: #fff; /* Add white background to the section */
    background-image: radial-gradient(circle at 2px 2px, #e0f2f7 2px, transparent 0), radial-gradient(circle at 2px 2px, #e0f2f7 2px, transparent 0); /* Lighter blue polka dots, slightly bigger */
    background-size: 40px 40px; /* Increased spacing of the dots */
    background-position: 0 0, 20px 20px; /* Offset the second dot layer diagonally for equidistant spacing */
    background-attachment: scroll; /* Make polka dots scroll with element */
    padding: 40px 20px; /* Add padding to the section */
    border-top: 3px solid #111111; /* Add black border to the top */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add hovering shadow effect */
    position: relative; /* Keep relative for z-index and potential future use */
    overflow: hidden; /* Keep hidden to contain skewed content */
    transform: skewY(-5deg); /* Increased diagonal tilt for other sections */
    transform-origin: top left; /* Ensure rotation from top left */
}


#how-it-works .steps {
    display: flex;
    flex-direction: column; /* Stack steps on mobile */
    gap: 20px; /* Adjust gap between steps */
}

#how-it-works .step {
    text-align: center;
    padding: 0; /* Remove padding from individual steps */
    border: none; /* Remove border from individual steps */
    border-radius: 0; /* Remove border-radius from individual steps */
    background-color: transparent; /* Remove background from individual steps */
    color: #1a2b3c; /* Deep blue for contrast against yellow */
    box-shadow: none; /* Remove box-shadow from individual steps */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Add transition for hover */
}

#how-it-works .step:hover {
    transform: translateY(0); /* No lift effect on hover for sunk-in look */
    box-shadow: inset 3px 3px 8px rgba(0, 0, 0, 0.6), inset -3px -3px 8px rgba(255, 255, 255, 0.15); /* Slightly different inset shadow on hover */
}

/* --- What's Included Section --- */
#whats-included {
    background-color: #fff; /* Add white background to the section */
    background-image: radial-gradient(circle at 2px 2px, #e0f2f7 2px, transparent 0), radial-gradient(circle at 2px 2px, #e0f2f7 2px, transparent 0); /* Lighter blue polka dots, slightly bigger */
    background-size: 40px 40px; /* Increased spacing of the dots */
    background-position: 0 0, 20px 20px; /* Offset the second dot layer diagonally for equidistant spacing */
    background-attachment: scroll; /* Make polka dots scroll with element */
    padding: 40px 20px; /* Add padding to the section */
    border-top: 3px solid #111111; /* Add black border to the top */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add hovering shadow effect */
    position: relative; /* Keep relative for z-index and potential future use */
    overflow: hidden; /* Keep hidden to contain skewed content */
    transform: skewY(-5deg); /* Increased diagonal tilt for other sections */
    transform-origin: top left; /* Ensure rotation from top left */
}

#whats-included ul {
    list-style: none;
    padding: 0;
}

#whats-included li {
    background-color: transparent; /* Remove background from list items */
    padding: 0; /* Remove padding from list items */
    margin-bottom: 10px; /* Adjust margin between list items */
    border-radius: 0; /* Remove border-radius from list items */
    border-left: none; /* Remove border-left from list items */
    color: #1a2b3c; /* Deep blue for contrast against yellow */
    box-shadow: none; /* Remove box-shadow from list items */
}

/* --- Pricing Section --- */
#pricing {
    background-color: #fff; /* Add white background to the section */
    background-image: radial-gradient(circle at 2px 2px, #e0f2f7 2px, transparent 0), radial-gradient(circle at 2px 2px, #e0f2f7 2px, transparent 0); /* Lighter blue polka dots, slightly bigger */
    background-size: 40px 40px; /* Increased spacing of the dots */
    background-position: 0 0, 20px 20px; /* Offset the second dot layer diagonally for equidistant spacing */
    background-attachment: scroll; /* Make polka dots scroll with element */
    padding: 40px 20px; /* Add padding to the section */
    text-align: center;
    border-top: 3px solid #111111; /* Add black border to the top */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add hovering shadow effect */
    position: relative; /* Keep relative for z-index and potential future use */
    overflow: hidden; /* Keep hidden to contain skewed content */
    transform: skewY(-5deg); /* Increased diagonal tilt for other sections */
    transform-origin: top left; /* Ensure rotation from top left */
}

.price-box {
    border: 1px solid #ccaa00;
    border-radius: 12px; /* More rounded corners */
    padding: 0; /* Remove padding from price box */
    background-color: transparent; /* Remove background from price box */
    display: inline-block; /* Center the price box */
    color: #1a2b3c; /* Deep blue for contrast against yellow */
    box-shadow: none; /* Remove box-shadow from price box */
    border: none; /* Remove border from price box */
}

.price-box .setup-fee {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 5px;
}

.price-box .monthly-fee {
    font-size: 1.2em;
    color: #1a2b3c; /* Deep blue for contrast against yellow */
    margin-bottom: 15px;
}

/* --- Examples Section --- */
#examples {
    background-color: #fff; /* Add white background to the section */
    background-image: radial-gradient(circle at 2px 2px, #e0f2f7 2px, transparent 0), radial-gradient(circle at 2px 2px, #e0f2f7 2px, transparent 0); /* Lighter blue polka dots, slightly bigger */
    background-size: 40px 40px; /* Increased spacing of the dots */
    background-position: 0 0, 20px 20px; /* Offset the second dot layer diagonally for equidistant spacing */
    background-attachment: scroll; /* Make polka dots scroll with element */
    padding: 40px 20px; /* Add padding to the section */
    border-top: 3px solid #111111; /* Add black border to the top */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add hovering shadow effect */
    position: relative; /* Keep relative for z-index and potential future use */
    overflow: hidden; /* Keep hidden to contain skewed content */
    transform: skewY(-5deg); /* Increased diagonal tilt for other sections */
    transform-origin: top left; /* Ensure rotation from top left */
}

#examples .example-gallery {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 20px; /* Increased gap between images */
}

#examples .example-gallery img {
    max-width: 100%; /* Adjust width */
    height: auto;
    border-radius: 0; /* Remove border-radius */
    box-shadow: none; /* Remove box-shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add transition for hover effects */
}

#examples .example-gallery img:hover {
    transform: scale(1.03); /* Slightly enlarge image on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Add a more pronounced shadow on hover */
}

/* --- Testimonials Section --- */
#testimonials {
    background-color: #fff; /* Add white background to the section */
    background-image: radial-gradient(circle at 2px 2px, #e0f2f7 2px, transparent 0), radial-gradient(circle at 2px 2px, #e0f2f7 2px, transparent 0); /* Lighter blue polka dots, slightly bigger */
    background-size: 40px 40px; /* Increased spacing of the dots */
    background-position: 0 0, 20px 20px; /* Offset the second dot layer diagonally for equidistant spacing */
    background-attachment: scroll; /* Make polka dots scroll with element */
    padding: 40px 20px; /* Add padding to the section */
    border-top: 3px solid #111111; /* Add black border to the top */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add hovering shadow effect */
    position: relative; /* Keep relative for z-index and potential future use */
    overflow: hidden; /* Keep hidden to contain skewed content */
    transform: skewY(-5deg); /* Increased diagonal tilt for other sections */
    transform-origin: top left; /* Ensure rotation from top left */
}

#testimonials .testimonial {
    background-color: transparent; /* Remove background from testimonial */
    padding: 0; /* Remove padding from testimonial */
    border-left: none; /* Remove border-left from testimonial */
    border-radius: 0; /* Remove border-radius from testimonial */
    margin-bottom: 15px; /* Adjust margin between testimonials */
    font-style: italic;
    color: #1a2b3c; /* Deep blue for contrast against yellow */
    box-shadow: none; /* Remove box-shadow from testimonial */
}

/* --- Contact Section --- */
#contact {
    text-align: center;
    transform: none; /* Make the contact section completely horizontal */
}

/* --- Responsive Adjustments (for larger screens) --- */
@media (min-width: 768px) {
    .pointing-hand {
        top: 90px; /* Increase top vertical padding for full-sized browsers */
    }

    section {
        padding: 40px;
    }

    #hero h1 {
        font-size: 3em;
    }

    #how-it-works .steps {
        flex-direction: row; /* Arrange steps in a row on larger screens */
        justify-content: space-around;
    }

    #how-it-works .step {
        flex: 1; /* Distribute space equally */
        margin: 0 10px;
    }

    #examples .example-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Grid layout on larger screens */
    }
}

/* --- Fade-in Effect --- */
/* NOTE: Uses CSS variables for transition delay and transform. See JS for .is-visible toggling. */
.fade-in {
    opacity: 0;
    /* Fade-in effect: opacity transition with a custom cubic-bezier for a slower start,
     * total duration 0.08s, with a delay based on data-delay attribute. */
    transition: opacity 0.6s cubic-bezier(0.1, 1, 0.9, 0) var(--delay, 0ms);
    will-change: opacity; /* Hint to browsers for smoother animation */
}

.fade-in.is-visible {
    opacity: 1;
}