* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #172033;
background: #f8fafc;
}

.container {
width: min(1120px, 90%);
margin: auto;
}

.header {
background: linear-gradient(135deg, #08111f, #102a43);
color: white;
padding-bottom: 80px;
}

.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 28px 0;
}

.logo {
font-size: 1.4rem;
font-weight: 700;
}

.nav-links {
display: flex;
gap: 28px;
list-style: none;
}

.nav-links a {
color: white;
text-decoration: none;
font-weight: 500;
}

.hero {
display: grid;
grid-template-columns: 1.4fr 0.8fr;
gap: 48px;
align-items: center;
padding-top: 70px;
}

.hero h1 {
font-size: clamp(2.4rem, 5vw, 4.8rem);
line-height: 1.05;
margin: 20px 0;
}

.hero p {
font-size: 1.1rem;
color: #d6e2ef;
max-width: 680px;
}

.badge {
display: inline-block;
background: #e0b15d;
color: #111827;
padding: 8px 14px;
border-radius: 999px;
font-size: 0.85rem;
font-weight: 700;
}

.hero-actions {
display: flex;
gap: 16px;
margin-top: 32px;
}

.btn {
display: inline-block;
padding: 14px 22px;
border-radius: 12px;
text-decoration: none;
font-weight: 700;
border: none;
cursor: pointer;
}

.btn-primary {
background: #e0b15d;
color: #111827;
}

.btn-secondary {
background: transparent;
color: white;
border: 1px solid rgba(255,255,255,0.35);
}
.hero-card {
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,255,255,0.15);
padding: 32px;
border-radius: 24px;
backdrop-filter: blur(10px);
}

.section {
padding: 90px 0;
}

.section-heading {
max-width: 760px;
margin-bottom: 48px;
}

.section-heading h2, .section h2 {
font-size: clamp(2rem, 4vw, 3.2rem);
line-height: 1.15;
margin: 16px 0;
}

.grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}

.card, .price-card, blockquote {
background: white;
padding: 28px;
border-radius: 22px;
box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.card h3, .price-card h3 {
margin-bottom: 12px;
font-size: 1.3rem;
}

.dark {
background: #0b1220;
color: white;
}

.dark p {
color: #cbd5e1;
}

.steps {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}

.steps div {
background: rgba(255,255,255,0.06);
padding: 28px;
border-radius: 22px;
}

.steps strong {
color: #e0b15d;
font-size: 1.4rem;
}
.pricing {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}

.price-card ul {
margin-top: 20px;
padding-left: 20px;
}

.featured {
background: #102a43;
color: white;
transform: translateY(-10px);
}

.testimonials {
background: #edf2f7;
}

.testimonials .grid {
grid-template-columns: repeat(2, 1fr);
}

blockquote {
font-size: 1.15rem;
font-style: italic;
}

.contact-box {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
background: white;
padding: 48px;
border-radius: 28px;
box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.premium-contact {
position: relative;
overflow: hidden;
background: linear-gradient(135deg, #ffffff, #f7f9fc);
border: 1px solid #e5eaf3;
}

.premium-contact::before {
content: "";
position: absolute;
top: -120px;
right: -120px;
width: 280px;
height: 280px;
background: rgba(224, 177, 93, 0.18);
border-radius: 50%;
animation: floatingGlow 6s ease-in-out infinite;
}

.contact-content {
position: relative;
z-index: 1;
}

.contact-content h2 {
margin: 18px 0;
}

.contact-benefits {
display: grid;
gap: 14px;
margin-top: 28px;
}

.contact-benefits div {
background: #f8fafc;
border: 1px solid #e5eaf3;
padding: 16px;
border-radius: 16px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-benefits div:hover {
transform: translateX(8px);
box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.contact-benefits strong {
display: block;
color: #102a43;
}

.contact-benefits span {
display: block;
color: #64748b;
font-size: 0.95rem;
}

.contact-form {
display: grid;
gap: 14px;
}

.premium-form {
position: relative;
z-index: 1;
background: #ffffff;
padding: 28px;
border-radius: 24px;
border: 1px solid #e5eaf3;
box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
animation: fadeUp 0.9s ease both;
}

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 14px;
}

.form-group {
display: grid;
gap: 8px;
}

label {
font-weight: 700;
font-size: 0.92rem;
color: #102a43;
}

input, select, textarea {
width: 100%;
padding: 15px 16px;
border: 1px solid #dbe3ef;
border-radius: 14px;
font: inherit;
background: #f8fafc;
transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

input:focus, select:focus, textarea:focus {
outline: none;
border-color: #e0b15d;
background: #ffffff;
box-shadow: 0 0 0 4px rgba(224, 177, 93, 0.18);
transform: translateY(-2px);
}

textarea {
min-height: 140px;
resize: vertical;
}

.consent {
display: flex;
align-items: flex-start;
gap: 10px;
font-weight: 500;
color: #475569;
}

.consent input {
width: auto;
margin-top: 4px;
}

.form-submit {
width: 100%;
margin-top: 4px;
}

.form-note {
font-size: 0.85rem;
color: #64748b;
text-align: center;
}

.footer {
text-align: center;
padding: 28px;
background: #08111f;
color: white;
}

.hero-content, .section-heading, .card, .price-card, blockquote, .contact-content {
animation: fadeUp 0.9s ease both;
}

.hero-card {
animation: floatCard 4s ease-in-out infinite;
}

.badge {
animation: softPulse 2.8s ease-in-out infinite;
}

.btn, .card, .price-card {
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn:hover {
transform: translateY(-3px);
box-shadow: 0 14px 30px rgba(224, 177, 93, 0.25);
}

.card:hover, .price-card:hover {
transform: translateY(-8px);
box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.nav-links a {
position: relative;
}

.nav-links a::after {
content: "";
position: absolute;
left: 0;
bottom: -6px;
width: 0;
height: 2px;
background: #e0b15d;
transition: width 0.3s ease;
}

.nav-links a:hover::after {
width: 100%;
}

@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(24px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes floatCard {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-12px);
}
}

@keyframes softPulse {
0%, 100% {
box-shadow: 0 0 0 rgba(224, 177, 93, 0);
}
50% {
box-shadow: 0 0 24px rgba(224, 177, 93, 0.35);
}
}

@keyframes floatingGlow {
0%, 100% {
transform: translate(0, 0) scale(1);
}
50% {
transform: translate(-18px, 18px) scale(1.08);
}
}

@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation: none !important;
transition: none !important;
}
}

@media (max-width: 900px) {
.hero, .contact-box {
grid-template-columns: 1fr;
}
.grid, .steps, .pricing {
grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 600px) {
.nav-links {
display: none;
}
.grid, .steps, .pricing, .testimonials .grid, .form-row {
grid-template-columns: 1fr;
}
.hero-actions {
flex-direction: column;
}
.contact-box {
padding: 28px;
}
.premium-form {
padding: 22px;
}
}
.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea {
border-color: #dc2626;
background: #fff5f5;
box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.form-group.is-valid input, .form-group.is-valid select, .form-group.is-valid textarea {
border-color: #16a34a;
background: #f0fdf4;
}

.error-message {
min-height: 18px;
font-size: 0.82rem;
color: #dc2626;
}

.consent-error {
margin-top: -8px;
}

.form-success {
display: none;
padding: 18px 20px;
border-radius: 18px;
background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
color: #047857;
font-weight: 600;
text-align: left;
border: 1px solid #bbf7d0;
box-shadow: 0 16px 40px rgba(4, 120, 87, 0.12);
}

.form-success strong {
display: block;
margin-bottom: 6px;
font-size: 1rem;
color: #065f46;
}

.form-success.show {
display: block;
animation: fadeUp 0.4s ease both;
}
