/* ===== Google Font ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== Root Variables ===== */
:root {
    --primary: #4f46e5;
    --secondary: #9333ea;

    --bg-main: #f8fafc;
    --bg-soft: #f1f5f9;
    --bg-white: #ffffff;

    --text-main: #0f172a;
    --text-muted: #64748b;

    --border: #e2e8f0;
}

/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Body ===== */
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--text-main);
}

p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ===== Links ===== */
a {
    text-decoration: none;
    transition: 0.3s;
    color: inherit;
}

/* ===== Section ===== */
.section {
    padding: 80px 0;
}

/* ===== Container Fix ===== */
.container {
    max-width: 1200px;
}

/* ===== Buttons ===== */
.btn {
    border-radius: 10px;
    font-weight: 500;
    padding: 10px 20px;
}

.btn-gradient {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
}

.btn-gradient:hover {
    opacity: 0.9;
}

/* ===== Card ===== */
.card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ===== Forms ===== */
input,
textarea {
    width: 100%;
    border-radius: 10px !important;
    border: 1px solid var(--border) !important;
    padding: 12px;
    font-size: 14px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}

/* ===== Utilities ===== */
.text-muted {
    color: var(--text-muted) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-soft {
    background: var(--bg-soft);
}

.bg-white {
    background: var(--bg-white);
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(120deg, #eef2ff, #f8fafc);
    border-radius: 20px;
    padding: 80px 40px;
}

/* ===== Scroll Behavior ===== */
html {
    scroll-behavior: smooth;
}

/* ===== Scrollbar (Premium Feel) ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}