/* 
Colour palette

#1A6CF6 — brand blue
#080D14 — page background
#0B1220 — cards/surface
#162947 — elevated/inputs
#E8EDF5 — white text
#6B84A0 — muted/grey text 
*/

/* General styles */
* { margin: 0; padding: 0; }

body {
    background: #080D14;
    color: #E8EDF5;
    font-family: 'Space Grotesk', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main { flex: 1; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    color: #E8EDF5;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

p { color: #6B84A0; line-height: 1.7; }

.label {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #1A6CF6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.3rem;
    border-radius: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
}
.btn:hover  { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: #1A6CF6; color: #fff; }
.btn-outline { background: transparent; color: #E8EDF5; border: 1px solid rgba(232, 237, 245, 0.2); }
.btn-outline:hover { border-color: rgba(232, 237, 245, 0.45); opacity: 1; }

/* Navbar */
#main-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 13, 20, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(22, 41, 71, 0.7);
}

.nav-link {
    font-size: 0.875rem;
    color: #6B84A0 !important;
    padding: 0.3rem 0.75rem !important;
    border-radius: 0.4rem;
    transition: color 0.2s;
}
.nav-link:hover { color: #E8EDF5 !important; }
.nav-link.active { color: #E8EDF5 !important; background: #162947; }

.nav-auth { display: flex; align-items: center; gap: 1.25rem; }

.navbar-toggler { border: none; background: transparent; padding: 4px; display: flex; flex-direction: column; gap: 5px; }
.navbar-toggler:focus { box-shadow: none; }

.burger-bar { display: block; height: 2px; width: 22px; background: #E8EDF5; border-radius: 2px; }

@media (max-width: 767px) {
    .navbar-collapse { padding: 1rem 0; border-top: 1px solid rgba(22, 41, 71, 0.6); }
    .nav-auth { flex-direction: column; align-items: stretch; padding-top: 1rem; border-top: 1px solid rgba(22, 41, 71, 0.6); margin-top: 0.5rem; }
    .nav-auth .btn { text-align: center; }
}

/* home.html hero*/
.hero {
    padding: 5rem 0;
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
}

.hero-left { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
}

.hero-sub { font-size: 1rem; color: #6B84A0; max-width: 480px; line-height: 1.7; margin: 0; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-right { display: flex; justify-content: center; margin-top: 3rem; }

@media (min-width: 768px) {
    .hero-right { margin-top: 0; justify-content: flex-end; }
}

.hero-card {
    background: #0B1220;
    border: 1px solid rgba(22, 41, 71, 0.8);
    border-radius: 1.25rem;
    padding: 2.5rem;
    width: 100%;
    max-width: 340px;
}

.hero-card-inner { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }

.hero-card-label { font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.13em; color: #1A6CF6; margin: 0; }

.hero-card-sub { font-size: 1rem; font-weight: 600; color: #E8EDF5; margin: 0; }

.hero-card-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-top: 0.5rem; }

.hero-tag {
    font-size: 0.75rem;
    color: #6B84A0;
    background: #162947;
    border: 1px solid rgba(107, 132, 160, 0.2);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
}

.badge-avail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    background: rgba(11, 18, 32, 0.9);
    color: #6B84A0;
    border: 1px solid rgba(107, 132, 160, 0.25);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    width: fit-content;
}

.badge-avail::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    animation: blink 2s ease infinite;
}

/* Account pages */
.auth-wrapper {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}
 
.auth-card {
    background: #0B1220;
    border: 1px solid rgba(107, 132, 160, 0.15);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 460px;
}
 
.auth-title { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.4rem; }
 
.auth-sub { font-size: 0.875rem; color: #6B84A0; margin-bottom: 1.75rem; }
 
.auth-link { color: #1A6CF6; }
.auth-link:hover { text-decoration: underline; }
 
.auth-social { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
 
.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: 1px solid rgba(107, 132, 160, 0.25);
    border-radius: 0.5rem;
    color: #E8EDF5;
    font-family: 'Space Mono', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.btn-social:hover { border-color: rgba(107, 132, 160, 0.5); background: rgba(107, 132, 160, 0.05); color: #E8EDF5; }
 
.or-divider {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: #6B84A0;
    font-size: 0.78rem;
    font-family: 'Space Mono', monospace;
    margin: 1.25rem 0;
}
.or-divider::before,
.or-divider::after { content: ''; flex: 1; height: 1px; background: rgba(107, 132, 160, 0.2); }
 
.field-label { display: block; font-size: 0.82rem; font-weight: 500; margin-bottom: 0.4rem; }
.req { color: #1A6CF6; }
 
.field {
    width: 100%;
    background: #162947;
    border: 1px solid rgba(107, 132, 160, 0.2);
    border-radius: 0.5rem;
    padding: 0.7rem 1rem;
    color: #E8EDF5;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.field::placeholder { color: #6B84A0; }
.field:focus { border-color: #1A6CF6; box-shadow: 0 0 0 3px rgba(26, 108, 246, 0.15); }
 
.form-group { margin-bottom: 1.25rem; }
 
.forgot-link {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: #6B84A0;
    margin-top: 0.4rem;
    transition: color 0.2s;
}
.forgot-link:hover { color: #1A6CF6; }
 
.btn-full { width: 100%; justify-content: center; margin-top: 0.5rem; padding: 0.85rem; }
 
.auth-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    padding: 0.7rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}


/* Footer */
#main-footer {
    background: #0B1220;
    border-top: 1px solid rgba(22, 41, 71, 0.6);
    padding: 3rem 0 0;
}

.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }

.footer-tagline { font-size: 0.85rem; color: #6B84A0; max-width: 200px; }

.footer-heading {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #1A6CF6;
    margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.875rem; color: #6B84A0; transition: color 0.2s; }
.footer-col ul li a:hover { color: #E8EDF5; }

.footer-bottom {
    margin-top: 2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(22, 41, 71, 0.5);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
    color: #6B84A0;
}

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #6B84A0; transition: color 0.2s; }
.footer-legal a:hover { color: #E8EDF5; }

/* Alerts / Messages */
.messages-wrapper { margin-top: 1.25rem; }
 
.fhq-alert {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    border: 1px solid transparent;
}
 
.fhq-alert-success { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.3); color: #34d399; }
.fhq-alert-error   { background: rgba(239,68,68,0.1);  border-color: rgba(239,68,68,0.3);  color: #f87171; }
.fhq-alert-info    { background: rgba(26,108,246,0.1); border-color: rgba(26,108,246,0.3); color: #60a5fa; }
.fhq-alert-warning { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.3); color: #fbbf24; }
 
.alert-close {
    background: transparent;
    border: none !important;
    outline: none !important;
    cursor: pointer;
    color: inherit;
    opacity: 0.5;
    font-size: 0.75rem;
    font-family: 'Space Mono', monospace;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    transition: opacity 0.2s;
    line-height: 1;
    -webkit-appearance: none;
    appearance: none;
}
.alert-close:hover { opacity: 1; }

/* Contact page */
.contact-section {
    padding: 5rem 0;
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
}
 
.contact-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0.75rem 0 1rem;
}
 
.contact-title-blue { color: #1A6CF6; }
 
.contact-sub {
    font-size: 0.95rem;
    color: #6B84A0;
    line-height: 1.7;
    margin-bottom: 2rem;
}
 
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
 
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
 
.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: #162947;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
 
.contact-info-label {
    font-size: 0.75rem;
    color: #6B84A0;
    margin: 0;
    line-height: 1.4;
}
 
.contact-info-value {
    font-size: 0.875rem;
    color: #E8EDF5;
    margin: 0;
    line-height: 1.4;
}
 
.contact-card {
    background: #0B1220;
    border: 1px solid rgba(107, 132, 160, 0.15);
    border-radius: 1.25rem;
    padding: 2.5rem;
}
 
.contact-form-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #E8EDF5;
    margin-bottom: 1.75rem;
}

/* Packages page */
.packages-section { padding: 5rem 0; }
 
.packages-header { margin-bottom: 3rem; }
 
.packages-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0.75rem 0 1rem;
    max-width: 700px;
}
 
.packages-sub { font-size: 0.95rem; color: #6B84A0; max-width: 480px; line-height: 1.7; margin: 0; }
 
.package-card {
    background: #0B1220;
    border: 1px solid rgba(22, 41, 71, 0.8);
    border-radius: 1rem;
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
 
.package-card--recommended {
    background: #0F1B2D;
    border-color: rgba(26, 108, 246, 0.4);
    box-shadow: 0 0 0 1px rgba(26, 108, 246, 0.2);
}
 
.package-recommended-badge {
    position: absolute;
    top: 0;
    right: 1.25rem;
    background: #1A6CF6;
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.65rem;
    border-radius: 0 0 0.4rem 0.4rem;
}
 
.package-code {
    font-family: 'Space Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6B84A0;
    margin-bottom: 0.5rem;
}
 
.package-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #E8EDF5;
    margin-bottom: 0.75rem;
}
 
.package-name--recommended { color: #1A6CF6; }
 
.package-price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(22, 41, 71, 0.6);
}
 
.package-price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #E8EDF5;
    letter-spacing: -0.02em;
}
 
.package-price-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    color: #6B84A0;
    letter-spacing: 0.1em;
}
 
.package-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1;
    margin-bottom: 1.75rem;
}
 
.package-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: #E8EDF5;
    line-height: 1.5;
}
 
.package-feature-icon {
    color: #1A6CF6;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
 
.package-cta { margin-top: auto; }
 
.package-btn {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem;
    width: 100%;
    justify-content: center;
}

/* Build your own section */
.custom-package-section {
    background: #0B1220;
    border: 1px solid rgba(26, 108, 246, 0.2);
    border-radius: 1.25rem;
    padding: 2.5rem;
    margin-top: 1rem;
}
 
.custom-package-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
 
.custom-package-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.5rem 0 0.5rem;
    color: #E8EDF5;
}
 
.custom-package-sub {
    font-size: 0.875rem;
    color: #6B84A0;
    margin: 0;
    max-width: 480px;
}
 
.addon-preview {
    background: #162947;
    border: 1px solid rgba(22, 41, 71, 0.8);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
}
 
.addon-preview-name {
    font-size: 0.78rem;
    color: #E8EDF5;
    margin: 0 0 0.4rem;
    font-weight: 500;
}
 
.addon-preview-price {
    font-size: 1rem;
    font-weight: 700;
    color: #1A6CF6;
    margin: 0;
}

/* Custom package page */

.addon-card {
    display: block;
    cursor: pointer;
    height: 100%;
}
 
.addon-card-inner {
    background: #0B1220;
    border: 1px solid rgba(22, 41, 71, 0.8);
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.2s;
}
 
.addon-card:has(.addon-checkbox:checked) .addon-card-inner {
    border-color: #1A6CF6;
    background: #0F1B2D;
}
 
.addon-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
 
.addon-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #1A6CF6;
    cursor: pointer;
    flex-shrink: 0;
}
 
.addon-name {
    font-size: 1rem;
    font-weight: 600;
    color: #E8EDF5;
}
 
.addon-description {
    font-size: 0.82rem;
    color: #6B84A0;
    line-height: 1.5;
    flex: 1;
    margin: 0;
}
 
.addon-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A6CF6;
    margin: 0;
}
 
.addon-total-bar {
    position: sticky;
    bottom: 1.5rem;
    background: #0B1220;
    border: 1px solid rgba(26, 108, 246, 0.3);
    border-radius: 1rem;
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
 
.addon-total-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}
 
.addon-total-label {
    font-size: 0.875rem;
    color: #6B84A0;
}
 
.addon-total-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: #E8EDF5;
}

.addon-pages-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.addon-pages-input {
    width: 80px;
    padding: 0.5rem;
    text-align: center;
}

.addon-pages-label {
    font-size: 0.82rem;
    color: #6B84A0;
}

/* Summary package page */
.summary-card {
    background: #0B1220;
    border: 1px solid rgba(107, 132, 160, 0.15);
    border-radius: 1.25rem;
    overflow: hidden;
    margin: 2rem 0;
}
 
.summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(22, 41, 71, 0.6);
}
 
.summary-item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #E8EDF5;
    margin: 0;
}
 
.summary-item-desc {
    font-size: 0.8rem;
    color: #6B84A0;
    margin: 0.25rem 0 0;
}
 
.summary-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
    flex-shrink: 0;
}
 
.summary-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: #E8EDF5;
}
 
.summary-remove {
    font-size: 0.75rem;
    color: #f87171;
    cursor: pointer;
    transition: opacity 0.2s;
}
.summary-remove:hover { opacity: 0.7; }
 
.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-size: 0.875rem;
    color: #6B84A0;
}
 
.summary-total-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: #E8EDF5;
}
 
.summary-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}
 
.summary-empty {
    text-align: center;
    padding: 3rem 0;
    color: #6B84A0;
}

.pages-adjuster {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}

.pages-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #162947;
    border: 1px solid rgba(107, 132, 160, 0.2);
    color: #E8EDF5;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.pages-btn:hover { background: #1A6CF6; border-color: #1A6CF6; }

.pages-count {
    font-size: 1rem;
    font-weight: 600;
    color: #E8EDF5;
    min-width: 24px;
    text-align: center;
}
/* Portfolio page */

.portfolio-section { padding: 5rem 0; }
 
.portfolio-header { margin-bottom: 3rem; }
 
.portfolio-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0.75rem 0 0.5rem;
}
 
.portfolio-sub { font-size: 0.95rem; color: #6B84A0; margin: 0; }
 
.portfolio-card {
    background: #0B1220;
    border: 1px solid rgba(22, 41, 71, 0.8);
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s;
}
.portfolio-card:hover { border-color: rgba(26, 108, 246, 0.3); }
 
.portfolio-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    background: #162947;
    overflow: hidden;
}
 
.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
 
.portfolio-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: #6B84A0;
}
 
.portfolio-live-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 1;
}

.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.5);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    letter-spacing: 0.08em;
}
 
.portfolio-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}
 
.portfolio-card-category {
    font-family: 'Space Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    color: #1A6CF6;
    margin: 0;
}
 
.portfolio-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #E8EDF5;
    margin: 0;
}
 
.portfolio-card-desc {
    font-size: 0.82rem;
    color: #6B84A0;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}
 
.portfolio-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
}
 
.portfolio-tag {
    font-size: 0.72rem;
    color: #6B84A0;
    background: #162947;
    border: 1px solid rgba(107, 132, 160, 0.2);
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
}
 
.portfolio-card-link {
    font-size: 0.82rem;
    color: #1A6CF6;
    margin-top: 0.5rem;
    transition: opacity 0.2s;
}
.portfolio-card-link:hover { opacity: 0.75; }
 
.portfolio-cta {
    text-align: center;
    margin-top: 4rem;
}
 
.portfolio-empty {
    text-align: center;
    color: #6B84A0;
    padding: 3rem 0;
}

/* About page */

.about-section {
    padding: 5rem 0 3rem;
}
 
.about-logo-wrap {
    background: #1A6CF6;
    border-radius: 1.5rem;
    padding: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
 
.about-logo { width: 120px; height: 120px; object-fit: contain; }
 
.about-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 1rem 0;
    letter-spacing: -0.02em;
}
 
.about-body {
    font-size: 0.95rem;
    color: #6B84A0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Team section */

.about-team-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.team-feature {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-top: 2rem;
}

.team-feature-image {
    flex-shrink: 0;
}

.team-feature-image img,
.team-profile-placeholder {
    width: 280px;
    height: 280px;
    border-radius: 24px;
    object-fit: cover;
}

.team-profile-placeholder {
    background: linear-gradient(
        135deg,
        #1A6CF6 0%,
        #3A86FF 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    font-weight: 700;
}

.team-feature-content {
    max-width: 750px;
}

.team-feature-content h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #1A6CF6;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.team-bio {
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
    font-size: 1rem;
}

.about-cta-section { padding: 3rem 0 5rem; }
 
.about-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =============================================
   SERVICES PAGE
   ============================================= */

/* Hero */
.services-hero {
    padding: 80px 0 48px;
}

.services-label {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    font-weight: 400;
    color: #1A6CF6;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.services-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #E8EDF5;
    line-height: 1.1;
    margin-bottom: 16px;
}

.services-subheading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: #6B84A0;
    max-width: 480px;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Cards Section */
.services-cards {
    padding: 16px 0 80px;
}

/* Individual Card */
.service-card {
    background: #0B1220;
    border: 1px solid #162947;
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    transition: border-color 0.2s ease;
}

.service-card:hover {
    border-color: #1A6CF6;
}

.service-card-inner {
    display: flex;
    gap: 28px;
    height: 100%;
}

.service-card-left {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 44px;
    height: 44px;
    background: #162947;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #E8EDF5;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-tagline {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    color: #1A6CF6;
    margin-bottom: 10px;
    line-height: 1.5;
}

.service-desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    color: #6B84A0;
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
}

/* Vertical divider */
.service-card-divider {
    width: 1px;
    background: #162947;
    flex-shrink: 0;
    align-self: stretch;
}

/* Feature list */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.service-features li {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    color: #E8EDF5;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1A6CF6;
    font-size: 0.8rem;
    font-weight: 700;
    top: 0;
}

/* Responsive: stack the two-column card layout on mobile */
@media (max-width: 768px) {
    .service-card-inner {
        flex-direction: column;
        gap: 24px;
    }

    .service-card-left {
        flex: unset;
    }

    .service-card-divider {
        width: 100%;
        height: 1px;
        align-self: auto;
    }
}

/* Responsive: stack the two-column card layout on mobile */
@media (max-width: 768px) {
    .service-card-inner {
        flex-direction: column;
        gap: 24px;
    }
 
    .service-card-left {
        flex: unset;
    }
 
    .service-card-divider {
        width: 100%;
        height: 1px;
        align-self: auto;
    }
}
 
/* Mobile fix for about page profile text */

@media (max-width: 767px) {
    .team-feature {
        flex-direction: column;
        gap: 1.5rem;
    }

    .team-feature-image img,
    .team-profile-placeholder {
        width: 100%;
        height: 240px;
    }

    .team-feature-content h2 {
        font-size: 1.5rem;
    }

    .team-bio {
        font-size: 0.9rem;
    }
}