* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Actions section with CTA buttons */
.actions-section{
    display:flex; gap:14px; margin-bottom:32px; flex-wrap:wrap; justify-content:center;
}

.contact-open{
    border:none; cursor:pointer; font-weight:600; padding:12px 20px; border-radius:10px; transition:all 220ms ease; box-shadow:0 8px 24px rgba(45,167,214,0.14);
}

.contact-open:hover{
    transform:translateY(-2px); box-shadow:0 12px 32px rgba(45,167,214,0.2);
}

/* Modal styles with animations */
@keyframes modalFadeIn{
    from { opacity:0; }
    to { opacity:1; }
}

@keyframes modalSlideUp{
    from { transform:translateY(20px); opacity:0; }
    to { transform:translateY(0); opacity:1; }
}

.modal-overlay{
    position:fixed; inset:0; display:flex; align-items:center; justify-content:center; 
    background:rgba(11,37,64,0.5); z-index:1000;
    animation:modalFadeIn 300ms ease;
}

.modal-overlay[hidden]{ display:none; }

.modal-content{
    width:100%; max-width:520px; background:white; border-radius:16px; 
    box-shadow:0 24px 80px rgba(11,37,64,0.15), 0 0 1px rgba(11,37,64,0.06);
    animation:modalSlideUp 400ms cubic-bezier(0.34,1.56,0.64,1);
    overflow:hidden;
}

.modal-decoration{
    height:4px; background:linear-gradient(90deg, var(--accent), var(--accent-2));
}

.modal-header{
    display:flex; justify-content:space-between; align-items:flex-start; gap:12px; padding:24px;
}

.modal-header h3{
    margin:0; font-size:22px; color:var(--ink);
}

.modal-subtitle{
    margin:4px 0 0 0; font-size:13px; color:var(--muted);
}

.modal-close{
    background:none; border:none; cursor:pointer; padding:8px; color:var(--muted);
    transition:all 200ms ease; display:flex; align-items:center; justify-content:center;
}

.modal-close:hover{ color:var(--accent); transform:rotate(90deg); }

.modal-body{ padding:0 24px 24px; }

/* Form styles inside modal */
.form-group{
    display:flex; flex-direction:column; gap:6px; margin-bottom:16px;
}

.label-text{ font-size:13px; font-weight:600; color:var(--ink); }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"]{
    padding:10px 12px; border-radius:8px; border:1px solid rgba(11,37,64,0.08);
    font-size:14px; background:white; color:var(--ink); transition:border 200ms ease;
}

.form-group input:focus{ outline:none; border:1px solid var(--accent); box-shadow:0 0 0 3px rgba(45,167,214,0.08); }

.phone-group{ display:flex; gap:8px; }
.phone-group input:first-child{ width:90px; }
.phone-group input:last-child{ flex:1; }

.role-options{
    display:flex; flex-direction:column; gap:10px;
}

.radio-label{
    display:flex; align-items:center; gap:8px; cursor:pointer; padding:10px; border-radius:8px;
    border:1px solid rgba(11,37,64,0.06); transition:all 200ms ease;
}

.radio-label:hover{ background:rgba(45,167,214,0.04); }

.radio-label input[type="radio"]{ cursor:pointer; }

.radio-label span{ font-size:14px; color:var(--ink); }

.form-submit{
    width:100%; margin:18px 0 0 0; padding:12px;
}

.modal-footer{
    text-align:center; font-size:12px; color:var(--muted); padding:12px 24px; border-top:1px solid rgba(11,37,64,0.04);
}

@media(max-width:540px){
    .modal-content{ margin:16px; }
    .modal-header{ padding:20px 16px; }
    .modal-body{ padding:0 16px 20px; }
    .actions-section{ flex-direction:column; gap:10px; }
    .contact-open{ width:100%; }
}

:root{
    --bg: #f6fbff; /* very light blue */
    --ink: #0b2540; /* deep navy for trust */
    --muted: #556b82;
    --accent: #2da7d6; /* calm blue */
    --accent-2: #7fcdbb; /* soft green */
}

body {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: var(--bg);
    color: var(--ink);
    min-height: 100vh;
    position: relative;
}

.background-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(45,167,214,0.08) 0%, rgba(127,205,187,0.05) 50%, rgba(0,0,0,0) 60%);
    top: 10%;
    right: 5%;
    filter: blur(24px);
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 48px 20px;
}

.logo-wrapper{
    width: 120px;
    height: 120px;
    border-radius: 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: white;
    box-shadow: 0 6px 18px rgba(11,37,64,0.06);
    margin-bottom: 18px;
}

.logo{
    width:100px;
    height:auto;
}

.tagline{
    display:inline-block;
    color:var(--muted);
    font-size:13px;
    padding:6px 12px;
    border-radius:999px;
    border:1px solid rgba(11,37,64,0.04);
    background: rgba(255,255,255,0.6);
    margin-bottom:14px;
}

h1{
    font-size:40px;
    max-width:760px;
    line-height:1.15;
    margin-bottom:18px;
    font-weight:700;
}

h1 span{ color: var(--accent); }

.brand-name{ display:none; }

.description{
    max-width:760px;
    font-size:16px;
    color:var(--muted);
    line-height:1.6;
    margin-bottom:26px;
}

.contact-card{
    width:100%;
    max-width:760px;
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    padding:20px 22px;
    border-radius:12px;
    box-shadow: 0 8px 20px rgba(11,37,64,0.04);
    margin-bottom:18px;
    text-align:left;
}

.contact-card h3{ margin:0 0 8px 0; font-size:18px; color:var(--ink); }
.contact-card form{ display:flex; gap:12px; flex-direction:column; }
.contact-card label{ font-size:13px; color:var(--muted); display:flex; flex-direction:column; gap:8px; }
.contact-card input[type="text"],
.contact-card input[type="email"],
.contact-card input[type="tel"]{
    padding:10px 12px; border-radius:8px; border:1px solid rgba(11,37,64,0.06); font-size:14px; background:white; color:var(--ink);
}

.role-field{ border:none; padding:0; display:flex; gap:10px; align-items:center; color:var(--muted); }
.role-field legend{ display:none; }
.role-field label{ font-size:14px; color:var(--muted); gap:6px; }

.form-actions{ display:flex; gap:12px; align-items:center; }
.contact-message{ color:var(--muted); font-size:14px; }

.actions{ display:flex; gap:14px; align-items:center; margin-bottom:26px; flex-wrap:wrap; }

.cta{
    background: linear-gradient(90deg,var(--accent), var(--accent-2));
    color: white;
    padding:12px 20px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    box-shadow: 0 8px 24px rgba(45,167,214,0.14);
    border: none;
    cursor: pointer;
}

.coming-soon{
    color:var(--muted);
    font-size:14px;
}

.features{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
    margin-top:6px;
}

.feature-card{
    width:260px;
    background:white;
    border-radius:12px;
    padding:20px;
    box-shadow: 0 8px 20px rgba(11,37,64,0.06);
    transition: transform 220ms ease, box-shadow 220ms ease;
    color:var(--ink);
}

.feature-card:hover{
    transform: translateY(-6px) rotate(-0.5deg);
    box-shadow: 0 18px 40px rgba(11,37,64,0.08);
}

.icon{ font-size:28px; margin-bottom:12px; }

.feature-card h3{ font-size:18px; margin-bottom:8px; }
.feature-card p{ color:var(--muted); font-size:14px; line-height:1.5; }

@media(max-width:768px){
    h1{ font-size:28px; }
    .description{ font-size:14px; }
    .feature-card{ width:100%; max-width:360px; }
    .logo-wrapper{ width:96px; height:96px; }
}