/* ==========================================================================
CSS VARIABLES & GLOBAL SETTINGS
========================================================================== */
:root {
	--clr-green: #043f22;
	--clr-green-dark: #022614;
	--clr-green-light: #0a5c34;
	--clr-cream: #fdf5e0;
	--clr-cream-dark: #f2e6c9;
	--clr-accent: #d4af37;

	/* Changed to Inter Font */
	--font-primary: 'Inter', sans-serif;
	--transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	--transition-fast: 0.3s ease;
}

#custom-dental-home * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

#custom-dental-home {
	font-family: var(--font-primary);
	background-color: var(--clr-cream);
	color: var(--clr-green);
	position: relative;
	z-index: 99999; /* Covers default WP Header/Footer if needed */
	font-size: 16px;
	/* Note: Removed overflow-x: hidden because it breaks position: sticky in WP */
}

#custom-dental-home img,
#custom-dental-home svg {
	display: block;
	max-width: 100%;
}

#custom-dental-home a {
	text-decoration: none;
	color: inherit;
}

#custom-dental-home ul {
	list-style: none;
}

/* ==========================================================================
REFINED TYPOGRAPHY (Scaled down drastically)
========================================================================== */
#custom-dental-home h1,
#custom-dental-home h2,
#custom-dental-home h3,
#custom-dental-home h4,
#custom-dental-home h5,
#custom-dental-home h6 {
	font-family: var(--font-primary);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

#custom-dental-home em {
	font-style: italic;
	font-weight: 300;
}

#custom-dental-home .section-eyebrow {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

#custom-dental-home .section-eyebrow__line {
	width: 30px;
	height: 1px;
	background-color: var(--clr-green);
}

#custom-dental-home .section-eyebrow--light { color: var(--clr-cream); }
#custom-dental-home .section-eyebrow__line--light { background-color: var(--clr-cream); }

/* GLOBAL SECTION HEADING RESIZING */
#custom-dental-home .section-heading,
#custom-dental-home .about-section__heading,
#custom-dental-home .services-editorial__heading,
#custom-dental-home .transformation-section__heading,
#custom-dental-home .why-section__heading,
#custom-dental-home .tech-section__heading,
#custom-dental-home .testimonials-section__heading,
#custom-dental-home .blog-section__heading,
#custom-dental-home .faq-section__heading,
#custom-dental-home .cta-section__heading {
	font-size: clamp(2rem, 3.5vw, 3rem); /* Much smaller and balanced */
	margin-bottom: 1.5rem;
	font-weight: 400;
}

/* Buttons */
#custom-dental-home .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 2rem;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 100px;
	transition: var(--transition-smooth);
	cursor: pointer;
	border: none;
	font-weight: 600;
}

#custom-dental-home .btn--primary { background-color: var(--clr-green); color: var(--clr-cream); }
#custom-dental-home .btn--primary:hover { background-color: var(--clr-green-light); transform: translateY(-2px); }
#custom-dental-home .btn--ghost { background-color: transparent; color: var(--clr-cream); border: 1px solid rgba(253, 245, 224, 0.3); }
#custom-dental-home .btn--ghost:hover { background-color: var(--clr-cream); color: var(--clr-green); }
#custom-dental-home .btn--cream { background-color: var(--clr-cream); color: var(--clr-green); }
#custom-dental-home .btn--cream:hover { background-color: var(--clr-cream-dark); }
#custom-dental-home .btn--full { width: 100%; padding: 1rem; }

/* ==========================================================================
CUSTOM CURSOR & PRELOADER
========================================================================== */
.cs-cursor, .cs-cursor-follower {
	position: fixed; top: 0; left: 0; pointer-events: none; border-radius: 50%;
	z-index: 999999; transform: translate(-50%, -50%);
}
.cs-cursor { width: 6px; height: 6px; background-color: var(--clr-green); transition: transform 0.2s ease, background-color 0.2s ease; }
.cs-cursor-follower { width: 36px; height: 36px; border: 1px solid rgba(4, 63, 34, 0.3); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), width 0.3s, height 0.3s, background-color 0.3s; }

.dark-mode .cs-cursor { background-color: var(--clr-cream); }
.dark-mode .cs-cursor-follower { border-color: rgba(253, 245, 224, 0.3); }

#custom-dental-home .preloader {
	position: fixed; inset: 0; background-color: var(--clr-green); z-index: 100000;
	display: flex; align-items: center; justify-content: center; color: var(--clr-cream);
}
#custom-dental-home .preloader__wrapper { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
#custom-dental-home .preloader__logo { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
#custom-dental-home .preloader__logo-svg { width: 50px; }
#custom-dental-home .preloader__name { font-size: 1.5rem; letter-spacing: 0.05em; font-weight: 500; }
#custom-dental-home .preloader__bar { width: 150px; height: 2px; background-color: rgba(253, 245, 224, 0.2); border-radius: 2px; overflow: hidden; }
#custom-dental-home .preloader__bar-fill { width: 0%; height: 100%; background-color: var(--clr-cream); }
#custom-dental-home .preloader__tagline { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; opacity: 0.7; font-weight: 500;}

/* ==========================================================================
HEADER (NAV)
========================================================================== */
#custom-dental-home .nav-modern {
	position: fixed; top: 0; left: 0; width: 100%; z-index: 10000; padding: 1.5rem 0;
	transition: padding 0.6s cubic-bezier(0.16, 1, 0.3, 1); color: var(--clr-cream);
}
#custom-dental-home .nav-modern__wrapper {
	max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: flex;
	justify-content: space-between; align-items: center; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); position: relative;
}
#custom-dental-home .nav-modern.scrolled { padding: 1rem 0; }
#custom-dental-home .nav-modern.scrolled .nav-modern__wrapper {
	background: rgba(253, 245, 224, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(4, 63, 34, 0.08); border-radius: 100px; color: var(--clr-green);
	max-width: 1200px; padding: 0.8rem 2rem; box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
#custom-dental-home .nav-modern__logo { display: flex; align-items: center; gap: 0.75rem; font-size: 1.1rem; z-index: 1002; letter-spacing: -0.02em; font-weight: 600; }
#custom-dental-home .nav-modern__logo-icon { width: 22px; }
#custom-dental-home .nav-modern__links { display: none; gap: 2.5rem; align-items: center; position: absolute; left: 50%; transform: translateX(-50%); }
#custom-dental-home .nav-modern__link {
	font-size: 14px;
	letter-spacing: 0.1em;
	transition: opacity 0.3s ease;
	position: relative;
}
#custom-dental-home .nav-modern__link::after { content: ''; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%); width: 0; height: 1px; background: currentColor; transition: width 0.3s ease; }
#custom-dental-home .nav-modern__link:hover { opacity: 1; }
#custom-dental-home .nav-modern__link:hover::after { width: 100%; }
#custom-dental-home .nav-modern__actions { display: flex; align-items: center; gap: 2rem; z-index: 1002; }
#custom-dental-home .btn-nav-cta { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; border: 1px solid rgba(255,255,255,0.3); padding: 0.6rem 1.2rem; border-radius: 100px; transition: all 0.4s ease; font-weight: 600; }
#custom-dental-home .nav-modern.scrolled .btn-nav-cta { border-color: rgba(4, 63, 34, 0.2); }
#custom-dental-home .btn-nav-cta:hover { background: currentColor; color: var(--clr-green); }
#custom-dental-home .nav-modern.scrolled .btn-nav-cta:hover { color: var(--clr-cream); }

#custom-dental-home .nav-modern__hamburger { background: transparent; border: none; color: inherit; cursor: pointer; display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; z-index: 1002; }
#custom-dental-home .hamburger-lines, #custom-dental-home .hamburger-lines::before, #custom-dental-home .hamburger-lines::after { width: 24px; height: 1.5px; background: currentColor; position: relative; transition: 0.3s; }
#custom-dental-home .hamburger-lines::before { content: ''; position: absolute; top: -6px; left: 0; }
#custom-dental-home .hamburger-lines::after { content: ''; position: absolute; bottom: -6px; left: 0; }
#custom-dental-home .nav-modern__hamburger.active .hamburger-lines { background: transparent; }
#custom-dental-home .nav-modern__hamburger.active .hamburger-lines::before { top: 0; transform: rotate(45deg); }
#custom-dental-home .nav-modern__hamburger.active .hamburger-lines::after { bottom: 0; transform: rotate(-45deg); }

@media (min-width: 1024px) {
	#custom-dental-home .nav-modern__links { display: flex; }
	#custom-dental-home .nav-modern__hamburger { display: none; }
}

#custom-dental-home .nav-modern__mobile { position: fixed; inset: 0; background-color: var(--clr-green-dark); display: flex; align-items: center; justify-content: center; clip-path: circle(0% at 100% 0); transition: clip-path 0.8s cubic-bezier(0.86, 0, 0.07, 1); z-index: 1001; }
#custom-dental-home .nav-modern__mobile.active { clip-path: circle(150% at 100% 0); }
#custom-dental-home .nav-modern__mobile-links { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
#custom-dental-home .nav-modern__mobile-link { font-size: 2rem; font-weight: 400; color: var(--clr-cream); letter-spacing: -0.02em; }

/* ==========================================================================
HERO SLIDER
========================================================================== */
#custom-dental-home .hero-section { position: relative; height: 100vh; width: 100%; background-color: var(--clr-green); overflow: hidden; }
#custom-dental-home .hero-swiper { width: 100%; height: 100%; }
#custom-dental-home .hero-slide { position: relative; width: 100%; height: 100%; overflow: hidden; display: flex; align-items: center; }
#custom-dental-home .hero-slide-bg { position: absolute; inset: -5%; width: 110%; height: 110%; z-index: 0; }
#custom-dental-home .hero-slide-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
#custom-dental-home .hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2, 38, 20, 0.6) 0%, rgba(2, 38, 20, 0.2) 50%, rgba(2, 38, 20, 0.8) 100%); z-index: 1; }
#custom-dental-home .hero-content { position: relative; z-index: 2; width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2.5rem; color: var(--clr-cream); margin-top: 3rem; }

#custom-dental-home .hero-tagline { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; overflow: hidden; font-weight: 600; }
#custom-dental-home .hero-tagline span { display: inline-block; transform: translateY(100%); opacity: 0; }
#custom-dental-home .hero-tagline::before { content: ''; width: 0; height: 1px; background: var(--clr-cream); display: block; transition: width 1s ease 0.5s; }
#custom-dental-home .swiper-slide-active .hero-tagline::before { width: 40px; }

#custom-dental-home .hero-title { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.05; margin-bottom: 1.5rem; font-weight: 400; letter-spacing: -0.02em; }
#custom-dental-home .hero-title-line { display: block; overflow: hidden; padding-bottom: 0.1em; }
#custom-dental-home .hero-title-inner { display: block; transform: translateY(120%); opacity: 0; }
#custom-dental-home .hero-title-italic { font-style: italic; color: var(--clr-cream-dark); margin-left: 8%; font-weight: 300; }

#custom-dental-home .hero-description { font-size: 1rem; line-height: 1.6; max-width: 450px; opacity: 0; transform: translateY(20px); font-weight: 300; color: rgba(253, 245, 224, 0.9); }

#custom-dental-home .hero-controls { position: absolute; bottom: 3rem; left: 0; width: 100%; z-index: 10; pointer-events: none; }
#custom-dental-home .hero-controls__wrapper { max-width: 1400px; margin: 0 auto; padding: 0 2.5rem; display: flex; justify-content: space-between; align-items: flex-end; pointer-events: auto; }
#custom-dental-home .hero-fraction { display: flex; align-items: center; gap: 0.75rem; color: var(--clr-cream); font-size: 1.1rem; font-weight: 400; }
#custom-dental-home .hero-fraction .current { font-size: 1.75rem; font-weight: 500; }
#custom-dental-home .hero-fraction .sep { width: 30px; height: 1px; background: rgba(253, 245, 224, 0.4); }
#custom-dental-home .hero-fraction .total { opacity: 0.5; }

#custom-dental-home .hero-nav-arrows { display: flex; gap: 1.5rem; }
#custom-dental-home .hero-nav-btn { background: transparent; border: none; color: var(--clr-cream); cursor: pointer; display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-primary); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.6; transition: all 0.4s ease; font-weight: 600; }
#custom-dental-home .hero-nav-btn:hover { opacity: 1; }
#custom-dental-home .hero-nav-line { width: 30px; height: 1px; background: currentColor; transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; }
#custom-dental-home .hero-nav-btn:hover .hero-nav-line { width: 50px; }
#custom-dental-home .hero-nav-line::after, #custom-dental-home .hero-nav-line::before { content: ''; position: absolute; width: 6px; height: 1px; background: currentColor; top: 0; }
#custom-dental-home .hero-btn-prev .hero-nav-line::after { left: 0; transform: rotate(-45deg); transform-origin: left; }
#custom-dental-home .hero-btn-prev .hero-nav-line::before { left: 0; transform: rotate(45deg); transform-origin: left; }
#custom-dental-home .hero-btn-next .hero-nav-line::after { right: 0; transform: rotate(45deg); transform-origin: right; }
#custom-dental-home .hero-btn-next .hero-nav-line::before { right: 0; transform: rotate(-45deg); transform-origin: right; }

/* ==========================================================================
ABOUT SECTION
========================================================================== */
#custom-dental-home .about-section { padding: 6rem 0; background: var(--clr-cream); }
#custom-dental-home .about-section__wrapper { max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { #custom-dental-home .about-section__wrapper { grid-template-columns: 1fr 1fr; } }
#custom-dental-home .about-section__visual { position: relative; }
#custom-dental-home .about-section__image-main { width: 85%; height: 400px; border-radius: 16px 100px 16px 16px; overflow: hidden; background: rgba(4, 63, 34, 0.05); }
#custom-dental-home .about-section__image-main img { width: 100%; height: 100%; object-fit: cover; }
#custom-dental-home .about-section__image-accent { position: absolute; bottom: -10%; right: 0; width: 45%; height: 250px; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); }
#custom-dental-home .about-section__image-accent img { width: 100%; height: 100%; object-fit: cover; }
#custom-dental-home .about-section__award { position: absolute; top: 10%; right: 5%; background: var(--clr-green); color: var(--clr-cream); padding: 0.8rem 1.5rem; border-radius: 100px; display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; z-index: 2; font-weight: 500; }

#custom-dental-home .about-section__body { font-size: 1rem; line-height: 1.7; opacity: 0.8; margin-bottom: 1.5rem; font-weight: 400; }
#custom-dental-home .about-section__stats { display: flex; gap: 2.5rem; margin: 2.5rem 0; padding-top: 2.5rem; border-top: 1px solid rgba(4, 63, 34, 0.1); }
#custom-dental-home .about-section__stat { display: flex; flex-direction: column; }
#custom-dental-home .about-section__stat-num { font-size: 2.2rem; line-height: 1; font-weight: 400; letter-spacing: -0.03em; color: var(--clr-green-dark); }
#custom-dental-home .about-section__stat-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; margin-top: 0.4rem; font-weight: 600;}

/* ==========================================================================
EDITORIAL SERVICES (STICKY SCROLL FIX)
========================================================================== */
#custom-dental-home .services-editorial { background-color: var(--clr-green); color: var(--clr-cream); padding: 6rem 0; position: relative; }

/* CRITICAL FIX: align-items: start is required for sticky inside grid */
#custom-dental-home .services-editorial__wrapper { max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
@media (min-width: 1024px) { #custom-dental-home .services-editorial__wrapper { grid-template-columns: 1fr 1fr; gap: 6rem; } }

#custom-dental-home .services-list { display: flex; flex-direction: column; gap: 15vh; padding-bottom: 20vh; }
#custom-dental-home .service-item { opacity: 0.3; transition: opacity 0.6s ease, transform 0.6s ease; transform: translateX(-20px); }
#custom-dental-home .service-item.is-active { opacity: 1; transform: translateX(0); }

#custom-dental-home .service-item__num { font-size: 1rem; opacity: 0.5; margin-bottom: 0.8rem; font-weight: 400; }
#custom-dental-home .service-item__title { font-size: 1.75rem; margin-bottom: 1rem; font-weight: 400; letter-spacing: -0.02em; }
#custom-dental-home .service-item__desc { font-size: 0.95rem; line-height: 1.6; opacity: 0.8; margin-bottom: 1.5rem; max-width: 450px; font-weight: 300; }

#custom-dental-home .services-editorial__visual { display: none; }
@media (min-width: 1024px) { 
	#custom-dental-home .services-editorial__visual { 
		display: block; 
		position: sticky; 
		top: 120px; /* Safe distance below WP header */
		height: 70vh; 
	} 
}

#custom-dental-home .services-visual-container { width: 100%; height: 100%; border-radius: 16px; overflow: hidden; position: relative; }
#custom-dental-home .service-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transform: scale(1.05); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s ease-out; }
#custom-dental-home .service-img.active { opacity: 1; transform: scale(1); z-index: 2; }
#custom-dental-home .service-img img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
TRANSFORMATIONS
========================================================================== */
#custom-dental-home .transformation-section { padding: 6rem 0; background: var(--clr-cream); }
#custom-dental-home .transformation-section__wrapper { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
#custom-dental-home .transformation-section__header { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 3rem; }
#custom-dental-home .transformation-card { display: flex; flex-direction: column; gap: 1.5rem; }
#custom-dental-home .transformation-card__before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
#custom-dental-home .transformation-card__before, #custom-dental-home .transformation-card__after { position: relative; }
#custom-dental-home .transformation-card__img-placeholder { border-radius: 12px; overflow: hidden; }
#custom-dental-home .transformation-card__img-placeholder img { width: 100%; height: 220px; object-fit: cover; }
#custom-dental-home .transformation-card__label { position: absolute; top: 1rem; left: 1rem; background: rgba(253, 245, 224, 0.9); color: var(--clr-green); padding: 0.4rem 0.8rem; border-radius: 100px; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; z-index: 2; font-weight: 600;}
#custom-dental-home .transformation-card__info h4 { font-size: 1.25rem; margin-bottom: 0.4rem; font-weight: 500; }
#custom-dental-home .transformation-card__info p { opacity: 0.7; font-weight: 400; font-size: 0.9rem; }

/* ==========================================================================
WHY CHOOSE US
========================================================================== */
#custom-dental-home .why-section { padding: 6rem 0; background: var(--clr-cream); border-top: 1px solid rgba(4, 63, 34, 0.1); }
#custom-dental-home .why-section__wrapper { max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { #custom-dental-home .why-section__wrapper { grid-template-columns: 1fr 1.5fr; } }
#custom-dental-home .why-section__body { font-size: 1rem; opacity: 0.8; margin-bottom: 2rem; font-weight: 400; line-height: 1.6; }
#custom-dental-home .why-section__features { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
#custom-dental-home .why-feature__icon { width: 32px; height: 32px; margin-bottom: 1rem; color: var(--clr-green); }
#custom-dental-home .why-feature__text h4 { font-size: 1.15rem; margin-bottom: 0.4rem; font-weight: 500; }
#custom-dental-home .why-feature__text p { font-size: 0.9rem; opacity: 0.7; line-height: 1.6; font-weight: 400; }

/* ==========================================================================
TECHNOLOGY
========================================================================== */
#custom-dental-home .tech-section { position: relative; padding: 6rem 0; background: var(--clr-cream-dark); overflow: hidden; }
#custom-dental-home .tech-section__blur { position: absolute; width: 50vw; height: 50vw; background: rgba(253, 245, 224, 0.5); filter: blur(100px); border-radius: 50%; }
#custom-dental-home .tech-section__blur--1 { top: -20%; left: -10%; }
#custom-dental-home .tech-section__blur--2 { bottom: -20%; right: -10%; }
#custom-dental-home .tech-section__wrapper { position: relative; z-index: 1; max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
#custom-dental-home .tech-section__header { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 3rem; }
#custom-dental-home .tech-section__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
#custom-dental-home .tech-item__glass { background: rgba(253, 245, 224, 0.4); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 16px; padding: 2rem; height: 100%; }
#custom-dental-home .tech-item__icon { width: 36px; height: 36px; margin-bottom: 1.2rem; color: var(--clr-green); }
#custom-dental-home .tech-item h4 { font-size: 1.15rem; margin-bottom: 0.6rem; font-weight: 500; }
#custom-dental-home .tech-item p { opacity: 0.8; line-height: 1.6; font-size: 0.9rem; font-weight: 400; }

/* ==========================================================================
TESTIMONIALS
========================================================================== */
#custom-dental-home .testimonials-section { padding: 6rem 0; background: var(--clr-green); color: var(--clr-cream); }
#custom-dental-home .testimonials-section__wrapper { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
#custom-dental-home .testimonials-section__header { margin-bottom: 3rem; }
#custom-dental-home .testimonial-item { padding-right: 2rem; }
#custom-dental-home .testimonial-item__stars { color: var(--clr-accent); margin-bottom: 1.5rem; font-size: 1.2rem; }
#custom-dental-home .testimonial-item__quote { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-style: italic; line-height: 1.4; margin-bottom: 2.5rem; font-weight: 300;}
#custom-dental-home .testimonial-item__author { display: flex; align-items: center; gap: 1rem; }
#custom-dental-home .testimonial-item__avatar { width: 45px; height: 45px; border-radius: 50%; background: rgba(253, 245, 224, 0.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 400;}
#custom-dental-home .testimonial-item__author strong { display: block; font-size: 0.95rem; font-weight: 500; }
#custom-dental-home .testimonial-item__author span { font-size: 0.7rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

/* ==========================================================================
BLOG
========================================================================== */
#custom-dental-home .blog-section { padding: 6rem 0; background: var(--clr-cream); }
#custom-dental-home .blog-section__wrapper { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
#custom-dental-home .blog-section__header { margin-bottom: 3rem; }
#custom-dental-home .blog-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { #custom-dental-home .blog-section__grid { grid-template-columns: 1.5fr 1fr; } }
#custom-dental-home .blog-post__tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; display: block; margin-bottom: 0.8rem; font-weight: 600; }
#custom-dental-home .blog-post--featured .blog-post__image { margin-bottom: 1.5rem; border-radius: 16px; overflow: hidden; height: 300px; }
#custom-dental-home .blog-post--featured .blog-post__image img { width: 100%; height: 100%; object-fit: cover; }
#custom-dental-home .blog-post--featured .blog-post__title { font-size: 1.8rem; margin-bottom: 1rem; font-weight: 500; letter-spacing: -0.02em; }
#custom-dental-home .blog-post--featured .blog-post__excerpt { font-size: 1rem; opacity: 0.8; margin-bottom: 1.5rem; font-weight: 400; }
#custom-dental-home .blog-post__meta { display: flex; gap: 0.5rem; font-size: 0.8rem; opacity: 0.6; margin-bottom: 1.2rem; font-weight: 500; }
#custom-dental-home .blog-post__link { font-weight: 600; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.1em; border-bottom: 1px solid currentColor; padding-bottom: 4px; }
#custom-dental-home .blog-section__secondary { display: flex; flex-direction: column; gap: 1.5rem; }
#custom-dental-home .blog-post--small { padding-bottom: 1.5rem; border-bottom: 1px solid rgba(4, 63, 34, 0.1); }
#custom-dental-home .blog-post--small .blog-post__title { font-size: 1.2rem; margin-bottom: 0.8rem; font-weight: 500; letter-spacing: -0.01em; }

/* ==========================================================================
FAQ
========================================================================== */
#custom-dental-home .faq-section { padding: 6rem 0; background: var(--clr-cream); }
#custom-dental-home .faq-section__wrapper { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
#custom-dental-home .faq-section__heading { text-align: center; margin-bottom: 3rem; }
#custom-dental-home .faq-item { border-bottom: 1px solid rgba(4, 63, 34, 0.1); }
#custom-dental-home .faq-item__question { width: 100%; text-align: left; background: transparent; border: none; padding: 1.5rem 0; font-family: var(--font-primary); font-size: 1.2rem; font-weight: 500; letter-spacing: -0.01em; color: var(--clr-green); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
#custom-dental-home .faq-item__icon { position: relative; width: 16px; height: 16px; }
#custom-dental-home .faq-item__icon span { position: absolute; background: var(--clr-green); transition: var(--transition-smooth); }
#custom-dental-home .faq-item__icon span:first-child { width: 100%; height: 1px; top: 50%; left: 0; }
#custom-dental-home .faq-item__icon span:last-child { width: 1px; height: 100%; left: 50%; top: 0; }
#custom-dental-home .faq-item__question[aria-expanded="true"] .faq-item__icon span:last-child { transform: rotate(90deg); }
#custom-dental-home .faq-item__answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-smooth); }
#custom-dental-home .faq-item__answer p { padding-bottom: 1.5rem; opacity: 0.8; line-height: 1.6; font-weight: 400; font-size: 0.95rem; }

/* ==========================================================================
CTA
========================================================================== */
#custom-dental-home .cta-section { position: relative; padding: 6rem 0; background: var(--clr-green); color: var(--clr-cream); overflow: hidden; }
#custom-dental-home .cta-section__wrapper { max-width: 1400px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { #custom-dental-home .cta-section__wrapper { grid-template-columns: 1.2fr 1fr; } }
#custom-dental-home .cta-section__sub { font-size: 1rem; opacity: 0.8; margin-bottom: 2.5rem; max-width: 450px; font-weight: 400; }
#custom-dental-home .cta-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
#custom-dental-home .cta-form__input { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(253, 245, 224, 0.3); padding: 0.8rem 0; color: var(--clr-cream); font-family: var(--font-primary); font-size: 0.9rem; transition: var(--transition-fast); font-weight: 400;}
#custom-dental-home .cta-form__input:focus { outline: none; border-bottom-color: var(--clr-cream); }
#custom-dental-home .cta-form__input::placeholder { color: rgba(253, 245, 224, 0.5); }
#custom-dental-home .cta-form__select { cursor: pointer; }
#custom-dental-home .cta-form__select option { background: var(--clr-green); color: var(--clr-cream); }
#custom-dental-home .cta-form__textarea { resize: none; height: 80px; margin-bottom: 2.5rem; }
#custom-dental-home .cta-section__info { display: flex; flex-direction: column; gap: 2.5rem; padding-left: 2rem; border-left: 1px solid rgba(253, 245, 224, 0.1); }
#custom-dental-home .cta-info-item { display: flex; gap: 1.2rem; }
#custom-dental-home .cta-info-item__icon { width: 24px; color: var(--clr-cream); }
#custom-dental-home .cta-info-item strong { display: block; font-size: 1.1rem; margin-bottom: 0.3rem; font-weight: 500;}
#custom-dental-home .cta-info-item span { font-size: 0.9rem; opacity: 0.7; line-height: 1.5; font-weight: 400; }

/* ==========================================================================
GRAND FOOTER
========================================================================== */
#custom-dental-home .footer-grand { background-color: var(--clr-green-dark); color: var(--clr-cream); position: relative; overflow: hidden; padding-top: 6rem; }
#custom-dental-home .footer-grand__top { max-width: 1400px; margin: 0 auto; padding: 0 2rem; margin-bottom: 6rem; }
#custom-dental-home .footer-grand__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { #custom-dental-home .footer-grand__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
#custom-dental-home .footer-col { display: flex; flex-direction: column; gap: 0.8rem; }
#custom-dental-home .footer-tagline { font-size: 1.5rem; line-height: 1.3; margin-bottom: 1.5rem; color: var(--clr-accent); font-weight: 400; letter-spacing: -0.01em; }
#custom-dental-home .footer-socials { display: flex; gap: 1.2rem; }
#custom-dental-home .footer-socials a { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; position: relative; font-weight: 600;}
#custom-dental-home .footer-socials a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0%; height: 1px; background: currentColor; transition: width 0.3s ease; }
#custom-dental-home .footer-socials a:hover::after { width: 100%; }
#custom-dental-home .footer-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; opacity: 0.5; margin-bottom: 0.8rem; font-weight: 600; }
#custom-dental-home .footer-link, #custom-dental-home address { font-style: normal; font-size: 0.9rem; line-height: 1.6; opacity: 0.8; transition: opacity 0.3s ease; font-weight: 400; }
#custom-dental-home .footer-link:hover { opacity: 1; }
#custom-dental-home .footer-link-underline { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; border-bottom: 1px solid rgba(253, 245, 224, 0.3); padding-bottom: 0.4rem; width: fit-content; margin-top: 0.8rem; font-weight: 600; }
#custom-dental-home .footer-grand__massive { width: 100%; border-top: 1px solid rgba(253, 245, 224, 0.1); padding: 1.5rem 0; display: flex; overflow: hidden; }
#custom-dental-home .footer-grand__marquee { display: flex; white-space: nowrap; animation: marqueeLarge 30s linear infinite; }
#custom-dental-home .footer-grand__marquee span { font-size: 10vw; font-weight: 400; line-height: 0.8; letter-spacing: -0.04em; padding-right: 4vw; }
@keyframes marqueeLarge { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* TOAST */
#custom-dental-home .toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--clr-cream); color: var(--clr-green); padding: 0.8rem 1.5rem; border-radius: 100px; display: flex; align-items: center; gap: 0.8rem; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); transform: translateY(100px); opacity: 0; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); z-index: 99999; font-weight: 500; font-size: 0.85rem;}
#custom-dental-home .toast.show { transform: translateY(0); opacity: 1; }
#custom-dental-home .toast span { background: var(--clr-green); color: var(--clr-cream); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; }