/* =========================
RESET
========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  }

html {
scroll-behavior: smooth;
}

body {
font-family: Arial, Helvetica, sans-serif;
background: #172f44;
color: #ffffff;
overflow-x: hidden;
}

/* =========================
GUIDE SECTION
========================= */

.guide-section {
min-height: 650px;
position: relative;
overflow: hidden;
display: flex;
align-items: center;
padding: 35px 7% 60px;
background: #172f44;
}

/* =========================
DECORATIVE SHAPES
========================= */

.yellow-circle {
position: absolute;
width: 420px;
height: 420px;
border-radius: 50%;
background: #ffc928;
right: -180px;
top: -180px;
opacity: 0.12;
pointer-events: none;
}

.yellow-circle-bottom {
position: absolute;
width: 300px;
height: 300px;
border-radius: 50%;
background: #ffc928;
left: -160px;
bottom: -170px;
opacity: 0.08;
pointer-events: none;
}

/* =========================
SOCIAL LINKS
========================= */

.guide-socials {
position: absolute;
top: 25px;
right: 7%;
padding-bottom: 20px;
display: flex;
align-items: center;
gap: 8px;
z-index: 10;
}

.social-link {
width: 38px;
height: 38px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid rgba(255, 255, 255, 0.25);
border-radius: 8px;
background: rgba(255, 255, 255, 0.04);
color: #ffffff;
text-decoration: none;
transition:
background 0.2s ease,
color 0.2s ease,
transform 0.2s ease,
box-shadow 0.2s ease;
}

/* Keep ALL social icons consistently sized */
.social-link img {
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    object-fit: contain !important;
    object-position: center !important;
    flex: 0 0 18px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.social-link svg {
fill: currentColor;
}

.social-link:hover {
background: #ffc928;
color: #172f44;
transform: translateY(-2px);
box-shadow: 0 0 18px rgba(255, 201, 40, 0.3);
}

.social-link:focus-visible {
outline: 2px solid #ffc928;
outline-offset: 3px;
}

/* =========================
INSTAGRAM ICON
========================= */

.social-link:first-child svg circle {
fill: none;
stroke: currentColor;
stroke-width: 2;
}

.social-link:first-child svg .instagram-dot {
fill: currentColor;
stroke: none;
}

/* =========================
LINKEDIN ICON
========================= */

.linkedin-icon {
fill: currentColor;
}

/* =========================
MAIN CONTAINER
========================= */

.guide-container {
width: 100%;
max-width: 1250px;
margin: 0 auto;
display: grid;
grid-template-columns:
minmax(0, 1fr)
minmax(0, 1fr);
align-items: center;
gap: clamp(40px, 6vw, 80px);
position: relative;
z-index: 2;
}

/* =========================
LEFT SIDE
========================= */

.guide-content {
width: 100%;
max-width: 600px;
}

.eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
color: #ffc928;
font-size: 14px;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 20px;
}

.eyebrow span {
width: 32px;
height: 2px;
flex-shrink: 0;
background: #ffc928;
display: block;
}

/* =========================
TITLE
========================= */

.guide-title {
font-size: clamp(42px, 5vw, 72px);
line-height: 1.02;
font-weight: 800;
letter-spacing: -2px;
margin-bottom: 25px;
margin-top: 25px;
overflow-wrap: break-word;
}

.guide-title .yellow {
color: #ffc928;
}

/* =========================
DESCRIPTION
========================= */

.guide-description {
font-size: 18px;
line-height: 1.7;
color: #c7d2dc;
max-width: 560px;
margin-bottom: 32px;
}

/* =========================
BENEFITS
========================= */

.benefits {
display: flex;
flex-wrap: wrap;
gap: 12px 24px;
margin-bottom: 35px;
}

.benefit {
display: flex;
align-items: center;
gap: 9px;
color: #e8eef3;
font-size: 14px;
line-height: 1.4;
}

.benefit-check {
width: 21px;
height: 21px;
min-width: 21px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background: #ffc928;
color: #172f44;
font-size: 12px;
font-weight: 900;
}

/* =========================
FORM
========================= */

.guide-form {
width: 100%;
max-width: 520px;
}

.form-row {
display: flex;
gap: 12px;
width: 100%;
}

.email-input {
flex: 1;
min-width: 0;
height: 60px;
padding: 0 22px;
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 12px;
background: #ffffff;
color: #172f44;
font-size: 16px;
outline: none;
transition: 0.25s ease;
}

.email-input::placeholder {
color: #87939d;
}

.email-input:focus {
border-color: #ffc928;
box-shadow: 0 0 0 4px rgba(255, 201, 40, 0.12);
}

.submit-button {
height: 60px;
padding: 0 27px;
border: none;
border-radius: 12px;
background: #ffc928;
color: #172f44;
font-size: 15px;
font-weight: 800;
cursor: pointer;
white-space: nowrap;
transition: all 0.25s ease;
}

.submit-button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
background: #ffd84e;
}

.submit-button:active {
transform: translateY(0);
}

.privacy {
margin-top: 13px;
font-size: 12px;
line-height: 1.5;
color: #8fa0ad;
}

/* =========================
SUCCESS MESSAGE
========================= */

.success-message {
display: none;
margin-top: 15px;
padding: 14px 18px;
border-radius: 10px;
background: rgba(255, 201, 40, 0.12);
border: 1px solid rgba(255, 201, 40, 0.3);
color: #ffc928;
font-size: 14px;
line-height: 1.6;
}

/* =========================
RIGHT SIDE / VISUAL
========================= */

.visual {
position: relative;
width: 100%;
min-height: 480px;
display: flex;
align-items: center;
justify-content: center;
}

/* =========================
YELLOW BLOB
========================= */

.image-blob {
position: absolute;
width: min(440px, 85%);
aspect-ratio: 1 / 1;
background: #ffc928;
border-radius:
54% 46% 61% 39% /
46% 55% 45% 54%;
transform: rotate(-8deg);
}

/* =========================
PERSON IMAGE
========================= */

.person-image {
position: relative;
z-index: 2;
width: min(420px, 82%);
height: 440px;
object-fit: cover;
border-radius:
48% 52% 45% 55% /
42% 48% 52% 58%;
box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* =========================
ORBIT
========================= */

.orbit {
position: absolute;
width: min(510px, 100%);
height: 300px;
border: 2px solid rgba(255, 255, 255, 0.45);
border-radius: 50%;
transform: rotate(-18deg);
z-index: 3;
pointer-events: none;
}

/* =========================
FLOATING DECORATIONS
========================= */

.rocket {
position: absolute;
right: 4%;
top: 50px;
font-size: 42px;
color: #ffc928;
transform: rotate(-25deg);
z-index: 5;
}

.gorilla {
position: absolute;
left: 4%;
top: 2px;
color: #ffc928;
transform: rotate(-25deg);
z-index: 1;
}

/* =========================
TARGET
========================= */

.target {
position: absolute;
right: 4%;
bottom: 30px;
width: 70px;
height: 70px;
border: 3px solid #ffc928;
border-radius: 50%;
opacity: 0.8;
}

.target::before {
content: "";
position: absolute;
width: 45px;
height: 45px;
border: 2px solid #ffc928;
border-radius: 50%;
top: 10px;
left: 10px;
}

.target::after {
content: "";
position: absolute;
width: 16px;
height: 16px;
background: #ffc928;
border-radius: 50%;
top: 22px;
left: 22px;
}

/* =========================
DOTS
========================= */

.dots {
position: absolute;
left: 4%;
bottom: 40px;
width: 80px;
height: 80px;
background-image:
radial-gradient(
#ffc928 2px,
transparent 2px
);
background-size: 14px 14px;
opacity: 0.6;
}

/* =========================
FOOTER
========================= */

.site-footer {
width: 100%;
background: #102536;
border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
width: 100%;
max-width: 1250px;
margin: 0 auto;
padding: 25px 7%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}

.footer-copyright {
color: #8fa0ad;
font-size: 13px;
line-height: 1.5;
}

.footer-links {
display: flex;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.footer-links a {
color: #8fa0ad;
font-size: 13px;
text-decoration: none;
transition: color 0.2s ease;
}

.footer-links a:hover {
color: #ffc928;
}

/* =========================
INTERACTIVE FLOATING ELEMENTS
========================= */

.float-element {
position: absolute;
z-index: 7;
pointer-events: none;
user-select: none;
transition: transform 0.25s ease-out;
will-change: transform;
filter: drop-shadow(
0 10px 15px rgba(0, 0, 0, 0.25)
);
}

.icon-noclip {
top: 200px;
left: -5%;
font-size: 55px;
}

.icon-gtag {
top: 50px;
right: 50%;
font-size: 48px;
}

.icon-yeeps {
bottom: 80px;
right: 25%;
font-size: 45px;
}

.icon-cube {
bottom: 200px;
left: 80%;
font-size: 38px;
}

.icon-noclip img {
width: 80px;
}

.icon-gtag img {
width: 140px;
}

.icon-yeeps img {
width: 100px;
}

.icon-cube img {
width: 150px;
}

/* =========================
TABLET
901px → 1100px
========================= */

@media (max-width: 1100px) {

.guide-section {
padding: 35px 6% 60px;
}

.guide-container {
gap: 45px;
}

.guide-title {
font-size: clamp(40px, 5vw, 60px);
}

.person-image {
width: 370px;
height: 400px;
}

.image-blob {
width: 390px;
}

.orbit {
width: 440px;
height: 270px;
}

.guide-socials {
right: 6%;
}

.footer-inner {
padding-left: 6%;
padding-right: 6%;
}
}

/* =========================
TABLET / SMALL LAPTOP
BELOW 900px
========================= */

@media (max-width: 900px) {

.guide-section {
padding: 35px 6% 80px;
}

.guide-container {
grid-template-columns: 1fr;
gap: 70px;
}

.guide-content {
max-width: 700px;
}

.guide-title {
font-size: clamp(45px, 8vw, 64px);
}

.guide-description {
max-width: 650px;
}

.guide-form {
max-width: 600px;
}

.visual {
min-height: 450px;
}

.person-image {
width: 380px;
height: 410px;
}

.image-blob {
width: 410px;
}

.orbit {
width: 470px;
height: 280px;
}

.rocket {
right: 8%;
}

.target {
right: 8%;
}

.dots {
left: 8%;
}

.guide-socials {
right: 6%;
}

.footer-inner {
flex-direction: column;
justify-content: center;
text-align: center;
}

.footer-links {
justify-content: center;
}
}

/* =========================
MOBILE
BELOW 600px
========================= */

@media (max-width: 600px) {

.guide-section {
min-height: auto;
padding: 35px 20px 70px;
}

/* =========================
MOBILE SOCIAL ICONS
========================= */

.guide-socials {
top: 18px;
right: 20px;
gap: 6px;
}

.social-link {
width: 34px;
height: 34px;
border-radius: 7px;
}

/*
Smaller icons on mobile.
!important prevents external/icon styles
from making Instagram or LinkedIn huge.
*/
.social-link img {
    display: block !important;

    width: 16px !important;
    height: 16px !important;

    min-width: 16px !important;
    min-height: 16px !important;

    max-width: 16px !important;
    max-height: 16px !important;

    flex: 0 0 16px !important;

    object-fit: contain !important;
    object-position: center !important;

    padding: 0 !important;
    margin: 0 !important;

    transform: none !important;
}
/* =========================
MAIN
========================= */

.guide-container {
gap: 55px;
}

/* =========================
TEXT
========================= */

.eyebrow {
font-size: 12px;
letter-spacing: 1.5px;
margin-bottom: 16px;
}

.eyebrow span {
width: 25px;
}

.guide-title {
font-size: clamp(38px, 12vw, 50px);
letter-spacing: -1.5px;
line-height: 1.04;
margin-bottom: 20px;
}

.guide-description {
font-size: 16px;
line-height: 1.65;
margin-bottom: 25px;
}

/* =========================
BENEFITS
========================= */

.benefits {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 28px;
}

.benefit {
font-size: 13px;
align-items: flex-start;
}

.benefit-check {
margin-top: 1px;
}

/* =========================
FORM
========================= */

.guide-form {
width: 100%;
max-width: none;
}

.form-row {
display: flex;
flex-direction: column;
width: 100%;
gap: 12px;
}

.email-input {
width: 100%;
height: 60px;
min-height: 60px;
max-height: 60px;
}

.submit-button {
width: 100%;
height: 60px;
min-height: 60px;
max-height: 60px;
}

.privacy {
font-size: 11px;
}

/* =========================
VISUAL
========================= */

.visual {
min-height: 340px;
width: 100%;
}

.image-blob {
width: 290px;
}

.person-image {
width: 280px;
height: 300px;
}

.orbit {
width: 330px;
height: 210px;
}

.rocket {
right: 0;
top: 5px;
font-size: 30px;
}

.target {
right: 0;
bottom: 0;
width: 55px;
height: 55px;
}

.target::before {
width: 35px;
height: 35px;
top: 7px;
left: 7px;
}

.target::after {
width: 12px;
height: 12px;
top: 18px;
left: 18px;
}

.dots {
left: 0;
bottom: 15px;
width: 60px;
height: 60px;
background-size: 11px 11px;
}

/* =========================
FLOATING ELEMENTS
========================= */

.icon-noclip {
top: 150px;
left: -8%;
font-size: 40px;
}

.icon-gtag {
top: 30px;
right: 35%;
font-size: 35px;
}

.icon-yeeps {
bottom: 60px;
right: 15%;
font-size: 35px;
}

.icon-cube {
bottom: 150px;
left: 80%;
font-size: 30px;
}

/* =========================
FOOTER
========================= */

.footer-inner {
padding: 25px 20px;
gap: 15px;
}

.footer-copyright {
font-size: 12px;
}

.footer-links {
gap: 12px 18px;
}

.footer-links a {
font-size: 12px;
}
}

/* =========================
VERY SMALL PHONES
BELOW 400px
========================= */

@media (max-width: 400px) {

.guide-section {
padding-left: 16px;
padding-right: 16px;
}

/* =========================
SOCIAL ICONS
========================= */

.guide-socials {
top: 15px;
right: 16px;
gap: 4px;
}

.social-link {
width: 31px;
height: 31px;
border-radius: 6px;
}

.social-link svg,
.social-link img {
width: 14px !important;
height: 14px !important;
max-width: 14px !important;
max-height: 14px !important;
}

/* =========================
TEXT
========================= */

.guide-title {
font-size: 37px;
}

.guide-description {
font-size: 15px;
}

/* =========================
VISUAL
========================= */

.visual {
min-height: 300px;
}

.image-blob {
width: 250px;
}

.person-image {
width: 240px;
height: 260px;
}

.orbit {
width: 285px;
height: 180px;
}

.rocket {
font-size: 25px;
}

.target {
width: 48px;
height: 48px;
}

/* =========================
FOOTER
========================= */

.footer-inner {
padding-left: 16px;
padding-right: 16px;
}
}

