/* ============================================
   DESTOLOLABS - CONTENT PAGES STYLES
   One Toolkit. Endless Possibilities.
   Version: 3.0 - Optimized
============================================ */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #F7F6F3;
    color: #222;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, .logo, .footer-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    border: none;
    background: none;
}

img, canvas, svg, video, iframe {
    max-width: 100%;
    height: auto;
}

/* ===== HEADER ===== */
.header {
    background: #fff;
    border-bottom: 1px solid #E7E4DF;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 max(20px, 5%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 600;
    color: #071F32;
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
}

.logo span {
    color: #D6B18A;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    color: #222;
    font-weight: 500;
    transition: color .2s;
    font-size: .95rem;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: #D6B18A;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #D6B18A;
    border-radius: 2px;
}

.auth {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.btn-auth {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: .95rem;
    transition: all .2s;
    font-family: 'Inter', sans-serif;
}

.btn-signin {
    background: #fff;
    border: 1px solid #071F32;
    color: #071F32;
}

.btn-signin:hover {
    background: #F7F6F3;
    border-color: #D6B18A;
    color: #041826;
}

.btn-signup {
    background: #071F32;
    color: #fff;
    border: none;
}

.btn-signup:hover {
    background: #041826;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(7, 31, 50, .12);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: #071F32;
    padding: 8px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #071F32;
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: .95rem;
    transition: all .2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #041826;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(7, 31, 50, .15);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    border: 2px solid #071F32;
    color: #071F32;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: .95rem;
    transition: all .2s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #F7F6F3;
    border-color: #D6B18A;
    color: #041826;
}

/* ===== MAIN CONTAINER ===== */
.main-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px max(20px, 5%);
    overflow-x: hidden;
}

/* ===== TWO-COLUMN LAYOUT ===== */
.layout-grid-two-col {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    width: 100%;
    overflow: hidden;
}

/* ===== SIDEBAR ===== */
.sidebar-card {
    background: #fff;
    border: 1px solid #E7E4DF;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    width: 100%;
    overflow: hidden;
}

.sidebar-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: #071F32;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card h3 i {
    color: #D6B18A;
}

.sidebar-right {
    width: 100%;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-number {
    width: 28px;
    height: 28px;
    background: #F7F6F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .75rem;
    color: #D6B18A;
    flex-shrink: 0;
}

.step-text {
    font-size: .8rem;
    color: #6A6A6A;
}

.related-list,
.tips-list {
    list-style: none;
}

.related-list li,
.tips-list li {
    margin-bottom: 12px;
}

.related-list a {
    color: #6A6A6A;
    font-size: .85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color .2s;
}

.related-list a i {
    color: #D6B18A;
    font-size: .7rem;
    flex-shrink: 0;
}

.related-list a:hover {
    color: #D6B18A;
}

.tips-list li {
    font-size: .8rem;
    color: #6A6A6A;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tips-list li i {
    color: #D6B18A;
    width: 18px;
    flex-shrink: 0;
}

/* ===== TOOL AREA ===== */
.tool-area {
    width: 100%;
    min-width: 0;
}

.tool-card {
    background: #fff;
    border: 1px solid #E7E4DF;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    min-width: 0;
}

.tool-header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid #E7E4DF;
}

.tool-badge-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.tool-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F7F6F3;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 600;
    color: #D6B18A;
    letter-spacing: .5px;
}

.tool-badge-free {
    background: #E8F5E9;
    color: #2E7D32;
}

.tool-badge-free i {
    color: #2E7D32;
}

.tool-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    color: #071F32;
}

.tool-description {
    color: #6A6A6A;
    font-size: .9rem;
    line-height: 1.6;
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
    padding: 32px;
}

.legal-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #E7E4DF;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Icon + Heading in SAME LINE */
.legal-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.legal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #071F32;
    border-radius: 12px;
    flex-shrink: 0;
}

.legal-icon i {
    font-size: 1.1rem;
    color: #fff;
}

.legal-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #071F32;
    margin: 0;
}

.legal-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #071F32;
    margin: 16px 0 8px;
}

.legal-section p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: .95rem;
}

.legal-section ul {
    list-style: none;
    padding: 0;
}

.legal-section ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #444;
    line-height: 1.6;
    font-size: .95rem;
    border-bottom: 1px solid #F0F0F0;
}

.legal-section ul li:last-child {
    border-bottom: none;
}

.legal-section ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #D6B18A;
    font-weight: 700;
}

/* ===== HIGHLIGHT SECTION ===== */
.highlight-section {
    background: #F7F6F3;
    padding: 28px 32px;
    border-left: 4px solid #D6B18A;
    border-radius: 16px;
    margin-bottom: 32px;
}

.highlight-section .legal-icon {
    background: #D6B18A;
}

.highlight-section .legal-icon i {
    color: #071F32;
}

/* ===== DATA FLOW ===== */
.data-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 20px 0;
}

.data-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
    background: #F7F6F3;
    border-left: 3px solid #D6B18A;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
}

.data-step.last-step {
    border-left-color: #2E7D32;
}

.data-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #D6B18A;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: .8rem;
    flex-shrink: 0;
}

.data-location {
    font-size: .7rem;
    font-weight: 600;
    color: #A8A49C;
    background: #fff;
    padding: 2px 10px;
    border-radius: 20px;
}

.data-arrow i {
    color: #A8A49C;
    font-size: 1rem;
}

/* ===== FAQ ===== */
.faq-section {
    margin-top: 64px;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    font-weight: 500;
    margin-bottom: 12px;
    color: #071F32;
}

.faq-header p {
    color: #6A6A6A;
    font-size: .9rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-card {
    background: #fff;
    border: 1px solid #E7E4DF;
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: .9rem;
    transition: background .2s;
    color: #071F32;
    background: #FAFAFA;
}

.faq-question:hover {
    background: #F7F6F3;
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question span i {
    color: #D6B18A;
    font-size: 1.1rem;
}

.faq-chevron {
    transition: transform .25s;
    color: #A8A49C;
}

.faq-chevron.rotated {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    color: #444;
    font-size: .9rem;
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s ease;
}

.faq-answer.open {
    max-height: 300px;
    padding: 0 24px 20px;
}

/* ===== MOBILE PRO TIPS ===== */
.mobile-pro-tips {
    display: none;
    margin-top: 24px;
    padding: 20px;
    background: #fff;
    border: 1px solid #E7E4DF;
    border-radius: 16px;
}

.mobile-pro-tips h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #071F32;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-pro-tips h3 i {
    color: #D6B18A;
}

.tips-grid-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tip-item-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .8rem;
    color: #6A6A6A;
    padding: 8px 12px;
    background: #F7F6F3;
    border-radius: 12px;
}

.tip-item-mobile i {
    color: #D6B18A;
    width: 20px;
    flex-shrink: 0;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: #fff;
    box-shadow: -8px 0 40px rgba(0, 0, 0, .08);
    z-index: 2000;
    transition: right .35s cubic-bezier(.2, .9, .4, 1.1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid #E7E4DF;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 16px;
}

.mobile-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #071F32;
}

.mobile-logo span {
    color: #D6B18A;
}

.close-menu {
    font-size: 1.4rem;
    color: #6A6A6A;
    padding: 8px;
}

.mobile-menu-divider {
    height: 1px;
    background: #E7E4DF;
    margin: 0 24px;
}

.mobile-nav-list {
    list-style: none;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-list>li>a {
    font-size: 1rem;
    font-weight: 500;
    color: #222;
    display: block;
    padding: 8px 0;
    transition: color .2s;
}

.mobile-nav-list>li>a:hover {
    color: #D6B18A;
}

.mobile-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-weight: 600;
    color: #071F32;
    cursor: pointer;
    font-size: .95rem;
}

.mobile-category-header i:first-child {
    margin-right: 12px;
    color: #D6B18A;
    width: 24px;
}

.mobile-chevron {
    transition: transform .2s;
    color: #A8A49C;
    font-size: .8rem;
}

.mobile-chevron.rotated {
    transform: rotate(180deg);
}

.mobile-category-content {
    display: none;
    padding-left: 36px;
    margin-bottom: 8px;
}

.mobile-category-content.open {
    display: block;
}

.mobile-category-content a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #6A6A6A;
    font-size: .85rem;
    transition: color .2s;
}

.mobile-category-content a i {
    width: 20px;
    font-size: .8rem;
    color: #A8A49C;
}

.mobile-category-content a:hover,
.mobile-category-content a.active {
    color: #D6B18A;
}

.mobile-category-content a:hover i {
    color: #D6B18A;
}

.mobile-menu-actions {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-signin,
.mobile-getstarted {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 40px;
    font-weight: 600;
}

.mobile-signin {
    color: #071F32;
    border: 1px solid #071F32;
}

.mobile-getstarted {
    background: #071F32;
    color: #fff;
}

.mobile-menu-footer {
    padding: 20px 24px;
    text-align: center;
    margin-top: auto;
}

.mobile-menu-footer p {
    font-size: .75rem;
    color: #6A6A6A;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    opacity: 0;
    visibility: hidden;
    transition: .25s;
    z-index: 1500;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ===== FOOTER ===== */
.footer {
    background: #1A1A1A;
    color: #A8A49C;
    padding: 48px 32px 32px;
    margin-top: 64px;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    display: inline-block;
    font-family: 'Playfair Display', serif;
}

.footer-brand .logo span {
    color: #C7A85B;
}

.footer-brand p {
    font-size: .85rem;
    color: #A8A49C;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.footer-links a {
    color: #A8A49C;
    font-size: .85rem;
    transition: color .2s;
}

.footer-links a:hover {
    color: #C7A85B;
}

.footer-copyright {
    font-size: .75rem;
    color: #A8A49C;
}

/* ============================================
   ABOUT PAGE
=========================================== */
.about-hero {
    padding: 40px 48px 32px;
    background: linear-gradient(135deg, #F7F6F3 0, #fff 100%);
    border-bottom: 1px solid #E7E4DF;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(214, 177, 138, .08) 0, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.about-tagline {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D6B18A;
    margin-bottom: 12px;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 600;
    color: #071F32;
    line-height: 1.1;
    margin-bottom: 16px;
}

.about-hero h1 .highlight {
    color: #D6B18A;
}

.about-hero-text {
    font-size: 1.05rem;
    color: #6A6A6A;
    line-height: 1.7;
    max-width: 600px;
}

.story-section {
    padding: 48px 48px 32px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.story-text .section-label {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #D6B18A;
    margin-bottom: 8px;
}

.story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #071F32;
    margin-bottom: 16px;
}

.story-text p {
    color: #444;
    line-height: 1.9;
    margin-bottom: 12px;
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #E7E4DF;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #071F32;
}

.stat-label {
    font-size: .8rem;
    color: #6A6A6A;
}

.story-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px;
    background: #F7F6F3;
    border: 1px solid #E7E4DF;
    border-radius: 20px;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: #fff;
    border: 1px solid #E7E4DF;
    border-radius: 50%;
    transition: all .3s;
    margin: 0 auto;
}

.icon-circle i {
    font-size: 1.5rem;
    color: #D6B18A;
}

.icon-circle:hover {
    border-color: #D6B18A;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(214, 177, 138, .15);
}

.philosophy-section {
    padding: 48px 48px 32px;
    background: #fff;
    border-top: 1px solid #E7E4DF;
}

.philosophy-section .section-label {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #D6B18A;
    margin-bottom: 8px;
}

.philosophy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #071F32;
    margin-bottom: 8px;
}

.philosophy-section>p {
    color: #6A6A6A;
    font-size: 1rem;
    margin-bottom: 32px;
    max-width: 600px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.philosophy-card {
    background: #F7F6F3;
    padding: 28px 24px;
    border: 1px solid #E7E4DF;
    border-radius: 20px;
    transition: all .3s;
}

.philosophy-card:hover {
    border-color: #D6B18A;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
}

.philosophy-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D6B18A;
    margin-bottom: 8px;
    opacity: .4;
}

.philosophy-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #071F32;
    margin-bottom: 8px;
}

.philosophy-card p {
    color: #444;
    font-size: .9rem;
    line-height: 1.7;
}

.values-section {
    padding: 48px 48px 32px;
    background: #F7F6F3;
    border-top: 1px solid #E7E4DF;
}

.values-section .section-label {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #D6B18A;
    margin-bottom: 8px;
}

.values-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #071F32;
    margin-bottom: 24px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    background: #fff;
    padding: 28px 24px;
    border: 1px solid #E7E4DF;
    border-radius: 20px;
    transition: all .3s;
}

.value-card:hover {
    border-color: #D6B18A;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #F7F6F3;
    border-radius: 12px;
    margin-bottom: 16px;
}

.value-icon i {
    font-size: 1.3rem;
    color: #D6B18A;
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #071F32;
    margin-bottom: 8px;
}

.value-card p {
    font-size: .85rem;
    color: #444;
    line-height: 1.7;
}

.audience-section {
    padding: 48px 48px 32px;
    border-top: 1px solid #E7E4DF;
}

.audience-section .section-label {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #D6B18A;
    margin-bottom: 8px;
}

.audience-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #071F32;
    margin-bottom: 24px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.audience-card {
    background: #fff;
    padding: 24px 20px;
    border: 1px solid #E7E4DF;
    border-radius: 20px;
    transition: all .3s;
}

.audience-card:hover {
    border-color: #D6B18A;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
}

.audience-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #F7F6F3;
    border-radius: 12px;
    margin-bottom: 12px;
}

.audience-icon i {
    font-size: 1.3rem;
    color: #D6B18A;
}

.audience-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #071F32;
    margin-bottom: 8px;
}

.audience-card p {
    font-size: .85rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
}

.audience-tag {
    display: inline-block;
    font-size: .7rem;
    color: #6A6A6A;
    background: #F7F6F3;
    padding: 2px 12px;
    border-radius: 20px;
    margin: 2px 4px 0 0;
}

.promise-section {
    padding: 48px 48px 32px;
    background: linear-gradient(135deg, #071F32 0, #0a2a45 100%);
    color: #fff;
    border-top: 1px solid #E7E4DF;
}

.promise-content .section-label {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #D6B18A;
    margin-bottom: 8px;
}

.promise-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 12px;
}

.promise-content p {
    color: rgba(255, 255, 255, .7);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 24px;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
    color: rgba(255, 255, 255, .85);
}

.promise-item i {
    color: #D6B18A;
    font-size: 1.2rem;
}

.join-section {
    padding: 48px 48px 32px;
    text-align: center;
    border-top: 1px solid #E7E4DF;
}

.join-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #071F32;
    margin-bottom: 12px;
}

.join-content p {
    color: #6A6A6A;
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.join-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-footer-note {
    padding: 24px 48px 32px;
    text-align: center;
    border-top: 1px solid #E7E4DF;
}

.about-footer-note p {
    font-size: .85rem;
    color: #A8A49C;
    font-weight: 400;
}

/* ============================================
   COOKIES / DISCLAIMER / PRIVACY / TERMS
=========================================== */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.service-item {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    background: #F7F6F3;
    border: 1px solid #E7E4DF;
    border-radius: 12px;
    align-items: center;
}

.service-item i {
    font-size: 1.3rem;
    color: #D6B18A;
    width: 28px;
    text-align: center;
}

.service-item h3 {
    font-size: .85rem;
    font-weight: 600;
    color: #071F32;
    margin-bottom: 2px;
}

.service-item p {
    font-size: .75rem;
    color: #6A6A6A;
}

.ip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 12px;
}

.ip-card {
    background: #fff;
    padding: 20px 16px;
    border: 1px solid #E7E4DF;
    border-radius: 12px;
    text-align: center;
}

.ip-card i {
    font-size: 1.8rem;
    color: #D6B18A;
    margin-bottom: 8px;
}

.ip-card h3 {
    font-size: .9rem;
    font-weight: 600;
    color: #071F32;
    margin-bottom: 6px;
}

.ip-card p {
    font-size: .8rem;
    color: #444;
    line-height: 1.5;
}

.cookie-types {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 16px;
}

.cookie-type {
    background: #F7F6F3;
    padding: 20px;
    border: 1px solid #E7E4DF;
    border-radius: 12px;
}

.cookie-type h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #071F32;
    margin: 8px 0;
}

.cookie-type p {
    font-size: .85rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 8px;
}

.cookie-type ul {
    list-style: none;
    padding: 0;
}

.cookie-type ul li {
    padding: 4px 0 4px 20px;
    position: relative;
    font-size: .8rem;
    color: #444;
}

.cookie-type ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D6B18A;
}

.cookie-badge {
    display: inline-block;
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 3px 10px;
    border-radius: 20px;
}

.cookie-badge.essential {
    background: #E8F5E9;
    color: #2E7D32;
}

.cookie-badge.performance {
    background: #E3F2FD;
    color: #1565C0;
}

.cookie-badge.optional {
    background: #FCE4EC;
    color: #C62828;
}

.no-list {
    list-style: none;
    padding: 0;
}

.no-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: .95rem;
    color: #444;
    border-bottom: 1px solid #F0F0F0;
}

.no-list li:last-child {
    border-bottom: none;
}

.no-list li i {
    color: #B85C4A;
    font-size: 1rem;
    width: 20px;
}

.browser-guide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.browser-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #F7F6F3;
    border: 1px solid #E7E4DF;
    border-radius: 12px;
}

.browser-item i {
    font-size: 1.8rem;
    color: #6A6A6A;
    width: 32px;
    text-align: center;
}

.browser-item div {
    display: flex;
    flex-direction: column;
}

.browser-item strong {
    font-size: .85rem;
    color: #071F32;
}

.browser-item span {
    font-size: .7rem;
    color: #6A6A6A;
}

.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.affiliate-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #E7E4DF;
    border-radius: 12px;
    text-align: center;
}

.affiliate-card i {
    font-size: 2rem;
    color: #D6B18A;
    margin-bottom: 8px;
}

.affiliate-card h3 {
    font-size: .95rem;
    font-weight: 600;
    color: #071F32;
    margin-bottom: 6px;
}

.affiliate-card p {
    font-size: .85rem;
    color: #444;
    line-height: 1.5;
}

.ad-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.ad-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border: 1px solid #E7E4DF;
    border-radius: 12px;
    align-items: flex-start;
}

.ad-item i {
    font-size: 1.5rem;
    color: #D6B18A;
    margin-top: 2px;
}

.ad-item h3 {
    font-size: .9rem;
    font-weight: 600;
    color: #071F32;
    margin-bottom: 4px;
}

.ad-item p {
    font-size: .8rem;
    color: #444;
    line-height: 1.4;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.privacy-card {
    background: #fff;
    padding: 24px 20px;
    border: 1px solid #E7E4DF;
    border-radius: 12px;
    text-align: center;
    transition: all .3s;
}

.privacy-card:hover {
    border-color: #D6B18A;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
}

.privacy-card i {
    font-size: 2rem;
    color: #D6B18A;
    margin-bottom: 10px;
}

.privacy-card h3 {
    font-size: .95rem;
    font-weight: 600;
    color: #071F32;
    margin-bottom: 6px;
}

.privacy-card p {
    font-size: .85rem;
    color: #444;
    line-height: 1.5;
}

.do-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.do-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #F7F6F3;
    border: 1px solid #E7E4DF;
    border-radius: 12px;
    align-items: flex-start;
}

.do-item i {
    font-size: 1.5rem;
    color: #D6B18A;
    margin-top: 2px;
}

.do-item h3 {
    font-size: .9rem;
    font-weight: 600;
    color: #071F32;
    margin-bottom: 4px;
}

.do-item p {
    font-size: .8rem;
    color: #444;
    line-height: 1.4;
}

.third-party-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.third-party-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border: 1px solid #E7E4DF;
    border-radius: 12px;
    align-items: flex-start;
}

.third-party-item i {
    font-size: 1.5rem;
    color: #D6B18A;
    margin-top: 2px;
}

.third-party-item h3 {
    font-size: .9rem;
    font-weight: 600;
    color: #071F32;
    margin-bottom: 4px;
}

.third-party-item p {
    font-size: .8rem;
    color: #444;
    line-height: 1.4;
}

/* ============================================
   RESPONSIVE
=========================================== */
@media (max-width: 1024px) {
    .layout-grid-two-col {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .sidebar-right {
        display: none !important;
    }
    .nav {
        display: none;
    }
    .auth {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .main-container {
        padding: 32px max(16px, 3%);
    }
    .mobile-pro-tips {
        display: block;
    }
    .philosophy-grid,
    .values-grid,
    .audience-grid,
    .promise-grid {
        grid-template-columns: 1fr 1fr;
    }
    .story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .story-image {
        order: -1;
    }
    .cookie-types,
    .affiliate-grid,
    .ad-grid,
    .privacy-grid,
    .do-grid,
    .third-party-grid,
    .ip-grid {
        grid-template-columns: 1fr 1fr;
    }
    .browser-guide {
        grid-template-columns: 1fr;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 20px 12px;
    }
    .layout-grid-two-col {
        gap: 16px;
    }
    .tool-card {
        border-radius: 0;
    }
    .tool-header {
        padding: 20px 16px;
    }
    .tool-header h1 {
        font-size: 1.4rem;
    }
    .faq-question {
        padding: 14px 16px;
        font-size: .85rem;
    }
    .faq-answer {
        font-size: .8rem;
        padding: 0 16px;
    }
    .faq-answer.open {
        padding: 0 16px 16px;
    }
    .mobile-pro-tips {
        padding: 16px;
        margin-top: 16px;
    }
    .tips-grid-mobile {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .tip-item-mobile {
        padding: 6px 10px;
        font-size: .7rem;
    }
    .footer {
        padding: 32px 16px 24px;
        margin-top: 32px;
    }
    .footer-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    .about-hero,
    .story-section,
    .philosophy-section,
    .values-section,
    .audience-section,
    .promise-section,
    .join-section {
        padding: 24px 20px;
    }
    .philosophy-grid,
    .values-grid,
    .audience-grid,
    .promise-grid {
        grid-template-columns: 1fr;
    }
    .story-stats {
        gap: 24px;
    }
    .story-icon-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .icon-circle {
        width: 56px;
        height: 56px;
    }
    .icon-circle i {
        font-size: 1.2rem;
    }
    .about-footer-note {
        padding: 16px 20px 24px;
    }
    .cookie-types,
    .affiliate-grid,
    .ad-grid,
    .privacy-grid,
    .do-grid,
    .third-party-grid,
    .ip-grid {
        grid-template-columns: 1fr;
    }
    .ad-item,
    .do-item,
    .third-party-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .data-step {
        flex-direction: column;
        text-align: center;
        padding: 12px 16px;
    }
    .data-location {
        margin-top: 4px;
    }
    .legal-content {
        padding: 16px;
    }
    .highlight-section {
        padding: 20px;
    }
    .legal-section-header {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 12px 8px;
    }
    .tool-header h1 {
        font-size: 1.2rem;
    }
    .tool-description {
        font-size: .8rem;
    }
    .faq-question {
        padding: 12px 14px;
        font-size: .8rem;
    }
    .faq-answer {
        font-size: .75rem;
    }
    .tips-grid-mobile {
        grid-template-columns: 1fr;
    }
    .story-stats {
        flex-direction: column;
        gap: 12px;
    }
    .promise-grid {
        grid-template-columns: 1fr;
    }
    .join-actions {
        flex-direction: column;
        align-items: center;
    }
    .icon-circle {
        width: 48px;
        height: 48px;
    }
    .icon-circle i {
        font-size: 1rem;
    }
    .step-text {
        font-size: .7rem;
    }
    .step-number {
        width: 22px;
        height: 22px;
        font-size: .65rem;
    }
    .tool-badge {
        font-size: .6rem;
        padding: 4px 10px;
    }
}