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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #222222;
    background-color: #FFFFFF;
}

body h2{
  line-height: 1;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background-color: #ffffff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #777777;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image {
    background-color: #FFFFFF;
    height: 20rem; 
    display: flex;
    border-radius: 8px;
    overflow: hidden; 
}

.crown-image {
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    display: block; 
}

.placeholder-image {
    width: 100%; 
    height: 100%;
    display: block; 
}

.hero-content .btn-primary{
    background-color: #5FC1AE;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #222222;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #444444;
}

.btn-outline {
    border: 1px solid #222222;
    color: #222222;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #222222;
    color: #FFFFFF;
}

/* Comparison */
.comparison-sectiona {
  padding: 80px 20px;
  background: #f2f2f2; 
}

.containera{
  max-width: 1600px;
  margin: 0 auto;
}

.headinga {
  text-align: center;
  margin-bottom: 60px;
}

.headinga h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #1f1f1f;
}

.headinga p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.grida {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .grida {
    grid-template-columns: repeat(3, 1fr);
  }
  
}

.carda {
  background: #ffffff;
  padding: 35px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carda:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.carda h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #1f1f1f;
}

.carda ul {
  text-align: left;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.taga {
  color: #777;
  font-size: 14px;
}

.highlighta {
  background: #5FC1AE;
  color: #fff;
  position: relative;
}

.highlighta ul li {
  color: #fff;
}

.tag-lighta {
  font-size: 14px;
  opacity: 0.9;
  background: rgb(27, 26, 26);
}

.recommendeda {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ffffff;
  color: #5FC1AE;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

/* Benefits Section - Redesigned */
.benefits-redesigned {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

/* Premium Background Overlays & Gradients */
.benefits-background-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #EAEAEA 0%, #FFFFFF 50%, #EAEAEA 100%);
    opacity: 0.6;
    z-index: 0;
}

.benefits-gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(34, 34, 34, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.benefits-redesigned .container {
    position: relative;
    z-index: 10;
}

/* Centered Section Title with Accent */
.benefits-header {
    text-align: center;
    margin-bottom: 5rem;
}

.benefits-accent-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.benefits-accent-line {
    height: 1px;
    width: 3rem;
    background-color: #222222;
}

.benefits-accent-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #222222;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.benefits-main-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: #222222;
    margin-bottom: 1.5rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.benefits-intro {
    font-size: 1.125rem;
    color: #777777;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.75;
}

/* 2x3 Grid of Benefit Cards */
.benefits-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card-redesigned {
    background-color: #FFFFFF;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(234, 234, 234, 0.5);
    transition: all 0.3s ease;
}

.benefit-card-redesigned:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5rem);
    border-color: rgba(34, 34, 34, 0.2);
}

/* Icon with Gradient */
.benefit-icon-wrapper {
    margin-bottom: 1.5rem;
}

.benefit-icon-gradient {
    width: 5rem;
    height: 5rem;
    
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.benefit-card-redesigned:hover .benefit-icon-gradient {
    transform: scale(1.1);
}

.benefit-icon-inner {
    width: 5rem;
    height: 5rem;
    background-color: #FFFFFF;
    border-radius: 0.75rem;
}

.benefit-card-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 1rem;
}

.benefit-card-subtitle {
    font-size: 1rem;
    color: #777777;
    line-height: 1.5;
}


/* Process Section */
.process {
    padding: 6rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover lift effect */
.step:hover {
    transform: translateY(-15px);
    cursor: pointer;
}

.step-number1 {
    width: 6rem;
    height: 6rem;
    background-color: #8af9ff;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;   
}

.step-number2 {
    width: 6rem;
    height: 6rem;
    background-color: #f2daab;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-number3 {
    width: 6rem;
    height: 6rem;
    background-color: #f2abb9;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-number4 {
    width: 6rem;
    height: 6rem;
    background-color: #abf2c5;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 1rem;
}

.step-description {
    color: #777777;
    line-height: 1.6;
}

/* Before & After Gallery Section */
.before-after-gallery {
    padding: 6rem 0;
    background-color: #5FC1AE;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.comparison-side {
    position: relative;
}

.comparison-label {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background-color: rgba(34, 34, 34, 0.85);
    color: #FFFFFF;
    padding: 0.375rem 0.875rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.comparison-image {
    width: 100%;
    height: 14rem;
    background-color: #EAEAEA;
    display: flex;
    align-items: center;
    justify-content: center;
    /* object-fit: cover; */
}

.gallery-caption {
    padding: 1.25rem 1.5rem;
    color: #444444;
    font-size: 0.9375rem;
    line-height: 1.6;
    text-align: center;
    font-weight: 400;
    border-top: 1px solid #EAEAEA;
}

.gallery-footer {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 2rem;
}

.results-disclaimer {
    font-size: 0.8125rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    font-style: italic;
    padding: 0 1rem;
}

/* whatsapp */
.cta {
    padding: 6rem 0;
    background-color: #e6edec
}

.cta-content {
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: #212020;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-buttons .btn-primary{
  background-color: green;
}

















/* About Section */
.about-zirconia {
    padding: 6rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.125rem;
    color: #777777;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-bullet {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #222222;
    border-radius: 50%;
    margin-top: 0.75rem;
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #777777;
    line-height: 1.6;
}

.about-image {
    background-color: #EAEAEA;
    height: 24rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background-color: #EAEAEA;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: white;
    max-width: 768px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: #FFFFFF;
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    
    border-radius: 4px;
    margin: 0 auto 1.5rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #777777;
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 6rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 6rem;
    height: 6rem;
    background-color: #222222;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 1rem;
}

.step-description {
    color: #777777;
    line-height: 1.6;
}

/* Indications Section */
.indications {
    padding: 6rem 0;
    background-color: #EAEAEA;
}

.indications-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.indications-image {
    background-color: #FFFFFF;
    height: 24rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.indications-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.indication {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.indication-bullet {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #222222;
    border-radius: 50%;
    margin-top: 0.75rem;
    flex-shrink: 0;
}

.indication-text {
    color: #777777;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
}

.cta-content {
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: #777777;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer Styles */
.footer {
    background-color: #222222;
    color: #FFFFFF;
    padding: 4rem 0 0;
}

.footer-brand {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-brand-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 512px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: background-color 0.2s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-info-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-info-content {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-info-content p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.legal-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.legal-link:hover {
    color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 768px) {

    .hero {
        padding: 3rem 1rem;  /* smaller top/bottom + some side spacing */
    }

    .nav {
        display: none;
    }

    .cta-button {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .indications-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .container {
        padding: 0 1rem;
    }

    .crown-image {
        height: auto;        /* let image keep natural ratio */
        object-fit: contain; /* prevents zoom cropping */
    }
}

@media (max-width: 480px) {

    .hero {
        padding: 3rem 1rem;  /* smaller top/bottom + some side spacing */
    }

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

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

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

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

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
    .benefits-cards-grid {
    display: flex; /* use flex instead of grid for horizontal scroll */
    overflow-x: auto; /* enable horizontal scroll */
    scroll-snap-type: x mandatory; /* snap to each card */
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
    gap: 1rem; /* spacing between cards */
    padding: 1rem;
    }

    .benefits-cards-grid > * {
        flex: 0 0 100%; /* make each card take full width */
        scroll-snap-align: start; /* snap each card to start */
    }

    .benefits-header {
    text-align: center;
    margin-bottom: 3rem;

}

.crown-image {
    height: 203px;
    object-fit: cover;
    object-position: center top; /* adjust focal point */
}
}