/* new-style.css - COMPLETE CSS for all pages including contact form */

:root {
    --light: #f8fafc;
    --dark: #0f172a;
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --border: #e2e8f0;
    --danger: #ef4444;
    --success: #10b981;
    --secondary: #64748b;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #222;
    min-height: 100vh;
    position: relative;
    background-color: var(--light);
}

/* ==================== */
/* BACKGROUND */
/* ==================== */
.scroll-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.95) 0%, rgba(26, 26, 46, 0.97) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    will-change: transform;
}

/* ==================== */
/* SECTION STYLES */
/* ==================== */
.section {
    padding: 80px 0;
}

.section-light {
    background-color: var(--light);
}

.section-dark {
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.95) 0%, rgba(26, 26, 46, 0.97) 100%);
    color: white;
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary);
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== */
/* TYPOGRAPHY & LINKS */
/* ==================== */
a:link {
    color: #0066cc;
    text-decoration: none;
}

a:visited {
    color: #0066cc;
}

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

/* ==================== */
/* HEADER & NAVIGATION */
/* ==================== */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 0;
}

header.sticky {
    position: fixed;
    background: #111;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: relative;
}

.logo img {
    height: 48px;
    width: auto;
}

/* MENU */
.menu-toggle {
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    display: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

.menu {
    display: flex;
    flex-direction: row;
    background: transparent;
    margin-left: auto;
}

.menu a {
    color: #fff;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}

.menu a:hover {
    color: var(--primary);
}

/* Make menu white when header is sticky */
header.sticky .menu a {
    color: #fff;
}

header.sticky .menu a:hover {
    color: var(--primary);
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    margin-top: 0;
}

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

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero p {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 30px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

/* ==================== */
/* BUTTONS */
/* ==================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    transition: all 0.25s ease;
}

a.cta-button {
    color: #ffffff !important;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(2, 132, 199, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.cta-button:focus-visible {
    outline: 2px solid #38BDF8;
    outline-offset: 3px;
}

.link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    margin: 15px 0 5px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 180px;
    text-align: center;
    gap: 8px;
}

a.link-button {
    color: #ffffff !important;
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(2, 132, 199, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.25);
}

/* ==================== */
/* COOKIE BANNER */
/* ==================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.98);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.cookie-btn.reject {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* ==================== */
/* LAYOUT & CONTAINERS */
/* ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background: white;
    position: relative;
    z-index: 1;
}

.visual-box {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 20px;
    background: white;
    position: relative;
    z-index: 1;
}

.row {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.row:last-child {
    margin-bottom: 0;
}

.box {
    padding: 30px;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
}

/* ==================== */
/* TWO COLUMN LAYOUT */
/* ==================== */
.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ==================== */
/* GRID STYLES */
/* ==================== */
.icon-grid, .feature-grid, .pricing-grid, .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.icon-box, .feature-box, .pricing-box, .step-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.icon-box:hover, .feature-box:hover, .pricing-box:hover, .step-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.icon-box img, .feature-box img {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.icon-box h4, .feature-box h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.icon-box p, .feature-box p {
    color: var(--secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.pricing-box h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.pricing-box p {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.pricing-box strong {
    display: block;
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 700;
}

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

.step-box span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.step-box p {
    color: var(--dark);
    font-weight: 500;
    line-height: 1.5;
}

/* ==================== */
/* CHECKLIST STYLES */
/* ==================== */
.checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.checklist li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: var(--dark);
    line-height: 1.6;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.section-dark .checklist li {
    color: #fff;
}

.section-dark .checklist li:before {
    color: var(--primary);
}

/* ==================== */
/* LEGAL CONTENT STYLES */
/* ==================== */
.full-width-legal {
    width: 100%;
    padding: 20px 0;
}

.full-width-legal h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark);
}

.full-width-legal h2:first-child {
    margin-top: 0;
}

.full-width-legal p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--secondary);
}

.full-width-legal ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.full-width-legal li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--secondary);
}

/* ==================== */
/* RESOURCES PAGE STYLES */
/* ==================== */
.top-box {
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 50px;
    border: 1px solid var(--border);
}

.top-box h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.top-box p {
    color: var(--secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.resource-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.role-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.role-tags span {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.resource-type {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    align-self: flex-start;
}

.resource-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.resource-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.resource-card p {
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border: none;
    cursor: pointer;
    text-align: center;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 132, 199, 0.3);
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.share-buttons span {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.share-buttons a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.share-buttons a:hover {
    background: rgba(14, 165, 233, 0.1);
}

.share-buttons button {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--secondary);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-buttons button:hover {
    background: var(--light);
    color: var(--dark);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.resource-card textarea {
    width: 100%;
    height: 80px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #f8fafc;
    color: var(--secondary);
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.85rem;
    resize: none;
    margin: 15px 0;
    cursor: pointer;
}

.resource-card textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* ==================== */
/* BOX STYLES */
/* ==================== */
.how-it-works-box {
    background: linear-gradient(180deg, #0e1a26 0%, #0b1621 100%);
    border-radius: 14px;
    padding: 24px;
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.how-it-works-box h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.how-it-works-box p {
    color: #c9d4e3;
    line-height: 1.6;
}

.about-box {
    background: linear-gradient(180deg, #0b1320 0%, #0d1a2b 45%, #060b14 100%);
    padding: 24px;
    border-radius: 14px;
    color: #ffffff;
}

.about-box img {
    width: 100%;
    border-radius: 10px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
}

.about-box h2 {
    color: #ffffff;
}

.about-box p {
    color: #c7d2e3;
}

.ivorybox {
    background: linear-gradient(180deg, #FFFFFF, #F8FAF9);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
}

.ivorybox img {
    width: 100%;
    border-radius: 10px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
}

.ivorybox h2 {
    color: var(--dark);
}

.ivorybox p {
    color: #000000;
}

.graybox {
    background: linear-gradient(180deg, #F8FAF9 0%, #F1F3F2 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
}

.graybox img {
    width: 100%;
    border-radius: 10px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
}

.graybox h2 {
    color: var(--dark);
}

.graybox p {
    color: #000000;
}

.platform-box {
    background: linear-gradient(180deg, #0b1320 0%, #0d1a2b 45%, #060b14 100%);
    padding: 24px;
    border-radius: 14px;
    color: #ffffff;
}

.platform-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
}

.platform-box h2 {
    color: #ffffff;
}

.platform-box p {
    color: #ffffff;
}

.use-case-box {
    background: #F8FAF9;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.use-case-box h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-top: 16px;
}

.use-case-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

.faq-box {
    background: #F8FAFC;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.full-width {
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}

/* ==================== */
/* FIX FOR DARK BOXES IN WHITE CONTAINERS */
/* ==================== */
.container .how-it-works-box,
.container .about-box,
.container .platform-box {
    background: linear-gradient(180deg, #0e1a26 0%, #0b1621 100%);
    color: #ffffff !important;
}

.container .how-it-works-box h2,
.container .about-box h2,
.container .platform-box h2 {
    color: #ffffff !important;
}

.container .how-it-works-box p,
.container .about-box p,
.container .platform-box p {
    color: #c9d4e3 !important;
}

/* Ensure light boxes also have proper contrast */
.container .ivorybox,
.container .graybox,
.container .faq-box {
    background: #F8FAFC;
    color: var(--dark) !important;
}

.container .ivorybox h2,
.container .graybox h2,
.container .faq-box h2 {
    color: var(--dark) !important;
}

.container .ivorybox p,
.container .graybox p,
.container .faq-box p,
.container .ivorybox li,
.container .graybox li,
.container .faq-box li {
    color: var(--secondary) !important;
}

/* Section dark adjustments */
.section-dark .container {
    background: transparent;
    color: white;
}

.section-dark .container h2,
.section-dark .container h3,
.section-dark .container h4 {
    color: white;
}

.section-dark .container p {
    color: rgba(255, 255, 255, 0.9);
}

.section-dark .icon-box,
.section-dark .feature-box,
.section-dark .pricing-box,
.section-dark .step-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.section-dark .icon-box h4,
.section-dark .feature-box h4,
.section-dark .pricing-box h3,
.section-dark .step-box p {
    color: white;
}

.section-dark .icon-box p,
.section-dark .feature-box p,
.section-dark .pricing-box p {
    color: rgba(255, 255, 255, 0.8);
}

/* ==================== */
/* BENEFITS & FEATURE LISTS */
/* ==================== */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.benefits-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 10px 0 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: var(--dark);
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 24px;
    line-height: 1;
}

/* ==================== */
/* FAQ STYLES */
/* ==================== */
.faq-item {
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 0 16px;
    color: var(--secondary);
    line-height: 1.6;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

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

/* ==================== */
/* FEES PAGE STYLES */
/* ==================== */
.fees-section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.fees-section.alt-bg {
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.fees-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary);
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fees-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.fee-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.fee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.fee-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.fee-subtitle {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.fee-row .label {
    color: var(--secondary);
    font-size: 0.95rem;
}

.fee-row .value {
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 700;
}

.fee-block {
    margin-bottom: 20px;
}

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

.fee-block strong {
    display: block;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.fee-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fee-block li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.fee-block li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.2rem;
    line-height: 1;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 40px auto;
}

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

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step div {
    flex: 1;
}

.step strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.step p {
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.step .highlight {
    background: rgba(14, 165, 233, 0.1);
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid var(--primary);
    font-size: 0.9rem;
    color: var(--dark);
    margin-top: 10px;
}

.engagement-note {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 40px;
    color: var(--secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.engagement-note strong {
    color: var(--danger);
}

/* Section Headers */
.fees-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

/* ==================== */
/* WHITE-LABEL & TOKENIZATION SPECIFIC */
/* ==================== */
.pricing-note {
    text-align: center;
    color: var(--secondary);
    font-size: 0.9rem;
    margin-top: 30px;
    font-style: italic;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.cta-subtext {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-top: 10px;
}

.footer-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--secondary);
    border-top: 1px solid var(--border);
    padding: 40px 0 !important;
}

/* ==================== */
/* START.PHP FORM STYLES */
/* ==================== */

/* Container styles for start.php */
.start-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Form container */
.form-container {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    margin-bottom: 30px;
}

/* Success box */
.success-box {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success), #0ca678);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.transaction-id {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 20px 0;
    letter-spacing: 1px;
}

/* Timeline */
.timeline {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: var(--border);
    z-index: 1;
}

.timeline-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.timeline-step:nth-child(1) .timeline-number {
    background: var(--primary);
    color: white;
}

.timeline-step strong {
    display: block;
    margin-bottom: 5px;
    color: var(--dark);
}

.timeline-step p {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Progress bar */
.progress-bar {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    position: relative;
}

.progress-bar:before {
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    height: 3px;
    background: var(--border);
    z-index: 1;
}

.progress-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.progress-step.active .step-number {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.progress-step.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

.step-number {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--border);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 10px;
}

.step-label {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Form sections */
.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.form-section:last-child {
    border-bottom: none;
}

.section-title {
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    font-size: 1.4rem;
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

/* Labels */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

label.required:after {
    content: ' *';
    color: var(--danger);
}

/* Input styles */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

input.error-border,
select.error-border,
textarea.error-border {
    border-color: var(--danger);
}

input.error-border:focus,
select.error-border:focus,
textarea.error-border:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Radio and checkbox groups */
.radio-group,
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s;
}

.radio-label:hover,
.checkbox-label:hover {
    background: rgba(14, 165, 233, 0.05);
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 132, 199, 0.3);
}

.btn-secondary {
    background: var(--light);
    color: var(--dark);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: #f1f5f9;
}

/* Additional parties */
.additional-party {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.party-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remove-party {
    background: var(--danger);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.remove-party:hover {
    background: #dc2626;
}

.add-party {
    background: transparent;
    color: var(--primary);
    border: 2px dashed var(--primary);
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
    margin-top: 20px;
}

.add-party:hover {
    background: rgba(14, 165, 233, 0.1);
    border-style: solid;
}

/* Terms box */
.terms-box {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    max-height: 300px;
    overflow-y: auto;
}

.terms-box h4 {
    color: var(--dark);
    margin-bottom: 15px;
}

.terms-box ul {
    margin: 15px 0;
    padding-left: 20px;
}

.terms-box li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Form actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* Help text */
.help-text {
    font-size: 0.85rem;
    color: var(--secondary);
    margin-top: 6px;
    line-height: 1.4;
}

/* Error messages */
.error {
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 5px;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--danger);
}

/* Offline notice */
.offline-notice {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(2, 132, 199, 0.1));
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 8px;
    padding: 15px 20px;
    margin: 20px 0;
    text-align: center;
    color: var(--dark);
}

/* Header styles for start.php */
.start-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.page-title {
    color: var(--dark);
    margin: 20px 0;
    font-size: 2rem;
}

/* ==================== */
/* CONTACT FORM SPECIFIC STYLES */
/* ==================== */

/* Form container specific for contact */
.container-form {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.container-form:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

/* Method boxes */
.methodbox {
    text-align: center;
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

.methodbox:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.method-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--primary);
}

.methodbox h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.methodbox a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.methodbox a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.methodbox p {
    color: var(--secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 5px;
}

/* Success/Error messages for contact form */
.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 500;
}

.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--danger);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Form actions specific for contact */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.button-form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.button-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(2, 132, 199, 0.3);
}

/* reCAPTCHA styling */
.g-recaptcha {
    margin: 20px 0;
    display: inline-block;
}

/* ==================== */
/* FOOTER */
/* ==================== */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column p, .footer-column a {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-share {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 15px;
}

.footer-share a {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    transition: color 0.3s;
}

.footer-share a:hover {
    color: var(--primary);
}

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

.footer-bottom .links a {
    color: rgba(255,255,255,0.7);
    margin: 0 5px;
}

.footer-bottom .links a:hover {
    color: var(--primary);
}

/* ==================== */
/* INSTITUTIONAL CONTACT FORM STYLES */
/* ==================== */

.contact-container {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

.contact-intro h2 {
    color: var(--dark);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-dark), #0369a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-intro p {
    color: var(--secondary);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.form-header h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

.header-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.form-header p {
    color: var(--secondary);
    font-size: 0.95rem;
}

/* Institutional Form Container */
.container-form {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(14, 165, 233, 0.15);
    position: relative;
    overflow: hidden;
}

.container-form:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark), #0369a1);
}

/* Improved Form Elements */
.form-group label {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group label.required:after {
    content: ' *';
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #ffffff !important;
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 1rem;
    transition: all 0.3s;
    color: var(--dark) !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8 !important;
    opacity: 0.7;
}

/* Textarea specific fixes */
.form-group textarea {
    min-height: 150px;
    resize: vertical;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background: #ffffff !important;
    color: var(--dark) !important;
}

.char-count {
    text-align: right;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--secondary);
}

/* Security Notice */
.security-notice {
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: 8px;
    padding: 15px 20px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

.security-notice svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Captcha Container */
.captcha-container {
    margin: 25px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid rgba(14, 165, 233, 0.1);
    text-align: center;
}

/* Institutional Button */
.institutional-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.25);
}

.institutional-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.35);
}

.institutional-btn svg {
    width: 20px;
    height: 20px;
}

.institutional-text {
    color: var(--secondary);
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact Methods Header */
.contact-methods-header {
    text-align: center;
    margin: 50px 0 30px;
    width: 100%;
}

.contact-methods-header h2 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-methods-header p {
    color: var(--secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Institutional Method Boxes */
.institutional-methodbox {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.institutional-methodbox:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.3s;
}

.institutional-methodbox:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(14, 165, 233, 0.3);
}

.institutional-methodbox:hover:before {
    opacity: 1;
}

.method-icon-container {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(2, 132, 199, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.method-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.institutional-methodbox h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.institutional-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 1.1rem;
    transition: color 0.3s;
    display: inline-block;
}

.institutional-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.institutional-methodbox p {
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.method-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    width: 100%;
}

.method-meta span {
    font-size: 0.85rem;
    color: var(--primary);
    background: rgba(14, 165, 233, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
}

/* Compliance Notice */
.compliance-notice {
    margin-top: 50px;
}

.compliance-box {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(2, 132, 199, 0.05));
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    width: 100%;
}

.compliance-box svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
    flex-shrink: 0;
}

.compliance-box h3 {
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 600;
}

.compliance-box p {
    color: var(--secondary);
    line-height: 1.6;
    margin: 0;
}

/* Success/Error Messages with icons */
.success, .error {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 500;
}

.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.success svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--danger);
}

.error svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Responsive adjustments for institutional design */
@media (max-width: 768px) {
    .contact-intro h2 {
        font-size: 1.8rem;
    }
    
    .contact-intro p {
        font-size: 1rem;
    }
    
    .container-form {
        padding: 25px;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
    
    .institutional-methodbox {
        padding: 20px;
    }
    
    .compliance-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .method-meta {
        flex-direction: column;
        gap: 8px;
    }
}

/* ==================== */
/* RESPONSIVE STYLES */
/* ==================== */
@media (max-width: 768px) {
    /* Header */
    .header-inner {
        padding: 15px 20px;
    }
    
    .logo img {
        height: 36px;
    }
    
    /* Menu */
    .menu-toggle {
        display: block;
        color: #fff;
        margin-left: auto;
        z-index: 1000;
    }
    
    header.sticky .menu-toggle {
        color: #fff;
    }
    
    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.98);
        display: flex;
        flex-direction: column;
        padding: 100px 20px 20px;
        z-index: 999;
        margin: 0;
        justify-content: flex-start;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    .menu a {
        color: #fff;
        text-decoration: none;
        padding: 20px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        text-align: center;
        width: 100%;
    }
    
    .menu a:last-child {
        border-bottom: none;
    }
    
    /* Hero */
    .hero {
        padding: 100px 20px 60px;
        min-height: 50vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Layout */
    .row {
        flex-direction: column;
        gap: 20px;
    }
    
    .box {
        min-width: 100%;
    }
    
    /* Two column layout */
    .two-cols {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Grids */
    .icon-grid, .feature-grid, .pricing-grid, .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-grid .step-box:first-child {
        order: 6;
        margin-top: 20px;
    }
    
    /* Cookie Banner */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-share {
        justify-content: center;
    }
    
    /* Container padding */
    .container, .visual-box {
        padding: 40px 20px;
    }
    
    .visual-box {
        margin: 40px auto;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    
    /* Fees Page Mobile */
    .fees-section {
        padding: 40px 0;
    }
    
    .fees-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fee-card {
        padding: 20px;
    }
    
    .process-steps {
        gap: 20px;
    }
    
    .step {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .fees-section h2 {
        font-size: 1.5rem;
    }
    
    .fees-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    /* Resources Page Mobile */
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resource-card {
        padding: 20px;
    }
    
    .resource-card img {
        height: 160px;
    }
    
    .video-container {
        margin-bottom: 15px;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .share-buttons span {
        display: block;
        margin-bottom: 5px;
    }
    
    .top-box {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .top-box h2 {
        font-size: 1.3rem;
    }
    
    .top-box p {
        font-size: 0.95rem;
    }
    
    /* Legal Content Mobile */
    .full-width-legal h2 {
        font-size: 1.3rem;
        margin-top: 25px;
        margin-bottom: 12px;
    }
    
    .full-width-legal p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .full-width-legal ul {
        padding-left: 15px;
    }
    
    .full-width-legal li {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* White-label & Tokenization Mobile */
    .pricing-box, .feature-box, .icon-box, .step-box {
        padding: 20px;
    }
    
    .cta-center {
        margin-top: 30px;
    }
    
    /* Contact Form Mobile */
    .container-form {
        padding: 25px;
    }
    
    .methodbox {
        padding: 20px 15px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .button-form {
        width: 100%;
    }
    
    /* Start.php Form Mobile Styles */
    .start-container {
        padding: 10px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .timeline {
        flex-direction: column;
        gap: 30px;
    }
    
    .timeline:before {
        display: none;
    }
    
    .timeline-step {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 20px;
        flex-shrink: 0;
    }
    
    .progress-bar {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .progress-step {
        min-width: calc(50% - 10px);
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .form-actions > div {
        width: 100%;
    }
    
    .radio-group,
    .checkbox-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    /* Calculator Mobile Styles */
    .calculator-hero {
        padding: 100px 20px 40px;
        min-height: 30vh;
    }
    
    .calculator-input-section,
    .calculator-results-section {
        padding: 20px;
    }
    
    .input-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .rates-grid,
    .tiers-grid,
    .results-grid,
    .tier-display,
    .rate-comparison-grid,
    .fee-categories {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .scenario-presets {
        flex-direction: column;
    }
    
    .scenario-btn {
        width: 100%;
    }
    
    .export-actions {
        flex-direction: column;
    }
    
    .export-btn {
        width: 100%;
        min-width: auto;
    }
    
    .calculator-cta {
        padding: 20px;
    }
    
    .lead-capture-form {
        padding: 20px;
    }
    
    #contactForm .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-inner {
        padding: 20px 30px;
    }
    
    .container, .visual-box {
        padding: 50px 30px;
    }
    
    .row {
        gap: 20px;
    }
    
    .box {
        min-width: calc(50% - 10px);
    }
    
    .two-cols {
        gap: 40px;
    }
    
    .fees-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .icon-grid, .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .steps-grid .step-box:first-child {
        grid-column: 1 / -1;
    }
    
    /* Contact Form Tablet */
    .methodbox {
        min-width: calc(50% - 10px);
    }
    
    /* Start.php Form Tablet Styles */
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-group.full-width {
        grid-column: 1 / -1;
    }
    
    /* Calculator Tablet Styles */
    .input-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .fee-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== */
/* PRINT STYLES */
/* ==================== */
@media print {
    .scroll-bg, .cookie-banner, .menu-toggle, .footer-share, .cta-button, .link-button,
    .calculate-btn, .export-actions, .scenario-presets, .button-form {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container, .visual-box {
        padding: 0;
        margin: 0;
        box-shadow: none;
    }
    
    a {
        color: black !important;
        text-decoration: underline;
    }
    
    .resource-card, .fee-card, .icon-box, .feature-box, .pricing-box, .step-box,
    .calculator-input-section, .calculator-results-section, .methodbox {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        break-inside: avoid;
    }
    
    .section-dark, .how-it-works-box, .about-box, .platform-box,
    .calculator-hero, .lead-capture-form {
        background: #f5f5f5 !important;
        color: black !important;
    }
    
    .section-dark h2, .section-dark h3, .section-dark h4,
    .how-it-works-box h2, .about-box h2, .platform-box h2,
    .calculator-hero h1, .lead-capture-form h3 {
        color: black !important;
    }
    
    .section-dark p, .how-it-works-box p, .about-box p, .platform-box p,
    .calculator-hero p, .lead-capture-form p {
        color: #333 !important;
    }
    
    .container-form:before {
        display: none;
    }
}