body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
}

.logo-icon {
    width: 24px;
    height: 24px;
    position: relative;
    top: 2px;
}

a {
    text-decoration: none;
    color: inherit;
}

.hero {
    text-align: center;
    padding: 0px;
    margin-bottom: 50px;
}

.hero h1 {
    font-size: 70px;
    margin-bottom: 0px;
    font-weight: 700;
    line-height: 1;
}

.hero p {
    font-size: 30px;
    font-weight: 500;
    margin-top: 20px;
}

.hero .cta {
    padding: 10px 30px;
    background-color: black;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-top: 0px;
    margin-bottom: 0px;
    border-radius: 5px;
}

.bold-summit {
    font-weight: 800;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 50px);
    margin-top: 0;
}

.left-column, .right-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-container {
    width: 300px;
    height: 400px;
    margin-bottom: 10px;
    background-color: #F6F5F4;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    padding-bottom: 0px;
}

.summary-container {
    width: 600px;
    height: 750px;
    margin-bottom: 10px;
    background-color: #F6F5F4;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
  }
  
  .image-container img {
    width: 90%;
    height: 90%;
    align-self: center;
    padding:0;
    border-radius: 10px; /* Added rounded corners */
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: -5px
  }
  
  .summary-container img {
    width: 90%;
    height: 95%;
    align-self: center;
    border-radius: 10px;
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.1);
  }

.arrow {
    font-size: 30px;
    margin: 0 20px;
}

.caption {
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 8px;
    margin-left: 20px;
}

.down-arrow {
    display: none;
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
        margin-top: 20px;
    }

    .left-column, .right-column {
        margin-bottom: 20px;
    }

    .image-container {
        width: 80%;
        height: auto;
    }

    .image-container img {
        margin-top: 3%;
        margin-bottom: 0px;
    }

    .summary-container {
        width: 80%;
        height: auto;
    }

    .summary-container img {
        margin-top: 3%;
        margin-bottom: 0px;
    }

    .arrow {
        display: none;
    }

    .down-arrow {
        display: block;
        font-size: 30px;
        margin: 0px 20px;
        margin-bottom: 20px;
    }
}

.page-bottom {
    text-align: center;
    padding: 0px;
    margin-bottom: 50px;
}
    
.page-bottom h1 {
    font-size: 50px;
    margin-bottom: 0px;
    font-weight: 700;
    line-height: 1;
}

.page-bottom p {
    font-size: 30px;
    font-weight: 500;
    margin-top: 20px;
}

.page-bottom .cta {
    padding: 10px 30px;
    background-color: black;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-top: 0px;
    margin-bottom: 0px;
    border-radius: 5px;
}

.landscape-image-container {
    width: 300px;
    height: 270px;
    margin-bottom: 10px;
    background-color: #F6F5F4;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
}

.landscape-summary-container {
    width: 1000px;
    height: 650px;
    margin-bottom: 10px;
    background-color: #F6F5F4;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
}

@media not all and (min-resolution:.001dpcm) { 
    @supports (-webkit-appearance:none) {
        .landscape-summary-container {
            height: auto;
            min-height: 650px;
        }
    }
}

@media screen and (max-width: 768px) {
    .landscape-summary-container {
        width: 90%;
        height: auto;
    }
}

.landscape-summary-container img {
    width: 46%;
    height: auto;
    /* object-fit: contain; */
    margin-top: 10px;
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 0px;
    align-self: center;
    border-radius: 10px;
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.1);
}


.landscape-image-container img {
    width: 90%;
    height: 90%;
    /* object-fit: contain; */
    margin-top: 3%;
    margin-bottom: 0px;
    align-self: center;
    border-radius: 10px;
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.1);
}

.label {
    display: inline-block;
    margin-left: 10px;
}

.label-icon {
    height:52px;
    width:auto;
    margin-right:-20px;
}

.sup{
    font-family: "DM Serif Display", serif;
}


@keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  *:not(.problem-solution-section):not(.urgency-cta-section):not(.problem-solution-section *):not(.urgency-cta-section *) {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
  }

  *:nth-child(1) {
    animation-delay: 0.1s;
  }

  *:nth-child(2) {
    animation-delay: 0.2s;
  }

  *:nth-child(3) {
    animation-delay: 0.3s;
  }

  /* Override global animation for new sections */
  .hidden-costs-section,
  .solution-section,
  .urgency-cta-section,
  .hidden-costs-section *,
  .solution-section *,
  .urgency-cta-section * {
    opacity: 1 !important;
    animation: none !important;
    visibility: visible !important;
    display: block !important;
  }

  /* Force visibility for section containers */
  .section-container,
  .costs-content,
  .solution-content,
  .cta-content {
    opacity: 1 !important;
    animation: none !important;
    visibility: visible !important;
  }
  

  .card-title{
    color: black;
  }

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.benefits-container h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Personas Section */
.personas-section {
    padding: 80px 20px;
    background-color: white;
}

.personas-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.personas-container h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.persona-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #f1f3f4;
    flex-wrap: wrap;
    gap: 10px;
}

.persona-tab {
    background: none;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.persona-tab:hover {
    color: #333;
    background-color: #f8f9fa;
}

.persona-tab.active {
    color: #333;
    border-bottom-color: #000;
    font-weight: 600;
}

.persona-content {
    min-height: 400px;
}

.persona-panel {
    display: none;
    text-align: left;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    margin-top: 20px;
}

.persona-panel.active {
    display: block;
}

.persona-panel h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.persona-benefits {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-point {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-point strong {
    color: #333;
    font-weight: 600;
}

.persona-cta {
    text-align: center;
    margin-top: 30px;
}

.cta-secondary {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #000;
}

.cta-subtext {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 20px;
    background-color: #1a1a1a;
    color: white;
    text-align: center;
}

.social-proof-container h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #ccc;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: left;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial cite {
    font-size: 14px;
    color: #ccc;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.features-container h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Shared Styles for All Three Sections */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.card-icon {
    font-size: 32px;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.card-header h3 {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}

.list-icon,
.check-icon {
    margin-right: 12px;
    font-size: 18px;
    flex-shrink: 0;
}

/* Problem vs Solution Section */
.problem-solution-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.section-subtitle {
    font-size: 22px;
    font-weight: 400;
    opacity: 0.9;
    margin: 0;
}

.two-column-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.costs-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: left;
    border-left: 5px solid #e74c3c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.costs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.solution-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: left;
    border-left: 5px solid #27ae60;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.problem-icon {
    background-color: #ffebee;
}

.solution-icon {
    background-color: #e8f5e8;
}

.costs-card .card-header h3 {
    color: #e74c3c;
}

.solution-card .card-header h3 {
    color: #27ae60;
}

.costs-list,
.solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.costs-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 3px solid #e74c3c;
}

.solution-text {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #27ae60;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 3px solid #27ae60;
}

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

.cta-content {
    display: flex;
    justify-content: center;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-card h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-card p {
    font-size: 20px;
    margin-bottom: 15px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-emphasis {
    font-weight: 600;
    font-size: 24px !important;
    margin-bottom: 40px !important;
}

.cta-button-container {
    margin-top: 30px;
}

.cta-primary-large {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 25px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
    margin-bottom: 25px;
}

.cta-primary-large:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.4);
    text-decoration: none;
    color: white;
}

.trial-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.trial-benefits span {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive */
/* Footer Styles */
footer {
    padding: 40px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    margin-top: 50px;
}

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

.footer-container p {
    text-align: center;
    margin: 0;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.footer-container nav {
    text-align: center;
    margin-top: 15px;
}

.footer-container nav a {
    color: #666;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-container nav a:hover {
    color: #333;
}

@media screen and (max-width: 768px) {
    .benefits-container h2,
    .personas-container h2,
    .social-proof-container h2,
    .features-container h2 {
        font-size: 36px;
    }

    .persona-tabs {
        flex-direction: column;
        align-items: center;
    }

    .persona-tab {
        width: 100%;
        max-width: 250px;
        margin-bottom: 10px;
        text-align: center;
    }

    /* Two Column Section Mobile Styles */
    .section-header h2 {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .two-column-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .costs-card,
    .solution-card {
        padding: 30px 25px;
        margin: 0 10px;
    }

    .card-header h3 {
        font-size: 26px;
    }

    .costs-list li,
    .solution-list li {
        font-size: 16px;
        padding: 12px;
    }

    .solution-text {
        font-size: 18px;
        padding: 15px;
    }

    .cta-card {
        padding: 40px 25px;
        margin: 0 10px;
    }

    .cta-card h3 {
        font-size: 28px;
    }

    .cta-card p {
        font-size: 18px;
    }

    .cta-emphasis {
        font-size: 20px !important;
    }

    .cta-primary-large {
        padding: 20px 35px;
        font-size: 18px;
    }

    .trial-benefits {
        flex-direction: column;
        gap: 12px;
    }

    .trial-benefits span {
        padding: 8px 16px;
        font-size: 14px;
    }

    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }
    
    /* Footer mobile styles */
    footer {
        padding: 30px 15px;
        text-align: center;
    }
    
    .footer-container p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .footer-container nav {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .footer-container nav a {
        display: block;
        padding: 8px 12px;
        margin: 0;
        background-color: white;
        border: 1px solid #ddd;
        border-radius: 5px;
        color: #333;
        width: fit-content;
        min-width: 150px;
    }
    
    .footer-container nav a:hover {
        background-color: #f0f0f0;
    }
}

