/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

:root {
    --primary-blue: #0066FF;
    --blue-light: #007FFF;
    --blue-dark: #2A52BE;
    --dark-text: #000000;
    --gray-text: #6b6b6b;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Be Vietnam Pro', 'Arial', sans-serif;
    background-color: #fafafa;
    background-image:
        linear-gradient(#e8e8e8 1px, transparent 1px),
        linear-gradient(90deg, #e8e8e8 1px, transparent 1px);
    background-size: 30px 30px;
    color: var(--dark-text);
    line-height: 1.6;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    min-width: 0;
    min-height: 100vh;
    position: relative;
}

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

hr {
    margin: 20px 0;
}

/* ============================================================
   FONTS
   ============================================================ */
.font-vietnam {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 600;
}

.font-inter {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

/* ============================================================
   ANNOUNCEMENT / TOP BANNER
   ============================================================ */
.top-banner,
.announcement-bar,
.top-bar {
    background: linear-gradient(90deg, var(--blue-light) 0%, var(--blue-dark) 100%);
    color: var(--white);
    padding: 10px 20px;
    text-align: center;
    font-size: 14px;
    width: 100%;
}

.top-bar {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 0 20px;
}

.top-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar .dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.top-banner .bullet {
    margin: 0 10px;
}

.announcement-bar p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
header,
.header {
    background-color: transparent;
    padding: 15px 50px;
    width: 100%;
    height: 149px;
    display: flex;
    align-items: center;
}

.header {
    height: auto;
    padding: 20px 0;
}

.header-content,
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: var(--white);
    padding: 15px 40px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* nav-wrapper uses grid layout from file 2 */
.nav-wrapper {
    width: 95%;
    margin: auto;
    border-radius: 12px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    padding: 15px 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

.left-section {
    display: flex;
    align-items: center;
    gap: 40px;
}

.auth-buttons,
.auth {
    display: flex;
    gap: 15px;
    align-items: center;
}

.logo img {
    height: 50px;
    width: 200px;
    object-fit: contain;
}

.footer-logo {
    height: 50px;
}

nav,
.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links {
    justify-content: center;
    gap: 50px;
}

nav a,
.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a {
    color: #000;
    font-size: 15px;
}

nav a:hover,
.nav-links a:hover {
    color: var(--primary-blue);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-signup,
.signup {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.signup {
    border: none;
    font-weight: 600;
    text-decoration: none;
    padding: 0;
}

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

.btn-login,
.login {
    background-color: var(--primary-blue);
    color: var(--white);
}

.login {
    padding: 8px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: none;
}

.btn-login:hover,
.login:hover {
    background-color: #0052CC;
}

/* ============================================================
   HAMBURGER MENU — hidden on desktop
   ============================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}
.hamburger.open {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    pointer-events: none;
}

.hamburger:hover {
    background: rgba(0, 102, 255, 0.08);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   MOBILE NAV DRAWER — hidden on desktop
   ============================================================ */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100dvh;
    background: var(--white);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 0;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav-drawer.open {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-header img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.mobile-nav-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.mobile-nav-close:hover {
    background: #e8e8e8;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    flex: 1;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 24px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-links a:hover {
    background: #f0f6ff;
    color: var(--primary-blue);
}

.mobile-nav-links a:last-child {
    border-bottom: none;
}

.mobile-nav-auth {
    padding: 20px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid #f0f0f0;
}

.mobile-nav-auth .btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 8px;
}

.mobile-nav-auth .btn-signup {
    border: 1.5px solid var(--primary-blue);
    color: var(--primary-blue);
}

.mobile-nav-auth .btn-login {
    background: var(--primary-blue);
    color: var(--white);
}

body.nav-open {
    overflow: hidden;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    padding: 60px 0;
    text-align: center;
    color: #333;
    position: relative;
    overflow: visible;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 1150px;
    height: 723px;
    margin: 0 auto;
    background-image: url('../img/background_lawbook.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 40px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero (file 2 — about page) */
.hero {
    padding: 80px 100px;
    text-align: center;
}

.hero-content.about-hero {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.hero-text h1 {
    font-size: 60px;
}

.hero-text span {
    color: var(--blue-light);
}

.hero-cards {
    position: relative;
    width: 500px;
    height: 500px;
    right: 100px;
}

.hero-card {
    background: white;
    border-radius: 20px;
    position: absolute;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-cards .hero-card:nth-child(1) {
    width: 55%;
    height: 50%;
    top: 0;
    left: 16px;
    z-index: 1;
}

.hero-cards .hero-card:nth-child(2) {
    width: 48%;
    height: 67%;
    top: 0;
    right: -50px;
    z-index: 1;
}

.hero-cards .hero-card:nth-child(3) {
    width: 80%;
    height: 53%;
    top: 283px;
    left: -59px;
    z-index: 2;
}

.hero-cards .hero-card:nth-child(4) {
    width: 47%;
    height: 50%;
    bottom: -105px;
    right: -91px;
    z-index: 1;
}

/* Simple page hero */
.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 1px;
    color: #000;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #000;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.master-badge {
    display: inline-block;
    width: 400px;
    text-align: center;
    background: linear-gradient(90deg, #BBDEFB 0%, var(--white) 100%);
    color: var(--primary-blue);
    padding: 10px 35px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 25px;
    border: 2px solid var(--primary-blue);
}

.hero-section h1 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #000;
    line-height: 1.2;
}

.hero-section .subtitle {
    font-size: 25px;
    margin-bottom: 30px;
    color: #333;
}

.enrollment-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
}

.enrollment-stats .stat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #333;
}

.enrollment-stats .stat svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.law-book-container {
    position: relative;
    margin: 0px auto 30px;
    width: 275px;
    height: 275px;
    z-index: 3;
}

.law-book-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 10px 20px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 20px 15px;
    color: white;
    text-align: left;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.feature-card-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}

.feature-card-text {
    display: flex;
    flex-direction: column;
}

.feature-card-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
}

.feature-card-value {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    padding: 80px 100px;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.about-left {
    width: 40%;
}

.about-left h4 {
    font-size: 35px;
    font-weight: 500;
    color: var(--blue-light);
    margin-bottom: 10px;
}

.about-left h1 {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-left p {
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    text-align: justify;
}

.about-right {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 0px 4px 3px rgba(0, 127, 255, 0.25);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon {
    width: 40px;
    height: 40px;
}

.icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-content h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why {
    padding: 50px 0;
}

.why h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
}

.why span {
    color: var(--blue-light);
}

.why-grid {
    background: white;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.why-card {
    background: white;
    padding: 30px;
    text-align: center;
}

/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.founder-section {
    width: 100%;
    padding: 80px 100px;
    display: flex;
    justify-content: center;
}

.founder-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.founder-content {
    width: 540px;
}

.founder-content h2 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 25px;
}

.founder-content h2 span {
    color: var(--blue-light);
}

.founder-content p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 19px;
    line-height: 26px;
    margin-bottom: 22px;
    color: #000;
}

.founder-content .second {
    font-weight: 500;
}

/* ============================================================
   PROBLEMS SECTION
   ============================================================ */
.problems-section {
    padding: 80px 100px;
}

.problems-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.problem-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.solution-box {
    background: linear-gradient(135deg, #1E90FF 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.solution-box h3 {
    font-size: 32px;
    margin-bottom: 30px;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.topic-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
}

.highlight {
    position: relative;
    display: inline-block;
}

.underline-img {
    position: absolute;
    left: -40px;
    bottom: -40px;
    width: 120%;
    height: 100%;
}

/* New problems layout */
.problems-container {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.problems-left-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.topics-badges-grid {
    flex: 1;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    background: linear-gradient(180deg, #E5F2FF 0%, var(--white) 100%);
    padding: 30px;
    border-radius: 20px;
    justify-items: start;
}

.topic-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 26px;
    font-weight: 500;
    color: #000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.topic-badge-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.confused-box {
    padding: 40px 10px;
    border-radius: 20px;
}

.confused-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #000;
    font-weight: 700;
}

.confused-box p {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
}

.problems-right-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.studying-box {
    background: linear-gradient(135deg, #F5F5F5 0%, var(--white) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #E0E0E0;
    display: flex;
    flex-wrap: wrap;
}

.studying-box h2 {
    width: 100%;
    font-size: 20px;
    margin-bottom: 30px;
    color: #000;
    font-weight: 500;
    text-align: center;
}

.studying-box-content {
    display: flex;
    gap: 20px;
}

.features-checklist {
    flex: 0 0 60%;
}

.features-checklist li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 6px 0;
    font-size: 16px;
    color: #000;
}

.features-checklist li:last-child {
    border-bottom: none;
}

.features-checklist li svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.simple-learning-badge {
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #E5F2FF 0%, var(--white) 100%);
    border-radius: 15px;
    border: 2px solid #E0E0E0;
    text-align: center;
    flex: 0 0 40%;
    flex-direction: column;
}

.simple-learning-badge svg {
    width: 60%;
    height: 60%;
    flex-shrink: 0;
}

.simple-learning-badge strong {
    font-size: 18px;
    color: #000;
}

.problem-cards-row {
    height: 25%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 20px;
}

.small-problem-card-left {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    border: 3px solid var(--primary-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px;
    box-sizing: border-box;
}

.small-problem-card-right {
    background: linear-gradient(180deg, #E5F2FF 0%, var(--white) 100%);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: start;
    min-height: 200px;
    box-sizing: border-box;
}

.small-problem-card-right p {
    width: 100%;
    margin: 0;
    font-size: clamp(18px, 3vw, 28px);
    line-height: 1.2;
}

.small-problem-card .card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    color: #000;
}

.small-problem-card p {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
    padding: 80px 100px;
}

.blue-wave {
    background-image: url("../img/blue_wave.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    text-align: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.features-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white);
}

.features-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    padding: 50px 0px 0px 0px;
}

.features-left h2 {
    color: #000000;
}

.features-left p {
    padding: 20px;
    color: #000000;
    text-align: justify;
    text-align-last: justify;
    font-size: 20px;
    font-weight: 600;
}

.video-player {
    width: 90%;
    border-radius: 50px;
}

.feature-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    padding-top: 30px;
}

.feature-item {
    background: var(--white);
    border-radius: 18px;
    border: 2px solid #1a2eff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-item__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 22px 24px;
    cursor: pointer;
    gap: 12px;
}

.feature-item__meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item__label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #111;
}

.feature-item__label .divider {
    display: inline-block;
    width: 2px;
    height: 22px;
    background: #000000;
}

.feature-item__title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}

.feature-item__toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.feature-item__toggle svg {
    width: 20px;
    height: 20px;
    stroke: #111;
    stroke-width: 2;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.feature-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.feature-item__body-inner {
    padding: 0 24px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-item__check {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #111;
    line-height: 1.4;
    font-weight: 600;
}

.feature-item__check svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    stroke: #111;
    stroke-width: 2.2;
}

.feature-item.open .feature-item__body {
    max-height: 400px;
}

.icon-plus { display: block; }
.icon-x { display: none; }

.feature-item.open .icon-plus { display: none; }
.feature-item.open .icon-x { display: block; }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-title {
    font-weight: 600;
    font-size: 45px;
    line-height: 57px;
    color: var(--blue-light);
    margin-bottom: 10px;
}

.testimonials-subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    color: #000000;
    margin-bottom: 50px;
}

.testimonials-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.testimonials-container {
    display: flex;
    gap: 30px;
    padding: 0 40px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.testimonial-card {
    background: linear-gradient(180deg, #EAF4FF 0%, var(--white) 100%);
    border-radius: 20px;
    padding: 35px 28px 30px;
    min-width: 380px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.testimonial-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.55;
    text-align: justify;
    color: #000000;
    margin-bottom: 40px;
    flex: 1;
}

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

.author-avatar {
    width: 68px;
    height: 68px;
    background-image: url("../img/userimg.png");
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    overflow: visible;
}

.author-avatar::after {
    content: '';
    width: 13px;
    height: 13px;
    background: #2BEF83;
    border-radius: 50%;
    position: absolute;
    bottom: 2px;
    right: 2px;
    border: 1.5px solid #fff;
}

.author-info h4 {
    font-weight: 700;
    font-size: 19px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 4px;
}

.author-info p {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    color: #444;
}

.carousel-dots-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
}

.carousel-dots {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border-radius: 50px;
    padding: 14px 28px;
}

.dot {
    width: 16px;
    height: 16px;
    background: #D9D9D9;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    flex-shrink: 0;
}

.dot.active {
    background: var(--blue-light);
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #000;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.carousel-btn svg {
    width: 18px;
    height: 18px;
    stroke: #000;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits-section {
    display: flex;
    align-items: center;
    padding: 80px 200px;
    gap: 60px;
}

.benefits-left {
    flex: 1;
    min-width: 0;
}

.benefits-left img {
    width: 100%;
    height: auto;
    display: block;
}

.benefits-right {
    flex: 1;
    min-width: 0;
}

.benefits-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: #111;
    margin-bottom: 40px;
}

.benefits-heading .highlight {
    color: var(--blue-light);
}

.benefit-item {
    margin-bottom: 32px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 15px;
    font-weight: 400;
    color: #444;
    line-height: 1.6;
    max-width: 420px;
}

/* ============================================================
   PRIVACY / TERMS PAGE
   ============================================================ */
.privacy-rectangle {
    margin: 50px auto;
    width: 90%;
    max-width: 1245px;
    background: var(--white);
    border-radius: 20px;
    padding: 60px 80px;
    box-sizing: border-box;
}

.privacy-section-block {
    margin-bottom: 48px;
}

.privacy-section-block:last-child {
    margin-bottom: 0;
}

.consent-title {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 600;
    font-size: 35px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 16px;
}

.consent-text {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 40px;
}

.intro-title {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 32px;
    color: #000;
    margin-bottom: 12px;
}

.community-title,
.edu-title,
.eligibility-title,
.conduct-title,
.payments-title,
.ip-title,
.conf-title,
.privacy-title,
.liability-title,
.termination-title,
.law-title,
.changes-title {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 600;
    font-size: 25px;
    line-height: 32px;
    color: #000;
    margin-bottom: 12px;
}

.intro-text,
.community-text,
.edu-text,
.eligibility-text,
.conduct-text,
.payments-text,
.ip-text,
.conf-text,
.privacy-text,
.liability-text,
.termination-text,
.law-text,
.changes-text {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.7;
    color: #000;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
    padding: 60px 20px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-heading {
    text-align: center;
    margin-bottom: 12px;
}

.pricing-heading h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0D0D0D;
    line-height: 1.2;
    margin-bottom: 10px;
}

.pricing-heading p {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 1.5;
}

.plan-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 10px;
    background: #E3F1FF;
    width: fit-content;
    margin: 28px auto 48px;
}

.switcher-btn {
    height: 36px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: background 0.2s;
}

.switcher-btn.active {
    background: var(--white);
    box-shadow: inset 0 -2px 2px rgba(10, 16, 50, 0.07), 0 3px 6px rgba(7, 0, 110, 0.03);
}

.badge {
    background: #CDE6FF;
    color: #007BFF;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 6px;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 1.5px solid #E8EAF0;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: #C8DEFF;
    box-shadow: 0 0 28px rgba(0, 127, 255, 0.12);
}

.card-header {
    padding: 32px 28px 28px;
    border-bottom: 1.5px solid #F0F2F8;
    background: #fff;
}

.pricing-card.featured .card-header {
    background: linear-gradient(180deg, #EAF4FF 0%, var(--white) 50%, var(--white) 100%);
}

.plan-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.plan-title {
    font-size: 22px;
    font-weight: 600;
    color: #170F49;
}

.popular-badge {
    background: var(--blue-light);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 200px;
    white-space: nowrap;
}

.pricing {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 16px;
}

.price {
    font-size: 60px;
    font-weight: 700;
    color: #170F49;
    line-height: 1;
}

.period {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 400;
    color: #999;
    padding-bottom: 8px;
    line-height: 1.4;
}

.plan-description {
    font-size: 14px;
    color: #555;
    line-height: 1.55;
    margin-bottom: 24px;
}

.plan-btn {
    width: 100%;
    padding: 15px 20px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    background: var(--white);
    border: 1.5px solid #D0D3E0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s;
}

.plan-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.featured-btn {
    background: var(--blue-light);
    border-color: var(--blue-light);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 127, 255, 0.35);
}

.featured-btn:hover {
    background: #0066CC;
    border-color: #0066CC;
}

.card-features {
    padding: 24px 28px 32px;
    flex: 1;
}

.card-features h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}

.features-subtitle-price {
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
}

.features-list-price {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features-list-price li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #222;
    line-height: 1.4;
}

.check-icon,
.cross-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
}

.check-icon {
    background: #16A34A;
    color: var(--white);
}

.cross-icon {
    background: #C0C0C0;
    color: var(--white);
}

.feature-excluded .feature-text {
    text-decoration: line-through;
    color: #aaa;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    padding: 80px 100px;
}

.faq-container {
    display: grid;
    grid-template-columns: 389px 600px;
    justify-content: space-between;
    gap: 60px;
    align-items: start;
}

.faq-header h2 {
    margin: 0;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 600;
    font-size: 45px;
    line-height: 57px;
    color: #000;
}

.faq-header h2.faq-title-highlight {
    color: var(--blue-light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    box-shadow: 0px 0px 4px 2px var(--blue-light);
    border-radius: 20px;
    min-height: 125px;
    padding: 23px 28px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.question-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.question-content svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.faq-question p {
    margin: 0;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    color: #000;
}

.expand-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: transparent;
    font-size: 28px;
    color: #1C1B1F;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.expand-btn:hover {
    transform: scale(1.1);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-main {
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 40px;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.contact-header p {
    font-size: 16px;
    color: var(--gray-text);
    font-weight: 400;
}

.contact-container {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0px 0px 60px 30px rgba(0, 0, 0, 0.03);
    display: grid;
    grid-template-columns: 491px 1fr;
    overflow: hidden;
    min-height: 667px;
    max-width: 1196px;
    margin: 0 auto;
}

.contact-info-panel {
    background: var(--blue-light);
    color: var(--white);
    padding: 40px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: 491px;
    height: 647px;
}

.contact-info-panel h2 {
    font-family: 'Be Vietnam Pro', 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 8px;
}

.panel-subtitle {
    font-family: 'Be Vietnam Pro', 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 19px;
    margin-bottom: 100px;
    opacity: 1;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 120px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item span {
    font-family: 'Be Vietnam Pro', 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 19px;
}

.contact-item.address span {
    line-height: 1.8;
}

.social-icons {
    display: flex;
    gap: 24px;
    bottom: 40px;
    left: 40px;
    z-index: 2;
}

.social-icons a {
    margin-right: 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    transition: background 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.9);
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    z-index: 1;
}

.circle-two {
    width: 138px;
    height: 138px;
    left: 283px;
    top: 438px;
}

.circle-three {
    width: 269px;
    height: 269px;
    left: 311px;
    top: 464px;
}

.contact-form-panel {
    padding: 50px 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label,
.form-group-full label {
    font-family: 'Be Vietnam Pro', 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    color: #8D8D8D;
    margin-bottom: 8px;
}

.form-group input,
.form-group-full textarea {
    border: none;
    border-bottom: 1px solid #8D8D8D;
    padding: 10px 0;
    font-family: 'Be Vietnam Pro', 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #000000;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group-full textarea:focus {
    border-bottom-color: #000000;
}

.form-group input::placeholder,
.form-group-full textarea::placeholder {
    font-family: 'Be Vietnam Pro', 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #8D8D8D;
}

.form-group-full {
    display: flex;
    flex-direction: column;
}

.form-group-full > label {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #000000;
}

.radio-group {
    display: flex;
    gap: 30px;
    margin-top: 16px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: #000000;
}

.radio-label input[type="radio"] {
    width: 13px;
    height: 13px;
    border: 2px solid #E0E0E0;
    cursor: pointer;
    appearance: none;
    border-radius: 50%;
    position: relative;
}

.radio-label input[type="radio"]:checked {
    background: #000000;
    border-color: #000000;
}

.radio-label input[type="radio"]:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 9px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.form-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

.submit-btn {
    background: var(--blue-light);
    color: var(--white);
    border: none;
    padding: 15px 48px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.12);
    width: 214px;
    height: 54px;
    text-align: center;
}

.submit-btn:hover {
    background: #0066CC;
}

/* ============================================================
   FOOTER
   ============================================================ */

/* Global container utility */
.container {
    width: 85%;
    margin: auto;
}

.footer {
    background: var(--white);
    padding: 60px 0 30px;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.footer .container {
    width: 85%;
    margin: auto;
}

.footer-left {
    max-width: 600px;
}

/* Logo image inside footer-left (file 3 specific sizing) */
.footer-left img.logo {
    height: 72px;
    width: 300px;
    object-fit: contain;
}

.footer .logo img {
    height: 50px;
    width: 200px;
    object-fit: contain;
}

.footer-left p {
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.6;
}

.footer-right h4 {
    margin-bottom: 15px;
}

/* Social icons inside footer-right */
.footer-right .social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-right .social-icons a {
    margin-right: 0;
}

.footer hr,
hr {
    border: 1px solid #000;
    margin: 20px 0;
}

footer {
    background-color: #F5F5F5;
    padding: 40px 100px 20px;
    width: 100%;
    min-height: 475px;
}

.footer-content {
    max-width: 100%;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 72px;
    width: 300px;
    object-fit: contain;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.social-section {
    text-align: right;
}

.social-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-icons img,
.footer-social-icons a img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s;
}

.footer-social-icons a:hover img {
    transform: scale(1.1);
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 25px 0;
   
    margin: 40px 0 20px;
}

.footer-links a {
    color: var(--blue-light);
    text-decoration: underline;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #0052CC;
}

.footer-bottom {
    text-align: left;
    color: #263238;
    font-size: 14px;
    padding-top: 20px;
}

/* Privacy */
.privacy-hero {
    text-align: center;
    padding: 10px 10px 0px;
}

.privacy-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 1px;
    color: #000;
    
}

.privacy-hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #000;   /* soft gray text like image */
    max-width: 600px; /* keeps text centered and readable */
    margin: 0 auto;
    line-height: 1.6;
    
}
/* Rectangle 1287 */
.privacy-rectangle{
    margin: 50px auto;
    width: 1245px;
    /* height: 3215px; */
    background: #FFFFFF;
    border-radius: 20px;
}

/* Consent Title */
.consent-title{

    font-family: 'Be Vietnam Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 35px;
    line-height: 100%;

    color: #000000;
    margin-bottom: 15px;
}

/* Consent Paragraph */
.consent-text{

    font-family: 'Be Vietnam Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;

    color: #000000;
    margin: 0;
}

/* Introduction Title */
.intro-title{

    font-family: 'Be Vietnam Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 32px;

    color: #000000;
    margin-top: 15px;
    margin-bottom: 10px;
}

/* Introduction Text */
.intro-text{

    font-family: 'Be Vietnam Pro';
    font-style: normal;
    font-weight: 400;   /* NORMAL TEXT */
    font-size: 20px;
    line-height: 25px;

    color: #000000;
    margin: 0;
}

/* Community Guidelines Title */
.pages-common-title{

    font-family: 'Be Vietnam Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 32px;
    margin-bottom: 7px;
    margin-top: 20px;

    color: #000000;
    /* margin: 0; */
}

/* Community Guidelines Text */
.pages-common-text{

    font-family: 'Be Vietnam Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 10px;
    margin-top: 10px;

    color: #000000;
    /* margin: 0; */
}


/* ============================================================
   UTILITY
   ============================================================ */
.hero-section,
.problems-section,
.features-section,
.testimonials-section,
.benefits-section,
.pricing-section,
.faq-section,
.contact-main,
footer {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.testimonials-wrapper {
    overflow: hidden;
    width: 100%;
}

/* ============================================================
   LARGE TABLET  (≤ 1200px)
   ============================================================ */
@media (max-width: 1200px) {
    .hero-section {
        min-height: 850px;
        padding: 40px 20px;
    }

    .hero-container {
        width: 95%;
        height: auto;
        min-height: 650px;
        background-size: cover;
    }

    .hero-section h1 {
        font-size: 36px;
    }

    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonials-container {
        gap: 20px;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================================================
   FAQ TABLET  (≤ 992px)
   ============================================================ */
@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-header h2 {
        font-size: 36px;
        line-height: 45px;
    }

    .hero-content,
    .about-content {
        flex-direction: column;
    }

    .about-left,
    .about-right {
        width: 100%;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   TABLET  (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    header {
        padding: 10px 20px;
        height: auto;
    }

    .header-content {
        padding: 12px 20px;
        gap: 16px;
    }

    .left-section {
        gap: 24px;
    }

    nav {
        gap: 24px;
    }

    nav a {
        font-size: 14px;
    }

    .hero-container {
        max-width: 100%;
        height: auto;
        min-height: 600px;
        padding: 24px 20px 16px;
    }

    .hero-section h1 {
        font-size: 26px;
    }

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

    .master-badge {
        width: auto;
        max-width: 100%;
        font-size: 13px;
        padding: 8px 24px;
    }

    .law-book-container {
        width: 220px;
        height: 220px;
    }

    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .problems-section {
        padding: 60px 40px;
    }

    .problems-container {
        flex-direction: column;
        gap: 30px;
    }

    .problems-left-panel,
    .problems-right-panel {
        width: 100%;
    }

    .topic-badge-item {
        font-size: 20px;
    }

    .features-section {
        padding: 60px 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-player {
        width: 100%;
        border-radius: 24px;
    }

    .feature-right {
        max-width: 100%;
        margin-left: 0;
    }

    .benefits-section {
        padding: 60px 60px;
    }

    .benefits-heading {
        font-size: 38px;
    }

    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .faq-header h2 {
        font-size: 38px;
        line-height: 1.3;
    }

    .testimonial-card {
        min-width: 320px;
        max-width: 320px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        width: 100%;
        height: auto;
        padding: 40px 30px;
        min-height: 400px;
    }

    .panel-subtitle {
        margin-bottom: 60px;
    }

    .contact-details {
        margin-bottom: 80px;
    }

    .contact-form-panel {
        padding: 40px 30px;
    }

    .radio-group {
        flex-direction: column;
        gap: 16px;
    }

    .privacy-rectangle {
        width: 95%;
        padding: 40px 30px;
    }

    .consent-title {
        font-size: 28px;
    }

    .community-title,
    .edu-title,
    .eligibility-title,
    .conduct-title,
    .payments-title,
    .ip-title,
    .conf-title,
    .privacy-title,
    .liability-title,
    .termination-title,
    .law-title,
    .changes-title,
    .intro-title {
        font-size: 20px;
    }

    .consent-text,
    .intro-text,
    .community-text,
    .edu-text,
    .eligibility-text,
    .conduct-text,
    .payments-text,
    .ip-text,
    .conf-text,
    .privacy-text,
    .liability-text,
    .termination-text,
    .law-text,
    .changes-text {
        font-size: 17px;
    }
}

/* ============================================================
   TABLET  (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .mobile-nav-overlay {
        display: block;
    }

    header nav,
    header .auth-buttons {
        display: none !important;
    }

    .top-banner,
    .announcement-bar {
        font-size: 11px;
        padding: 8px 12px;
        line-height: 1.5;
    }

    .top-banner .bullet {
        margin: 0 6px;
    }

    header {
        padding: 8px 16px;
        height: auto;
    }

    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        border-radius: 14px;
    }

    .left-section {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .logo img {
        height: 38px;
        width: 150px;
    }

    .hero-section {
        padding: 20px 12px;
        min-height: unset;
    }

    .hero-container {
        width: 100%;
        height: auto;
        min-height: unset;
        padding: 24px 16px 16px;
        border-radius: 16px;
    }

    .master-badge {
        width: auto;
        font-size: 12px;
        padding: 8px 20px;
        margin-bottom: 16px;
    }

    .hero-section h1 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .hero-section .subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .enrollment-stats {
        flex-direction: column;
        gap: 14px;
        margin-bottom: 20px;
    }

    .enrollment-stats .stat {
        font-size: 15px;
        justify-content: center;
    }

    .law-book-container {
        width: 160px;
        height: 160px;
        margin-bottom: 20px;
    }

    .feature-cards {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .feature-card {
        padding: 14px 10px;
        gap: 10px;
    }

    .feature-card-icon {
        width: 28px;
        height: 28px;
    }

    .feature-card-title {
        font-size: 11px;
    }

    .feature-card-value {
        font-size: 16px;
    }

    .problems-section {
        padding: 40px 16px;
    }

    .problems-section h2 {
        font-size: 26px !important;
        margin-bottom: 36px;
        text-align: center;
    }

    .problems-container {
        flex-direction: column;
        gap: 24px;
    }

    .topics-badges-grid {
        padding: 20px 16px;
        gap: 10px;
    }

    .topic-badge-item {
        font-size: 16px;
        padding: 10px 14px;
        gap: 8px;
    }

    .topic-badge-item svg {
        width: 20px;
        height: 20px;
    }

    .confused-box {
        padding: 24px 8px;
    }

    .confused-box h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .confused-box p {
        font-size: 16px;
    }

    .studying-box {
        padding: 24px 16px;
    }

    .studying-box h2 {
        font-size: 16px !important;
        margin-bottom: 20px;
    }

    .studying-box-content {
        flex-direction: column;
        gap: 20px;
    }

    .features-checklist {
        flex: unset;
        width: 100%;
    }

    .features-checklist li {
        font-size: 14px;
        gap: 10px;
    }

    .simple-learning-badge {
        flex: unset;
        width: 100%;
        padding: 20px;
        flex-direction: row;
        gap: 16px;
        justify-content: flex-start;
        align-items: center;
    }

    .simple-learning-badge svg {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .simple-learning-badge strong {
        font-size: 15px;
        text-align: left;
    }

    .problem-cards-row {
        grid-template-columns: 1fr;
        gap: 14px;
        height: auto;
    }

    .small-problem-card-left,
    .small-problem-card-right {
        min-height: 140px;
        padding: 20px;
    }

    .small-problem-card-left svg {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }

    .small-problem-card-left p,
    .small-problem-card-right p {
        font-size: 16px !important;
    }

    .features-section {
        padding: 40px 16px;
    }

    .blue-wave {
        height: auto;
        min-height: 220px;
        padding: 32px 20px;
        background-size: cover;
    }

    .features-section h2 {
        font-size: 22px !important;
        margin-bottom: 12px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 0 0;
    }

    .features-left h2 {
        font-size: 26px !important;
    }

    .features-left p {
        font-size: 16px;
        padding: 12px 0;
    }

    .video-player {
        width: 100%;
        border-radius: 16px;
    }

    .feature-right {
        max-width: 100%;
        margin-left: 0;
    }

    .feature-item__header {
        padding: 16px;
    }

    .feature-item__title {
        font-size: 15px;
    }

    .feature-item__body-inner {
        padding: 0 16px 16px;
    }

    .plan-switcher {
        flex-direction: column;
        gap: 10px;
    }

    .switcher-btn {
        width: 100%;
        justify-content: center;
    }

    .privacy-rectangle {
        width: 100%;
        padding: 30px 20px;
        margin: 20px auto;
        border-radius: 12px;
    }

    .consent-title {
        font-size: 22px;
    }

    .community-title,
    .edu-title,
    .eligibility-title,
    .conduct-title,
    .payments-title,
    .ip-title,
    .conf-title,
    .privacy-title,
    .liability-title,
    .termination-title,
    .law-title,
    .changes-title,
    .intro-title {
        font-size: 18px;
    }

    .consent-text,
    .intro-text,
    .community-text,
    .edu-text,
    .eligibility-text,
    .conduct-text,
    .payments-text,
    .ip-text,
    .conf-text,
    .privacy-text,
    .liability-text,
    .termination-text,
    .law-text,
    .changes-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .privacy-section-block {
        margin-bottom: 32px;
    }

    .testimonials-section {
        padding: 40px 12px;
    }

    .testimonials-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .testimonials-subtitle {
        font-size: 16px;
    }

    .testimonials-container {
        padding: 0 16px;
        gap: 16px;
    }

    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 24px 20px 20px;
        min-height: unset;
    }

    .testimonial-text {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .author-avatar {
        width: 52px;
        height: 52px;
    }

    .author-info h4 {
        font-size: 16px;
    }

    .author-info p {
        font-size: 14px;
    }

    .carousel-dots {
        gap: 10px;
        padding: 12px 20px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    .benefits-section {
        flex-direction: column;
        padding: 40px 16px;
        gap: 32px;
    }

    .benefits-left,
    .benefits-right {
        width: 100%;
        flex: unset;
    }

    .benefits-heading {
        font-size: 32px;
        margin-bottom: 28px;
    }

    .benefit-item h3 {
        font-size: 17px;
    }

    .benefit-item p {
        font-size: 14px;
        max-width: 100%;
    }

    .pricing-section {
        padding: 40px 16px 60px;
    }

    .pricing-heading h2 {
        font-size: 26px !important;
    }

    .pricing-heading p {
        font-size: 14px;
    }

    .plan-switcher {
        margin: 20px auto 32px;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 480px;
        margin: 0 auto;
    }

    .price {
        font-size: 48px;
    }

    .card-header {
        padding: 24px 20px 20px;
    }

    .card-features {
        padding: 20px 20px 24px;
    }

    .faq-section {
        padding: 40px 16px;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq-header h2 {
        font-size: 30px !important;
        line-height: 1.3;
    }

    .faq-item {
        min-height: unset;
        padding: 18px 20px;
        border-radius: 14px;
    }

    .question-content svg {
        width: 30px;
        height: 30px;
    }

    .faq-question p {
        font-size: 15px;
        line-height: 1.4;
    }

    .expand-btn {
        width: 28px;
        height: 28px;
        font-size: 22px;
    }

    .contact-main {
        margin: 40px auto;
        padding: 0 20px;
    }

    .contact-header h1 {
        font-size: 36px;
    }

    .contact-header p {
        font-size: 14px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        width: 100%;
        height: auto;
        padding: 30px 25px;
        min-height: 360px;
    }

    .panel-subtitle {
        margin-bottom: 40px;
    }

    .contact-details {
        gap: 30px;
        margin-bottom: 60px;
    }

    .contact-form-panel {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .radio-group {
        flex-direction: column;
        gap: 16px;
    }

    footer {
        padding: 32px 16px 16px;
        min-height: unset;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer .container {
        width: 95%;
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-logo img {
        height: 54px;
        width: 220px;
    }

    .footer .logo img {
        height: 38px;
        width: 160px;
    }

    .footer-left img.logo {
        height: 54px;
        width: 220px;
    }

    .footer-left {
        max-width: 100%;
    }

    .footer-left p {
        font-size: 15px;
    }

    .footer-right {
        width: 100%;
    }

    .footer-right .social-icons {
        gap: 10px;
    }

    .footer-right .social-icons img {
        width: 30px;
        height: 30px;
    }

    .footer-description {
        font-size: 14px;
    }

    .social-section {
        text-align: left;
    }

    .footer-social-icons {
        justify-content: flex-start;
    }

    .footer-social-icons a img {
        width: 30px;
        height: 30px;
    }

    .footer-social p {
        text-align: left;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 12px 20px;
        padding: 16px 0;
        margin: 24px 0 16px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 11px;
    }

    .footer .container,
    .container {
        width: 95%;
    }

    .problems-grid,
    .curriculum-grid,
    .benefits-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    h2 {
        font-size: 28px !important;
    }
}

/* ============================================================
   SMALL MOBILE  (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 19px;
    }

    .hero-section .subtitle {
        font-size: 13px;
    }

    .master-badge {
        font-size: 11px;
        padding: 7px 16px;
    }

    .law-book-container {
        width: 130px;
        height: 130px;
    }

    .feature-cards {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .feature-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 10px;
        gap: 6px;
    }

    .feature-card-value {
        font-size: 14px;
    }

    .problems-section h2 {
        font-size: 22px !important;
    }

    .topic-badge-item {
        font-size: 14px;
        padding: 8px 12px;
    }

    .confused-box h3 {
        font-size: 19px;
    }

    .confused-box p {
        font-size: 14px;
    }

    .testimonials-title {
        font-size: 22px;
    }

    .testimonial-card {
        min-width: 260px;
        max-width: 260px;
    }

    .carousel-dots {
        gap: 8px;
        padding: 10px 14px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
    }

    .benefits-heading {
        font-size: 26px;
    }

    .pricing-heading h2 {
        font-size: 22px !important;
    }

    .price {
        font-size: 40px;
    }

    .plan-title {
        font-size: 18px;
    }

    .faq-header h2 {
        font-size: 24px !important;
    }

    .faq-question p {
        font-size: 14px;
    }

    .contact-header h1 {
        font-size: 28px;
    }

    .submit-btn {
        width: 100%;
    }

    .form-submit {
        justify-content: stretch;
    }

    .announcement-bar p {
        font-size: 12px;
    }
}

/* ============================================================
   SMALL PHONES  (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn {
        padding: 8px 18px;
        font-size: 14px;
    }

    nav a {
        font-size: 14px;
    }

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

    .hero-text h1 {
        font-size: 40px;
    }

    .privacy-rectangle {
        padding: 24px 16px;
        border-radius: 10px;
    }

    .consent-title {
        font-size: 20px;
    }

    .community-title,
    .edu-title,
    .eligibility-title,
    .conduct-title,
    .payments-title,
    .ip-title,
    .conf-title,
    .privacy-title,
    .liability-title,
    .termination-title,
    .law-title,
    .changes-title,
    .intro-title {
        font-size: 16px;
        line-height: 1.4;
    }

    .consent-text,
    .intro-text,
    .community-text,
    .edu-text,
    .eligibility-text,
    .conduct-text,
    .payments-text,
    .ip-text,
    .conf-text,
    .privacy-text,
    .liability-text,
    .termination-text,
    .law-text,
    .changes-text {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* ============================================================
   EXTRA SMALL  (≤ 360px)
   ============================================================ */
@media (max-width: 360px) {
    .hero-section h1 {
        font-size: 17px;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .topic-badge-item {
        font-size: 13px;
    }

    .testimonial-card {
        min-width: 240px;
        max-width: 240px;
    }

    .pricing-container {
        max-width: 100%;
    }
}

/* ============================================================
   BETWEEN TABLET AND DESKTOP  (769px – 1200px)
   ============================================================ */
@media (max-width: 1200px) and (min-width: 769px) {
    header {
        width: 100%;
        padding: 15px 30px;
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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


/* =======================
   About Hero Section
======================= */
.about-hero {
    padding: 35px 40px 60px;
    
}

.about-hero .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Text */
.about-hero-text h1 {
    font-size: 60px;
    line-height: 1.2;
}

.about-hero-text span {
    color: #007FFF;
}

/* Cards Container */
.about-hero-cards {
    position: relative;
    width: 500px;
    height: 500px;
    right: 100px;
}

/* Common Card Style */
.about-hero-card {
    background: white;
    border-radius: 20px;
    position: absolute;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Card Positions */
.about-hero-cards .about-hero-card:nth-child(1) {
    width: 55%;
    height: 50%;
    top: 0;
    left: 16px;
    z-index: 1;
}

.about-hero-cards .about-hero-card:nth-child(2) {
    width: 48%;
    height: 67%;
    top: 0;
    right: -50px;
    z-index: 1;
}

.about-hero-cards .about-hero-card:nth-child(3) {
    width: 80%;
    height: 53%;
    top: 283px;
    left: -59px;
    z-index: 2;
}

.about-hero-cards .about-hero-card:nth-child(4) {
    width: 47%;
    height: 50%;
    bottom: -105px;
    right: -91px;
    z-index: 1;
}

/* =======================
   TABLET (≤1024px)
======================= */
@media (max-width: 1024px) {

    .about-hero {
        padding: 60px 40px;
    }

    .about-hero .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .about-hero-text h1 {
        font-size: 48px;
    }

    .about-hero-cards {
        width: 420px;
        height: 420px;
    }
}

/* =======================
   MOBILE (≤768px)
======================= */
@media (max-width: 768px) {

    .about-hero {
        padding: 50px 20px;
    }

    .about-hero-text h1 {
        font-size: 36px;
    }

    .about-hero-cards {
        width: 300px;
        height: 300px;
        transform: scale(0.9);
    }
}

/* =======================
   SMALL MOBILE (≤480px)
======================= */
@media (max-width: 480px) {

    .about-hero-text h1 {
        font-size: 30px;
    }

    .about-hero-cards {
        width: 260px;
        height: 260px;
        transform: scale(0.8);
    }
}
