/* ========== HERO SECTIONS ========== */
.hero {
    text-align: center;
    padding: 80px 0 60px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--blue-authority);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.page-hero {
    text-align: center;
    padding: 40px 0 48px;
    margin-bottom: 64px;
    position: relative;
}

.page-hero:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #B56576 50%, transparent 100%);
}

.page-hero .hero-title {
    font-size: 32px;
    margin-bottom: 16px;
}

.page-hero .hero-subtitle {
    font-size: 17px;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== SUB-TABS ========== */
.sub-tabs {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.sub-tab-btn {
    padding: 0;
    background: none;
    color: var(--dusty-rose-action);
    border: none;
    font-size: 15px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.6;
}

.sub-tab-btn:hover {
    opacity: 0.8;
}

.sub-tab-btn.active {
    opacity: 1;
    font-weight: 600;
}

.sub-tab-content {
    display: none;
}

.sub-tab-content.active {
    display: block;
}

.sub-tab-content h2 {
    display: none;
}

/* ========== SERVICE TABS ========== */
.service-tabs {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.service-tab-btn {
    padding: 0;
    background: none;
    color: var(--dusty-rose-action);
    border: none;
    font-size: 15px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.6;
}

.service-tab-btn:hover {
    opacity: 0.8;
}

.service-tab-btn.active {
    opacity: 1;
    font-weight: 600;
}

.service-content {
    display: none;
}

.service-content.active {
    display: block;
}

.service-content p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* ========== FEATURE CARDS ========== */
.feature-card {
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--dusty-rose-action);
    stroke-width: 1.5;
    fill: none;
}

.feature-card h5 {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.feature-card p {
    font-size: 14px;
    color: #2d3748;
    line-height: 1.6;
    margin: 0;
}

/* ========== BUTTONS ========== */
.btn {
    padding: 11px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
}

.btn-primary {
    background: var(--dusty-rose-action);
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    background: #9f4d60;
}

.btn-secondary {
    background: transparent;
    color: var(--blue-authority);
    border: 1px solid var(--border-blue);
}

.btn-secondary:hover {
    background: rgba(35, 50, 107, 0.05);
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

/* ========== PLATFORMS ========== */
.platform-card {
    padding: 24px;
    background: var(--bg-white);
    border-radius: 6px;
    border: 1px solid var(--border-blue);
}

.platform-card h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--blue-authority);
}

.platform-logo-container {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.platform-logo {
    max-height: 36px;
    max-width: 130px;
    opacity: 0.75;
}

.platform-services {
    list-style: none;
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========== CONTACT FORM ========== */
.contact-form-wrapper {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-blue);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    border: 1px solid var(--border-blue);
    border-radius: 6px;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dusty-rose-action);
    background: var(--bg-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--dusty-rose-action);
}

/* ========== CONTACT INFO ========== */
.contact-info {
    padding-top: 8px;
}

.contact-info h3 {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--blue-authority);
}

.contact-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--blue-authority);
}

.contact-detail {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.6;
}

.contact-detail strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 4px;
}

.contact-detail a {
    color: var(--dusty-rose-action);
    transition: color 0.2s;
}

.contact-detail a:hover {
    color: var(--blue-authority);
}

.social-links {
    margin-top: 40px;
}

.social-link {
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
    color: var(--text-gray);
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--dusty-rose-action);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-white);
    margin-left: var(--sidebar-width);
    margin-top: 80px;
    transition: margin-left 0.3s ease;
}

body.sidebar-collapsed .footer {
    margin-left: 0;
}

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

.footer-section h3 {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-authority);
    margin-bottom: 16px;
}

.footer-section h4 {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-authority);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    font-size: 14px;
    color: var(--text-gray);
    transition: color 0.2s;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--dusty-rose-action);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer-social a {
    font-size: 13px;
}

.footer-bottom {
    padding: 24px 64px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}
