body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
    background: #ffffff;
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 120px 20px;
  background: linear-gradient(135deg, rgba(255,140,0,0.28), rgba(128,0,128,0.28), rgba(0,0,139,0.28), rgba(128,0,0,0.28));
  background-size: 200% 400%;
  animation: rotateGradient 18s ease infinite;
}
@keyframes rotateGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-top-image { 
    /* Sizing constraints for large images */
    width: 100%;             /* Allows fluid scaling on small mobile viewports */
    max-width: 450px;        /* Limits the maximum desktop width so it doesn't overpower the h1 */
    height: auto;            /* Strict enforcement of original aspect ratios (no stretching) */
    object-fit: contain;     /* Ensures image bounds protect original image constraints */
    
    /* Perfect horizontal alignment */
    display: block; 
    margin-left: auto;       /* Forces equal distribution of whitespace on the left */
    margin-right: auto;      /* Forces equal distribution of whitespace on the right */
    margin-bottom: 25px;     /* Creates clean spacing between the base of image and the h1 title */
} 
.hero-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-rotate {
    font-size: 22px;
    margin-bottom: 30px;
    color: #444;
    height: 30px;
    transition: opacity 0.4s ease-in-out;
}

.persona-buttons button {
    padding: 10px 20px;
    margin: 5px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    background: #444;
    color: white;
    transition: 0.3s;
}

.persona-buttons button:hover {
    background: black;
}

.cta-primary {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 30px;
    background: #373783;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
}
.cta-primary:hover {
    background: #1717b0;
}

/* MODULES GRID */
.modules {
    padding: 40px 20px;
    text-align: center;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 10px;
}

.module-card {
    padding: 25px;
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.blue { background: linear-gradient(135deg, #4ab0ff, #004cff); }
.green { background: linear-gradient(135deg, #35d67a, #0d7a3a); }
.orange { background: linear-gradient(135deg, #ffb13c, #ff6b00); }
.purple { background: linear-gradient(135deg, #b769ff, #6b00c9); }
.maroon { background: linear-gradient(135deg, #a53252, #5d001d); }

.module-link {
    display: inline-block;
    margin-top: 12px;
    color: #fff;
    text-decoration: underline;
}

/* VALUE SECTION */
.value {
    text-align: center;
    padding: 60px 20px;
    background: #fafafa;
}

.value-block {
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-secondary {
    padding: 12px 28px;
    background: #444;
    color: white;
    border-radius: 8px;
    text-decoration: none;
}

/* DEMO FORM */
.demo {
    padding: 70px 20px;
    background: #f1f1ff;
    text-align: center;
}

.demo-form {
    max-width: 450px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.demo-form input, .demo-form select {
    padding: 12px;
    border: 1px solid #aaa;
    border-radius: 6px;
}