/* ============================================
   OLS Line Inc. - Professional Website Styles
   ============================================ */

/* --- CSS Variables --- */
:root {
    --color-primary: #0a1628;
    --color-primary-light: #132244;
    --color-secondary: #162d50;
    --color-tertiary: #1a4a7a;
    --color-accent: #00bcd4;
    --color-accent-hover: #00e0f7;
    --color-accent-glow: rgba(0, 188, 212, 0.15);
    --color-accent-soft: rgba(0, 188, 212, 0.08);
    --color-accent-secondary: #ffb300;
    --color-bg: #f8faff;
    --color-bg-alt: #eef4fa;
    --color-bg-card: #ffffff;
    --color-text: #1a2332;
    --color-text-light: #5a6a7a;
    --color-text-muted: #8a9aaa;
    --color-border: rgba(0, 0, 0, 0.08);
    --color-border-light: rgba(255, 255, 255, 0.1);
    --color-white: #ffffff;
    --color-success: #10b981;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 30px rgba(0, 188, 212, 0.15);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-accent-hover); }
ul { list-style: none; }

::selection {
    background: var(--color-accent);
    color: var(--color-white);
}

/* --- Container --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Announcement Bar --- */
.announcement-bar {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    border-bottom: 1px solid var(--color-border-light);
}

/* --- Header / Navigation --- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-light);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--color-accent), #0097a7);
    color: var(--color-white);
    border-radius: 10px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.5px;
}

.logo-light {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
    color: var(--color-accent);
}

/* --- Hamburger --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    line-height: 1;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), #0097a7);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 188, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 188, 212, 0.4);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
    background: rgba(0, 188, 212, 0.08);
}

.btn-large {
    padding: 18px 44px;
    font-size: 17px;
}

.btn-submit {
    padding: 14px 36px;
}

.btn-submit svg {
    transition: transform var(--transition);
}

.btn-submit:hover svg {
    transform: translateX(4px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 20%, rgba(0, 188, 212, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(0, 188, 212, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(26, 74, 122, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 24px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 50px;
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.text-accent {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Hero Visual --- */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-grid {
    position: relative;
    width: 320px;
    height: 320px;
}

.grid-line {
    position: absolute;
    background: rgba(0, 188, 212, 0.12);
}

.grid-line:nth-child(1),
.grid-line:nth-child(2) {
    width: 1px;
    height: 100%;
    left: 33.33%;
}

.grid-line:nth-child(2) { left: 66.66%; }

.grid-line:nth-child(3),
.grid-line:nth-child(4) {
    width: 100%;
    height: 1px;
    top: 33.33%;
}

.grid-line:nth-child(4) { top: 66.66%; }

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.3), transparent);
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.15), transparent);
    top: 50%;
    left: 50%;
    animation-delay: 2s;
}

.hero-shape-3 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 179, 0, 0.15), transparent);
    top: 30%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* --- Scroll Indicator --- */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.3; }
}

/* --- Section Shared --- */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--color-accent-soft);
    border-radius: 50px;
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.page-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
}

.section-header h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-secondary));
    border-radius: 2px;
    margin: 20px auto 0;
}

/* --- Stats Section --- */
.stats-section {
    background: var(--color-primary);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    color: var(--color-white);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    display: inline;
}

.stat-plus {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-accent);
    margin-left: 2px;
    vertical-align: super;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    letter-spacing: 0.3px;
}

/* --- About Section --- */
.about-section {
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-tertiary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--color-accent-soft);
    border-radius: 50%;
    color: var(--color-accent);
    font-size: 12px;
    flex-shrink: 0;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--color-accent);
}

.about-card-alt {
    border-left-color: var(--color-accent-secondary);
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.about-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-accent-soft);
    border-radius: 10px;
    color: var(--color-accent);
    font-size: 18px;
    flex-shrink: 0;
}

.about-card-alt .about-card-icon {
    background: rgba(255, 179, 0, 0.1);
    color: var(--color-accent-secondary);
}

.about-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
}

.about-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* --- Services Section --- */
.services-section {
    background: var(--color-bg-alt);
}

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

.service-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-secondary));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--color-accent-soft);
    border-radius: 14px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.service-card > p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
}

.service-features li {
    font-size: 13px;
    color: var(--color-text-muted);
    padding-left: 18px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

/* --- Why Us Section --- */
.why-section {
    background: var(--color-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.why-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-accent);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 12px;
    font-feature-settings: 'tnum';
}

.why-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.why-item p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 50%, rgba(0, 188, 212, 0.08), transparent),
        radial-gradient(ellipse 50% 40% at 70% 50%, rgba(0, 188, 212, 0.05), transparent);
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
    line-height: 1.7;
}

/* --- Contact Section --- */
.contact-section {
    background: var(--color-bg-alt);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 28px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--color-accent-soft);
    border-radius: 12px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

.contact-value {
    font-size: 15px;
    color: var(--color-text);
    font-weight: 500;
}

a.contact-value:hover {
    color: var(--color-accent);
}

/* --- Contact Form --- */
.contact-form {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--color-bg);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-text);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

/* --- Footer --- */
.footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--color-border-light);
}

.footer-brand .logo-text {
    font-size: 24px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-industry {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.3) !important;
    margin-top: 14px !important;
    line-height: 1.6 !important;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-contact ul li:last-child {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-dev {
    font-size: 12px;
    opacity: 0.7;
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 188, 212, 0.4);
    color: var(--color-white);
}

/* ============================================
   Page Hero (Privacy / Terms)
   ============================================ */
.page-hero {
    background: var(--color-primary);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0, 188, 212, 0.06), transparent);
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
}

.page-hero-content {
    text-align: center;
}

.page-hero-content h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.page-hero-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
}

/* --- Page Content --- */
.page-content-section {
    padding: 60px 0 100px;
}

.page-content {
    max-width: 820px;
    margin: 0 auto;
}

.legal-content {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: 50px 48px;
    box-shadow: var(--shadow-md);
}

.legal-intro {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 36px;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 36px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul li {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-contact {
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    padding: 24px 28px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.legal-contact p {
    margin-bottom: 4px;
}

.legal-developer-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.legal-developer-note p {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ============================================
   Animations
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-subtitle { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-visual { display: none; }

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

    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-primary);
        border-bottom: 1px solid var(--color-border-light);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav.open {
        max-height: 400px;
    }

    .nav-list {
        flex-direction: column;
        padding: 16px 24px;
        gap: 4px;
    }

    .nav-link {
        display: block;
        padding: 12px 16px;
        font-size: 16px;
    }

    .hamburger {
        display: flex;
    }

    .section {
        padding: 70px 0;
    }

    .legal-content {
        padding: 30px 24px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

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

    .stat-number {
        font-size: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}
