/* TT3P demo style – based on Elementor globals you provided */

:root{
  /* TT3P globals (from your --e-global-*) */
  --tt3p-primary:#007675;
  --tt3p-secondary:#1E3A4A;
  --tt3p-text:#1E3A4A;
  --tt3p-accent:#EFF6FA;
  --tt3p-white:#FFFFFF;
  --tt3p-bg:#FAFFFF;
  --tt3p-soft:#A5D0DC;

  --radius: 0px;              /* TT3P tends to use sharp corners in several components */
  --radius-soft: 4px;         /* for small elements if needed */
  --border: rgba(30,58,74,.22);
  --shadow: 0 14px 40px rgba(30,58,74,.12);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  /* Fallbacks included because Archia/Proxima Nova are usually self-hosted */
  font-family: "Proxima Nova", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 30px;
  font-weight: 400;
  color: var(--tt3p-text);

  background:
    radial-gradient(1100px 650px at 15% -10%, rgba(0,118,117,.14), transparent 60%),
    radial-gradient(900px 520px at 90% 10%, rgba(165,208,220,.28), transparent 55%),
    linear-gradient(180deg, var(--tt3p-accent), var(--tt3p-bg));

  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
}

/* Card */
.card{
  width:min(860px, 100%);
  background: var(--tt3p-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

/* Header / brand */
.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-bottom:16px;
  margin-bottom:18px;
  border-bottom: 1px solid var(--border);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo{
  width:38px;
  height:38px;
  border-radius: var(--radius-soft);
  background: linear-gradient(135deg, var(--tt3p-primary), #009F82);
}

.badge{
  font-family: "Archia", "Proxima Nova", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: var(--tt3p-secondary);
  background: var(--tt3p-accent);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: var(--radius);
}

/* Headings (TT3P uses Archia bold) */
h1,h2,h3{
  font-family: "Archia", "Proxima Nova", system-ui, sans-serif;
  color: var(--tt3p-secondary);
  margin:0 0 10px;
  text-wrap: balance;
}

h1{
  font-size: 30px;
  line-height: 35px;
  font-weight: 700;
}

h2{
  font-size: 22px;
  line-height: 27px;
  font-weight: 700;
  margin-top:18px;
}

h3{
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
}

p{ margin:0 0 10px; }
.muted{ color: rgba(30,58,74,.78); }
.tiny{ font-size: 14px; line-height: 19px; color: rgba(30,58,74,.72); margin-top:14px; }

/* Form */
.form{ display:grid; gap:14px; margin-top:16px; }
label{ display:grid; gap:8px; font-size:14px; }

input, select{
  background: var(--tt3p-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 12px;
  color: var(--tt3p-text);
  outline:none;
}

input:focus, select:focus{
  border-color: rgba(0,118,117,.55);
  box-shadow: 0 0 0 3px rgba(0,118,117,.15);
  background: #fff;
}

/* Buttons – TT3P sloped style */
button, .button{
  appearance:none;
  border:0;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding: 14px 16px;
  font-family: "Archia", "Proxima Nova", system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;

  color: #fff;
  background: var(--tt3p-primary);
  border-radius: var(--radius);

  /* signature slope */
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0% 100%);
  box-shadow: 0 10px 25px rgba(0,118,117,.20);
  transition: transform .12s ease, filter .2s ease;
}

button:hover, .button:hover{ filter: brightness(1.02); transform: translateY(-1px); }
button:active, .button:active{ transform: translateY(0); }

/* Secondary button looks like TT3P “outline/neutral” */
.button.secondary{
  background: var(--tt3p-accent);
  color: var(--tt3p-secondary);
  border: 1px solid var(--border);
  box-shadow:none;
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%); /* opposite slope */
}

/* Pills / panels */
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: var(--tt3p-accent);
  border-radius: var(--radius);
  font-weight: 600;
}

.panel, .cta{
  margin-top:18px;
  padding:16px;
  border: 1px solid var(--border);
  background: var(--tt3p-accent);
  border-radius: var(--radius);
}

ul{ margin: 8px 0 0; padding-left: 18px; }
li{ margin: 8px 0; }

/* Button row */
.actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* Mobile */
@media (max-width: 720px){
  body{ padding:16px; }
  .card{ padding:18px; }
}