@font-face {
    font-family: 'SF Pro Display Medium';
    src: url('../fonts/SFProDisplay-Medium.woff2') format('woff2'),
        url('../fonts/SFProDisplay-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Regular.woff2') format('woff2'),
        url('../fonts/SFProDisplay-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* ---------- Variables & reset ---------- */
    :root{
      --darkgray: #191919;
      --gray: #515151;
      --lightgray: #939393;
      --green: #16ae4a;
      --accent-teal: #00beb1;
    }
    *{box-sizing:border-box}
    html,body{height:100%;}
    body{
      margin:0;
     font-family: 'SF Pro Display';
      color:#0b1220;
      background: #f6f6f6;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
    }
    h1, h2, h3, h4{font-family: 'SF Pro Display Medium';}
    a{color:inherit;text-decoration:none}
    p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}

.topbar{background:var(--green); border-bottom: 2px solid var(--accent-teal); height:44px}
.img-sec{position: absolute;z-index: -1; right: -19%; top: 15px;}
.back-bg{max-width:85%; height: auto;}


/*  */
.page-bg{background: #f6f6f6 url(../images/home-back.png);
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    overflow: hidden;
}
.container{
	max-width: 1280px;
	width: 100%;
	margin: auto;
	position: relative;
    z-index: 2;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.logo{padding: 4.6rem 0 2rem;}
.content-sec{width: 100%}

h1{ font-size:68px; font-weight: 500; line-height: 72px; color:var(--darkgray); padding:0; margin:0 }
.sub-head{ font-size:28px; color:var(--gray); padding-right:40px }
.sub-head strong{ font-weight:600; color:#2f2f2f; }

.form-grid{
	display: grid;
	grid-template-columns: 60% 1fr;
	gap: 1rem;
}

 .form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: 10px 20px;
    font-size: 1.3rem;
    line-height:2;
    color: #111;
    background-color: #FFF;
    border:2px solid var(--lightgray);
    border-radius:15px;
    -webkit-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control:focus {
    color: #111;
    background-color: #FFF;
    border-color: var(--accent-teal);;
    outline: 0;
    box-shadow: 0 3px 8px 0 rgb(0 0 0 / 10%);
}

.cta-btn {
    background: var(--green);
    color: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    border: 0;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'SF Pro Display Medium';
    font-weight: 500;
}
.cta-btn:hover{ background: var(--accent-teal);}

.consent {
    display: flex;
    gap: 8px;
    color: var(--lightgray);
    font-size: 20px;
    margin: 20px 0 10px;
}

 .checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    line-height: 1.5;
    text-align: left;
}

.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkbox-container:hover input ~ .checkmark {
    border-color: var(--accent-teal);
}
.checkbox-container input:checked ~ .checkmark {
    background-color: var(--accent-teal);
    border-color: var(--accent-teal);
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.text-content{color: var(--gray); font-size: 18px; font-weight: 600; margin-bottom: 0; padding-bottom: 35px; margin-top: 10px;}

.mobile-mockup, .show-mob{display: none;}
.show-desk{display: block;}
.mobile-mockup img{max-width: 100%; height: auto;}


/* =============== Responsive =============== */

@media(max-width:1600px){
	.container{width: 92%; grid-template-columns: 40% 1fr;}
	.img-sec{right: -20%; top: 0;}
	.back-bg{max-width: 70%}
	.logo {padding: 3rem 0 1.2rem;}
	h1{font-size: 54px; line-height:58px;}
	.sub-head{font-size: 21px;margin: 0.8rem 0;}
	.cta-btn{font-size: 18px; padding:15px; }
    .form-grid{gap: 0.5rem}
    .form-control{font-size: 1.1rem}
	.consent{font-size: 16px; margin: 10px 0 0}
	.text-content{font-size: 16px;}
}
@media(max-width:1370px){
    .img-sec {right: -25%;}
    .back-bg{max-width: 65%}
}
@media(max-width:1280px){
    h1{font-size: 50px; line-height:54px;}
    .img-sec {right: -30%;}
    .sub-head { font-size: 18px;}
}
@media(max-width: 1080px){
	.page-bg{background: #f6f6f6; background-image: none;}
	.container{grid-template-columns: 1fr;}
	.img-sec, .show-desk{display: none;}
	.show-mob{display: block;}
	.topbar{height: 34px;}
	.logo{text-align: center;}
	.mobile-mockup{display: block; text-align: center; margin-top: -10%}
	.content-sec{ max-width:100%; margin:auto; text-align:center; }
	h1{ font-size:90px; font-weight: 500; line-height:96px; margin-top: -30px;}
	.sub-head, .text-content{font-size: 33px; padding-right: 0}
	.consent{ font-size:28px; margin-top:0 }
	.sub-head{margin-bottom: 50px;}
	.form-grid{ display: grid; grid-template-columns: 1fr; gap: 1rem;}
	.form-control {text-align: center; font-size: 1.8rem}
	.cta-btn {font-size: 30px; padding: 20px;}
	.checkmark{ top: 8px; height: 26px; width: 26px;}
	.checkmark:after{ left: 7px; top: 4px;}
}

@media(max-width:990px){
	h1 {font-size: 70px; line-height: 76px;}
    .sub-head, .text-content { font-size: 26px;}
    .consent{font-size: 22px;}
    .checkmark {top: 3px;}
}
@media(max-width:600px){
	.logo {padding: 2rem 0 2rem; }
    .logo img{max-height: 110px;}
    h1 { font-size: 44px; line-height: 50px;}
    .sub-head, .text-content { font-size: 18px; line-height: 24px;}
    .form-control{font-size: 1.2rem}
    .cta-btn {  font-size: 22px; padding: 16px; }
    .consent { font-size: 18px;margin: 0}
    .sub-head{ margin-bottom: 30px;}
}
@media(max-width:400px){
	h1 { font-size: 40px; line-height: 46px;}
    .sub-head, .text-content{ font-size: 16px; line-height: 20px;}
    .form-control { font-size: 1.1rem;}
}


/* Thank you page  */
.container-thanks{
    max-width: 1280px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin: auto;
}
.container-thanks .logo{ text-align:center; padding:1rem }
.warning-banner {
    background: #e74c3c;
    color: white;
    padding: 0px 14px;
    margin: 0 auto;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    text-align: center;
    justify-content: center;
    max-width: 600px;
}
.warning-icon {
    font-size: 40px;
}
.warning-banner h2 {
    margin:15px 1px;
    font-weight: 400;
}
.main-heading{font-size: 40px; font-weight: 400; margin: 0 0 10px}
.main-content {
    background: white;
    margin: 20px auto;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
}

 .phone-animation {
            width: 100px;
            height: 100px;
            margin: 0 auto 28px;
            background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 2s ease-in-out infinite;
            box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 12px 32px rgba(0, 212, 255, 0.5);
            }
        }

        .phone-icon {
            font-size: 56px;
            animation: ring 2s ease-in-out infinite;
        }

        @keyframes ring {
            0%, 100% {
                transform: rotate(0deg);
            }
            10%, 30% {
                transform: rotate(-12deg);
            }
            20%, 40% {
                transform: rotate(12deg);
            }
            50% {
                transform: rotate(0deg);
            }
        }

        .instruction-box {
            background: linear-gradient(135deg, #fffae9 0%, #fff2ca 100%);
            border: 2px solid #ffc107;
            border-radius: 12px;
            padding: 5px 15px 5px;
            margin: 30px 0 20px;
        }

        .instruction-text {
            color: #000;
            font-size: 20px;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .instruction-text strong {
            font-weight: 700;
        }
        .tap-yes-btn{
            background:var(--green);
            color: white;
            padding: 12px 30px;
            margin: auto;
            border-radius: 12px;
            display: inline-flex    ;
            align-items: center;
            gap: 12px;
            font-size: 24px;
            font-weight: 500;
            box-shadow: 0 4px 12px rgba(22, 174, 74, 0.3);
            text-align: center;
            justify-content: center;
        }
        .tap-yes-btn:hover { background: var(--accent-teal);}
        .yes-button {
            display: inline-block;
            background: var(--accent-teal);
            color: white;
            padding: 6px 30px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 20px;
            letter-spacing: 2px;
            margin: 0 4px;
        }

        .arrow-down {
            font-size: 48px;
            color: #00d4ff;
            margin: 10px 0;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .check-phone-box {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 10px 24px;
            margin-top: 0px;
        }

        .check-phone-text {
            color: #002b5c;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .phone-number-display {
            color: #5a6c7d;
            font-size: 18px;
        }

    /* Loading animation */
    .loading {
      display: inline-block;
      width: 20px;
      height: 20px;
      border: 3px solid #f3f3f3;
      border-top: 3px solid #3498db;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

/* Thanks responsive */
@media(max-width: 767px){
    .main-content{padding: 20px;}
    .main-heading{ font-size:26px; }
    .warning-icon { font-size: 30px;}
}