/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #1f2937;
    line-height: 1.6;
}

/* Design Tokens */
:root {
    --primary: #111827;
    --secondary: #ffffff;
    --accent: #10b981;
    --bg: #ffffff;
    --text: #111827;
    --muted: #6b7280;
    --border: #e5e7eb;
    --brand-orange: #f97316;
    --brand-orange-dark: #ea580c;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sign-in dropdown styles */
.signin-menu {
  padding: 1rem;
  width: 320px;
}

.signin-panel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.signin-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.signin-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.signin-label {
  font-size: 0.85rem;
  color: #374151;
}

.signin-input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.95rem;
}

.signin-input:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.signin-submit {
  margin-top: 0.25rem;
  background-color: #111827;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.signin-submit:hover {
  background-color: #0b1220;
}

.signin-google {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  background: #fff;
  cursor: pointer;
}

.signin-google:hover {
  background: #f9fafb;
}

.google-icon {
  display: inline-flex;
}

.google-text {
  font-weight: 600;
  color: #111827;
}

.signin-links {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.signin-links a {
  color: #2563eb;
  text-decoration: none;
  font-size: 0.9rem;
}

.signin-links a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-color: #0b1220;
    color: #ffffff;
    padding: 80px 0;
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.bg-blob { position: absolute; width: 520px; height: 520px; filter: blur(60px); opacity: 0.25; border-radius: 50%; }
.blob-1 { background: radial-gradient(circle at 30% 30%, #10b981, transparent 60%); top: -120px; left: -80px; }
.blob-2 { background: radial-gradient(circle at 70% 60%, #f97316, transparent 60%); bottom: -160px; right: -120px; }
.bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(circle at 60% 20%, black 40%, transparent 70%); }

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    gap: 60px;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 12px; align-items: center; }
.cta-secondary { background: transparent; color: #ffffff; border: 1px solid rgba(255,255,255,0.24); }
.cta-secondary:hover { background: rgba(255,255,255,0.06); }

.explore-button {
    background-color: var(--brand-orange); /* Orange color */
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.explore-button:hover {
    background-color: var(--brand-orange-dark);
}

.hero-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-elements {
    position: relative;
    width: 300px;
    height: 300px;
}

.house-icon,
.people-icon,
.coins-icon,
.globe-icon,
.chart-icon {
    position: absolute;
    font-size: 46px;
    animation: float 3s ease-in-out infinite;
}

.house-icon { top: 20%; left: 20%; animation-delay: 0s; }
.people-icon { top: 60%; left: 10%; animation-delay: 0.5s; }
.coins-icon { top: 30%; right: 20%; animation-delay: 1s; }
.globe-icon { bottom: 30%; left: 30%; animation-delay: 1.5s; }
.chart-icon { top: 10%; right: 10%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.category-card {
    font-size: 5px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: saturate(120%) blur(6px);
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.12);
    border-color: #2660b5;
}

.category-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.category-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    line-height: 1.4;
}

.view-all-container {
    text-align: center;
}

.view-all-button {
    background-color: var(--brand-orange);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.view-all-button:hover {
    background-color: var(--brand-orange-dark);
}

/* Promotional Section */
.promo-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.promo-card {
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.green-card {
    background-color: #10b981;
    color: white;
}

.orange-card {
    background-color: #f97316;
    color: white;
}

.promo-image {
    margin-bottom: 24px;
}

.placeholder-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.promo-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
}

.promo-button {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.promo-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Videos Section */
.videos-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 48px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.18);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    font-size: 48px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card h3 {
    padding: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    line-height: 1.4;
}

/* Calculators Section */
.calculators-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 48px;
}

.calculators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.calculator-category {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #e2e8f0;
}

.calculator-category h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.calculator-category ul {
    list-style: none;
}

.calculator-category li {
    padding: 8px 0;
    color: #6b7280;
    font-size: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.calculator-category li:last-child {
    border-bottom: none;
}

/* Mobile App Section */
.mobile-app-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.app-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.app-screens {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    display: flex;
    gap: 20px;
}

.screen {
    width: 200px;
    height: 400px;
    background-color: #ffffff;
    border-radius: 20px;
    border: 8px solid #1f2937;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.screen-1 {
    background: linear-gradient(135deg, #10b981, #059669);
}

.screen-2 {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.app-info {
    flex: 1;
    max-width: 400px;
}

.app-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.app-info p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.app-downloads {
    display: flex;
    gap: 16px;
}

.download-link {
    display: block;
}

.store-logo {
    height: 40px;
    border-radius: 6px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.testimonial-card {
    text-align: center;
    padding: 32px 24px;
    background: rgba(248,250,252,0.75);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.7);
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06);
}

.testimonial-avatar {
    margin-bottom: 16px;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #10b981;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto;
}

.testimonial-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    font-style: italic;
}

/* Coverage Section */
.coverage-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.partner-logo {
    background-color: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    font-weight: 600;
    color: #374151;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06);
}

.partner-logo:hover {
    border-color: rgba(16,185,129,0.6);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(2, 6, 23, 0.12);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-list h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 16px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.faq-toggle {
    font-size: 20px;
    color: #10b981;
    font-weight: 600;
}

.faq-answer {
    padding-bottom: 20px;
    display: none;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-visual {
    position: relative;
    width: 300px;
    height: 300px;
}

.faq-text {
    font-size: 120px;
    font-weight: 900;
    color: #e5e7eb;
    text-align: center;
    line-height: 1;
}

.faq-people {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.person {
    position: absolute;
    font-size: 24px;
}

.person-1 {
    top: 20%;
    left: 20%;
}

.person-2 {
    bottom: 20%;
    right: 20%;
}

/* Footer */
.footer {
    background-color: #132e59;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #10b981;
}

.partner-section {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
    margin-bottom: 40px;
}

.partner-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.partner-section p {
    color: #d1d5db;
    font-size: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    color: #d1d5db;
    font-size: 20px;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #10b981;
}

.newsletter {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    padding: 12px 16px;
    border: 1px solid #374151;
    border-radius: 6px;
    background-color: #374151;
    color: #ffffff;
    font-size: 14px;
    width: 250px;
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-button {
    background-color: #10b981;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.newsletter-button:hover {
    background-color: #059669;
}

.footer-legal {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
}

.footer-legal p {
    color: #9ca3af;
    font-size: 12px;
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
   
    .mobile-toggle { display: inline-flex; }
    .nav { display: none; position: absolute; top: 60px; left: 0; right: 0; background: var(--secondary); box-shadow: 0 8px 16px rgba(0,0,0,0.08); }
    .nav.active { display: block; }
    .nav ul { flex-direction: column; padding: 0.75rem; gap: 0; }
    .nav li { width: 100%; }
    .nav a { display: block; width: 100%; padding: 0.75rem 0.5rem; }
    .dropdown-menu { position: static; box-shadow: none; padding: 0.25rem 0.5rem 0.75rem; }
    .dropdown:hover .dropdown-menu { display: none; }
    .dropdown.open .dropdown-menu { display: block; }
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }
    
    .navigation {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .calculators-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .app-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .newsletter {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-input {
        width: 100%;
    }
}

/* Utility Classes */
.cta-button {
    background-color: var(--brand-orange);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--brand-orange-dark);
}

/* Modals */
.modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 1000; }
.modal[aria-hidden="false"] { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(2px); }
.modal-content { position: relative; background: #ffffff; border-radius: 16px; width: 100%; max-width: 440px; padding: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.modal-title { font-size: 20px; font-weight: 700; color: #111827; margin-bottom: 12px; }
.modal-form { display: grid; gap: 10px; margin-bottom: 12px; }
.modal-close { position: absolute; top: 10px; right: 10px; background: transparent; border: none; font-size: 24px; cursor: pointer; color: #6b7280; }
.modal-close:hover { color: #111827; }

/* Animation for FAQ toggle */
.faq-toggle {
    transition: transform 0.3s ease;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #10b981;
    outline-offset: 2px;
}


/* Other Style.css content */


