/* ============================================
   SecondPassportLegal.com - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --navy: #0A1628;
    --navy2: #0F1E35;
    --navy3: #162844;
    --gold: #B8952A;
    --gold2: #C8A951;
    --gold3: #D4B86A;
    --gold-dim: rgba(184, 149, 42, 0.15);
    --cream: #F8F4EE;
    --cream2: #EDE7DC;
    --cream3: #E0D8CC;
    --white: #FFFFFF;
    --text: #1C1C1C;
    --text2: #3A3A3A;
    --text3: #666;
    --text4: #999;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Montserrat', sans-serif;
    --trans: all 0.25s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

button {
    font-family: var(--sans);
    cursor: pointer;
}

input, textarea, select {
    font-family: var(--sans);
}

/* Typography */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.s-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold2);
    margin-bottom: 0.8rem;
}

.s-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.8vw, 3.1rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.s-title em {
    font-style: italic;
    color: var(--gold2);
}

.s-title-light {
    color: var(--white);
}

.s-body {
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text2);
}

.s-body-light {
    color: rgba(255, 255, 255, 0.48);
}

.gold-rule {
    width: 40px;
    height: 1px;
    background: var(--gold2);
    margin: 1.5rem 0;
}

.section {
    padding: 6rem 0;
}

.section-sm {
    padding: 4.5rem 0;
}

/* Buttons */
.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 0.85rem 2rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--trans);
}

.btn-gold:hover {
    background: var(--gold2);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(184, 149, 42, 0.3);
}

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    padding: 0.85rem 2rem;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--trans);
}

.btn-ghost:hover {
    border-color: var(--gold2);
    color: var(--gold2);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    padding: 0.75rem 1.5rem;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    border: 1px solid var(--navy);
    cursor: pointer;
    transition: var(--trans);
}

.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
}

/* Logo */
.logo-mark {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.logo-crest {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-line1 {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gold2);
}

.logo-line2 {
    font-size: 0.56rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.22rem;
}

/* Navigation */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: background 0.3s, box-shadow 0.3s;
}

#nav.scrolled {
    background: rgba(8, 14, 24, 0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(184, 149, 42, 0.12);
}

#nav:not(.scrolled) {
    background: transparent;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 0.5rem 0.9rem;
    transition: var(--trans);
    cursor: pointer;
    border: none;
    background: none;
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold2);
}

.nav-div {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0.25rem;
}

.nav-cta {
    background: transparent;
    color: var(--gold2);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 0.55rem 1.25rem;
    margin-left: 1rem;
    border: 1px solid rgba(184, 149, 42, 0.5);
    cursor: pointer;
    transition: var(--trans);
    text-decoration: none;
    display: inline-block;
}

.nav-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.nav-ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
}

.nav-ham span {
    display: block;
    width: 22px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
}

.mob-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(8, 14, 24, 0.98);
    backdrop-filter: blur(16px);
    padding: 1.5rem 2.5rem;
    z-index: 9998;
    border-bottom: 1px solid rgba(184, 149, 42, 0.12);
}

.mob-menu.open {
    display: block;
}

.mob-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.85rem 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    text-align: left;
    background: none;
    cursor: pointer;
    text-decoration: none;
}

.mob-menu a:last-child {
    color: var(--gold2);
    border-bottom: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #060D18 0%, #0A1628 45%, #0F1E35 100%);
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(184, 149, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 149, 42, 0.03) 1px, transparent 1px);
    background-size: 90px 90px;
}

.hero-glow {
    position: absolute;
    right: -200px;
    top: 15%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 149, 42, 0.055) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 12rem 0 5rem;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 5rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(184, 149, 42, 0.3);
    padding: 0.4rem 1rem;
    margin-bottom: 2rem;
}

.hero-badge span {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold2);
}

.hero-h1 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.07;
    margin-bottom: 1.5rem;
}

.hero-h1 em {
    font-style: italic;
    color: var(--gold2);
}

.hero-h1 strong {
    font-weight: 600;
}

.hero-sub {
    font-size: 0.87rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.9;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 149, 42, 0.12);
}

.hstat-n {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold2);
    line-height: 1;
}

.hstat-l {
    font-size: 0.6rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.hero-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(184, 149, 42, 0.18);
    position: relative;
    overflow: hidden;
}

.hero-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.panel-hdr {
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid rgba(184, 149, 42, 0.1);
}

.panel-hdr-lbl {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}

.panel-hdr-ttl {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
    font-style: italic;
}

.panel-body {
    padding: 0 1.75rem;
}

.pr {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pr:last-child {
    border-bottom: none;
}

.pr-flag {
    width: 32px;
    height: 21px;
    background: rgba(184, 149, 42, 0.08);
    border: 1px solid rgba(184, 149, 42, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.52rem;
    font-weight: 700;
    color: var(--gold2);
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.pr-name {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    flex: 1;
}

.pr-acc {
    font-size: 0.65rem;
    color: var(--gold2);
    font-weight: 500;
    white-space: nowrap;
}

.pr-cost {
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.25);
    white-space: nowrap;
}

.panel-ftr {
    padding: 1.25rem 1.75rem;
    border-top: 1px solid rgba(184, 149, 42, 0.1);
}

.panel-ftr-stat {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold2);
}

.panel-ftr-lbl {
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

/* Trust Bar */
.trust-bar {
    background: rgba(6, 11, 20, 0.95);
    border-top: 1px solid rgba(184, 149, 42, 0.1);
    border-bottom: 1px solid rgba(184, 149, 42, 0.1);
    padding: 1rem 0;
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.titem {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 1.5rem;
    border-right: 1px solid rgba(184, 149, 42, 0.12);
}

.titem:last-child {
    border-right: none;
}

.tdot {
    width: 3px;
    height: 3px;
    background: var(--gold2);
    border-radius: 50%;
    flex-shrink: 0;
}

.ttext {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* Programs Section */
.progs-section {
    background: var(--cream);
    padding: 6rem 0;
}

.prog-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.prog-region-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--cream3);
}

.progs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--cream3);
    border: 1px solid var(--cream3);
    margin-bottom: 2.5rem;
}

.pc {
    background: var(--white);
    padding: 1.65rem;
    transition: var(--trans);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.pc:hover {
    background: #FDFAF6;
    box-shadow: 0 8px 30px rgba(10, 22, 40, 0.08);
    z-index: 1;
    transform: translateY(-2px);
}

.pc:hover::before {
    width: 100%;
}

.pc-region {
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.55rem;
}

.pc-flag-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.pc-flag {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    line-height: 1;
    flex-shrink: 0;
}

.pc-country {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
}

.pc-program {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--text3);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.pc-details {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
    flex: 1;
}

.pc-det {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.28rem 0;
    border-bottom: 1px solid var(--cream2);
}

.pc-det:last-child {
    border-bottom: none;
}

.pc-det-lbl {
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text4);
}

.pc-det-val {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--navy);
}

.pc-det-val.gold {
    color: var(--gold);
}

.pc-btn {
    width: 100%;
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--cream3);
    padding: 0.58rem;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--trans);
    margin-top: auto;
    text-decoration: none;
    display: block;
    text-align: center;
}

.pc-btn:hover,
.pc:hover .pc-btn {
    background: var(--navy);
    color: var(--gold2);
    border-color: var(--navy);
}

.pc-expedited {
    margin: 0.75rem 0 0.5rem;
    background: rgba(184, 149, 42, 0.07);
    border: 1px solid rgba(184, 149, 42, 0.25);
    padding: 0.6rem 0.75rem;
}

.pc-exp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.2rem;
}

.pc-exp-badge {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(184, 149, 42, 0.12);
    border: 1px solid rgba(184, 149, 42, 0.3);
    padding: 0.16rem 0.45rem;
    white-space: nowrap;
}

.pc-exp-price {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--navy);
}

.pc-exp-desc {
    font-size: 0.57rem;
    color: var(--text3);
    font-weight: 400;
    line-height: 1.4;
}

.pc-family {
    font-size: 0.57rem;
    color: rgba(184, 149, 42, 0.85);
    font-weight: 500;
    text-align: center;
    padding: 0.38rem 0;
    border-top: 1px dashed rgba(184, 149, 42, 0.2);
    margin-top: 0.5rem;
    letter-spacing: 0.03em;
}

.pc-embassy {
    font-size: 0.57rem;
    color: var(--text3);
    font-weight: 400;
    padding: 0.42rem 0.65rem;
    background: rgba(10, 22, 40, 0.06);
    border-left: 2px solid rgba(184, 149, 42, 0.35);
    margin: 0.5rem 0;
    line-height: 1.45;
    letter-spacing: 0.01em;
}

/* Why Us Section */
.prob-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.pillar-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-top: 2rem;
}

.pillar {
    display: flex;
    gap: 1rem;
}

.pillar-n {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(184, 149, 42, 0.18);
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
}

.pillar-t {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.pillar-b {
    font-size: 0.83rem;
    font-weight: 300;
    color: var(--text2);
    line-height: 1.8;
}

.svc-row {
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--cream3);
    border-left: 3px solid var(--gold);
    cursor: pointer;
    transition: var(--trans);
    margin-bottom: 0.6rem;
    display: block;
    text-decoration: none;
    color: inherit;
}

.svc-row:hover {
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
}

.svc-row-t {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.28rem;
}

.svc-row-b {
    font-size: 0.78rem;
    color: var(--text3);
    font-weight: 300;
}

/* Services Page */
.svc-page-card {
    background: var(--white);
    border: 1px solid var(--cream3);
    border-left: 3px solid var(--gold);
    padding: 2.75rem;
    margin-bottom: 1.25rem;
    position: relative;
    transition: var(--trans);
}

.svc-page-card:hover {
    box-shadow: 0 8px 30px rgba(10, 22, 40, 0.07);
    transform: translateX(3px);
}

.svc-page-num {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.svc-page-title {
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.85rem;
    line-height: 1.2;
}

.svc-page-body {
    font-size: 0.85rem;
    color: var(--text2);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 1.1rem;
    max-width: 680px;
}

.svc-page-price {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold-dim);
    border: 1px solid rgba(184, 149, 42, 0.25);
    padding: 0.38rem 0.9rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 5rem;
    align-items: start;
}

.cred-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.75rem;
}

.cred-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cred-dash {
    width: 16px;
    height: 1px;
    background: var(--gold2);
    flex-shrink: 0;
}

.cred-text {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.38);
}

.vals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.val-card {
    border: 1px solid rgba(184, 149, 42, 0.1);
    padding: 1.6rem;
    position: relative;
}

.val-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--gold);
}

.val-title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.55rem;
}

.val-body {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.75;
    font-weight: 300;
}

.founder-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(184, 149, 42, 0.12);
    padding: 2.25rem;
    margin-bottom: 2rem;
}

.founder-name {
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.founder-role {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.founder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.founder-tag {
    font-size: 0.58rem;
    font-weight: 500;
    background: rgba(184, 149, 42, 0.08);
    border: 1px solid rgba(184, 149, 42, 0.18);
    padding: 0.28rem 0.65rem;
    color: rgba(255, 255, 255, 0.4);
}

.founder-bio {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.85;
    font-weight: 300;
}

/* Book Section */
.book-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 5rem;
    align-items: start;
}

.expect-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.75rem 0;
}

.expect-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.expect-arrow {
    color: var(--gold);
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.expect-text {
    font-size: 0.84rem;
    color: var(--text2);
    line-height: 1.7;
    font-weight: 300;
}

.expect-text strong {
    font-weight: 600;
    color: var(--navy);
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.price-card {
    border: 1px solid var(--cream3);
    padding: 1.85rem;
    background: var(--white);
    position: relative;
    transition: var(--trans);
}

.price-card.feat {
    background: var(--navy2);
    border-color: var(--navy2);
}

.price-card:hover {
    box-shadow: 0 6px 25px rgba(10, 22, 40, 0.09);
}

.price-badge {
    position: absolute;
    top: -11px;
    left: 1.75rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.28rem 0.75rem;
}

.price-name {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 0.5rem;
}

.price-card.feat .price-name {
    color: var(--gold);
}

.price-amount {
    font-family: var(--serif);
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--navy);
    line-height: 1;
}

.price-card.feat .price-amount {
    color: var(--white);
}

.price-dur {
    font-size: 0.72rem;
    color: var(--text3);
    margin-top: 0.22rem;
    margin-bottom: 1.1rem;
}

.price-card.feat .price-dur {
    color: rgba(255, 255, 255, 0.32);
}

.price-feats {
    list-style: none;
    margin-bottom: 1.4rem;
}

.price-feats li {
    font-size: 0.78rem;
    color: var(--text2);
    padding: 0.42rem 0;
    border-bottom: 1px solid var(--cream2);
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 300;
}

.price-card.feat .price-feats li {
    color: rgba(255, 255, 255, 0.45);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.price-feats li::before {
    content: '→';
    color: var(--gold);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.btn-price {
    width: 100%;
    padding: 0.82rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--trans);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-price.gold {
    background: var(--gold);
    color: var(--white);
}

.btn-price.gold:hover {
    background: var(--gold2);
}

.btn-price.outline {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--navy);
}

.btn-price.outline:hover {
    background: var(--navy);
    color: var(--white);
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--cream3);
    overflow: hidden;
    transition: var(--trans);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    box-shadow: 0 10px 35px rgba(10, 22, 40, 0.09);
    transform: translateY(-3px);
}

.bc-img {
    height: 170px;
    background: var(--navy2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-num {
    font-family: var(--serif);
    font-size: 5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.25);
    position: absolute;
}

.bc-tag {
    position: absolute;
    bottom: 0.7rem;
    left: 0.7rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 0.26rem 0.6rem;
}

.bc-body {
    padding: 1.4rem;
}

.bc-title {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.bc-text {
    font-size: 0.77rem;
    color: var(--text2);
    line-height: 1.78;
    font-weight: 300;
    margin-bottom: 1.1rem;
}

.bc-meta {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text4);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.bc-dot {
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
}

/* Contact Section */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-top: 1.75rem;
}

.ci-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.ci-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(184, 149, 42, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ci-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--gold2);
}

.ci-lbl {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.28rem;
}

.ci-val {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    line-height: 1.6;
}

.ci-val a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.ci-val a:hover {
    color: var(--gold2);
}

.cf-wrap {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(184, 149, 42, 0.12);
    padding: 2.5rem;
}

.cf-title {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.cf-sub {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.75rem;
    font-weight: 300;
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
}

.fgroup {
    margin-bottom: 0.9rem;
}

.flabel {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.42rem;
}

.finput {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(184, 149, 42, 0.25);
    padding: 0.75rem 0.9rem;
    font-size: 0.82rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.finput::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.finput:focus {
    border-color: rgba(184, 149, 42, 0.45);
}

select.finput {
    appearance: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C8A951' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.5rem;
}

select.finput option {
    background: #0A1628;
    color: var(--white);
}

textarea.finput {
    resize: vertical;
    min-height: 100px;
}

.fsubmit {
    width: 100%;
    background: var(--gold);
    color: var(--white);
    padding: 0.95rem;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--trans);
    margin-top: 1.1rem;
}

.fsubmit:hover {
    background: var(--gold2);
}

.fsubmit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.fprivacy {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.15);
    text-align: center;
    margin-top: 0.8rem;
    line-height: 1.55;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem 1.5rem;
}

.form-success.show {
    display: block;
}

.fs-check {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.fs-title {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.65rem;
}

.fs-body {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.8;
    font-weight: 300;
}

/* Form Validation */
.finput.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.65rem;
    margin-top: 0.3rem;
}

/* Honeypot field - hidden from humans */
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* Form loading state */
.form-loading {
    position: relative;
    pointer-events: none;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Contact Form Optimizations */
.cf-step-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(184, 149, 42, 0.15);
}

.cf-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.cf-step-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.cf-group-highlight .flabel {
    color: var(--gold);
}

.cf-group-highlight .finput {
    border-color: rgba(184, 149, 42, 0.35);
    background: rgba(255, 255, 255, 0.05);
}

.cf-group-highlight .finput:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.07);
}

/* Improved input sizing for mobile */
@media (max-width: 480px) {
    .cf-wrap {
        padding: 1.75rem;
    }
    
    .finput {
        padding: 0.9rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .cf-title {
        font-size: 1.25rem;
    }
    
    .cf-sub {
        font-size: 0.7rem;
    }
    
    .fsubmit {
        padding: 1.1rem;
    }
}

/* Flag Icons - Circular Style */
.fi-circle {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    vertical-align: middle;
}

.fi-circle-small {
    width: 24px;
    height: 24px;
}

.fi-circle-large {
    width: 40px;
    height: 40px;
}

/* Phosphor Icons */
.ph-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    font-size: 1em;
    line-height: 1;
}

.ph-icon-sm { font-size: 0.875rem; }
.ph-icon-md { font-size: 1.25rem; }
.ph-icon-lg { font-size: 1.5rem; }
.ph-icon-xl { font-size: 2rem; }

.ph-icon-gold { color: var(--gold); }
.ph-icon-white { color: var(--white); }
.ph-icon-navy { color: var(--navy); }

/* CTA Band */
.cta-band {
    background: var(--navy);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060D18, #0F1E35);
}

.cta-band-in {
    position: relative;
    z-index: 2;
}

.cta-band-title {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.9rem;
}

.cta-band-title em {
    font-style: italic;
    color: var(--gold2);
}

.cta-band-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto 2.25rem;
    line-height: 1.85;
}

.cta-band-note {
    font-size: 0.64rem;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 0.9rem;
    letter-spacing: 0.06em;
}

/* Dark Header (for interior pages) */
.dark-hdr {
    background: var(--navy);
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.dark-hdr::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, #060D18, #0F1E35);
}

.dark-hdr-in {
    position: relative;
    z-index: 2;
}

/* Footer */
footer {
    background: #05090F;
    border-top: 1px solid rgba(184, 149, 42, 0.08);
    padding: 4rem 0 2.25rem;
}

.foot-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.foot-brand {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold2);
    margin-bottom: 0.4rem;
}

.foot-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.22);
    font-style: italic;
    margin-bottom: 1.1rem;
}

.foot-about {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.22);
    line-height: 1.8;
    font-weight: 300;
}

.foot-col-title {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.22);
    margin-bottom: 1.1rem;
}

.foot-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.foot-link {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s;
    border: none;
    background: none;
    text-align: left;
    text-decoration: none;
    display: inline-block;
}

.foot-link:hover {
    color: var(--gold2);
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.foot-copy {
    font-size: 0.64rem;
    color: rgba(255, 255, 255, 0.18);
}

/* Crypto Payment Bar */
.pay-bar {
    background: #030710;
    border-top: 1px solid rgba(184, 149, 42, 0.1);
    padding: 2rem 0;
}

.pay-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.pay-bar-label {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
    margin-bottom: 1.25rem;
}

.pay-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pay-token {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.025);
    transition: all 0.2s;
}

.pay-token:hover {
    border-color: rgba(184, 149, 42, 0.3);
    background: rgba(184, 149, 42, 0.05);
}

.pay-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 800;
}

.pay-name {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
}

.pay-ticker {
    font-size: 0.55rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.22);
    margin-left: 0.1rem;
}

.pay-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0 0.25rem;
}

.pay-wire {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.025);
    transition: all 0.2s;
}

.pay-wire:hover {
    border-color: rgba(184, 149, 42, 0.3);
    background: rgba(184, 149, 42, 0.05);
}

.pay-wire-icon {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(184, 149, 42, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pay-wire-icon svg {
    width: 12px;
    height: 12px;
    fill: var(--gold2);
}

.pay-note {
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.18);
    text-align: center;
    margin-top: 1rem;
    letter-spacing: 0.04em;
}

/* Copyright Bar */
.copyright-bar {
    background: #02050a;
    border-top: 1px solid rgba(184, 149, 42, 0.08);
    padding: 1rem 0;
}

.copyright-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    text-align: center;
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.12);
    letter-spacing: 0.04em;
}

/* Flag Strip */
.flag-strip {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 9998;
    display: flex;
    align-items: stretch;
    height: 48px;
    overflow: hidden;
    border-bottom: 1px solid rgba(184, 149, 42, 0.22);
    border-top: 1px solid rgba(184, 149, 42, 0.1);
}

.flag-corner {
    width: 52px;
    height: 48px;
    background: rgba(6, 11, 20, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-right: 1px solid rgba(184, 149, 42, 0.18);
    font-size: 1.5rem;
    line-height: 1;
}

.flag-corner.right {
    border-right: none;
    border-left: 1px solid rgba(184, 149, 42, 0.18);
}

.flag-scroll-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
    background: rgba(6, 11, 20, 0.95);
}

.flag-scroll-track {
    display: flex;
    align-items: center;
    height: 48px;
    gap: 0;
    animation: flagScroll 45s linear infinite;
    width: max-content;
}

.flag-scroll-track:hover {
    animation-play-state: paused;
}

.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    height: 48px;
    border-right: 1px solid rgba(184, 149, 42, 0.07);
    cursor: default;
    transition: background 0.2s;
    flex-shrink: 0;
}

.flag-item:hover {
    background: rgba(184, 149, 42, 0.08);
}

.flag-emoji {
    font-size: 1.35rem;
    line-height: 1;
    margin-bottom: 0.12rem;
}

.flag-code {
    font-size: 0.44rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
}

@keyframes flagScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Trust Article */
.trust-article {
    background: var(--white);
    padding: 7rem 0;
}

.trust-article-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 5rem;
    align-items: start;
}

.trust-sidebar {
    position: sticky;
    top: 110px;
}

.trust-sidebar-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.trust-sidebar-title {
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 300;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.trust-sidebar-title em {
    font-style: italic;
    color: var(--gold2);
}

.trust-rule {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}

.trust-pillars {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.trust-pillar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--cream2);
}

.trust-pillar-num {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(184, 149, 42, 0.45);
    flex-shrink: 0;
    width: 22px;
}

.trust-pillar-txt {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text2);
}

.trust-cta-box {
    background: var(--navy);
    padding: 1.75rem;
    border-left: 3px solid var(--gold);
}

.trust-cta-box-title {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.trust-cta-box-sub {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.trust-lede {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.55;
    margin-bottom: 2.25rem;
    font-style: italic;
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
}

.trust-h2 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin: 2.5rem 0 0.85rem;
    line-height: 1.2;
}

.trust-h2::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 0.65rem;
}

.trust-p {
    font-size: 0.87rem;
    color: var(--text2);
    line-height: 2;
    font-weight: 300;
    margin-bottom: 1.1rem;
}

.trust-p strong {
    font-weight: 600;
    color: var(--navy);
}

.trust-pull {
    background: var(--cream);
    border-left: 4px solid var(--gold);
    padding: 1.5rem 1.75rem;
    margin: 2.25rem 0;
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.6;
    font-style: italic;
}

.trust-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--cream3);
    border: 1px solid var(--cream3);
    margin: 2.5rem 0;
}

.trust-stat {
    background: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.trust-stat-n {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.trust-stat-l {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text3);
    margin-top: 0.4rem;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim {
    opacity: 0;
    animation: fadeUp 0.65s ease forwards;
}

.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.16s; }
.d3 { animation-delay: 0.24s; }
.d4 { animation-delay: 0.32s; }
.d5 { animation-delay: 0.4s; }

/* Alert Messages */
.alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 0.8rem;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

/* Responsive */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    
    .hero-panel {
        display: none;
    }
    
    .prob-grid,
    .about-grid,
    .book-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    /* Mobile: Form first, content second on contact page */
    .contact-layout {
        display: flex;
        flex-direction: column;
    }
    
    .contact-layout > div:first-child {
        order: 2;
    }
    
    .contact-layout > div:last-child {
        order: 1;
    }
    
    .progs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .vals-grid {
        grid-template-columns: 1fr;
    }
    
    .foot-top {
        grid-template-columns: 1fr;
    }
    
    .foot-top > *:not(:first-child) {
        display: none;
    }
    
    .frow {
        grid-template-columns: 1fr;
    }
    
    .trust-article-inner {
        grid-template-columns: 1fr;
    }
    
    .trust-sidebar {
        position: static;
    }
    
    .trust-stats-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .section,
    .section-sm {
        padding: 4rem 0;
    }
    
    .progs-grid {
        grid-template-columns: 1fr;
    }
    
    .progs-grid .pc {
        grid-column: auto !important;
        padding: 1.25rem;
        min-width: 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-ham {
        display: flex;
    }
    
    .hero-h1 {
        font-size: 2.5rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .trust-inner {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .titem {
        flex-shrink: 0;
    }
    
    .trust-stats-row {
        grid-template-columns: 1fr;
    }
    
    .flag-strip {
        height: 40px;
        top: 76px;
    }
    
    .flag-corner {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .flag-emoji {
        font-size: 1.1rem;
    }
    
    .flag-code {
        display: none;
    }
    
    .flag-item {
        padding: 0 0.65rem;
    }
}
