* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: #ff7300;
    color: #000;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ─── TEXTURE OVERLAY ─────────────────────────────────── */
.texture {
    position: relative;
}
.texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}
.texture > * {
    position: relative;
    z-index: 1;
}

/* ─── NAVIGATION ──────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
}

.logo span {
    color: #ff7300;
}

.nav-pill {
    display: flex;
    background: rgba(255,255,255,0.04);
    border-radius: 50px;
    padding: 5px;
    gap: 2px;
    border: 1px solid rgba(255,255,255,0.08);
}

.nav-pill a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.nav-pill a:hover,
.nav-pill a.active {
    background: #ff7300;
    color: #000;
    font-weight: 600;
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 120px 40px 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 8px;
}

.hero-content h1 span {
    color: #ff7300;
}

.hero-content h2 {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    color: rgba(255,255,255,0.2);
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: #ff7300;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.btn-primary:hover {
    background: #ff8c1a;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255,115,0,0.35);
}

.btn-ghost {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.25s ease;
}

.btn-ghost:hover {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: #ff7300;
    text-decoration: none;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ─── SECTION GLOBALS ─────────────────────────────────── */
section {
    padding: 100px 0;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ff7300;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-title span {
    color: #ff7300;
}

.section-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    max-width: 520px;
    line-height: 1.7;
}

/* ─── ABOUT / MISSION ─────────────────────────────────── */
.about-section {
    background: #0d0d0d;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-visual {
    position: relative;
}

.about-image-box {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}

.about-stat-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #ff7300;
    color: #000;
    padding: 20px 24px;
    border-radius: 12px;
    text-align: center;
}

.about-stat-badge .stat-num {
    font-size: 32px;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.about-stat-badge .stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content p strong {
    color: #fff;
    font-weight: 600;
}

.mission-statement {
    margin-top: 32px;
    padding: 24px 28px;
    border-left: 3px solid #ff7300;
    background: rgba(255,115,0,0.04);
    border-radius: 0 8px 8px 0;
}

.mission-statement p {
    font-size: 18px !important;
    color: rgba(255,255,255,0.85) !important;
    font-style: italic;
    line-height: 1.7 !important;
    margin: 0 !important;
}

/* ─── PRICING ─────────────────────────────────────────── */
.pricing-section {
    background: #0a0a0a;
}

.pricing-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    margin-bottom: 60px;
}

.pricing-block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    margin-bottom: 70px;
}

.pricing-block-title {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 40px;
    color: #fff;
}

.pricing-block-title span {
    color: rgba(255,255,255,0.25);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.package-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 36px 32px;
    transition: border-color 0.2s ease;
    position: relative;
}

.package-card:hover {
    border-color: rgba(255,115,0,0.2);
}

.package-card.featured {
    border-color: rgba(255,115,0,0.35);
    background: #141414;
}

.package-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.package-name {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.package-badge {
    font-size: 11px;
    font-weight: 700;
    background: #ff7300;
    color: #000;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.package-price {
    font-size: 48px;
    font-weight: 900;
    color: #ff7300;
    letter-spacing: -2px;
    margin-bottom: 24px;
    line-height: 1;
}

.package-price span {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0;
}

.package-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.package-features li {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #ff7300;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Pre-built packages */
.prebuilt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.prebuilt-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 28px 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    transition: border-color 0.2s ease;
}

.prebuilt-card:hover {
    border-color: rgba(255,115,0,0.3);
}

.prebuilt-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.prebuilt-info ul {
    list-style: none;
}

.prebuilt-info li {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prebuilt-info li::before {
    content: '•';
    color: #ff7300;
    font-size: 16px;
    line-height: 1;
}

.prebuilt-price {
    font-size: 32px;
    font-weight: 900;
    color: #ff7300;
    white-space: nowrap;
    letter-spacing: -1px;
}

/* Focus list */
.focus-list {
    background: #111;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    margin-bottom: 40px;
}

.focus-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s ease;
}

.focus-item:last-child {
    border-bottom: none;
}

.focus-item:hover {
    background: rgba(255,255,255,0.02);
}

.focus-name {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    gap: 12px;
}

.focus-name::before {
    content: '';
    flex: 1;
    display: none;
}

.focus-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255,255,255,0.15);
    margin: 0 16px;
}

.focus-rate {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
}

.focus-rate.highlight {
    color: #ff7300;
    font-weight: 600;
}

/* Add-ons */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.addon-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 24px 20px;
    transition: border-color 0.2s ease;
}

.addon-card:hover {
    border-color: rgba(255,115,0,0.3);
}

.addon-price {
    font-size: 28px;
    font-weight: 900;
    color: #ff7300;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.addon-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.addon-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
}

/* ─── SERVICES ────────────────────────────────────────── */
.services-section {
    background: #0d0d0d;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.services-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 36px 28px;
    transition: border-color 0.2s ease;
}

.service-card:hover {
    border-color: rgba(255,115,0,0.3);
}

.service-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 8px 0;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #ff7300;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ─── BOOK / CTA ──────────────────────────────────────── */
.book-section {
    background: #0a0a0a;
    text-align: center;
    padding: 120px 40px;
}

.book-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
    display: block;
}

.book-title {
    font-size: 80px;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 12px;
}

.book-title span {
    color: #ff7300;
}

.book-email {
    font-size: 18px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 40px;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
    padding: 60px 0 32px;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 40px;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #fff;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col p,
.footer-col a {
    display: block;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #ff7300;
}

.tagline {
    font-size: 13px !important;
    color: rgba(255,255,255,0.25) !important;
    margin-bottom: 0 !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 40px 0;
}

.footer-bottom p {
    color: rgba(255,255,255,0.25);
    font-size: 12px;
}

/* ─── LEGAL PAGES ─────────────────────────────────────── */
.legal-page {
    padding: 120px 24px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.legal-page .updated {
    color: rgba(255,255,255,0.5);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #ff7300;
}

.legal-page p {
    margin-bottom: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
    color: rgba(255,255,255,0.8);
}

.legal-page li {
    margin-bottom: 10px;
}

.legal-page a {
    color: #ff7300;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

/* ─── ADMIN LOGIN ─────────────────────────────────────── */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-box {
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    text-align: center;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-visual { display: none; }
    .packages-grid { grid-template-columns: 1fr; }
    .prebuilt-grid { grid-template-columns: 1fr; }
    .addons-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .nav-pill { display: none; }
    .hero { padding: 100px 20px 60px; }
    .hero-content h1 { font-size: 52px; letter-spacing: -2px; }
    .hero-content h2 { font-size: 52px; letter-spacing: -2px; }
    .section-title { font-size: 36px; letter-spacing: -1px; }
    .book-title { font-size: 52px; letter-spacing: -2px; }
    .services-grid { grid-template-columns: 1fr; padding: 0 20px; }
    .addons-grid { grid-template-columns: 1fr 1fr; }
    .prebuilt-card { flex-direction: column; gap: 12px; }
    .footer-content { grid-template-columns: 1fr; padding: 0 20px; }
    .about-grid { padding: 0 20px; }
    .pricing-block { padding: 0 20px; }
    .pricing-header { padding: 0 20px; }
    .services-header { padding: 0 20px; }
    .focus-item { padding: 16px 20px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 40px; }
    .hero-content h2 { font-size: 40px; }
    .package-features { grid-template-columns: 1fr; }
    .addons-grid { grid-template-columns: 1fr; }
    .book-title { font-size: 40px; }
}
