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

body {
    background-color: #070B56;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.gold {
    color: #ffd700;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.section {
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .section {
        padding: 3rem 1rem;
    }
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 2rem;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.6);
}

/* ------------- compact navbar ------------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 2rem;
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 11, 86, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,215,0,0.15);
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.7rem 1rem;
    }
}

.logo h1 {
    font-size: 1.4rem;
    font-weight: 600;
    background: linear-gradient(145deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.1rem;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #f0f0ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.2s;
    border-bottom: 1px solid transparent;
    padding-bottom: 3px;
}

.nav-links a:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
    transition: transform 0.2s;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* buttons - slightly smaller */
.btn-primary {
    background: #ffd700;
    color: #070B56;
    border: none;
    padding: 0.8rem 2.2rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
    text-decoration: none;
    text-align: center;
}
.btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -5px #ffd70080;
}

.btn-outline {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffffff;
    padding: 0.8rem 2.2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}
.btn-outline:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
    color: #ffd700;
}

/* hero - more compact */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: radial-gradient(circle at 70% 30%, rgba(255,215,0,0.08), transparent 60%);
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 700;
    max-width: 900px;
    margin-bottom: 1.2rem;
    background: linear-gradient(145deg, #ffffff, #fff0b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.3rem;
    color: rgba(255,255,240,0.8);
    max-width: 750px;
    margin-bottom: 2.2rem;
}

@media (max-width: 640px) {
    .hero-sub {
        font-size: 1.1rem;
    }
}

.hero-badge {
    border: 1px solid rgba(255,215,0,0.5);
    border-radius: 60px;
    padding: 0.4rem 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
    font-weight: 500;
    letter-spacing: 1px;
    background: rgba(255,215,0,0.02);
    font-size: 0.9rem;
}

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

/* problem section - scaled down */
.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2.5rem;
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr !important;
        padding: 1.5rem;
    }
}

.problem-list {
    list-style: none;
}
.problem-list li {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    border-bottom: 1px dashed rgba(255,215,0,0.2);
    padding-bottom: 0.8rem;
}

@media (max-width: 480px) {
    .problem-list li {
        font-size: 1rem;
    }
}

.problem-list i {
    color: #ffd700;
    font-size: 1.5rem;
    width: 2rem;
    flex-shrink: 0;
}
.conclusion-highlight {
    background: rgba(255,215,0,0.08);
    padding: 1.5rem;
    border-radius: 1.5rem;
    border-left: 4px solid #ffd700;
    font-size: 1.2rem;
    font-weight: 500;
}

/* service cards - smaller */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.service-card {
    background: rgba(0,0,0,0.2);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255,215,0,0.15);
    transition: 0.2s;
    height: 100%;
}
.service-card:hover {
    background: rgba(255,215,0,0.05);
    border-color: #ffd700;
    transform: translateY(-5px);
}
.service-card i {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 1rem;
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}
.service-card p {
    color: #d4d4ff;
    font-size: 0.95rem;
}

/* approach cards - smaller */
.approach-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}
.approach-item {
    flex: 1 1 180px;
    background: rgba(7,11,86,0.7);
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255,215,0,0.2);
    transition: 0.2s;
    text-align: center;
}
.approach-item:hover {
    border-color: #ffd700;
    transform: translateY(-3px);
}
.approach-item i {
    font-size: 2.2rem;
    color: #ffd700;
}

/* impact stats - smaller */
.impact-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin: 3rem 0 1.5rem;
}
.stat {
    text-align: center;
    min-width: 140px;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(145deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2.8rem;
    }
    .stat-label {
        font-size: 1rem;
    }
}

/* ---------- BEAUTIFUL TESTIMONIAL CAROUSEL (REDESIGNED) ---------- */
.testimonial-carousel {
    position: relative;
    margin: 2rem auto 3rem;
    max-width: 900px;
    width: 100%;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.5);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.15, 1);
}

.testimonial-slide {
    flex: 0 0 100%;
    background: linear-gradient(135deg, rgba(20, 30, 120, 0.8), rgba(7, 11, 86, 0.95));
    border-radius: 2rem;
    padding: 2.5rem;
    border: 1px solid rgba(255,215,0,0.3);
    box-shadow: 0 0 30px rgba(255,215,0,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    text-align: center;
}

@media (max-width: 640px) {
    .testimonial-slide {
        padding: 1.8rem;
    }
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
}

.testimonial-slide p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f0f4ff;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

@media (max-width: 640px) {
    .testimonial-slide p {
        font-size: 1rem;
    }
}

.testimonial-author {
    font-weight: 700;
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-title {
    font-size: 0.9rem;
    color: #b7beff;
    margin-top: 0.2rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.4);
    color: #ffd700;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #ffd700;
    color: #070B56;
    border-color: #ffd700;
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,215,0,0.2);
    border: 1px solid rgba(255,215,0,0.4);
    cursor: pointer;
    transition: 0.2s;
}
.dot.active {
    background: #ffd700;
    transform: scale(1.3);
    box-shadow: 0 0 10px #ffd700;
}

/* ultragrace banner - smaller */
.ultragrace-banner {
    background: linear-gradient(145deg, #0a1070, #070B56);
    border-radius: 2.5rem;
    padding: 3rem 2rem;
    border: 2px solid #ffd70030;
    text-align: center;
}

@media (max-width: 640px) {
    .ultragrace-banner {
        padding: 2rem 1rem;
        border-radius: 1.5rem;
    }
    .ultragrace-banner h2 {
        font-size: 2.5rem;
    }
}

.ultragrace-banner small {
    color: #ffd700;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.ultragrace-banner h2 {
    font-size: 3rem;
}
.ultragrace-banner p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto;
}

/* consultation form - smaller */
.consultation-form {
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 2.5rem;
    border: 1px solid rgba(255,215,0,0.2);
    max-width: 700px;
    margin: 1.5rem auto;
}

@media (max-width: 640px) {
    .consultation-form {
        padding: 1.5rem;
    }
}

.form-group {
    margin-bottom: 1.2rem;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(7,11,86,0.7);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 2rem;
    font-size: 0.95rem;
    color: white;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #ffd700;
}

.form-group select option {
    background: #070B56;
    color: white;
}

/* FOOTER - more compact */
.footer {
    background: #070B56;
    border-top: 2px solid #ffd70020;
    padding: 3rem 2rem 1.5rem;
}
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

.footer-brand h2 {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}
.footer-brand p {
    color: #ccc;
    max-width: 250px;
    font-size: 0.95rem;
}
.footer-social {
    display: flex;
    gap: 1.5rem;
}
.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: 0.2s;
    opacity: 0.8;
}
.footer-social a:hover {
    color: #ffd700;
    opacity: 1;
    transform: translateY(-2px);
}
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #ddd;
    font-size: 0.9rem;
    flex-wrap: wrap;
}
.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #ffd700;
}
.footer-contact i {
    color: #ffd700;
    width: 1.2rem;
    flex-shrink: 0;
}
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,215,0,0.15);
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* responsive */
@media (max-width: 750px) {
    .navbar { padding: 0.7rem 1.2rem; }
    .logo h1 { font-size: 1.2rem; }
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        right: 1rem;
        left: 1rem;
        background: rgba(7,11,86,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1.5rem;
        border-radius: 1.2rem;
        flex-direction: column;
        gap: 1rem;
        border: 1px solid #ffd70040;
        z-index: 100;
    }
    .nav-links.show {
        display: flex;
    }
    .menu-toggle {
        display: block;
        font-size: 1.6rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-sub {
        font-size: 1.1rem;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        max-width: 280px;
    }
    .hero-buttons a {
        text-align: center;
    }
    .problem-grid {
        grid-template-columns: 1fr !important;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .service-card {
        padding: 1.5rem 1rem;
    }
    .service-card h3 {
        font-size: 1.3rem;
    }
    .approach-item {
        padding: 1.5rem 1rem;
    }
}