
:root {
    --primary: #8B1E3F;
    --primary-dark: #6B1530;
    --secondary: #D4A843;
    --secondary-light: #F0D78C;
    --accent: #C75B39;
    --dark: #1A1A2E;
    --light: #FFF8F0;
    --text: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --gradient-start: #8B1E3F;
    --gradient-end: #C75B39;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

html {
    scroll-padding-top: 92px;
}

#our-policies,
#terms-conditions,
#disclaimer,
#refund-policy,
#privacy-policy,
#payment-terms,
#code-of-conduct,
#liability-jurisdiction {
    scroll-margin-top: 92px;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 50%;
}

.logo-text {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    padding: 22px 16px;
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover, nav ul li a.active {
    background: rgba(255,255,255,0.1);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after, nav ul li a.active::after {
    width: 60%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(139,30,63,0.85), rgba(199,91,57,0.85)),
                url('assets/site/banner-hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 40px 20px;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.hero .tagline {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
}

.hero-badge i {
    font-size: 1.3rem;
    color: var(--secondary);
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
}

.btn-primary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,168,67,0.4);
}

.btn[disabled] {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    margin-left: 15px;
}

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

/* Section Styles */
section {
    padding: 80px 20px;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139,30,63,0.12);
}

.service-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
}

.service-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #FFF8F0, #FFF0E0);
}

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

.about-institution-grid {
    align-items: stretch;
}

.about-principles-card {
    background: var(--white);
    border: 1px solid rgba(139,30,63,0.1);
    border-radius: 12px;
    padding: 34px;
    box-shadow: 0 16px 38px rgba(84,42,22,0.08);
}

.about-principles-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.about-principles-card ul {
    list-style: none;
    display: grid;
    gap: 14px;
}

.about-principles-card li {
    color: var(--text-light);
    line-height: 1.7;
    padding-left: 28px;
    position: relative;
}

.about-principles-card li::before {
    content: '✦';
    color: var(--secondary);
    position: absolute;
    left: 0;
    top: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.about-content .subtitle {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-content p {
    color: var(--text);
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 1rem;
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 50px 20px;
    color: var(--white);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Courses Section */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139,30,63,0.12);
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-art {
    min-height: 230px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 35%, rgba(255,255,255,0.74), transparent 32%),
        radial-gradient(circle at 14% 18%, rgba(139,30,63,0.12), transparent 18%),
        radial-gradient(circle at 86% 18%, rgba(139,30,63,0.12), transparent 18%),
        linear-gradient(135deg, #f8e7b8, #fff4cf 42%, #e8c178);
}

.course-art::before,
.course-art::after {
    content: '';
    position: absolute;
    top: 20px;
    width: 44px;
    height: 44px;
    border: 3px double rgba(139,30,63,0.55);
    transform: rotate(45deg);
    background: rgba(255,250,236,0.62);
}

.course-art::before {
    left: 26px;
}

.course-art::after {
    right: 26px;
}

.course-art-symbol {
    color: #111;
    font-size: 6.4rem;
    line-height: 1;
    transform: translateY(-16px);
    text-shadow: 0 1px 0 rgba(255,255,255,0.65);
}

.course-art-band {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 68px;
    background: linear-gradient(135deg, #7f162d, #9d2635);
    color: var(--white);
    text-align: center;
    font-size: 1.18rem;
    line-height: 1.25;
    font-weight: 800;
}

.course-art-band::before,
.course-art-band::after {
    content: 'ॐ';
    width: 38px;
    height: 38px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f6e0aa;
    color: var(--primary);
    font-size: 0.95rem;
    box-shadow: inset 0 0 0 2px rgba(139,30,63,0.14);
}

.course-art-band::before {
    left: 18px;
}

.course-art-band::after {
    right: 18px;
}

.course-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.course-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.course-enroll {
    width: 100%;
    margin-top: auto;
    text-align: center;
    justify-content: center;
}

/* App Section */
.app-section {
    background: linear-gradient(135deg, var(--dark), #2D2D44);
    color: var(--white);
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.app-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

.app-features {
    list-style: none;
    margin-bottom: 30px;
}

.app-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-features li::before {
    content: '✦';
    color: var(--secondary);
    font-size: 1.2rem;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.download-header-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.download-header-actions .app-btn {
    background: var(--white);
    color: var(--dark);
    box-shadow: 0 12px 26px rgba(0,0,0,0.16);
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.app-screenshots {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-screenshots > img {
    height: 450px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.app-screenshots > img:hover {
    transform: scale(1.05);
}

.download-phone-grid {
    gap: 28px;
    margin-top: 42px;
    align-items: flex-start;
}

.download-phone-frame {
    position: relative;
    width: min(29vw, 285px);
    min-width: 230px;
    aspect-ratio: 854 / 1498;
    margin: 0;
    padding: 10px;
    border-radius: 38px;
    background: linear-gradient(145deg, rgba(28,27,47,0.98), rgba(76,74,96,0.95));
    box-shadow: 0 28px 70px rgba(31, 11, 21, 0.22);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 34%;
    height: 32px;
    transform: translateX(-50%);
    border-radius: 0 0 18px 18px;
    background: #050505;
    z-index: 2;
}

.download-phone-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 28px;
    background: var(--white);
}

.download-phone-frame:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 84px rgba(31, 11, 21, 0.28);
}

.download-app-intro {
    max-width: 920px;
    margin: 0 auto;
}

.download-app-intro .app-content {
    text-align: left;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary);
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.7;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    color: var(--primary);
    font-size: 1rem;
}

.testimonial-author-info p {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* FAQ Section */
.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-detail i {
    color: var(--accent);
    font-size: 1.3rem;
    margin-top: 3px;
}

.contact-detail div h4 {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 3px;
}

.contact-detail div p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Booking Section */
.booking-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.booking-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--secondary);
}

.booking-panel-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF4E3, #F8D97B);
    color: var(--primary);
    font-size: 2.6rem;
    border: 4px solid var(--secondary);
}

.booking-card h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.booking-card .role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.booking-card .description {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.booking-features {
    text-align: left;
    background: #fafafa;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.booking-features li {
    padding: 8px 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.booking-features li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
}

.booking-payment-status {
    display: none;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 10px;
    line-height: 1.5;
    font-weight: 500;
}

.booking-payment-status.active {
    display: block;
}

.booking-payment-status.info {
    background: #FFF4E3;
    border-left: 4px solid var(--secondary);
    color: var(--text);
}

.booking-payment-status.success {
    background: #EAF7EE;
    border-left: 4px solid #28a745;
    color: #155724;
}

.booking-payment-status.error {
    background: #FFF1F0;
    border-left: 4px solid #C75B39;
    color: #7A1F12;
}

/* Policies */
.policies-detail-section {
    background: #FFFCF1;
    padding: 20px 0 40px;
}

.policies-detail-container {
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
}

.policies-detail-title {
    margin: 10px 0 30px;
    font-family: Georgia, serif;
    color: #3E3A36;
    font-size: 2.8rem;
}

.policy-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.policy-card h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-card h4 {
    color: var(--primary);
    margin-bottom: 12px;
}

.policy-card p, .policy-card ul {
    color: var(--text-light);
    line-height: 1.7;
}

.policy-card ul {
    padding-left: 20px;
}

.policy-card ul li {
    margin-bottom: 8px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139,30,63,0.12);
}

.blog-card-thumb {
    height: 200px;
    overflow: hidden;
    background: #f8edd8;
    border-bottom: 1px solid rgba(139,30,63,0.08);
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-thumb img {
    transform: scale(1.04);
}

.blog-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card .date {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-card h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-card-read {
    display: inline-flex;
    margin-top: auto;
    color: var(--accent);
    font-weight: 800;
}

.blog-article-hero {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 76px 20px 64px;
}

.blog-article-hero .section-container {
    max-width: 920px;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.86);
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 24px;
}

.blog-back-link:hover {
    color: var(--secondary-light);
}

.blog-article-kicker {
    color: var(--secondary-light);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.blog-article-hero h1 {
    font-size: clamp(2.3rem, 5vw, 4.1rem);
    line-height: 1.08;
    margin-bottom: 18px;
}

.blog-article-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.12rem;
    line-height: 1.8;
}

.blog-article-section {
    background: #fffaf2;
    padding: 54px 20px 76px;
}

.blog-article-card {
    max-width: 920px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid rgba(139,30,63,0.08);
    border-radius: 16px;
    padding: clamp(28px, 5vw, 54px);
    box-shadow: 0 18px 48px rgba(84,42,22,0.09);
}

.blog-article-card h2 {
    color: var(--primary);
    font-size: 1.65rem;
    margin: 32px 0 12px;
}

.blog-article-card h2:first-child {
    margin-top: 0;
}

.blog-article-card p,
.blog-article-card li {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.82;
}

.blog-article-card p {
    margin-bottom: 16px;
}

.blog-article-card ul {
    margin: 0 0 20px 22px;
}

.blog-callout {
    background: #fff4df;
    border-left: 4px solid var(--secondary);
    padding: 20px 22px;
    border-radius: 10px;
    margin: 28px 0;
}

.blog-callout strong {
    color: var(--primary);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) minmax(120px, 0.65fr) minmax(120px, 0.65fr) minmax(380px, 1.35fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 15px;
    border-radius: 50%;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-col h4 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

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

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

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

.social-links a:hover {
    background: var(--secondary);
    color: var(--dark);
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .app-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 84px;
    }

    #our-policies,
    #terms-conditions,
    #disclaimer,
    #refund-policy,
    #privacy-policy,
    #payment-terms,
    #code-of-conduct,
    #liability-jurisdiction {
        scroll-margin-top: 84px;
    }

    .hero-bg {
        background-image:
            linear-gradient(135deg, rgba(139,30,63,0.85), rgba(199,91,57,0.85)),
            url('assets/site/banner-hero.jpg');
    }

    .home-hero::before {
        background-image:
            linear-gradient(90deg, rgba(31, 11, 21, 0.94) 0%, rgba(87, 25, 44, 0.88) 48%, rgba(31, 11, 21, 0.74) 100%),
            url('assets/site/banner-hero.jpg');
        background-position: center top;
    }

    .mobile-menu-btn { display: block; }
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
        flex-direction: column;
    }
    nav ul.active { display: flex; }
    nav ul li a { padding: 15px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .hero h1 { font-size: 2.2rem; }
    .hero .tagline { font-size: 1rem; }
    .section-title { font-size: 1.8rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .app-screenshots > img { height: 350px; }
    .download-phone-grid { gap: 18px; }
    .download-phone-frame {
        width: min(72vw, 265px);
        min-width: 210px;
    }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.8rem; }
    .course-art { min-height: 215px; }
    .course-art-symbol { font-size: 5.6rem; }
    .course-art-band {
        font-size: 1rem;
        padding: 12px 58px;
    }
    .course-art-band::before,
    .course-art-band::after {
        width: 32px;
        height: 32px;
        font-size: 0.82rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 80px 20px 60px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ============================================
   V2 INSPIRED ENHANCEMENTS
   ============================================ */

/* Sanskrit symbols styling */
.sanskrit-symbol {
    font-family: 'Noto Serif Devanagari', 'Georgia', serif;
    font-size: 1.2em;
    line-height: 1;
}

/* Section tagline */
.section-tagline {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
}

/* How It Works Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 15px;
}

.step-card h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Choose Us - Numbered Cards */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139,30,63,0.1);
}

.why-card::before {
    content: attr(data-number);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.15;
    line-height: 1;
}

.why-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.why-card h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* App CTA Section */
.app-cta-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.app-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.app-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.app-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.app-cta-content .tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.app-cta-content .feature-highlight {
    background: rgba(255,255,255,0.15);
    padding: 20px 30px;
    border-radius: 15px;
    margin: 30px 0;
    border: 1px solid rgba(255,255,255,0.2);
}

.app-cta-content .feature-highlight h3 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.app-cta-content .feature-highlight p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Real contact details in footer */
.footer-contact-real {
    color: rgba(255,255,255,0.8) !important;
}

.footer-contact-real li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact-real li i {
    flex: 0 0 auto;
    margin-right: 0 !important;
    margin-top: 3px;
}

.footer-contact-real a {
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.footer-contact-real a:hover {
    color: var(--secondary) !important;
}

/* Social links with real URLs */
.social-real {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

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

.social-real a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Responsive for new sections */
@media (max-width: 992px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
}

/* Homepage redesign */
.home-main {
    background: #fffaf2;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.home-hero {
    position: relative;
    min-height: 66vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 72px 20px 42px;
    overflow: hidden;
    isolation: isolate;
}

.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(31, 11, 21, 0.94) 0%, rgba(87, 25, 44, 0.88) 48%, rgba(31, 11, 21, 0.74) 100%),
        url('assets/site/banner-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.home-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(180deg, rgba(255,250,242,0), #fffaf2);
    z-index: -1;
}

.home-hero-inner {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
}

.home-kicker {
    color: var(--secondary-light);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2.6px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.home-hero h1,
.home-method-copy h2,
.home-final-cta h2,
.home-app-copy h2 {
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: 0;
}

.home-hero h1 {
    max-width: 760px;
    font-size: clamp(2.9rem, 7vw, 5.7rem);
    line-height: 0.95;
    margin-bottom: 16px;
    text-shadow: 0 18px 42px rgba(0,0,0,0.34);
}

.home-hero-lede {
    max-width: 660px;
    font-size: 1.18rem;
    line-height: 1.78;
    color: rgba(255,255,255,0.92);
    margin-bottom: 30px;
}

.home-hero-actions,
.home-final-cta .app-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.home-hero-actions .btn {
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    margin-left: 0;
}

.btn-soft {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border-color: rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
}

.btn-soft:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.55);
}

.home-proof-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.home-proof-row span {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 8px;
    color: #ffffff;
    background: rgba(31, 11, 21, 0.55);
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
    backdrop-filter: blur(8px);
}

.home-proof-row strong {
    color: #ffd86b;
    font-size: 1.1rem;
}

.home-trust-band {
    padding: 0 20px 28px;
    background: #fffaf2;
}

.home-trust-grid {
    max-width: 1120px;
    margin: -18px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(82, 39, 27, 0.12);
    border: 1px solid rgba(139,30,63,0.08);
}

.home-trust-grid div {
    min-height: 96px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    color: var(--primary);
    font-weight: 800;
}

.home-trust-grid i {
    color: #1f7a75;
    font-size: 1.25rem;
}

.home-section {
    padding: 82px 20px;
}

.home-section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
}

.home-section-heading .section-title {
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: 0;
}

.home-services-showcase {
    background: #fffaf2;
}

.home-service-grid,
.home-value-grid,
.home-process-grid,
.home-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.home-service-card,
.home-value-card,
.home-process-grid article,
.home-testimonial-card {
    border-radius: 8px;
    border: 1px solid rgba(139,30,63,0.09);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(69, 31, 21, 0.07);
}

.home-service-card {
    min-height: 280px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-service-card:hover,
.home-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(139,30,63,0.13);
}

.home-service-card > i {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff2d6;
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 22px;
}

.home-service-card h3,
.home-value-card h3,
.home-process-grid h3 {
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.home-service-card p,
.home-value-card p,
.home-process-grid p,
.home-testimonial-card p {
    color: var(--text-light);
    line-height: 1.72;
}

.home-service-card a,
.home-text-link {
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
    margin-top: auto;
}

.home-service-card a:hover,
.home-text-link:hover {
    color: var(--primary);
}

.home-app-showcase {
    background: #1f1d2f;
    color: var(--white);
    padding: 90px 20px;
    overflow: hidden;
}

.home-app-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 58px;
    align-items: center;
}

.home-app-copy .section-tagline,
.home-final-cta .section-tagline {
    text-align: left;
    color: var(--secondary-light);
}

.home-app-copy h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.04;
    margin-bottom: 20px;
}

.home-app-copy p {
    color: rgba(255,255,255,0.78);
    font-size: 1.08rem;
    line-height: 1.78;
    margin-bottom: 24px;
}

.home-app-points {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.home-app-points span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
}

.home-app-points i {
    color: var(--secondary);
}

.home-phone-gallery {
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.phone-tall {
    width: min(43%, 265px);
    max-height: 540px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(0,0,0,0.45);
    border: 8px solid rgba(255,255,255,0.13);
}

.phone-offset {
    transform: translateY(42px);
}

.home-app-showcase .app-btn,
.home-final-cta .app-btn {
    border-radius: 8px;
    padding: 12px 18px;
}

.home-why-section {
    background: #fffdf8;
}

.home-value-card {
    padding: 28px;
    min-height: 236px;
}

.home-lineage-panel {
    margin-top: 30px;
    padding: 30px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffffff, #fff5e7);
    border: 1px solid rgba(139,30,63,0.1);
    box-shadow: 0 16px 38px rgba(84,42,22,0.08);
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 28px;
    align-items: center;
}

.home-lineage-panel .section-tagline {
    text-align: left;
    margin-bottom: 8px;
}

.home-lineage-panel h3 {
    color: var(--primary);
    font-size: 1.55rem;
    margin-bottom: 12px;
}

.home-lineage-panel p {
    color: var(--text-light);
    line-height: 1.75;
}

.home-lineage-tags,
.method-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-lineage-tags span,
.method-tags-grid span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 13px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(139,30,63,0.11);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.88rem;
}

.home-value-card span,
.home-process-grid span {
    color: #1f7a75;
    font-weight: 900;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 18px;
}

.home-method-section {
    background: #f8eee2;
    padding: 90px 20px;
}

.about-lineage-section {
    background:
        linear-gradient(180deg, #fffaf2 0%, #fff4e5 100%);
    overflow: hidden;
}

.lineage-carousel-shell {
    margin-top: 42px;
}

.lineage-carousel-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 16px;
}

.lineage-carousel-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(139,30,63,0.18);
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(84,42,22,0.09);
    transition: all 0.25s ease;
}

.lineage-carousel-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.lineage-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(310px, 410px);
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    padding: 4px 4px 18px;
}

.lineage-carousel::-webkit-scrollbar {
    height: 8px;
}

.lineage-carousel::-webkit-scrollbar-track {
    background: rgba(139,30,63,0.08);
    border-radius: 999px;
}

.lineage-carousel::-webkit-scrollbar-thumb {
    background: rgba(139,30,63,0.3);
    border-radius: 999px;
}

.lineage-slide {
    position: relative;
    min-height: 390px;
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid rgba(139,30,63,0.1);
    box-shadow: 0 18px 42px rgba(84,42,22,0.12);
}

.lineage-photo {
    display: flex;
    align-items: flex-end;
    color: var(--white);
    background: #2d1f1a;
}

.lineage-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lineage-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31,11,21,0.06) 0%, rgba(31,11,21,0.38) 45%, rgba(31,11,21,0.9) 100%);
}

.lineage-slide-copy {
    position: relative;
    z-index: 1;
    padding: 28px;
}

.lineage-slide span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.lineage-slide h3 {
    font-size: 1.45rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.lineage-slide p {
    line-height: 1.7;
    font-size: 0.98rem;
}

.lineage-credential {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,246,232,0.95)),
        linear-gradient(135deg, rgba(139,30,63,0.1), rgba(229,184,84,0.18));
}

.lineage-credential h3 {
    color: var(--primary);
}

.lineage-credential p {
    color: var(--text-light);
}

.lineage-image-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.lineage-image-frame {
    height: 205px;
    background: #fff6e8;
    border-bottom: 1px solid rgba(139,30,63,0.08);
}

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

.lineage-image-frame-contain {
    background: linear-gradient(135deg, #ffe0b8, #fff3da);
}

.lineage-image-frame-contain img {
    object-fit: contain;
}

.lineage-image-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    padding: 26px 28px 28px;
}

.lineage-image-copy h3 {
    color: var(--primary);
}

.lineage-image-copy p {
    color: var(--text-light);
}

.lineage-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(139,30,63,0.1);
    color: var(--primary);
    font-size: 1.45rem;
    margin-bottom: 24px;
}

.lineage-proof-grid {
    margin-top: 36px;
}

.method-tags-grid {
    justify-content: center;
    max-width: 980px;
    margin: 42px auto 0;
}

.home-method-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 62px;
    align-items: center;
}

.home-method-copy h2 {
    color: var(--primary);
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1.02;
    margin-bottom: 10px;
}

.home-method-title {
    color: #1f7a75;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.home-method-copy p {
    max-width: 690px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.04rem;
}

.home-method-cards {
    display: grid;
    gap: 16px;
}

.home-method-cards article {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(139,30,63,0.08);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 14px 34px rgba(100,42,30,0.08);
}

.home-method-cards span {
    color: #1f7a75;
    font-weight: 900;
    display: inline-block;
    margin-bottom: 8px;
}

.home-method-cards h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.home-method-cards p {
    color: var(--text-light);
    line-height: 1.7;
}

.home-process-section {
    background: var(--white);
}

.home-process-grid article {
    padding: 26px;
    min-height: 215px;
    background: linear-gradient(180deg, #ffffff, #fff8ef);
}

.home-testimonials-section {
    background: #fffaf2;
    padding: 88px 20px;
}

.home-testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
}

.home-testimonial-card {
    padding: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-testimonial-card p {
    font-size: 1rem;
    margin-bottom: 26px;
}

.home-testimonial-card div {
    display: flex;
    align-items: center;
    gap: 0;
}

.home-testimonial-card span {
    color: var(--text-light);
    display: grid;
    font-size: 0.9rem;
}

.home-testimonial-card strong {
    color: var(--primary);
}

.home-final-cta {
    background:
        linear-gradient(90deg, rgba(31, 11, 21, 0.9), rgba(139,30,63,0.82)),
        url('assets/site/banner-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 84px 20px;
}

.home-final-cta .section-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.home-final-cta h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.06;
    max-width: 680px;
}

@media (max-width: 1050px) {
    .home-service-grid,
    .home-value-grid,
    .home-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-app-grid,
    .home-method-grid,
    .home-lineage-panel {
        grid-template-columns: 1fr;
    }

    .home-phone-gallery {
        min-height: auto;
    }
}

@media (max-width: 820px) {
    .home-hero {
        min-height: 66vh;
        padding: 58px 20px 42px;
    }

    .home-hero h1 {
        font-size: clamp(3rem, 15vw, 5.2rem);
    }

    .home-hero-lede {
        font-size: 1.02rem;
    }

    .home-trust-grid,
    .home-testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-app-showcase,
    .home-method-section,
    .home-testimonials-section {
        padding: 70px 20px;
    }

    .phone-tall {
        width: min(46%, 220px);
    }

    .lineage-carousel {
        grid-auto-columns: minmax(280px, 78vw);
    }

    .lineage-slide {
        min-height: 360px;
    }
}

@media (max-width: 620px) {
    .home-hero-actions .btn,
    .home-hero-actions {
        width: 100%;
    }

    .home-hero-actions .btn {
        justify-content: center;
    }

    .home-proof-row span {
        width: 100%;
    }

    .home-proof-row {
        display: grid;
        gap: 10px;
    }

    .home-trust-grid,
    .home-service-grid,
    .home-value-grid,
    .home-process-grid,
    .home-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .home-section {
        padding: 64px 20px;
    }

    .home-phone-gallery {
        gap: 12px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 12px;
    }

    .phone-tall {
        width: 78%;
        min-width: 210px;
    }

    .phone-offset {
        transform: translateY(0);
    }

    .home-final-cta .app-buttons,
    .home-final-cta .app-btn {
        width: 100%;
    }

    .home-lineage-panel {
        padding: 24px;
    }

    .lineage-carousel-actions {
        justify-content: center;
    }

    .lineage-carousel {
        grid-auto-columns: minmax(260px, 86vw);
    }

    .lineage-slide-copy,
    .lineage-credential,
    .lineage-image-copy {
        padding: 24px;
    }

    .lineage-image-frame {
        height: 190px;
    }

    .home-lineage-tags span,
    .method-tags-grid span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}


/* Standalone legal pages */
.legal-hero {
    background: linear-gradient(135deg, rgba(139,30,63,0.95), rgba(199,91,57,0.9));
    color: var(--white);
    padding: 70px 20px 60px;
}

.legal-hero-inner {
    max-width: 900px;
    text-align: center;
}

.legal-hero h1 {
    font-size: 2.8rem;
    line-height: 1.15;
    margin: 10px 0 14px;
}

.legal-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255,255,255,0.9);
    font-size: 1.08rem;
}

.legal-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.26);
    color: var(--secondary);
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.legal-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 24px;
}

.legal-back-link:hover {
    color: var(--secondary-light);
}

.legal-section {
    background: #FFFCF1;
    padding: 48px 20px 70px;
}

.legal-layout {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.legal-sidebar {
    position: sticky;
    top: 90px;
    background: var(--white);
    border: 1px solid rgba(139,30,63,0.08);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.legal-sidebar h2 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 14px;
}

.legal-sidebar nav {
    display: grid;
    gap: 6px;
}

.legal-sidebar a {
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.legal-sidebar a:hover,
.legal-sidebar a.active {
    background: #FFF4E3;
    color: var(--primary);
}

.legal-card {
    background: var(--white);
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.07);
    border: 1px solid rgba(139,30,63,0.08);
}

.legal-card h2,
.legal-card h3 {
    color: var(--primary);
    font-size: 1.65rem;
    margin-bottom: 16px;
}

.legal-card h4 {
    color: var(--primary);
    margin-bottom: 12px;
}

.legal-card p,
.legal-card li {
    color: var(--text-light);
    line-height: 1.75;
}

.legal-card p {
    margin-bottom: 12px;
}

.legal-card ul {
    margin: 0 0 16px 22px;
}

.legal-card a {
    color: var(--accent);
    font-weight: 600;
}

.legal-request-form {
    margin: 26px 0;
}

.legal-request-form button {
    border: 0;
}

.legal-note {
    background: #FFF4E3;
    border-left: 4px solid var(--secondary);
    padding: 16px 18px;
    border-radius: 10px;
}

.hidden-field {
    display: none;
}

.legal-thanks-card .btn {
    margin-top: 14px;
}

@media (max-width: 900px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        position: static;
    }
}

@media (max-width: 560px) {
    .legal-hero h1 {
        font-size: 2rem;
    }

    .legal-card {
        padding: 24px;
    }
}
