/* Main Hero Section */
.hero-container {
    position: absolute;
    top: 30px;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid #e1e4e8;
    overflow: visible;
}

.hero-split {
    width: 100%;
    overflow: visible;
}

.hero-left {
    width: 55%;
    float: left;
}

.hero-right {
    width: 40%;
    float: right;
    overflow: visible;
}

h1 {
    font-size: 28pt;
    margin: 0 0 15px 0;
    color: #1a2e2a;
    line-height: 1.1;
}

.sub-headline {
    font-size: 20pt;
    color: #000000;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.pricing-callout {
    font-size: 18pt;
    font-weight: bold;
    color: #1a2e2a;
    margin-bottom: 30px;
}

.btn {
    display: block;
    width: 100%;           /* Or a fixed width like 300px to match the card */
    padding: 12px 20px;    /* Reduced height */
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin-bottom: 15px;   /* Space between buttons */
}

.btn-primary {
    background-color: #005757;
    color: #ffffff;
    /* This creates the solid "3D" look from the target image */
    box-shadow: 0 4px 0 #003d3d;
    text-shadow: 0 1px 0 rgba(0,0,0,0.3);
}

.btn-secondary {
    background-color: #00ff69;
    color: #1a2e2a;
    box-shadow: 0 4px 0 #00cc54;
}

/* Placeholder for Calendar */
.screenshot-placeholder {
    width: 100%;
    height: 250px;
    border-radius: 4px;
    display: table;
    transform: rotate(10deg);

    position: relative;
    z-index: 10;           /* Pulls it to the front layer */
    right: 50px;   /* Pulls it over the right edge of the white card */
    top: 60px;     /* Pulls it slightly down */
    overflow: visible;     /* Ensures it doesn't get clipped by its own box */
}

.placeholder-text {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 12pt;
}

.pricing-row {
    display: flex;          /* This puts them side-by-side */
    align-items: center;    /* This centers them vertically against each other */
    gap: 20px;             /* This creates the space between the £1 and the text */
    margin-top: 30px;      /* Gives the whole section breathing room */
    margin-bottom: 30px;
}

.price-main {
    font-size: 24pt;
    font-weight: 800;
    color: #1a2e2a;
    white-space: nowrap;    /* Prevents "Just £1" from wrapping */
}

.price-details {
    font-size: 11pt;
    color: #444;
    line-height: 1.3;
}