/* Logo */

.logo-group {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.logo-icon {
    width: 176px;
    height: auto;
    max-height: none;
    display: block;
    object-fit: contain;
}

/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 42px;
}

.main-nav a {
    color: #1f2937;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}

.main-nav a:hover {
    color: #4f46e5;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 0 28px;
    border-radius: 18px;
    background: #4f46e5;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1rem;
}

.btn-login:hover {
    background: #4338ca;
    color: #ffffff !important;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 26px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid transparent;
}

.btn-primary {
    background: #4f46e5;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(79, 70, 229, 0.18);
}

.btn-primary:hover {
    background: #4338ca;
    color: #ffffff;
}

.btn-secondary {
    background: #ffffff;
    color: #1f2937;
    border-color: #d7dcea;
}

.btn-secondary:hover {
    border-color: #4f46e5;
    color: #4f46e5;
}

/* Hero */

.hero-copy h1 {
    max-width: 720px;
    margin-bottom: 24px;
}

.hero-subheadline {
    max-width: 640px;
    margin-bottom: 34px;
    font-size: 1.08rem;
    line-height: 1.75;
    color: #475467;
}

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

.hero-image-shell {
    background: #ffffff;
    border: 1px solid #e5e7ef;
    border-radius: 32px;
    padding: 26px;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
}

.hero-image-shell img {
    width: 100%;
    display: block;
    border-radius: 22px;
}

/* Typography */

h1 {
    font-size: clamp(1.95rem, 2.7vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
    color: #0f172a;
    font-weight: 800;
}

h2 {
    font-size: clamp(1.7rem, 2.3vw, 2.3rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 18px;
}

p {
    font-size: 1rem;
    line-height: 1.75;
    color: #475467;
}

.footer-text {
    max-width: 560px;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-links a {
    color: #475467;
    font-weight: 500;
}

/* Features */

.features-copy {
    max-width: 860px;
}

.feature-list {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    align-items: start;
    background: #ffffff;
    border: 1px solid #e6e8f0;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, 0.10);
    color: #4f46e5;
    font-weight: 800;
    font-size: 1rem;
}

.feature-list strong {
    display: block;
    margin-bottom: 4px;
    color: #0f172a;
    font-size: 1rem;
}

.feature-list p {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.65;
}

.closing-statement {
    margin-top: 24px;
    font-size: 1.32rem;
    line-height: 1.35;
    font-weight: 800;
    color: #0f172a;
}

