* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0c1324;
    color: #ffffff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: min(1280px, 92%);
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-heading h2,
.contact-text h2 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 14px;
    color: #ffffff;
}

.section-heading p,
.contact-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.78);
}

.btn-main,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
}

.btn-main {
    background: #ff2b59;
    color: #ffffff;
}

.btn-main:hover {
    background: #ff456d;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 43, 89, 0.12), transparent 30%),
        linear-gradient(135deg, #101932 0%, #121c3c 55%, #18203f 100%);
    padding: 80px 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.25;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 5px;
    background: rgba(255, 43, 89, 0.12);
    color: #ff6988;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: clamp(48px, 7vw, 86px);
    line-height: 1.02;
    margin-bottom: 22px;
    font-weight: 800;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-preview-stack {
    position: relative;
    min-height: 620px;
}

.preview-card {
    position: absolute;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255,255,255,0.08);
    background: #ffffff;
}

.preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.preview-one {
    width: 80%;
    top: 0;
    right: -40px;
    height: 220px;
    transform: rotate(5deg);
    outline: 1px solid transparent;
    backface-visibility: hidden;
}

.preview-two {
    width: 88%;
    top: 160px;
    left: 0;
    height: 300px;
    transform: rotate(-8deg);
    outline: 5px solid transparent;
}

.preview-three {
    width: 88%;
    top: 70%;
    bottom: 0;
    right: 30px;
    height: 370px;
    transform: rotate(10deg);
    outline: 5px solid transparent;
    z-index: 999;
    overflow: visible;
}

.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f1730 0%, #0b1020 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-wrap {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 32px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #10172c;
    border: 1px solid rgba(255,255,255,0.12);
    color: #ffffff;
    border-radius: 5px;
    padding: 14px 16px;
    font-size: 15px;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff2b59;
}

.contact-submit {
    width: auto;
}

.site-footer {
    background: #080d18;
    padding: 70px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 36px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 14px;
    color: #ffffff;
}

.footer-col p,
.footer-col li,
.footer-col a {
    color: rgba(255,255,255,0.72);
    font-size: 15px;
}

.footer-col ul li + li {
    margin-top: 10px;
}

.footer-col a:hover {
    color: #ff2b59;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 18px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}