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

html, body {
    background: #0d0d0d;
    color: #ffffff;
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.5;
}

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

section {
    padding: 100px 0;
}

section + section {
    border-top: 1px solid rgba(255,255,255,0.05);
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-size: 18px;
    opacity: 0.9;
}

/* ---------------------------------------------------------
   HEADER — FULL WIDTH
--------------------------------------------------------- */
.site-header {
    background: #05070d;
    border-bottom: 1px solid #1b1f2b;
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
}

.header-inner {
    width: 100%;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrap img {
    height: 240px;
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

.main-nav a {
    color: #e0e4ff;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    opacity: 0.95;
}

.main-nav a:hover {
    opacity: 1;
    color: #ffb347;
}

/* ---------------------------------------------------------
   HERO — FULL WIDTH
--------------------------------------------------------- */
.hero-section {
    width: 100%;
    padding: 120px 60px 100px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    max-width: none;
}

.hero-eyebrow {
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffb347;
    margin-bottom: 14px;
}

.hero-section h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.hero-section h1 span {
    color: #ffb347;
}

.hero-sub {
    font-size: 20px;
    color: #c0c4e0;
    margin-bottom: 28px;
}

.hero-ctas {
    display: flex;
    gap: 18px;
}

.hero-image img {
    border-radius: 16px;
    border: 1px solid #262b3d;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

/* ---------------------------------------------------------
   BUTTONS
--------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: #ffb347;
    color: #1b1f2b;
}

.btn-primary:hover {
    background: #ffd27f;
}

.btn-ghost {
    background: transparent;
    border: 1px solid #3a3f55;
    color: #e0e4ff;
}

.btn-ghost:hover {
    border-color: #ffb347;
}

/* ---------------------------------------------------------
   WHY — FULL WIDTH + CENTERED
--------------------------------------------------------- */
.why-section {
    width: 100%;
    padding: 80px 40px;
    text-align: center;
}

.why-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    text-align: center;
}

.why-block {
    background: #101320;
    border-radius: 20px;
    border: 1px solid #262b3d;
    padding: 40px;
    margin: 0 auto;
    max-width: 1200px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

.why-group p {
    font-size: 20px;
    text-align: center;
}

.why-lead {
    margin-top: 20px;
    margin-bottom: 24px;
    font-size: 20px;
}

.why-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 24px;
}

.why-columns h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.why-columns ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 18px;
    color: #c0c4e0;
}

.why-footer {
    font-size: 20px;
    color: #e0e4ff;
}

/* ---------------------------------------------------------
   OPERATOR — FULL WIDTH
--------------------------------------------------------- */
.operator-section {
    width: 100%;
    padding: 80px 40px;
}

.operator-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 20px;
    color: #c0c4e0;
    margin-bottom: 28px;
}

.operator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.op-card {
    background: #101320;
    border-radius: 14px;
    border: 1px solid #262b3d;
    padding: 20px;
    font-size: 18px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

/* ---------------------------------------------------------
   FRANCIS — FULL WIDTH + CENTERED
--------------------------------------------------------- */
.francis-section {
    width: 100%;
    padding: 80px 40px;
    text-align: center;
}

.francis-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.francis-section p.section-sub {
    font-size: 20px;
    color: #c0c4e0;
    margin-bottom: 24px;
    text-align: center;
    width: 100%;
    display: block;
}

.francis-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #262b3d;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
    margin: 0 auto 24px;
    max-width: 900px;
}

.francis-frame iframe {
    width: 100%;
    min-height: 600px;
}

.francis-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ---------------------------------------------------------
   CONTACT — FULL WIDTH
--------------------------------------------------------- */
.contact-section {
    width: 100%;
    padding: 80px 40px 120px;
}

.contact-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-image {
    max-width: 400px;
    margin-bottom: 24px;
}

.contact-form {
    width: 100%;
    max-width: none;
    background: #101320;
    border-radius: 20px;
    border: 1px solid #262b3d;
    padding: 40px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

.contact-form label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #e0e4ff;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #0b0e1a;
    border-radius: 10px;
    border: 1px solid #4a5270;
    color: #e0e4ff;
    padding: 12px 14px;
    font-size: 18px;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ffb347;
    box-shadow: 0 0 0 3px rgba(255, 179, 71, 0.18);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #555c7a;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

/* ---------------------------------------------------------
   FORM STATUS MESSAGES
--------------------------------------------------------- */
.form-status {
    padding: 20px 32px;
    border-radius: 12px;
    margin: 0 0 24px 0;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.6;
}

.form-status.success {
    background-color: #1a3a2a;
    color: #6ee7a0;
    border: 1px solid #2d6645;
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.01em;
    padding: 60px 60px;
    margin: 0 0 70px 0;
    border-radius: 16px;
}

.form-status.error {
    background-color: #3a1a1a;
    color: #f87171;
    border: 1px solid #6b2323;
}

/* ---------------------------------------------------------
   FOOTER — POLISHED OPTICS
--------------------------------------------------------- */
.site-footer {
    border-top: 1px solid #1b1f2b;
    padding: 40px 20px;
    text-align: center;
    font-size: 16px;
    color: #a0a4c0;
    background: #05070d;
    line-height: 1.6;
}

.legal-tag {
    margin-top: 12px;
    font-size: 15px;
    opacity: 0.65;
    letter-spacing: 0.4px;
}

.site-footer a {
    color: #ffb347;
    text-decoration: none;
    font-weight: 600;
}

.site-footer a:hover {
    opacity: 0.8;
}

/* ---------------------------------------------------------
   RESPONSIVE — TABLET
--------------------------------------------------------- */
@media (max-width: 900px) {
    .hero-section {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
        margin-bottom: 20px;
    }

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

    .francis-frame iframe {
        min-height: 400px;
    }
}

/* ---------------------------------------------------------
   RESPONSIVE — MOBILE (FULL OPTIMIZED BLOCK)
--------------------------------------------------------- */
@media (max-width: 640px) {

    .logo-wrap img {
        height: 120px;
    }

    .main-nav a {
        font-size: 16px;
    }

    .header-inner {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }

    body {
        font-size: 16px;
    }

    h1 {
        font-size: 32px;
        line-height: 1.25;
    }

    h2 {
        font-size: 26px;
    }

    p {
        font-size: 16px;
    }

    .hero-section {
        padding: 40px 20px;
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .hero-sub {
        font-size: 18px;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        max-height: 260px;
        object-fit: cover;
        border-radius: 12px;
    }

    section {
        padding: 40px 0;
    }

    .why-block,
    .op-card,
    .contact-form {
        padding: 24px;
    }

    .francis-frame iframe {
        min-height: 320px;
    }

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

    .hamburger {
        display: block;
        width: 32px;
        height: 24px;
        position: relative;
        cursor: pointer;
    }

    .hamburger span {
        position: absolute;
        height: 4px;
        width: 100%;
        background: #ffb347;
        border-radius: 4px;
        left: 0;
        transition: 0.3s ease;
    }

    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 10px; }
    .hamburger span:nth-child(3) { top: 20px; }

    .main-nav {
        display: none;
        width: 100%;
        text-align: center;
    }

    .nav-open .main-nav {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 16px;
    }
}
