/* --- Global Styles & Variables --- */
:root {
    --primary-color: #FFD700; /* Yellow */
    --secondary-color: #333; /* Dark Gray */
    --dark-color: #1a1a1a;   /* Slightly darker black */
    --light-color: #ffffff; /* White */
    --text-color: #555;     /* Standard text gray */
    --footer-text-color: #ccc; /* Lighter gray for footer text */
    --input-border-color: #ddd;
    --input-focus-border-color: var(--primary-color);
    --hero-split-bg: rgba(26, 26, 26, 0.9); /* Dark semi-transparent for split */
    --header-font: 'Montserrat', sans-serif;
    --body-font: 'Poppins', sans-serif;
    --transition-speed: 0.3s; /* Consistent transition speed */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
}
h1, h2, h3, h4, h5, h6 { font-family: var(--header-font); color: var(--secondary-color); margin-bottom: 0.8em; }
a { text-decoration: none; color: var(--primary-color); transition: color var(--transition-speed) ease-in-out; }
a:hover { color: darken(var(--primary-color), 15%); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* --- AOS Base Styles --- */
[data-aos] {}

/* --- Header Styles --- */
.site-header { position: relative; z-index: 1000; }
.top-bar { background-color: var(--dark-color); color: var(--light-color); padding: 5px 0; position: relative; }
.top-bar-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.logo-area { background-color: var(--primary-color); padding: 10px 40px 10px 5%; position: relative; clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%); margin-left: -5%; min-width: 280px; }
.logo-area a { display: inline-block; }
.logo-area img { max-height: 65px; width: auto; transition: transform var(--transition-speed) ease-in-out; }
.logo-area a:hover img { transform: scale(1.05); }
.contact-info { display: flex; align-items: center; gap: 30px; flex-grow: 1; justify-content: center; padding: 10px 0; }
.info-item { display: flex; align-items: center; gap: 10px; }
.info-item i { color: var(--primary-color); font-size: 1.8em; }
.info-item span { font-size: 0.9em; line-height: 1.3; }
.info-item strong { display: block; font-weight: 600; }
.header-icons { display: flex; align-items: center; gap: 20px; }
.header-icons a { color: var(--light-color); font-size: 1.2em; position: relative; transition: color var(--transition-speed) ease-in-out, transform var(--transition-speed) ease-in-out; }
.header-icons a:hover { color: var(--primary-color); transform: scale(1.1); }
.cart-count { position: absolute; top: -8px; right: -10px; background-color: var(--primary-color); color: var(--dark-color); border-radius: 50%; width: 18px; height: 18px; font-size: 0.7em; display: flex; justify-content: center; align-items: center; font-weight: bold; }

/* --- Navigation Bar --- */
.main-nav { background-color: var(--light-color); border-bottom: 1px solid #eee; padding: 0; position: relative; width: 100%; z-index: 999; transition: background-color var(--transition-speed) ease-in-out, box-shadow var(--transition-speed) ease-in-out; }
.main-nav.sticky { position: fixed; top: 0; left: 0; background-color: rgba(255, 255, 255, 0.98); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); border-bottom: none; }
.nav-container { display: flex; justify-content: space-between; align-items: center; min-height: 70px; }
.nav-links { display: flex; gap: 30px; }
.nav-links li a { color: var(--secondary-color); text-transform: uppercase; font-weight: 500; padding: 25px 5px; display: inline-block; position: relative; font-size: 0.9em; transition: color var(--transition-speed) ease-in-out; }
.nav-links li a::after { content: ''; position: absolute; bottom: 15px; left: 0; width: 0; height: 2px; background-color: var(--primary-color); transition: width var(--transition-speed) ease-in-out; }
.nav-links li a:hover::after, .nav-links li a.active::after { width: 100%; }
.nav-links li a:hover { color: var(--primary-color); }
.social-icons { background-color: var(--primary-color); padding: 26px 5% 26px 40px; position: relative; clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%); margin-right: -5%; display: flex; gap: 18px; align-items: center; }
.social-icons a { color: var(--dark-color); font-size: 1.1em; transition: color var(--transition-speed) ease-in-out, transform var(--transition-speed) ease-in-out; }
.social-icons a:hover { color: var(--light-color); transform: scale(1.15); }
.menu-toggle { display: none; background: none; border: none; font-size: 1.8em; color: var(--secondary-color); cursor: pointer; padding: 15px; z-index: 10; }

/* --- Hero Section - Carousel with Split Overlay --- */
.hero-section { position: relative; height: 75vh; min-height: 500px; display: flex; align-items: center; color: var(--light-color); overflow: hidden; }
.hero-bg-layer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center center; opacity: 0; z-index: 1; transition: opacity 1s ease-in-out; }
.hero-bg-layer.active { opacity: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.2); z-index: 2; }
.hero-content-container { position: relative; z-index: 3; width: 100%; height: 100%; }
.hero-text-column-split { position: absolute; top: 0; left: 0; width: 55%; height: 100%; padding: 0 5% 0 10%; display: flex; align-items: center; z-index: 4; }
.hero-text-column-split::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--hero-split-bg); clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%); z-index: -1; }
.hero-text-content { position: relative; z-index: 1; max-width: 600px; }
.hero-text-column-split h1 { font-size: 2.8em; color: var(--light-color); line-height: 1.3; margin-bottom: 20px; font-weight: 700; }
.hero-counter.counter { color: var(--primary-color); font-weight: 700; }
.hero-subtitle { font-size: 1.1em; color: var(--footer-text-color); margin-bottom: 30px; line-height: 1.6; }
.cta-button { background-color: var(--primary-color); color: var(--dark-color); padding: 15px 35px; font-size: 1em; font-weight: 600; text-transform: uppercase; border-radius: 4px; display: inline-block; transition: all var(--transition-speed) ease-in-out; border: 2px solid var(--primary-color); cursor: pointer; }
.cta-button:hover { background-color: #e6c300; color: var(--dark-color); transform: translateY(-3px) scale(1.03); border-color: #e6c300; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
/* Hero Navigation Arrows */
.hero-nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(0, 0, 0, 0.4); color: var(--light-color); border: none; border-radius: 50%; width: 45px; height: 45px; font-size: 1.2em; cursor: pointer; z-index: 5; transition: background-color var(--transition-speed) ease-in-out, transform var(--transition-speed) ease-in-out; display: flex; align-items: center; justify-content: center; }
.hero-nav-arrow:hover { background-color: rgba(0, 0, 0, 0.7); transform: translateY(-50%) scale(1.1); }
.hero-nav-arrow.prev { left: 20px; }
.hero-nav-arrow.next { right: 20px; }

/* --- Shared Section Styles --- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5em; color: var(--secondary-color); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.section-header p { font-size: 1.1em; color: var(--text-color); max-width: 700px; margin: 0 auto; line-height: 1.7; }
.service-icon-wrapper, .benefit-icon-wrapper, .pricing-icon-wrapper { background-color: var(--primary-color); color: var(--dark-color); border-radius: 50%; display: flex; justify-content: center; align-items: center; margin-left: auto; margin-right: auto; transition: transform var(--transition-speed) ease-in-out; }
.service-icon-wrapper:hover, .benefit-icon-wrapper:hover, .pricing-icon-wrapper:hover { transform: scale(1.1) rotate(5deg); }

/* --- Services Section --- */
.services-section { padding: 80px 0; background-color: #f9f9f9; overflow: hidden; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.service-item { position: relative; overflow: hidden; min-height: 380px; background-size: cover; background-position: center; display: flex; justify-content: center; align-items: center; text-align: center; color: var(--light-color); cursor: pointer; transition: transform var(--transition-speed) ease-in-out, box-shadow var(--transition-speed) ease-in-out; border-radius: 5px; }
.service-item:hover { transform: scale(1.05); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.service-item::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8)); z-index: 1; transition: opacity 0.4s ease-in-out; border-radius: 5px; }
.service-content-initial { position: relative; z-index: 2; transition: opacity 0.3s ease-in-out, transform 0.4s ease-in-out; }
.service-icon-wrapper { width: 80px; height: 80px; margin-bottom: 20px; font-size: 2.5em; }
.service-content-initial h3 { font-size: 1.8em; color: var(--light-color); text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); margin: 0; }
.service-hover-content { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(255, 215, 0, 0.95); color: var(--dark-color); display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 30px; box-sizing: border-box; opacity: 0; transition: opacity 0.4s ease-in-out; z-index: 3; border-radius: 5px; }
.service-item:hover .service-hover-content { opacity: 1; }
.service-item:hover .service-content-initial { opacity: 0; transform: translateY(-20px); }
.service-hover-content .service-icon-wrapper { width: 70px; height: 70px; font-size: 2.2em; margin-bottom: 15px; background-color: var(--dark-color); color: var(--primary-color); }
.service-hover-content h3 { font-size: 1.7em; color: var(--dark-color); margin-bottom: 15px; }
.service-hover-content p { font-size: 0.95em; line-height: 1.6; margin-bottom: 25px; max-width: 90%; }
.read-more-btn { background-color: var(--dark-color); color: var(--primary-color); padding: 10px 25px; font-size: 0.9em; font-weight: 600; text-transform: uppercase; border-radius: 4px; display: inline-block; transition: all var(--transition-speed) ease-in-out; border: 2px solid var(--dark-color); }
.read-more-btn:hover { background-color: transparent; color: var(--dark-color); transform: scale(1.05); }

/* --- Why Us Section --- */
.why-us-section { padding: 80px 0; background-color: var(--light-color); overflow: hidden; }
.why-us-container { margin-top: 40px; }
.audience-section { margin-bottom: 70px; padding-bottom: 30px; border-bottom: 1px solid #eee; }
.audience-section:last-child { margin-bottom: 0; border-bottom: none; }
.audience-section h3 { font-size: 1.8em; color: var(--secondary-color); text-align: center; margin-bottom: 50px; position: relative; display: inline-block; left: 50%; transform: translateX(-50%); }
.audience-section h3::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background-color: var(--primary-color); }
.benefits-grid { display: grid; gap: 35px; }
.benefits-grid.grid-4, .benefits-grid.grid-2 { grid-template-columns: repeat(2, 1fr); }
.benefit-item { display: flex; align-items: flex-start; gap: 20px; background-color: #fdfdfd; padding: 25px; border-radius: 8px; border: 1px solid #eee; transition: all var(--transition-speed) ease-in-out; }
.benefit-item:hover { transform: translateY(-8px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); border-color: var(--primary-color); }
.benefit-icon-wrapper { flex-shrink: 0; width: 70px; height: 70px; font-size: 1.8em; margin: 0; }
.benefit-item h4 { font-size: 1.25em; color: var(--secondary-color); margin-bottom: 8px; margin-top: 5px; }
.benefit-item p { font-size: 0.95em; color: var(--text-color); line-height: 1.6; margin: 0; }

/* --- Pricing Section --- */
.pricing-section { padding: 80px 0; background-color: #f9f9f9; overflow: hidden; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.pricing-card { background-color: var(--light-color); border-radius: 8px; padding: 40px 30px; text-align: center; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); transition: all var(--transition-speed) ease-in-out; display: flex; flex-direction: column; border: 1px solid transparent; }
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); border-color: #ddd; }
.pricing-card.featured { border: 3px solid var(--primary-color); transform: scale(1.05); z-index: 5; box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3); }
.pricing-card.featured:hover { transform: scale(1.05) translateY(-10px); }
.pricing-icon-wrapper { width: 75px; height: 75px; margin-bottom: 25px; font-size: 2.2em; }
.pricing-card h3 { font-size: 1.6em; color: var(--secondary-color); margin-bottom: 15px; text-transform: uppercase; }
.pricing-description { font-size: 0.95em; color: var(--text-color); margin-bottom: 25px; min-height: 50px; }
.price { font-size: 2.8em; font-weight: 700; color: var(--secondary-color); margin-bottom: 10px; }
.price .price-unit { font-size: 0.4em; font-weight: 400; color: var(--text-color); text-transform: uppercase; margin-left: 5px; }
.price-detail { font-size: 0.9em; color: var(--text-color); margin-bottom: 25px; }
.volume-tiers { margin-bottom: 25px; text-align: left; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 15px 0; }
.tier-item { display: flex; justify-content: space-between; font-size: 0.95em; padding: 8px 0; border-bottom: 1px dashed #eee; }
.tier-item:last-child { border-bottom: none; }
.tier-item span { color: var(--text-color); }
.tier-item strong { color: var(--secondary-color); font-weight: 600; }
.benefits-list { list-style: none; padding: 0; margin-top: 10px; margin-bottom: 30px; text-align: left; flex-grow: 1; }
.benefits-list li { font-size: 0.95em; color: var(--text-color); margin-bottom: 12px; display: flex; align-items: center; }
.benefits-list li i { color: var(--primary-color); margin-right: 10px; font-size: 1.1em; }
.pricing-cta { margin-top: auto; background-color: var(--secondary-color); color: var(--primary-color); border: 2px solid var(--secondary-color); }
.pricing-cta:hover { background-color: transparent; color: var(--secondary-color); transform: scale(1.05); }
.pricing-card.featured .pricing-cta { background-color: var(--primary-color); color: var(--dark-color); border-color: var(--primary-color); }
.pricing-card.featured .pricing-cta:hover { background-color: var(--dark-color); color: var(--primary-color); border-color: var(--dark-color); transform: scale(1.05); }
.pricing-note { margin-top: 50px; text-align: center; font-size: 0.9em; color: var(--text-color); padding: 20px; background-color: #fff; border-radius: 5px; border: 1px dashed #ddd; }
.pricing-note strong { color: var(--secondary-color); }

/* --- Contact Section --- */
.contact-section { padding: 80px 0; background-color: var(--light-color); overflow: hidden; }
.contact-form-container { max-width: 800px; margin: 40px auto 0 auto; background-color: #fdfdfd; padding: 40px; border-radius: 8px; border: 1px solid #eee; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.contact-form .form-row { display: flex; gap: 30px; margin-bottom: 25px; }
.contact-form .form-group { flex: 1; margin-bottom: 25px; }
.contact-form .form-row .form-group { margin-bottom: 0; }
.contact-form label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--secondary-color); font-size: 0.9em; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form textarea { width: 100%; padding: 12px 15px; border: 1px solid var(--input-border-color); border-radius: 4px; font-size: 1em; font-family: var(--body-font); transition: border-color var(--transition-speed) ease-in-out; background-color: #fff; }
.contact-form input[type="text"]:focus, .contact-form input[type="email"]:focus, .contact-form input[type="tel"]:focus, .contact-form textarea:focus { outline: none; border-color: var(--input-focus-border-color); box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .form-submit { text-align: center; margin-top: 10px; }
.contact-form .submit-btn { padding: 12px 40px; font-size: 1.05em; background-color: var(--secondary-color); color: var(--primary-color); border-color: var(--secondary-color); }
.contact-form .submit-btn:hover { background-color: var(--primary-color); color: var(--dark-color); border-color: var(--primary-color); transform: translateY(-3px) scale(1.03); box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.form-status { margin-top: 15px; font-size: 0.95em; font-weight: 500; text-align: center; min-height: 1.5em; }

/* --- Footer Section --- */
.site-footer { background-color: var(--dark-color); color: var(--footer-text-color); padding: 60px 0 30px 0; font-size: 0.95em; }
.footer-content { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-bottom: 40px; align-items: start; }
.footer-logo { max-height: 50px; margin-bottom: 20px; }
.mission-statement { line-height: 1.7; }
.footer-heading { font-size: 1.4em; color: var(--light-color); margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background-color: var(--primary-color); }
.contact-list { list-style: none; padding: 0; }
.contact-list li { display: flex; align-items: flex-start; margin-bottom: 15px; gap: 15px; }
.contact-list i { color: var(--primary-color); font-size: 1.1em; margin-top: 3px; width: 20px; text-align: center; }
.contact-list span {}
.contact-list a { color: var(--footer-text-color); transition: color var(--transition-speed) ease-in-out; }
.contact-list a:hover { color: var(--primary-color); }
.footer-bottom { border-top: 1px solid #444; padding-top: 30px; text-align: center; font-size: 0.9em; color: #aaa; }

/* --- Responsive Styles --- */
/* (Keep all existing media queries as they handle layout adjustments) */
@media (max-width: 992px) {
    .container { width: 95%; }
    .logo-area { min-width: 220px; padding: 8px 30px 8px 5%; clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%); } .logo-area img { max-height: 50px; }
    .contact-info { gap: 20px; justify-content: flex-start; margin-left: 5%; flex-basis: 100%; order: 3; padding-top: 15px; } .info-item span { font-size: 0.85em; } .info-item i { font-size: 1.6em; }
    .header-icons { position: absolute; top: 50%; right: 5%; transform: translateY(-50%); order: 2; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: var(--light-color); flex-direction: column; gap: 0; border-top: 1px solid #eee; box-shadow: 0 4px 8px rgba(0,0,0,0.1); max-height: 0; overflow: hidden; transition: max-height 0.5s ease-in-out, box-shadow var(--transition-speed) ease-in-out; } .main-nav.sticky .nav-links { top: 100%; } .nav-links.active { display: flex; max-height: 500px; box-shadow: 0 8px 16px rgba(0,0,0,0.15); } .nav-links li { width: 100%; text-align: center; border-bottom: 1px solid #eee; } .nav-links li:last-child { border-bottom: none; } .nav-links li a { padding: 15px; display: block; width: 100%; } .nav-links li a::after { display: none; }
    .menu-toggle { display: block; order: -1; margin-left: -10px; }
    .social-icons { padding: 22px 5% 22px 30px; clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%); }
    .hero-section { height: auto; min-height: 60vh;}
    .hero-text-column-split { width: 65%; padding: 60px 8%; } .hero-text-column-split h1 { font-size: 2.5em; } .hero-text-column-split::before { clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%); }
    .section-header h2 { font-size: 2.2em; } .section-header p { font-size: 1em; }
    .services-grid { gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); } .service-item { min-height: 320px; } .service-hover-content p { font-size: 0.9em; } .read-more-btn { padding: 8px 20px; font-size: 0.85em; }
    .benefits-grid.grid-4, .benefits-grid.grid-2 { grid-template-columns: repeat(2, 1fr); }
    .audience-section h3 { font-size: 1.6em; margin-bottom: 40px; } .benefit-item h4 { font-size: 1.15em; } .benefit-item p { font-size: 0.9em; }
    .pricing-grid { grid-template-columns: 1fr; gap: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
    .pricing-card { padding: 30px 25px; } .pricing-card.featured { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); } .pricing-card.featured:hover { transform: translateY(-10px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); }
    .price { font-size: 2.5em; } .benefits-list { margin-bottom: 25px; }
    .hero-nav-arrow { width: 40px; height: 40px; font-size: 1em; } .hero-nav-arrow.prev { left: 15px; } .hero-nav-arrow.next { right: 15px; }
}

@media (max-width: 768px) {
    .top-bar { padding-bottom: 10px; } .top-bar-container { justify-content: center; }
    .logo-area { min-width: 200px; padding: 8px 25px 8px 5%; margin-left: 0; margin-bottom: 10px; clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%); } .logo-area img { max-height: 45px; }
    .contact-info { flex-direction: column; align-items: center; gap: 15px; margin-left: 0; width: 100%; text-align: center; } .info-item { justify-content: center; } .info-item i { font-size: 1.5em; } .info-item span { font-size: 0.8em; }
    .header-icons { position: static; transform: none; order: 1; margin-bottom: 15px; width: 100%; justify-content: center; gap: 25px; } .header-icons a { font-size: 1.2em; } .cart-count { width: 16px; height: 16px; font-size: 0.65em; top: -6px; right: -8px; }
    .social-icons { display: none; } .nav-container { min-height: 60px; }
    .main-nav:not(.sticky) { position: relative; } .main-nav.sticky { box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
    /* Hero Small */
     .hero-section { height: auto; min-height: 550px; }
     .hero-text-column-split { position: relative; width: 100%; height: auto; min-height: 300px; padding: 40px 10%; text-align: center; align-items: center; }
     .hero-text-column-split::before { clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); background-color: rgba(26, 26, 26, 0.8); }
     .hero-text-content { max-width: 100%; }
     .hero-text-column-split h1 { font-size: 2em; }
     .hero-text-column-split .cta-button { align-self: center; }
    /* Sections Small */
    .section-header h2 { font-size: 2em; } .section-header p { font-size: 1em; }
    .services-section, .why-us-section, .pricing-section, .contact-section { padding: 60px 0; }
    .services-grid { grid-template-columns: 1fr; } .service-item { min-height: 300px; } .service-icon-wrapper { width: 70px; height: 70px; font-size: 2.2em; }
    .benefits-grid.grid-4, .benefits-grid.grid-2 { grid-template-columns: 1fr; gap: 30px; }
    .benefit-item { padding: 15px; gap: 15px; } .benefit-icon-wrapper { width: 60px; height: 60px; font-size: 1.6em; } .audience-section h3 { font-size: 1.5em; }
    /* Contact Form Small */
     .contact-form .form-row { flex-direction: column; gap: 0; margin-bottom: 0; }
     .contact-form .form-row .form-group { margin-bottom: 25px; }
     .contact-form-container { padding: 30px 20px;}
    /* Footer Small */
    .footer-content { grid-template-columns: 1fr; gap: 35px; text-align: center; }
    .footer-about, .footer-contact { align-items: center; }
    .footer-heading { display: inline-block; left: auto; transform: none; text-align: center; }
    .footer-heading::after { left: 50%; transform: translateX(-50%); }
    .contact-list li { justify-content: center; text-align: left; max-width: 300px; margin-left: auto; margin-right: auto; }
     .footer-about .mission-statement { max-width: 400px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 480px) {
    .section-header h2 { font-size: 1.8em; } .section-header p { font-size: 0.9em; }
    .hero-text-column-split h1 { font-size: 1.8em; }
    .benefit-item h4 { font-size: 1.05em; } .benefit-item p { font-size: 0.85em; }
    .price { font-size: 2.2em; } .pricing-description { font-size: 0.9em; min-height: 40px;}
    .benefits-list li { font-size: 0.9em; margin-bottom: 10px; }
    .volume-tiers { padding: 10px 0; } .tier-item { font-size: 0.9em; padding: 6px 0; }
    .pricing-note { font-size: 0.85em; padding: 15px; } .pricing-cta { padding: 10px 25px; font-size: 0.85em; }
    .site-footer { padding: 40px 0 20px 0; } .footer-bottom { font-size: 0.8em; padding-top: 20px;}
    .contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form textarea { font-size: 0.95em;}
    .hero-nav-arrow { bottom: 15px; top: auto; transform: none; width: 38px; height: 38px; font-size: 0.9em; }
    .hero-nav-arrow.prev { left: 15px; }
    .hero-nav-arrow.next { right: 15px; }
}