 :root {
     --primary-color: #00B2A9;
     --secondary-color: #F4C542;
     --text-color: #1A2E4F;
     --bg-color: #FDFDFD;
     --muted-color: #6C7A89;
     --border-color: #dee2e6;
     --light-bg: #f8f9fa;
 }

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

 html,
 body {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     overflow-x: hidden;
     width: 100%;
 }

 body {
     font-family: 'Open Sans', sans-serif;
     background-color: var(--bg-color);
     color: var(--text-color);
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: 'Montserrat', sans-serif;
     font-weight: 600;
 }

 .btn,
 .nav-link {
     font-family: 'Raleway', sans-serif;
     font-weight: 500;
 }

 /* Navbar */
 .navbar {
     background-color: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     padding: 0.75rem 0;
     transition: all 0.3s ease;
 }

 .navbar.scrolled {
     padding: 0.5rem 0;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
 }

 .navbar-brand img {
     max-height: 60px;
     max-width: 100%;
     height: auto;
     transition: transform 0.3s ease;
 }

 .navbar-brand:hover img {
     transform: scale(1.05);
 }

 .navbar .nav-link {
     color: var(--text-color);
     font-weight: 500;
     margin: 0 0.5rem;
     position: relative;
     transition: color 0.3s ease;
 }

 .navbar .nav-link:hover {
     color: var(--primary-color);
 }

 .navbar .nav-link::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background-color: var(--primary-color);
     transition: width 0.3s ease;
 }

 .navbar .nav-link:hover::after {
     width: 100%;
 }

 /* Buttons */
 .btn-primary {
     background-color: var(--primary-color);
     border-color: var(--primary-color);
     padding: 0.625rem 1.5rem;
     font-weight: 600;
     border-radius: 50px;
    /* Make hero/showcase buttons fill available width on small screens */
    .hero-buttons .btn {
        display: block;
        width: calc(100% - 2rem);
        margin: 0.5rem 1rem;
        padding: 0.75rem 1rem;
        border-radius: 12px;
        text-align: center;
    }
     background-color: var(--primary-color);
     border-color: var(--primary-color);
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(0, 178, 169, 0.3);
 }

 .btn-secondary {
     background-color: var(--secondary-color);
     border-color: var(--secondary-color);
     color: var(--text-color);
     padding: 0.625rem 1.5rem;
     font-weight: 600;
     border-radius: 50px;
     transition: all 0.3s ease;
 }

 .btn-secondary:hover {
     background-color: #e6b93d;
     border-color: #e6b93d;
     color: var(--text-color);
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(244, 197, 66, 0.3);
 }

 /* Hero Section */
 .hero-section {
     padding: 120px 0 80px;
     background: linear-gradient(135deg, rgba(0, 178, 169, 0.05) 0%, rgba(244, 197, 66, 0.05) 100%);
     position: relative;
     overflow: hidden;
 }

 .hero-section::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -10%;
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(0, 178, 169, 0.1) 0%, transparent 70%);
     border-radius: 50%;
     z-index: 0;
 }

 .hero-section::after {
     content: '';
     position: absolute;
     bottom: -30%;
     left: -10%;
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, rgba(244, 197, 66, 0.1) 0%, transparent 70%);
     border-radius: 50%;
     z-index: 0;
 }

 .hero-content {
     position: relative;
     z-index: 1;
 }

 .hero-title {
     font-size: 3.5rem;
     font-weight: 800;
     margin-bottom: 1.5rem;
     line-height: 1.2;
     background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .hero-subtitle {
     font-size: 1.25rem;
     color: var(--muted-color);
     margin-bottom: 2rem;
     max-width: 600px;
 }

 .hero-image {
     position: relative;
     z-index: 1;
     text-align: center;
 }

 .hero-image img {
     max-width: 100%;
     height: auto;
     border-radius: 20px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 .hero-buttons {
     margin-bottom: 2rem;
 }

 .hero-buttons .btn {
     margin: 0.5rem;
 }

 .app-download-buttons {
     display: flex;
     gap: 1rem;
     margin-top: 2rem;
 }

 .app-download-btn {
     display: flex;
     align-items: center;
     background-color: var(--text-color);
     color: white;
     padding: 0.75rem 1.5rem;
     border-radius: 10px;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .app-download-btn:hover {
     background-color: #2c3e50;
     color: white;
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 .app-download-btn i {
     font-size: 1.5rem;
     margin-right: 0.75rem;
 }

 .app-download-btn div {
     display: flex;
     flex-direction: column;
 }

 .app-download-btn .small-text {
     font-size: 0.75rem;
     opacity: 0.8;
 }

 .app-download-btn .large-text {
     font-size: 1rem;
     font-weight: 600;
 }

 /* Features Section */
 .features-section {
     padding: 80px 0;
     background-color: white;
 }

 .section-title {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 1rem;
     text-align: center;
 }

 .section-subtitle {
     font-size: 1.1rem;
     color: var(--muted-color);
     text-align: center;
     max-width: 700px;
     margin: 0 auto 3rem;
 }

 .feature-card {
     background-color: white;
     border-radius: 15px;
     padding: 2rem;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
     height: 100%;
     border: 1px solid var(--border-color);
 }

 .feature-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
 }

 .feature-icon {
     width: 70px;
     height: 70px;
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     margin-bottom: 1.5rem;
     color: white;
 }

 .feature-icon.primary {
     background: linear-gradient(135deg, var(--primary-color) 0%, #008a82 100%);
 }

 .feature-icon.secondary {
     background: linear-gradient(135deg, var(--secondary-color) 0%, #e6b93d 100%);
 }

 .feature-icon.info {
     background: linear-gradient(135deg, #6C7A89 0%, #5a6470 100%);
 }

 .feature-title {
     font-size: 1.25rem;
     font-weight: 600;
     margin-bottom: 1rem;
 }

 .feature-description {
     color: var(--muted-color);
     line-height: 1.6;
 }

 /* App Screenshots Section */
 .screenshots-section {
     padding: 80px 0;
     background: linear-gradient(135deg, rgba(0, 178, 169, 0.05) 0%, rgba(244, 197, 66, 0.05) 100%);
 }

 .screenshot-container {
     position: relative;
     margin: 0 auto;
     max-width: 300px;
 }

 .screenshot-container img {
     width: 100%;
     height: auto;
     border-radius: 30px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
 }

 .screenshot-carousel {
     padding: 0 40px;
 }

 .carousel-control-prev,
 .carousel-control-next {
     width: 40px;
     background-color: rgba(255, 255, 255, 0.7);
     border-radius: 50%;
     top: 50%;
     transform: translateY(-50%);
     height: 40px;
 }

 .carousel-control-prev {
     left: 0;
 }

 .carousel-control-next {
     right: 0;
 }

 /* AI Feature Section */
 .ai-feature-section {
     padding: 80px 0;
     background-color: white;
 }

 .ai-feature-card {
     background: linear-gradient(135deg, rgba(0, 178, 169, 0.05) 0%, rgba(244, 197, 66, 0.05) 100%);
     border-radius: 20px;
     padding: 3rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     border: 1px solid var(--border-color);
 }

 .ai-badge {
     display: inline-block;
     background-color: var(--secondary-color);
     color: var(--text-color);
     padding: 0.25rem 1rem;
     border-radius: 50px;
     font-size: 0.75rem;
     font-weight: 700;
     margin-bottom: 1rem;
 }

 .ai-feature-title {
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 1.5rem;
     color: var(--text-color);
 }

 .ai-feature-description {
     font-size: 1.1rem;
     color: var(--muted-color);
     margin-bottom: 2rem;
 }

 .ai-feature-list {
     list-style: none;
     padding: 0;
     margin-bottom: 2rem;
 }

 .ai-feature-list li {
     display: flex;
     align-items: center;
     margin-bottom: 1rem;
     font-size: 1.1rem;
 }

 .ai-feature-list li i {
     color: var(--primary-color);
     margin-right: 1rem;
     font-size: 1.25rem;
 }

 /* CTA Section */
 .cta-section {
     padding: 80px 0;
     background: linear-gradient(135deg, var(--primary-color) 0%, #008a82 100%);
     color: white;
     text-align: center;
 }

 .cta-title {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 1rem;
 }

 .cta-subtitle {
     font-size: 1.1rem;
     margin-bottom: 2rem;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }

 .cta-buttons .btn {
     margin: 0.5rem;
 }

 .cta-buttons .btn-outline-light {
     border-color: white;
     color: white;
 }

 .cta-buttons .btn-outline-light:hover {
     background-color: white;
     color: var(--primary-color);
 }

 /* Footer */
 footer {
     background-color: var(--text-color);
     color: white;
     padding: 60px 0 30px;
 }

 .footer-logo img {
     max-height: 50px;
     margin-bottom: 1rem;
 }

 .footer-description {
     color: rgba(255, 255, 255, 0.7);
     margin-bottom: 1.5rem;
 }

 .footer-title {
     font-size: 1.1rem;
     font-weight: 600;
     margin-bottom: 1.5rem;
     color: white;
 }

 .footer-links {
     list-style: none;
     padding: 0;
 }

 .footer-links li {
     margin-bottom: 0.75rem;
 }

 .footer-links a {
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-links a:hover {
     color: var(--primary-color);
 }

 .social-icons {
     display: flex;
     gap: 1rem;
 }

 .social-icon {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background-color: rgba(255, 255, 255, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .social-icon:hover {
     background-color: var(--primary-color);
     transform: translateY(-3px);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     margin-top: 3rem;
     padding-top: 2rem;
     text-align: center;
     color: rgba(255, 255, 255, 0.7);
 }

 /* Responsive */
 @media (max-width: 991.98px) {
     .hero-title {
         font-size: 2.5rem;
     }

     .hero-section {
         padding: 100px 0 60px;
     }

     .section-title {
         font-size: 2rem;
     }
 }

 @media (max-width: 767.98px) {
     .hero-title {
         font-size: 2rem;
     }

     .hero-subtitle {
         font-size: 1rem;
     }

     .app-download-buttons {
         flex-direction: column;
         align-items: center;
     }

     .cta-title {
         font-size: 2rem;
     }
 }

 @media (max-width: 575.98px) {
     .navbar-brand {
         max-width: 65%;
     }

     .navbar-brand img {
         max-height: 40px;
     }

     .hero-section {
         padding: 80px 0 40px;
     }

     .features-section,
     .screenshots-section,
     .ai-feature-section,
     .cta-section {
         padding: 60px 0;
     }

     footer {
         padding: 40px 0 20px;
     }

    /* Mobile-only full-width for dedicated get-started button */
    .btn-get-started {
        display: block;
        width: calc(100% - 2rem);
        margin: 0.5rem 1rem;
        padding: 0.75rem 1rem;
        border-radius: 12px;
        text-align: center;
    }

}